Updated the translation for the Privacy Policy and the Terms and Conditions

This commit is contained in:
Tiago Ribeiro
2024-02-03 00:15:38 +00:00
parent e1485763be
commit 5e442fc054
5 changed files with 240 additions and 211 deletions

View File

@@ -8,6 +8,15 @@ interface Props {
language: "en" | "ar"; language: "en" | "ar";
} }
interface FooterLinkProps extends Props {
children: string;
href: string;
}
const FooterLink = ({language, href, children}: FooterLinkProps) => {
return <Link href={`${language === "ar" ? "/ar" : ""}${href}`}>{children}</Link>;
};
export default function Footer({language}: Props) { export default function Footer({language}: Props) {
return ( return (
<> <>
@@ -20,26 +29,46 @@ export default function Footer({language}: Props) {
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<span className="font-bold text-xl">{translation.navigation.text[language]}</span> <span className="font-bold text-xl">{translation.navigation.text[language]}</span>
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<Link href="/about">{translation.navigation.why_us[language]}</Link> <FooterLink language={language} href={`/about`}>
<Link href="/about#capabilities">{translation.navigation.capabilities[language]}</Link> {translation.navigation.why_us[language]}
<Link href="/about#expertise">{translation.navigation.expertise[language]}</Link> </FooterLink>
<Link href="/history">{translation.navigation.history[language]}</Link> <FooterLink language={language} href={`/about#capabilities`}>
<Link href="/contact">{translation.navigation.contact[language]}</Link> {translation.navigation.capabilities[language]}
</FooterLink>
<FooterLink language={language} href={`/about#expertise`}>
{translation.navigation.expertise[language]}
</FooterLink>
<FooterLink language={language} href="/history">
{translation.navigation.history[language]}
</FooterLink>
<FooterLink language={language} href="/contact">
{translation.navigation.contact[language]}
</FooterLink>
</div> </div>
</div> </div>
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<span className="font-bold text-xl">{translation.services.text[language]}</span> <span className="font-bold text-xl">{translation.services.text[language]}</span>
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<Link href="#benefits">{translation.services.encoach_benefits[language]}</Link> <FooterLink language={language} href="/#benefits">
<Link href="#testimonials">{translation.services.student_testimonials[language]}</Link> {translation.services.encoach_benefits[language]}
</FooterLink>
<FooterLink language={language} href="#testimonials">
{translation.services.student_testimonials[language]}
</FooterLink>
</div> </div>
</div> </div>
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">
<span className="font-bold text-xl">{translation.about.text[language]}</span> <span className="font-bold text-xl">{translation.about.text[language]}</span>
<div className="flex flex-col gap-2"> <div className="flex flex-col gap-2">
<Link href="/terms">{translation.about.terms[language]}</Link> <FooterLink language={language} href="/terms">
<Link href="/privacy-policy">{translation.about.privacy_policy[language]}</Link> {translation.about.terms[language]}
<Link href="/about">{translation.about.text[language]}</Link> </FooterLink>
<FooterLink language={language} href="/privacy-policy">
{translation.about.privacy_policy[language]}
</FooterLink>
<FooterLink language={language} href="/about">
{translation.about.text[language]}
</FooterLink>
</div> </div>
</div> </div>
<div className="flex flex-col gap-4"> <div className="flex flex-col gap-4">

View File

@@ -25,13 +25,13 @@ export default function Privacy({language}: Props) {
<main className="h-screen w-full bg-white text-mti-black flex flex-col"> <main className="h-screen w-full bg-white text-mti-black flex flex-col">
<Navbar currentPage="/terms" language={language} /> <Navbar currentPage="/terms" language={language} />
<section className="w-full bg-mti-purple text-white text-center p-8 md:p-16"> <section className="w-full bg-mti-purple text-white text-center p-8 md:p-16" dir={language === "ar" ? "rtl" : "ltr"}>
<div className="w-full h-full flex flex-col items-center justify-center"> <div className="w-full h-full flex flex-col items-center justify-center">
<Title>{translation.title[language]}</Title> <Title>{translation.title[language]}</Title>
</div> </div>
</section> </section>
<section id="terms" className="w-full h-fit bg-white"> <section id="terms" className="w-full h-fit bg-white" dir={language === "ar" ? "rtl" : "ltr"}>
<div <div
className={clsx( className={clsx(
"w-full h-fit flex flex-col gap-8 p-8 md:p-20 container mx-auto", "w-full h-fit flex flex-col gap-8 p-8 md:p-20 container mx-auto",

View File

@@ -25,13 +25,13 @@ export default function Terms({language}: Props) {
<main className="h-screen w-full bg-white text-mti-black flex flex-col"> <main className="h-screen w-full bg-white text-mti-black flex flex-col">
<Navbar currentPage="/terms" language={language} /> <Navbar currentPage="/terms" language={language} />
<section className="w-full bg-mti-purple text-white text-center p-8 md:p-16"> <section className="w-full bg-mti-purple text-white text-center p-8 md:p-16" dir={language === "ar" ? "rtl" : "ltr"}>
<div className="w-full h-full flex flex-col items-center justify-center"> <div className="w-full h-full flex flex-col items-center justify-center">
<Title>{translation.title[language]}</Title> <Title>{translation.title[language]}</Title>
</div> </div>
</section> </section>
<section id="terms" className="w-full h-fit bg-white"> <section id="terms" className="w-full h-fit bg-white" dir={language === "ar" ? "rtl" : "ltr"}>
<div <div
className={clsx( className={clsx(
"w-full h-fit flex flex-col gap-8 p-8 md:p-20 container mx-auto", "w-full h-fit flex flex-col gap-8 p-8 md:p-20 container mx-auto",

View File

@@ -1,415 +1,411 @@
{ {
"title": { "title": {
"en": "Privacy Policy", "en": "Privacy Policy",
"ar": "" "ar": "سياسة الخصوصية"
}, },
"last_update": { "last_update": {
"en": "Update at 2020-12-25", "en": "Update at 03 Feb 2024",
"ar": "" "ar": "آخر تحديث بتاريخ 3 فبراير 2024"
}, },
"content": { "content": {
"general": { "general": {
"text": { "text": {
"en": "EnCoach (“we,” “our,” or “us”) is committed to protecting your privacy. This Privacy Policy explains how your personal information is collected, used, and disclosed by EnCoach.\nThis Privacy Policy applies to our website, and its associated subdomains (collectively, our “Service”) alongside our application, EnCoach. By accessing or using our Service, you signify that you have read, understood, and agree to our collection, storage, use, and disclosure of your personal information as described in this Privacy Policy and our Terms of Service.", "en": "EnCoach (“we,” “our,” or “us”) is committed to protecting your privacy. This Privacy Policy explains how your personal information is collected, used, and disclosed by EnCoach.\nThis Privacy Policy applies to our website, and its associated subdomains (collectively, our “Service”) alongside our application, EnCoach. By accessing or using our Service, you signify that you have read, understood, and agree to our collection, storage, use, and disclosure of your personal information as described in this Privacy Policy and our Terms of Service.",
"ar": "" "ar": "إن (إنكوتش) (\"نحن\" أو \"خاصتنا\" أو \"نحن\") ملتزمة بحماية خصوصيتك. توضح سياسة الخصوصية هذه كيف يتم جمع معلوماتك الشخصية واستخدامها والإفصاح عنها بواسطة (إنكوتش). \n تنطبق سياسة الخصوصية هذه على موقعنا الإلكتروني والمجالات الفرعية المرتبطة به (يشار إليها مجتمعة باسم \"الخدمة\") جنبًا إلى جنب مع تطبيقنا (إنكوتش). \n من خلال الوصول إلى خدمتنا أو استخدامها ، فإنك تشير إلى أنك قد قرأت وفهمت ووافقت على جمع معلوماتك الشخصية وتخزينها واستخدامها والإفصاح عنها كما هو موضح في سياسة الخصوصية وشروط الخدمة الخاصة بنا."
} }
}, },
"definitions": { "definitions": {
"title": { "title": {
"en": "Definitions and key terms", "en": "Definitions and key terms",
"ar": "" "ar": "التعاريف والمصطلحات الرئيسية"
}, },
"text": { "text": {
"en": "To help explain things as clearly as possible in this Privacy Policy, every time any of these terms are referenced, are strictly defined as:", "en": "To help explain things as clearly as possible in this Privacy Policy, every time any of these terms are referenced, are strictly defined as:",
"ar": "" "ar": "للمساعدة في شرح الأشياء بأكبر قدر ممكن من الوضوح في سياسة الخصوصية هذه ، في كل مرة تتم الإشارة إلى أي من هذه الشروط ، يتم تعريفها بدقة على النحو التالي:"
}, },
"list": [ "list": [
{ {
"en": "Cookie: small amount of data generated by a website and saved by your web browser. It is used to identify your browser, provide analytics, remember information about you such as your language preference or login information.", "en": "Company: when this policy mentions “Company,” “we,” “us,” or “our,” it refers to Integrated Artificial Intelligence LLC, (Muscat , Sultanate of Oman) that is responsible for your information under this Terms & Conditions.",
"ar": "" "ar": "الشركة: عندما تشير هذه السياسة إلى \"الشركة\" أو \"نحن\" أو \"لنا\" أو \"خاصتنا\"، فإنها تشير إلى شركة الذكاء الاصطناعي المتكامل (مسقط، سلطنة عمان) المسؤولة عن معلوماتك بموجب هذه الشروط والأحكام . "
},
{
"en": "Company: when this policy mentions “Company,” “we,” “us,” or “our,” it refers to Muscat Training Institute, (Sultanate of Oman , Muscat) that is responsible for your information under this Privacy Policy.",
"ar": ""
}, },
{ {
"en": "Country: where EnCoach or the owners/founders of EnCoach are based, in this case is Oman", "en": "Country: where EnCoach or the owners/founders of EnCoach are based, in this case is Oman",
"ar": "" "ar": "البلد: حيث يوجد مقر ( إنكوتش ) أو مالكو / مؤسسو ( إنكوتش )، في هذه الحالة تكون سلطنة عمان."
},
{
"en": "Customer: refers to the company, organization or person that signs up to use the EnCoach Service to manage the relationships with your consumers or service users.",
"ar": ""
}, },
{ {
"en": "Device: any internet connected device such as a phone, tablet, computer or any other device that can be used to visit EnCoach and use the services.", "en": "Device: any internet connected device such as a phone, tablet, computer or any other device that can be used to visit EnCoach and use the services.",
"ar": "" "ar": "الجهاز: أي جهاز متصل بالإنترنت مثل الهاتف أو الكمبيوتر اللوحي أو الكمبيوتر أو أي جهاز آخر يمكن استخدامه لزيارة ( إنكوتش ) واستخدام الخدمات."
},
{
"en": "IP address: Every device connected to the Internet is assigned a number known as an Internet protocol (IP) address. These numbers are usually assigned in geographic blocks. An IP address can often be used to identify the location from which a device is connecting to the Internet.",
"ar": ""
},
{
"en": "Personnel: refers to those individuals who are employed by EnCoach or are under contract to perform a service on behalf of one of the parties.",
"ar": ""
},
{
"en": "Personal Data: any information that directly, indirectly, or in connection with other information — including a personal identification number — allows for the identification or identifiability of a natural person.",
"ar": ""
}, },
{ {
"en": "Service: refers to the service provided by EnCoach as described in the relative terms (if available) and on this platform.", "en": "Service: refers to the service provided by EnCoach as described in the relative terms (if available) and on this platform.",
"ar": "" "ar": "الخدمة: تشير إلى الخدمة التي تقدمها ( إنكوتش ) كما هو موضح في المصطلحات ذات الصلة (إن وجدت) وعلى التطبيق أو الموقع الإلكتروني أو عنا. "
},
{
"en": "IP address: Every device connected to the Internet is assigned a number known as an Internet protocol (IP) address. These numbers are usually assigned in geographic blocks. An IP address can often be used to identify the location from which a device is connecting to the Internet.",
"ar": "عنوان IP: يتم تخصيص رقم يعرف بعنوان بروتوكول الإنترنت (IP) لكل جهاز متصل بالإنترنت. عادة ما يتم تعيين هذه الأرقام في كتل جغرافية. غالبًا ما يمكن استخدام عنوان IP لتحديد الموقع الذي يتصل منه الجهاز بالإنترنت."
},
{
"en": "Personnel: refers to those individuals who are employed by EnCoach or are under contract to perform a service on behalf of one of the parties.",
"ar": "الموظفون: يشير إلى هؤلاء الأفراد الذين تم توظيفهم من قبل (إنكوتش) أو بموجب عقد لأداء خدمة نيابة عن أحد الطرفين"
},
{
"en": "Personal Data: any information that directly, indirectly, or in connection with other information — including a personal identification number — allows for the identification or identifiability of a natural person.",
"ar": "البيانات الشخصية: أي معلومات تسمح بشكل مباشر أو غير مباشر أو فيما يتعلق بمعلومات أخرى - بما في ذلك رقم التعريف الشخصي - بتحديد هوية الشخص الطبيعي أو التعرف عليه"
},
{
"en": "Service: refers to the service provided by EnCoach as described in the relative terms (if available) and on this platform.",
"ar": "الخدمة : تشير إلى الخدمة التي تقدمها (أنكوتش) على منصتها"
}, },
{ {
"en": "Third-party service: refers to advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you.", "en": "Third-party service: refers to advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you.",
"ar": "" "ar": "خدمة الطرف الثالث: تشير إلى المعلنين وشركاء الترويج والتسويق وغيرهم ممن يقدمون المحتوى الخاص بنا أو الذين نعتقد أن منتجاتهم أو خدماتهم قد تهمك."
}, },
{ {
"en": "Website: EnCoach's site, which can be accessed via this URL: http://www.EnCoach.me", "en": "Website: EnCoach's site, which can be accessed via this URL: https://EnCoach.me",
"ar": "" "ar": "موقع الويب : هو الموقع الخاص ب(إنكوتش) ويتم الوصول إليه عن طريق https://encoach.com"
}, },
{ {
"en": "You: a person or entity that is registered with EnCoach to use the Services.", "en": "You: a person or entity that is registered with EnCoach to use the Services.",
"ar": "" "ar": "أنت : شخص أو كيان مسجل في انكوتش لإستخدام الخدمة"
} }
] ]
}, },
"information_collected": { "information_collected": {
"title": { "title": {
"en": "What Information Do We Collect?", "en": "What Information Do We Collect?",
"ar": "" "ar": "ماهي المعلومات التي تجمعها"
}, },
"text": { "text": {
"en": "We collect information from you when you visit our website/app, register on our site, place an order, subscribe to our newsletter, respond to a survey or fill out a form.", "en": "We collect information from you when you visit our website/app, register on our site, place an order, subscribe to our newsletter, respond to a survey or fill out a form.",
"ar": "" "ar": "نقوم بجمع معلومات منك عند زيارة موقعنا / تطبيقنا ، أو التسجيل على موقعنا ، أو تقديم طلب ، أو الاشتراك في النشرة الإخبارية لدينا ، أو الرد على استبيان أو ملء نموذج"
}, },
"list": [ "list": [
{ {
"en": "Name / Username", "en": "Name / Username",
"ar": "" "ar": "الإسم / إسم المستخدم"
}, },
{ {
"en": "Phone Numbers", "en": "Phone Numbers",
"ar": "" "ar": "رقم الهاتف"
}, },
{ {
"en": "Email Addresses", "en": "Email Addresses",
"ar": "" "ar": "عنوان البريد الإلكتروني"
}, },
{ {
"en": "Mailing Addresses", "en": "Mailing Addresses",
"ar": "" "ar": "العنوان البريدي"
}, },
{ {
"en": "Billing Addresses", "en": "Billing Addresses",
"ar": "" "ar": "عناوين الفوترة"
}, },
{ {
"en": "Debit/credit card numbers", "en": "Debit/credit card numbers",
"ar": "" "ar": "أرقام البطاقات الإئتمانية / بطاقات الخصم المباشر"
}, },
{ {
"en": "Password", "en": "Password",
"ar": "" "ar": "كلمة المرور"
} }
] ]
}, },
"mobile_information": { "mobile_information": {
"text": { "text": {
"en": "We also collect information from mobile devices for a better user experience, although these features are completely optional:", "en": "We also collect information from mobile devices for a better user experience, although these features are completely optional:",
"ar": "" "ar": "نقوم أيضًا بجمع المعلومات من الأجهزة المحمولة للحصول على تجربة مستخدم أفضل ، على الرغم من أن هذه الميزات اختيارية تمامًا"
}, },
"list": [ "list": [
{ {
"en": "Photo Gallery (Pictures): Granting photo gallery access allows the user to upload any picture from their photo gallery, you can safely deny photo gallery access for this website/app.", "en": "Photo Gallery (Pictures): Granting photo gallery access allows the user to upload any picture from their photo gallery, you can safely deny photo gallery access for this website/app.",
"ar": "" "ar": "الكاميرا (استوديو الصور): يتيح منح إذن الكاميرا للمستخدم تحميل أي صورة مباشرة من موقع الويب / التطبيق ، ويمكنك بأمان رفض أذونات الكاميرا لهذا الموقع / التطبيق"
} }
] ]
}, },
"use_information_collected": { "use_information_collected": {
"title": { "title": {
"en": "How Do We Use The Information We Collect?", "en": "How Do We Use The Information We Collect?",
"ar": "" "ar": "كيف نستخدم البيانات التي تم جمعها"
}, },
"text": { "text": {
"en": "Any of the information we collect from you may be used in one of the following ways:", "en": "Any of the information we collect from you may be used in one of the following ways:",
"ar": "" "ar": "يمكن استخدام أي من المعلومات التي نجمعها منك بإحدى الطرق التالية"
}, },
"list": [ "list": [
{ {
"en": "To personalize your experience (your information helps us to better respond to your individual needs)", "en": "To personalize your experience (your information helps us to better respond to your individual needs)",
"ar": "" "ar": "لتخصيص تجربتك (تساعدنا معلوماتك على الاستجابة بشكل أفضل لاحتياجاتك الفردية)"
}, },
{ {
"en": "To improve our website/app (we continually strive to improve our website/app offerings based on the information and feedback we receive from you)", "en": "To improve our website/app (we continually strive to improve our website/app offerings based on the information and feedback we receive from you)",
"ar": "" "ar": "لتحسين موقعنا / تطبيقنا (نحن نسعى باستمرار لتحسين عروض موقعنا / تطبيقنا بناءً على المعلومات والتعليقات التي نتلقاها منك)"
}, },
{ {
"en": "To improve customer service (your information helps us to more effectively respond to your customer service requests and support needs)", "en": "To improve customer service (your information helps us to more effectively respond to your customer service requests and support needs)",
"ar": "" "ar": "لتحسين خدمة العملاء (تساعدنا معلوماتك على الاستجابة بشكل أكثر فعالية لطلبات خدمة العملاء واحتياجات الدعم)"
}, },
{ {
"en": "To process transactions", "en": "To process transactions",
"ar": "" "ar": "لمعالجة المعاملات"
}, },
{ {
"en": "To administer a contest, promotion, survey or other site feature", "en": "To administer a contest, promotion, survey or other site feature",
"ar": "" "ar": "للترويج، استطلاع أو ميزة أخرى على الموقع"
}, },
{ {
"en": "To send periodic emails", "en": "To send periodic emails",
"ar": "" "ar": "لإرسال أيميلات مجدولة"
} }
] ]
}, },
"when_information_end_user_used": { "when_information_end_user_used": {
"title": { "title": {
"en": "When does EnCoach use end user information from third parties?", "en": "When does EnCoach use end user information from third parties?",
"ar": "" "ar": "متى تستخدم (إنكوتش). معلومات المستخدم النهائي من جهات خارجيه؟"
}, },
"text": { "text": {
"en": "EnCoach will collect End User Data necessary to provide the EnCoach services to our customers.\nEnd users may voluntarily provide us with information they have made available on social media websites. If you provide us with any such information, we may collect publicly available information from the social media websites you have indicated. You can control how much of your information social media websites make public by visiting these websites and changing your privacy settings.", "en": "EnCoach will collect End User Data necessary to provide the EnCoach services to our customers.\nEnd users may voluntarily provide us with information they have made available on social media websites. If you provide us with any such information, we may collect publicly available information from the social media websites you have indicated. You can control how much of your information social media websites make public by visiting these websites and changing your privacy settings.",
"ar": "" "ar": "ستجمع (إنكوتش) بيانات المستخدم النهائي اللازمة لتقديم خدمات (لاندري هب) لعملائنا. \n يجوز للمستخدمين النهائيين تزويدنا طواعية بالمعلومات التي أتاحوها على مواقع التواصل الاجتماعي. إذا زودتنا بأي من هذه المعلومات ، فقد نجمع المعلومات المتاحة للجمهور من مواقع التواصل الاجتماعي التي أشرت إليها. يمكنك التحكم في مقدار المعلومات التي تنشرها مواقع التواصل الاجتماعي الخاصة بك عن طريق زيارة هذه المواقع وتغيير إعدادات الخصوصية الخاصة بك."
} }
}, },
"when_information_customer_used": { "when_information_customer_used": {
"title": { "title": {
"en": "When does EnCoach use customer information from third parties?", "en": "When does EnCoach use customer information from third parties?",
"ar": "" "ar": "متى تستخدم (إنكوتش) معلومات العملاء من جهات خارجية؟"
}, },
"text": { "text": {
"en": "We receive some information from the third parties when you contact us. For example, when you submit your email address to us to show interest in becoming a EnCoach customer, we receive information from a third party that provides automated fraud detection services to EnCoach. We also occasionally collect information that is made publicly available on social media websites. You can control how much of your information social media websites make public by visiting these websites and changing your privacy settings.", "en": "We receive some information from the third parties when you contact us. For example, when you submit your email address to us to show interest in becoming a EnCoach customer, we receive information from a third party that provides automated fraud detection services to EnCoach. We also occasionally collect information that is made publicly available on social media websites. You can control how much of your information social media websites make public by visiting these websites and changing your privacy settings.",
"ar": "" "ar": "نتلقى بعض المعلومات من الأطراف الثالثة عندما تتصل بنا. على سبيل المثال ، عندما ترسل عنوان بريدك الإلكتروني إلينا لإظهار اهتمامك بأن تصبح عميلاً في (إنكوتش) ، فإننا نتلقى معلومات من جهة خارجية توفر خدمات الكشف عن الاحتيال الآلية إلى (إنكوتش). \n كما نقوم أحيانًا بجمع المعلومات التي يتم إتاحتها للجمهور على مواقع التواصل الاجتماعي. \n يمكنك التحكم في مقدار المعلومات التي تنشرها مواقع التواصل الاجتماعي الخاصة بك عن طريق زيارة هذه المواقع وتغيير إعدادات الخصوصية الخاصة بك."
} }
}, },
"share_information": { "share_information": {
"title": { "title": {
"en": "Do we share the information we collect with third parties?", "en": "Do we share the information we collect with third parties?",
"ar": "" "ar": "هل نشارك المعلومات التي نجمعها مع أطراف ثالثة؟"
}, },
"text": { "text": {
"en": "We may share the information that we collect, both personal and non-personal, with third parties such as advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you. We may also share it with our current and future affiliated companies and business partners, and if we are involved in a merger, asset sale or other business reorganization, we may also share or transfer your personal and non-personal information to our successors-in-interest.\nWe may engage trusted third party service providers to perform functions and provide services to us, such as hosting and maintaining our servers and the website/app, database storage and management, e-mail management, storage marketing, credit card processing, customer service and fulfilling orders for products and services you may purchase through the website/app. We will likely share your personal information, and possibly some non-personal information, with these third parties to enable them to perform these services for us and for you.\nWe may share portions of our log file data, including IP addresses, for analytics purposes with third parties such as web analytics partners, application developers, and ad networks. If your IP address is shared, it may be used to estimate general location and other technographics such as connection speed, whether you have visited the website/app in a shared location, and type of the device used to visit the website/app. They may aggregate information about our advertising and what you see on the website/app and then provide auditing, research and reporting for us and our advertisers. \nWe may also disclose personal and non-personal information about you to government or law enforcement officials or private parties as we, in our sole discretion, believe necessary or appropriate in order to respond to claims, legal process (including subpoenas), to protect our rights and interests or those of a third party, the safety of the public or any person, to prevent or stop any illegal, unethical, or legally actionable activity, or to otherwise comply with applicable court orders, laws, rules and regulations. ", "en": "We may share the information that we collect, both personal and non-personal, with third parties such as advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you. We may also share it with our current and future affiliated companies and business partners, and if we are involved in a merger, asset sale or other business reorganization, we may also share or transfer your personal and non-personal information to our successors-in-interest.\nWe may engage trusted third party service providers to perform functions and provide services to us, such as hosting and maintaining our servers and the website/app, database storage and management, e-mail management, storage marketing, credit card processing, customer service and fulfilling orders for products and services you may purchase through the website/app. We will likely share your personal information, and possibly some non-personal information, with these third parties to enable them to perform these services for us and for you.\nWe may share portions of our log file data, including IP addresses, for analytics purposes with third parties such as web analytics partners, application developers, and ad networks. If your IP address is shared, it may be used to estimate general location and other technographics such as connection speed, whether you have visited the website/app in a shared location, and type of the device used to visit the website/app. They may aggregate information about our advertising and what you see on the website/app and then provide auditing, research and reporting for us and our advertisers. \nWe may also disclose personal and non-personal information about you to government or law enforcement officials or private parties as we, in our sole discretion, believe necessary or appropriate in order to respond to claims, legal process (including subpoenas), to protect our rights and interests or those of a third party, the safety of the public or any person, to prevent or stop any illegal, unethical, or legally actionable activity, or to otherwise comply with applicable court orders, laws, rules and regulations. ",
"ar": "" "ar": "قد نشارك المعلومات التي نجمعها ، الشخصية وغير الشخصية ، مع أطراف ثالثة مثل المعلنين وشركاء الترويج والتسويق وغيرهم ممن يقدمون المحتوى الخاص بنا أو الذين نعتقد أن منتجاتهم أو خدماتهم قد تهمك. \n يجوز لنا أيضًا مشاركتها مع شركاتنا التابعة الحالية والمستقبلية وشركاء الأعمال ، وإذا كنا مشاركين في عملية اندماج أو بيع أصول أو إعادة تنظيم أعمال أخرى ، فقد نشارك أو ننقل معلوماتك الشخصية وغير الشخصية إلى من يخلفنا الاهتمام. \n قد نقوم بإشراك موفري خدمات الطرف الثالث الموثوق بهم لأداء الوظائف وتقديم الخدمات لنا ، مثل استضافة وصيانة خوادمنا وموقع الويب / التطبيق ، وتخزين وإدارة قاعدة البيانات ، وإدارة البريد الإلكتروني ، وتسويق التخزين ، ومعالجة بطاقات الائتمان ، وخدمة العملاء و تلبية طلبات المنتجات والخدمات التي يمكنك شراؤها من خلال الموقع / التطبيق. \nمن المحتمل أن نشارك معلوماتك الشخصية ، وربما بعض المعلومات غير الشخصية ، مع هذه الأطراف الثالثة لتمكينهم من أداء هذه الخدمات لنا ومن أجلك. \nيجوز لنا مشاركة أجزاء من بيانات ملف السجل لدينا ، بما في ذلك عناوين IP ، لأغراض التحليل مع أطراف ثالثة مثل شركاء تحليلات الويب ومطوري التطبيقات وشبكات الإعلانات. إذا تمت مشاركة عنوان IP الخاص بك ، فيمكن استخدامه لتقدير الموقع العام والتقنيات الأخرى مثل سرعة الاتصال ، وما إذا كنت قد زرت موقع الويب / التطبيق في موقع مشترك ، ونوع الجهاز المستخدم لزيارة موقع الويب / التطبيق. \n قد يقومون بتجميع معلومات حول إعلاناتنا وما تراه على موقع الويب / التطبيق ثم تقديم التدقيق والبحث وإعداد التقارير لنا وللمعلنين لدينا. قد نكشف أيضًا عن معلومات شخصية وغير شخصية عنك إلى الحكومة أو مسؤولي إنفاذ القانون أو الأطراف الخاصة لأننا ، وفقًا لتقديرنا الخاص ، نعتقد أن ذلك ضروري أو مناسب للرد على المطالبات ، والإجراءات القانونية (بما في ذلك مذكرات الاستدعاء) ، لحماية الحقوق والمصالح أو تلك الخاصة بطرف ثالث ، أو سلامة الجمهور أو أي شخص ، لمنع أو إيقاف أي نشاط غير قانوني أو غير أخلاقي أو قانوني ، أو الامتثال لأوامر المحكمة والقوانين والقواعد واللوائح المعمول بها."
} }
}, },
"when_information_collected": { "when_information_collected": {
"title": { "title": {
"en": "Where and when is information collected from customers and end users?", "en": "Where and when is information collected from customers and end users?",
"ar": "" "ar": "أين ومتى يتم جمع المعلومات من العملاء والمستخدمين النهائيين؟"
}, },
"text": { "text": {
"en": "EnCoach will collect personal information that you submit to us. We may also receive personal information about you from third parties as described above.", "en": "EnCoach will collect personal information that you submit to us. We may also receive personal information about you from third parties as described above.",
"ar": "" "ar": "ستجمع (إنكوتش) المعلومات الشخصية التي ترسلها إلينا. قد نتلقى أيضًا معلومات شخصية عنك من جهات خارجية كما هو موضح أعلاه."
} }
}, },
"use_email_address": { "use_email_address": {
"title": { "title": {
"en": "How Do We Use Your Email Address?", "en": "How Do We Use Your Email Address?",
"ar": "" "ar": "كيف نستخدم بريدك الإلكترووني ؟"
}, },
"text": { "text": {
"en": "By submitting your email address on this website/app, you agree to receive emails from us. You can cancel your participation in any of these email lists at any time by clicking on the opt-out link or other unsubscribe option that is included in the respective email. We only send emails to people who have authorized us to contact them, either directly, or through a third party. We do not send unsolicited commercial emails, because we hate spam as much as you do. By submitting your email address, you also agree to allow us to use your email address for customer audience targeting on sites like Facebook, where we display custom advertising to specific people who have opted-in to receive communications from us. Email addresses submitted only through the order processing page will be used for the sole purpose of sending you information and updates pertaining to your order. If, however, you have provided the same email to us through another method, we may use it for any of the purposes stated in this Policy. Note: If at any time you would like to unsubscribe from receiving future emails, we include detailed unsubscribe instructions at the bottom of each email.", "en": "By submitting your email address on this website/app, you agree to receive emails from us. You can cancel your participation in any of these email lists at any time by clicking on the opt-out link or other unsubscribe option that is included in the respective email. We only send emails to people who have authorized us to contact them, either directly, or through a third party. We do not send unsolicited commercial emails, because we hate spam as much as you do. By submitting your email address, you also agree to allow us to use your email address for customer audience targeting on sites like Facebook, where we display custom advertising to specific people who have opted-in to receive communications from us. Email addresses submitted only through the order processing page will be used for the sole purpose of sending you information and updates pertaining to your order. If, however, you have provided the same email to us through another method, we may use it for any of the purposes stated in this Policy. Note: If at any time you would like to unsubscribe from receiving future emails, we include detailed unsubscribe instructions at the bottom of each email.",
"ar": "" "ar": "بإرسال عنوان بريدك الإلكتروني على هذا الموقع / التطبيق ، فإنك توافق على تلقي رسائل البريد الإلكتروني منا. يمكنك إلغاء مشاركتك في أي من قوائم البريد الإلكتروني هذه في أي وقت عن طريق النقر فوق رابط إلغاء الاشتراك أو خيار إلغاء الاشتراك الآخر المضمن في البريد الإلكتروني المعني. \n نحن نرسل رسائل البريد الإلكتروني فقط إلى الأشخاص الذين سمحوا لنا بالاتصال بهم ، إما بشكل مباشر أو من خلال طرف ثالث. نحن لا نرسل رسائل بريد إلكتروني تجارية غير مرغوب فيها ، لأننا نكره البريد العشوائي مثلك تمامًا. من خلال إرسال عنوان بريدك الإلكتروني ، فإنك توافق أيضًا على السماح لنا باستخدام عنوان بريدك الإلكتروني لاستهداف جمهور العملاء على مواقع مثل Facebook ، حيث نعرض إعلانات مخصصة لأشخاص محددين قاموا بالاشتراك لتلقي الاتصالات منا. \n سيتم استخدام عناوين البريد الإلكتروني المقدمة فقط من خلال صفحة معالجة الطلب لغرض وحيد هو إرسال المعلومات والتحديثات المتعلقة بطلبك. ومع ذلك ، إذا كنت قد قدمت لنا نفس البريد الإلكتروني من خلال طريقة أخرى ، فقد نستخدمه لأي من الأغراض المذكورة في هذه السياسة. \n ملاحظة: إذا كنت ترغب في أي وقت في إلغاء الاشتراك من تلقي رسائل البريد الإلكتروني المستقبلية ، فإننا نقوم بتضمين إرشادات مفصلة لإلغاء الاشتراك في أسفل كل بريد إلكتروني."
} }
}, },
"how_long_keep_information": { "how_long_keep_information": {
"title": { "title": {
"en": "How Long Do We Keep Your Information?", "en": "How Long Do We Keep Your Information?",
"ar": "" "ar": "كم من الوقت نحتفظ بمعلوماتك؟"
}, },
"text": { "text": {
"en": "We keep your information only so long as we need it to provide EnCoach to you and fulfil the purposes described in this policy. This is also the case for anyone that we share your information with and who carries out services on our behalf. When we no longer need to use your information and there is no need for us to keep it to comply with our legal or regulatory obligations, well either remove it from our systems or depersonalize it so that we can't identify you.", "en": "We keep your information only so long as we need it to provide EnCoach to you and fulfil the purposes described in this policy. This is also the case for anyone that we share your information with and who carries out services on our behalf. When we no longer need to use your information and there is no need for us to keep it to comply with our legal or regulatory obligations, well either remove it from our systems or depersonalize it so that we can't identify you.",
"ar": "" "ar": "نحتفظ بمعلوماتك فقط طالما أننا نحتاج إليها لتوفير (إنكوتش) لك وتحقيق الأغراض الموضحة في هذه السياسة. هذا هو الحال أيضًا بالنسبة لأي شخص نشارك معلوماتك معه ويقوم بتنفيذ الخدمات نيابة عنا. عندما لا نحتاج بعد الآن إلى استخدام معلوماتك ولا توجد حاجة لنا للاحتفاظ بها للامتثال لالتزاماتنا القانونية أو التنظيمية ، فسنقوم إما بإزالتها من أنظمتنا أو نزع طابعها الشخصي حتى لا نتمكن من التعرف عليك"
} }
}, },
"protect_information": { "protect_information": {
"title": { "title": {
"en": "How Do We Protect Your Information?", "en": "How Do We Protect Your Information?",
"ar": "" "ar": "كيف نحمي بياناتك؟"
}, },
"text": { "text": {
"en": "We implement a variety of security measures to maintain the safety of your personal information when you place an order or enter, submit, or access your personal information. We offer the use of a secure server. All supplied sensitive/credit information is transmitted via Secure Socket Layer (SSL) technology and then encrypted into our Payment gateway providers database only to be accessible by those authorized with special access rights to such systems, and are required to keep the information confidential. After a transaction, your private information (credit cards, social security numbers, financials, etc.) is never kept on file. We cannot, however, ensure or warrant the absolute security of any information you transmit to EnCoach or guarantee that your information on the Service may not be accessed, disclosed, altered, or destroyed by a breach of any of our physical, technical, or managerial safeguards.", "en": "We implement a variety of security measures to maintain the safety of your personal information when you place an order or enter, submit, or access your personal information. We offer the use of a secure server. All supplied sensitive/credit information is transmitted via Secure Socket Layer (SSL) technology and then encrypted into our Payment gateway providers database only to be accessible by those authorized with special access rights to such systems, and are required to keep the information confidential. After a transaction, your private information (credit cards, social security numbers, financials, etc.) is never kept on file. We cannot, however, ensure or warrant the absolute security of any information you transmit to EnCoach or guarantee that your information on the Service may not be accessed, disclosed, altered, or destroyed by a breach of any of our physical, technical, or managerial safeguards.",
"ar": "" "ar": "نقوم بتنفيذ مجموعة متنوعة من تدابير الأمان للحفاظ على سلامة معلوماتك الشخصية عندما تقوم بطلب أو إدخال أو تقديم أو الوصول إلى معلوماتك الشخصية. نحن نوفر استخدام خادم آمن. يتم إرسال جميع المعلومات الحساسة / المعلومات المالية عبر تكنولوجيا \"Secure Socket Layer\" (SSL) ثم يتم تشفيرها في قاعدة بيانات موفري بوابة الدفع لدينا فقط ليتمكن من الوصول إليها أولئك المخول لهم الوصول الخاص إلى هذه الأنظمة ويتعين عليهم الحفاظ على سرية المعلومات. بعد إجراء عملية تحويل، لا يتم الاحتفاظ بمعلوماتك الخاصة (بطاقات الائتمان، أرقام الضمان الاجتماعي، المعلومات المالية، إلخ) في سجلاتنا. ومع ذلك، لا يمكننا ضمان الأمان المطلق لأي معلومات ترسلها إلى إنكوتش أو ضمان عدم الوصول إلى معلوماتك على الخدمة أو الكشف عنها أو تعديلها أو تدميرها عن طريق اختراق أي من تدابير الحماية البدنية أو التقنية أو الإدارية لدينا"
} }
}, },
"information_transferred_countries": { "information_transferred_countries": {
"title": { "title": {
"en": "Could my information be transferred to other countries?", "en": "Could my information be transferred to other countries?",
"ar": "" "ar": "هل يمكن نقل معلوماتي إلى دول أخرى؟"
}, },
"text": { "text": {
"en": "EnCoach is incorporated in Oman. Information collected via our website, through direct interactions with you, or from use of our help services may be transferred from time to time to our offices or personnel, or to third parties, located throughout the world, and may be viewed and hosted anywhere in the world, including countries that may not have laws of general applicability regulating the use and transfer of such data. To the fullest extent allowed by applicable law, by using any of the above, you voluntarily consent to the trans-border transfer and hosting of such information.", "en": "EnCoach is incorporated in Oman. Information collected via our website, through direct interactions with you, or from use of our help services may be transferred from time to time to our offices or personnel, or to third parties, located throughout the world, and may be viewed and hosted anywhere in the world, including countries that may not have laws of general applicability regulating the use and transfer of such data. To the fullest extent allowed by applicable law, by using any of the above, you voluntarily consent to the trans-border transfer and hosting of such information.",
"ar": "" "ar": "تم تأسيس (إنكوتش) في سلطنة عمان. المعلومات التي يتم جمعها عبر موقعنا / تطبيقنا ، من خلال التفاعلات المباشرة معك ، أو من استخدام خدمات المساعدة الخاصة بنا قد يتم نقلها من وقت لآخر إلى مكاتبنا أو موظفينا ، أو إلى أطراف ثالثة ، موجودة في جميع أنحاء العالم ، ويمكن عرضها واستضافتها في أي مكان في العالم ، بما في ذلك البلدان التي قد لا يكون لديها قوانين قابلة للتطبيق العام تنظم استخدام ونقل هذه البيانات. إلى أقصى حد يسمح به القانون المعمول به ، باستخدام أي مما سبق ، فإنك توافق طواعية على نقل واستضافة هذه المعلومات عبر الحدود."
} }
}, },
"is_information_secure": { "is_information_secure": {
"title": { "title": {
"en": "Is the information collected through the EnCoach Service secure?", "en": "Is the information collected through the EnCoach Service secure?",
"ar": "" "ar": "هل المعلومات التي يتم جمعها من خلال خدمة (إنكوتش) آمنة؟"
}, },
"text": { "text": {
"en": "We take precautions to protect the security of your information. We have physical, electronic, and managerial procedures to help safeguard, prevent unauthorized access, maintain data security, and correctly use your information. However, neither people nor security systems are foolproof, including encryption systems. In addition, people can commit intentional crimes, make mistakes or fail to follow policies. Therefore, while we use reasonable efforts to protect your personal information, we cannot guarantee its absolute security. If applicable law imposes any non-disclaimable duty to protect your personal information, you agree that intentional misconduct will be the standards used to measure our compliance with that duty.", "en": "We take precautions to protect the security of your information. We have physical, electronic, and managerial procedures to help safeguard, prevent unauthorized access, maintain data security, and correctly use your information. However, neither people nor security systems are foolproof, including encryption systems. In addition, people can commit intentional crimes, make mistakes or fail to follow policies. Therefore, while we use reasonable efforts to protect your personal information, we cannot guarantee its absolute security. If applicable law imposes any non-disclaimable duty to protect your personal information, you agree that intentional misconduct will be the standards used to measure our compliance with that duty.",
"ar": "" "ar": "نتخذ الاحتياطات اللازمة لحماية أمن معلوماتك. لدينا إجراءات مادية وإلكترونية وإدارية للمساعدة في الحماية ومنع الوصول غير المصرح به والحفاظ على أمان البيانات واستخدام معلوماتك بشكل صحيح. ومع ذلك ، لا الأشخاص ولا أنظمة الأمان مضمونة ، بما في ذلك أنظمة التشفير. بالإضافة إلى ذلك ، يمكن للأشخاص ارتكاب جرائم متعمدة أو ارتكاب الأخطاء أو عدم اتباع السياسات. لذلك ، بينما نبذل جهودًا معقولة لحماية معلوماتك الشخصية ، لا يمكننا ضمان أمنها المطلق. إذا كان القانون المعمول به يفرض أي واجب غير قابل للتنازل لحماية معلوماتك الشخصية ، فإنك توافق على أن سوء السلوك المتعمد سيكون هو المعايير المستخدمة لقياس امتثالنا لهذا الواجب."
} }
}, },
"update_correct_information": { "update_correct_information": {
"title": { "title": {
"en": "Can I update or correct my information?", "en": "Can I update or correct my information?",
"ar": "" "ar": "هل يمكنني تحديث أو تصحيح معلوماتي؟"
}, },
"text": { "text": {
"en": "The rights you have to request updates or corrections to the information EnCoach collects depend on your relationship with EnCoach. Personnel may update or correct their information as detailed in our internal company employment policies.\nCustomers have the right to request the restriction of certain uses and disclosures of personally identifiable information as follows. You can contact us in order to (1) update or correct your personally identifiable information, (2) change your preferences with respect to communications and other information you receive from us, or (3) delete the personally identifiable information maintained about you on our systems (subject to the following paragraph), by cancelling your account. Such updates, corrections, changes and deletions will have no effect on other information that we maintain, or information that we have provided to third parties in accordance with this Privacy Policy prior to such update, correction, change or deletion. To protect your privacy and security, we may take reasonable steps (such as requesting a unique password) to verify your identity before granting you profile access or making corrections. You are responsible for maintaining the secrecy of your unique password and account information at all times.\nYou should be aware that it is not technologically possible to remove each and every record of the information you have provided to us from our system. The need to back up our systems to protect information from inadvertent loss means that a copy of your information may exist in a non-erasable form that will be difficult or impossible for us to locate. Promptly after receiving your request, all personal information stored in databases we actively use, and other readily searchable media will be updated, corrected, changed or deleted, as appropriate, as soon as and to the extent reasonably and technically practicable.\nIf you are an end user and wish to update, delete, or receive any information we have about you, you may do so by contacting the organization of which you are a customer.", "en": "The rights you have to request updates or corrections to the information EnCoach collects depend on your relationship with EnCoach. Personnel may update or correct their information as detailed in our internal company employment policies.\nCustomers have the right to request the restriction of certain uses and disclosures of personally identifiable information as follows. You can contact us in order to (1) update or correct your personally identifiable information, (2) change your preferences with respect to communications and other information you receive from us, or (3) delete the personally identifiable information maintained about you on our systems (subject to the following paragraph), by cancelling your account. Such updates, corrections, changes and deletions will have no effect on other information that we maintain, or information that we have provided to third parties in accordance with this Privacy Policy prior to such update, correction, change or deletion. To protect your privacy and security, we may take reasonable steps (such as requesting a unique password) to verify your identity before granting you profile access or making corrections. You are responsible for maintaining the secrecy of your unique password and account information at all times.\nYou should be aware that it is not technologically possible to remove each and every record of the information you have provided to us from our system. The need to back up our systems to protect information from inadvertent loss means that a copy of your information may exist in a non-erasable form that will be difficult or impossible for us to locate. Promptly after receiving your request, all personal information stored in databases we actively use, and other readily searchable media will be updated, corrected, changed or deleted, as appropriate, as soon as and to the extent reasonably and technically practicable.\nIf you are an end user and wish to update, delete, or receive any information we have about you, you may do so by contacting the organization of which you are a customer.",
"ar": "" "ar": "تعتمد الحقوق التي تمتلكها لطلب تحديثات أو تصحيحات على المعلومات التي تجمعها (إنكوتش) على علاقتك بـ (إنكوتش). يجوز للموظفين تحديث أو تصحيح معلوماتهم على النحو المفصل في سياسات التوظيف الداخلية لشركتنا. \nيحق للمستخدمين ملئ طلب تقييد استخدامات معينة والإفصاح عن معلومات التعريف الشخصية على النحو التالي. \nيمكنك الاتصال بنا من أجل (1) تحديث أو تصحيح معلومات التعريف الشخصية الخاصة بك ، (2) تغيير تفضيلاتك فيما يتعلق بالاتصالات والمعلومات الأخرى التي تتلقاها منا ، أو (3) حذف معلومات التعريف الشخصية المحفوظة عنك على موقعنا الأنظمة (مع مراعاة الفقرة التالية) بإلغاء حسابك. لن يكون لهذه التحديثات والتصحيحات والتغييرات والحذف أي تأثير على المعلومات الأخرى التي نحتفظ بها ، أو المعلومات التي قدمناها لأطراف ثالثة وفقًا لسياسة الخصوصية هذه قبل هذا التحديث أو التصحيح أو التغيير أو الحذف. لحماية خصوصيتك وأمانك ، قد نتخذ خطوات معقولة (مثل طلب كلمة مرور فريدة) للتحقق من هويتك قبل منحك حق الوصول إلى ملفك الشخصي أو إجراء تصحيحات. أنت مسؤول عن الحفاظ على سرية كلمة المرور الفريدة ومعلومات الحساب في جميع الأوقات. \nيجب أن تدرك أنه ليس من الممكن تقنيًا إزالة كل سجل من المعلومات التي قدمتها إلينا من نظامنا. الحاجة إلى نسخ أنظمتنا احتياطيًا لحماية المعلومات من الفقد غير المقصود يعني أن نسخة من معلوماتك قد تكون موجودة في شكل غير قابل للمسح يصعب علينا أو يتعذر علينا تحديد موقعه. فور تلقي طلبك ، سيتم تحديث جميع المعلومات الشخصية المخزنة في قواعد البيانات التي نستخدمها بنشاط ، وغيرها من الوسائط القابلة للبحث بسهولة ، أو تصحيحها ، أو تغييرها أو حذفها ، حسب الاقتضاء ، في أقرب وقت وإلى الحد المعقول والعملي تقنيًا. إذا كنت مستخدمًا نهائيًا وترغب في تحديث أو حذف أو تلقي أي معلومات لدينا عنك ، فيمكنك القيام بذلك عن طريق الاتصال بالمنظمة التي أنت عميل لها."
} }
}, },
"personnel": { "personnel": {
"title": { "title": {
"en": "Personnel", "en": "Personnel",
"ar": "" "ar": "الموظفين"
}, },
"text": { "text": {
"en": "If you are a EnCoach worker or applicant, we collect information you voluntarily provide to us. We use the information collected for Human Resources purposes in order to administer benefits to workers and screen applicants.\nYou may contact us in order to (1) update or correct your information, (2) change your preferences with respect to communications and other information you receive from us, or (3) receive a record of the information we have relating to you. Such updates, corrections, changes and deletions will have no effect on other information that we maintain, or information that we have provided to third parties in accordance with this Privacy Policy prior to such update, correction, change or deletion.", "en": "If you are a EnCoach worker or applicant, we collect information you voluntarily provide to us. We use the information collected for Human Resources purposes in order to administer benefits to workers and screen applicants.\nYou may contact us in order to (1) update or correct your information, (2) change your preferences with respect to communications and other information you receive from us, or (3) receive a record of the information we have relating to you. Such updates, corrections, changes and deletions will have no effect on other information that we maintain, or information that we have provided to third parties in accordance with this Privacy Policy prior to such update, correction, change or deletion.",
"ar": "" "ar": "إذا كنت موظفًا أو مقدم طلب في (إنكوتش) ، فإننا نجمع المعلومات التي تقدمها لنا طواعية. نستخدم المعلومات التي تم جمعها لأغراض الموارد البشرية من أجل إدارة المزايا للعمال وفحص المتقدمين. يمكنك الاتصال بنا من أجل (1) تحديث أو تصحيح معلوماتك ، (2) تغيير تفضيلاتك فيما يتعلق بالاتصالات والمعلومات الأخرى التي تتلقاها منا ، أو (3) تلقي سجل بالمعلومات التي لدينا المتعلقة بك. لن يكون لهذه التحديثات والتصحيحات والتغييرات والحذف أي تأثير على المعلومات الأخرى التي نحتفظ بها ، أو المعلومات التي قدمناها لأطراف ثالثة وفقًا لسياسة الخصوصية هذه قبل هذا التحديث أو التصحيح أو التغيير أو الحذف."
} }
}, },
"sale_of_business": { "sale_of_business": {
"title": { "title": {
"en": "Sale of Business", "en": "Sale of Business",
"ar": "" "ar": "بيع العمل"
}, },
"text": { "text": {
"en": "We reserve the right to transfer information to a third party in the event of a sale, merger or other transfer of all or substantially all of the assets of EnCoach or any of its Corporate Affiliates (as defined herein), or that portion of EnCoach or any of its Corporate Affiliates to which the Service relates, or in the event that we discontinue our business or file a petition or have filed against us a petition in bankruptcy, reorganization or similar proceeding, provided that the third party agrees to adhere to the terms of this Privacy Policy.", "en": "We reserve the right to transfer information to a third party in the event of a sale, merger or other transfer of all or substantially all of the assets of EnCoach or any of its Corporate Affiliates (as defined herein), or that portion of EnCoach or any of its Corporate Affiliates to which the Service relates, or in the event that we discontinue our business or file a petition or have filed against us a petition in bankruptcy, reorganization or similar proceeding, provided that the third party agrees to adhere to the terms of this Privacy Policy.",
"ar": "" "ar": "نحتفظ بالحق في نقل المعلومات إلى طرف ثالث في حالة البيع أو الدمج أو النقل الآخر لجميع أو جميع أصول (إنكوتش) أو أي من الشركات التابعة لها (كما هو محدد هنا) ، أو ذلك الجزء من (إنكوتش) أو أي من الشركات التابعة لها التي تتعلق بها الخدمة ، أو في حالة توقفنا عن عملنا أو تقديم التماس أو تقديم التماس ضدنا في حالة إفلاس أو إعادة تنظيم أو إجراء مشابه ، شريطة أن يوافق الطرف الثالث على الالتزام بالشروط من سياسة الخصوصية هذه."
} }
}, },
"affiliates": { "affiliates": {
"title": { "title": {
"en": "Affiliates", "en": "Affiliates",
"ar": "" "ar": "المؤسسات التابعة"
}, },
"text": { "text": {
"en": "We may disclose information (including personal information) about you to our Corporate Affiliates. For purposes of this Privacy Policy, \"Corporate Affiliate\" means any person or entity which directly or indirectly controls, is controlled by or is under common control with EnCoach, whether by ownership or otherwise. Any information relating to you that we provide to our Corporate Affiliates will be treated by those Corporate Affiliates in accordance with the terms of this Privacy Policy.", "en": "We may disclose information (including personal information) about you to our Corporate Affiliates. For purposes of this Privacy Policy, \"Corporate Affiliate\" means any person or entity which directly or indirectly controls, is controlled by or is under common control with EnCoach, whether by ownership or otherwise. Any information relating to you that we provide to our Corporate Affiliates will be treated by those Corporate Affiliates in accordance with the terms of this Privacy Policy.",
"ar": "" "ar": "قد نكشف عن معلومات (بما في ذلك المعلومات الشخصية) عنك إلى الشركات التابعة لنا. لأغراض سياسة الخصوصية هذه ، تعني \"الشركة التابعة للشركة\" أي شخص أو كيان يتحكم بشكل مباشر أو غير مباشر أو يتحكم فيه أو يخضع لسيطرة مشتركة مع (إنكوتش) ، سواء عن طريق الملكية أو غير ذلك. سيتم التعامل مع أي معلومات تتعلق بك نقدمها إلى الشركات التابعة لنا من قبل تلك الشركات التابعة وفقًا لشروط سياسة الخصوصية هذه"
} }
}, },
"governing_law": { "governing_law": {
"title": { "title": {
"en": "Governing Law", "en": "Governing Law",
"ar": "" "ar": "القانون الحاكم"
}, },
"text": { "text": {
"en": "This Privacy Policy is governed by the laws of Oman without regard to its conflict of laws provision. You consent to the exclusive jurisdiction of the courts in connection with any action or dispute arising between the parties under or in connection with this Privacy Policy except for those individuals who may have rights to make claims under Privacy Shield, or the Swiss-US framework.\nThe laws of Oman, excluding its conflicts of law rules, shall govern this Agreement and your use of the website/app. Your use of the website/app may also be subject to other local, state, national, or international laws.\nBy using EnCoach or contacting us directly, you signify your acceptance of this Privacy Policy. If you do not agree to this Privacy Policy, you should not engage with our website, or use our services. Continued use of the website, direct engagement with us, or following the posting of changes to this Privacy Policy that do not significantly affect the use or disclosure of your personal information will mean that you accept those changes.", "en": "This Privacy Policy is governed by the laws of Oman without regard to its conflict of laws provision. You consent to the exclusive jurisdiction of the courts in connection with any action or dispute arising between the parties under or in connection with this Privacy Policy except for those individuals who may have rights to make claims under Privacy Shield, or the Swiss-US framework.\nThe laws of Oman, excluding its conflicts of law rules, shall govern this Agreement and your use of the website/app. Your use of the website/app may also be subject to other local, state, national, or international laws.\nBy using EnCoach or contacting us directly, you signify your acceptance of this Privacy Policy. If you do not agree to this Privacy Policy, you should not engage with our website, or use our services. Continued use of the website, direct engagement with us, or following the posting of changes to this Privacy Policy that do not significantly affect the use or disclosure of your personal information will mean that you accept those changes.",
"ar": "" "ar": "تخضع سياسة الخصوصية هذه لقوانين سلطنة عمان بغض النظر عن تعارضها مع أحكام القوانين. أنت توافق على الاختصاص القضائي الحصري للمحاكم فيما يتعلق بأي إجراء أو نزاع ينشأ بين الأطراف بموجب أو فيما يتعلق بسياسة الخصوصية هذه. \n تحكم قوانين سلطنة عمان ، باستثناء تعارضها مع قواعد القانون ، هذه الاتفاقية واستخدامك للموقع / التطبيق. قد يخضع استخدامك للموقع / التطبيق أيضًا لقوانين محلية أو وطنية أو وطنية أو دولية أخرى. \n باستخدام (إنكوتش) أو الاتصال بنا مباشرة ، فإنك تقر بموافقتك على سياسة الخصوصية هذه. إذا كنت لا توافق على سياسة الخصوصية هذه ، فلا يجب عليك التعامل مع موقعنا الإلكتروني أو استخدام خدماتنا. إن الاستمرار في استخدام الموقع الإلكتروني ، أو المشاركة المباشرة معنا ، أو متابعة نشر التغييرات على سياسة الخصوصية هذه التي لا تؤثر بشكل كبير على استخدام أو الكشف عن معلوماتك الشخصية يعني أنك تقبل هذه التغييرات"
} }
}, },
"consent": { "consent": {
"title": { "title": {
"en": "Your Consent", "en": "Your Consent",
"ar": "" "ar": "موافقتك"
}, },
"text": { "text": {
"en": "We've updated our Privacy Policy to provide you with complete transparency into what is being set when you visit our site and how it's being used. By using our website/app, registering an account, or making a purchase, you hereby consent to our Privacy Policy and agree to its terms.", "en": "We've updated our Privacy Policy to provide you with complete transparency into what is being set when you visit our site and how it's being used. By using our website/app, registering an account, or making a purchase, you hereby consent to our Privacy Policy and agree to its terms.",
"ar": "" "ar": "لقد قمنا بتحديث سياسة الخصوصية الخاصة بنا لتزويدك بشفافية كاملة حول ما يتم تعيينه عند زيارة موقعنا وكيفية استخدامه. باستخدام موقعنا / تطبيقنا أو تسجيل حساب أو إجراء عملية شراء ، فإنك بذلك توافق على سياسة الخصوصية الخاصة بنا وتوافق على شروطها."
} }
}, },
"other_websites": { "other_websites": {
"title": { "title": {
"en": "Links to Other Websites", "en": "Links to Other Websites",
"ar": "" "ar": "روابط لمواقع أخرى"
}, },
"text": { "text": {
"en": "This Privacy Policy applies only to the Services. The Services may contain links to other websites not operated or controlled by EnCoach. We are not responsible for the content, accuracy or opinions expressed in such websites, and such websites are not investigated, monitored or checked for accuracy or completeness by us. Please remember that when you use a link to go from the Services to another website, our Privacy Policy is no longer in effect. Your browsing and interaction on any other website, including those that have a link on our platform, is subject to that website's own rules and policies. Such third parties may use their own cookies or other methods to collect information about you.", "en": "This Privacy Policy applies only to the Services. The Services may contain links to other websites not operated or controlled by EnCoach. We are not responsible for the content, accuracy or opinions expressed in such websites, and such websites are not investigated, monitored or checked for accuracy or completeness by us. Please remember that when you use a link to go from the Services to another website, our Privacy Policy is no longer in effect. Your browsing and interaction on any other website, including those that have a link on our platform, is subject to that website's own rules and policies. Such third parties may use their own cookies or other methods to collect information about you.",
"ar": "" "ar": "تنطبق سياسة الخصوصية هذه على الخدمات فقط. قد تحتوي الخدمات على روابط لمواقع أخرى لا تديرها أو تتحكم فيها (إنكوتش). نحن لسنا مسؤولين عن المحتوى أو الدقة أو الآراء المعبر عنها في مثل هذه المواقع ، ولا نقوم بالتحقيق في هذه المواقع أو مراقبتها أو التحقق من دقتها أو اكتمالها. يرجى تذكر أنه عند استخدام رابط للانتقال من الخدمات إلى موقع ويب آخر ، فإن سياسة الخصوصية الخاصة بنا لم تعد سارية. يخضع تصفحك وتفاعلك على أي موقع ويب آخر ، بما في ذلك المواقع التي تحتوي على رابط على نظامنا الأساسي ، لقواعد وسياسات هذا الموقع. قد تستخدم هذه الأطراف الثالثة ملفات تعريف الارتباط الخاصة بها أو طرق أخرى لجمع معلومات عنك."
} }
}, },
"advertising": { "advertising": {
"title": { "title": {
"en": "Advertising", "en": "Advertising",
"ar": "" "ar": "الدعايا والإعلان"
}, },
"text": { "text": {
"en": "This website/app may contain third party advertisements and links to third party sites. EnCoach does not make any representation as to the accuracy or suitability of any of the information contained in those advertisements or sites and does not accept any responsibility or liability for the conduct or content of those advertisements and sites and the offerings made by the third parties.\nAdvertising keeps EnCoach and many of the websites and services you use free of charge. We work hard to make sure that ads are safe, unobtrusive, and as relevant as possible.\nThird party advertisements and links to other sites where goods or services are advertised are not endorsements or recommendations by EnCoach of the third party sites, goods or services. EnCoach takes no responsibility for the content of any of the ads, promises made, or the quality/reliability of the products or services offered in all advertisements.", "en": "This website/app may contain third party advertisements and links to third party sites. EnCoach does not make any representation as to the accuracy or suitability of any of the information contained in those advertisements or sites and does not accept any responsibility or liability for the conduct or content of those advertisements and sites and the offerings made by the third parties.\nAdvertising keeps EnCoach and many of the websites and services you use free of charge. We work hard to make sure that ads are safe, unobtrusive, and as relevant as possible.\nThird party advertisements and links to other sites where goods or services are advertised are not endorsements or recommendations by EnCoach of the third party sites, goods or services. EnCoach takes no responsibility for the content of any of the ads, promises made, or the quality/reliability of the products or services offered in all advertisements.",
"ar": "" "ar": "قد يحتوي هذا الموقع / التطبيق على إعلانات وروابط خاصة بطرف ثالث. لا تقدم (إنكوتش) أي تمثيل فيما يتعلق بدقة أو ملاءمة أي من المعلومات الواردة في تلك الإعلانات أو المواقع ولا تتحمل أي مسؤولية أو التزام عن سلوك أو محتوى تلك الإعلانات والمواقع والعروض المقدمة من الأطراف الثالثة. \n تحتفظ الإعلانات بـ (إنكوتش) والعديد من مواقع الويب والخدمات التي تستخدمها مجانًا. نحن نعمل بجد للتأكد من أن الإعلانات آمنة وغير مزعجة وذات صلة قدر الإمكان.\nلا تُعد إعلانات وروابط الجهات الخارجية لمواقع أخرى حيث يتم الإعلان عن سلع أو خدمات مصادقات أو توصيات من موقع (إنكوتش) لمواقع أو سلع أو خدمات الجهات الخارجية. لا تتحمل (إنكوتش) أي مسؤولية عن محتوى أي من الإعلانات أو الوعود المقدمة أو جودة / موثوقية المنتجات أو الخدمات المقدمة في جميع الإعلانات."
} }
}, },
"cookies_advertising": { "cookies_advertising": {
"title": { "title": {
"en": "Cookies for Advertising", "en": "Cookies for Advertising",
"ar": "" "ar": "ملفات تعريف الارتباط للإعلان"
}, },
"text": { "text": {
"en": "These cookies collect information over time about your online activity on the website/app and other online services to make online advertisements more relevant and effective to you. This is known as interest-based advertising. They also perform functions like preventing the same ad from continuously reappearing and ensuring that ads are properly displayed for advertisers. Without cookies, it's really hard for an advertiser to reach its audience, or to know how many ads were shown and how many clicks they received.", "en": "These cookies collect information over time about your online activity on the website/app and other online services to make online advertisements more relevant and effective to you. This is known as interest-based advertising. They also perform functions like preventing the same ad from continuously reappearing and ensuring that ads are properly displayed for advertisers. Without cookies, it's really hard for an advertiser to reach its audience, or to know how many ads were shown and how many clicks they received.",
"ar": "" "ar": "تجمع ملفات تعريف الارتباط هذه معلومات بمرور الوقت حول نشاطك عبر الإنترنت على موقع الويب / التطبيق والخدمات الأخرى عبر الإنترنت لجعل الإعلانات عبر الإنترنت أكثر صلة وفعالية بالنسبة لك. يُعرف هذا باسم الإعلانات القائمة على الاهتمامات. كما أنها تؤدي وظائف مثل منع نفس الإعلان من الظهور بشكل مستمر وضمان عرض الإعلانات بشكل صحيح للمعلنين. بدون ملفات تعريف الارتباط ، يصعب حقًا على المعلن الوصول إلى جمهوره ، أو معرفة عدد الإعلانات التي تم عرضها وعدد النقرات التي تلقوها."
} }
}, },
"cookies": { "cookies": {
"title": { "title": {
"en": "Cookies", "en": "Cookies",
"ar": "" "ar": "ملف تعريف الارتباط"
}, },
"text": { "text": {
"en": "EnCoach uses \"Cookies\" to identify the areas of our website that you have visited. A Cookie is a small piece of data stored on your computer or mobile device by your web browser. We use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously. Most web browsers can be set to disable the use of Cookies. However, if you disable Cookies, you may not be able to access functionality on our website correctly or at all. We never place Personally Identifiable Information in Cookies.", "en": "EnCoach uses \"Cookies\" to identify the areas of our website that you have visited. A Cookie is a small piece of data stored on your computer or mobile device by your web browser. We use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously. Most web browsers can be set to disable the use of Cookies. However, if you disable Cookies, you may not be able to access functionality on our website correctly or at all. We never place Personally Identifiable Information in Cookies.",
"ar": "" "ar": "تستخدم (إنكوتش) \"ملفات تعريف الارتباط\" لتحديد مناطق موقعنا على الويب التي قمت بزيارتها. ملف تعريف الارتباط هو جزء صغير من البيانات المخزنة على جهاز الكمبيوتر أو الجهاز المحمول الخاص بك بواسطة متصفح الويب الخاص بك. \n نحن نستخدم ملفات تعريف الارتباط لتحسين أداء ووظائف موقعنا / تطبيقنا ولكنها ليست ضرورية لاستخدامها. \n ومع ذلك ، بدون ملفات تعريف الارتباط هذه ، قد تصبح بعض الوظائف مثل مقاطع الفيديو غير متاحة أو قد يُطلب منك إدخال تفاصيل تسجيل الدخول الخاصة بك في كل مرة تزور فيها موقع الويب / التطبيق حيث لن نتمكن من تذكر أنك قمت بتسجيل الدخول مسبقًا. \n يمكن ضبط معظم متصفحات الويب لتعطيل استخدام ملفات تعريف الارتباط. ومع ذلك ، إذا قمت بتعطيل ملفات تعريف الارتباط ، فقد لا تتمكن من الوصول إلى الوظائف الموجودة على موقعنا بشكل صحيح أو على الإطلاق. لا نضع أبدًا معلومات تعريف شخصية في ملفات تعريف الارتباط."
} }
}, },
"blocking_cookies": { "blocking_cookies": {
"title": { "title": {
"en": "Blocking and disabling cookies and similar technologies", "en": "Blocking and disabling cookies and similar technologies",
"ar": "" "ar": "حظر وتعطيل ملفات تعريف الارتباط والتقنيات المشابهة"
}, },
"text": { "text": {
"en": "Wherever you're located you may also set your browser to block cookies and similar technologies, but this action may block our essential cookies and prevent our website from functioning properly, and you may not be able to fully utilize all of its features and services. You should also be aware that you may also lose some saved information (e.g. saved login details, site preferences) if you block cookies on your browser. Different browsers make different controls available to you. Disabling a cookie or category of cookie does not delete the cookie from your browser, you will need to do this yourself from within your browser, you should visit your browser's help menu for more information.", "en": "Wherever you're located you may also set your browser to block cookies and similar technologies, but this action may block our essential cookies and prevent our website from functioning properly, and you may not be able to fully utilize all of its features and services. You should also be aware that you may also lose some saved information (e.g. saved login details, site preferences) if you block cookies on your browser. Different browsers make different controls available to you. Disabling a cookie or category of cookie does not delete the cookie from your browser, you will need to do this yourself from within your browser, you should visit your browser's help menu for more information.",
"ar": "" "ar": "أينما كنت ، يمكنك أيضًا ضبط متصفحك لحظر ملفات تعريف الارتباط والتقنيات المماثلة ، ولكن هذا الإجراء قد يحظر ملفات تعريف الارتباط الأساسية ويمنع موقعنا الإلكتروني من العمل بشكل صحيح ، وقد لا تتمكن من الاستفادة الكاملة من جميع ميزاته وخدماته. \n يجب أن تدرك أيضًا أنك قد تفقد أيضًا بعض المعلومات المحفوظة (مثل تفاصيل تسجيل الدخول المحفوظة وتفضيلات الموقع) إذا قمت بحظر ملفات تعريف الارتباط على متصفحك. تتيح لك المتصفحات المختلفة عناصر تحكم مختلفة. \n لا يؤدي تعطيل ملف تعريف الارتباط أو فئة من ملفات تعريف الارتباط إلى حذف ملف تعريف الارتباط من متصفحك ، وستحتاج إلى القيام بذلك بنفسك من داخل متصفحك ، ويجب عليك زيارة قائمة المساعدة الخاصة بالمستعرض للحصول على مزيد من المعلومات."
} }
}, },
"remarketing_services": { "remarketing_services": {
"title": { "title": {
"en": "Remarketing Services", "en": "Remarketing Services",
"ar": "" "ar": "خدمات تجديد النشاط التسويقي"
}, },
"text": { "text": {
"en": "We use remarketing services. What Is Remarketing? In digital marketing, remarketing (or retargeting) is the practice of serving ads across the internet to people who have already visited your website. It allows your company to seem like they're “following” people around the internet by serving ads on the websites and platforms they use most.", "en": "We use remarketing services. What Is Remarketing? In digital marketing, remarketing (or retargeting) is the practice of serving ads across the internet to people who have already visited your website. It allows your company to seem like they're “following” people around the internet by serving ads on the websites and platforms they use most.",
"ar": "" "ar": "نحن نستخدم خدمات تجديد النشاط التسويقي. ما هو تجديد النشاط التسويقي؟ في التسويق الرقمي ، يُعد تجديد النشاط التسويقي (أو إعادة الاستهداف) ممارسة تقديم الإعلانات عبر الإنترنت إلى الأشخاص الذين زاروا موقعك على الويب بالفعل. يسمح لشركتك بأن تبدو وكأنها \"تتابع\" الأشخاص عبر الإنترنت من خلال عرض الإعلانات على مواقع الويب والأنظمة الأساسية التي يستخدمونها كثيرًا."
} }
}, },
"payment_details": { "payment_details": {
"title": { "title": {
"en": "Payment Details", "en": "Payment Details",
"ar": "" "ar": "تفاصيل الدفع"
}, },
"text": { "text": {
"en": "In respect to any credit card or other payment processing details you have provided us, we commit that this confidential information will be stored in the most secure manner possible.", "en": "In respect to any credit card or other payment processing details you have provided us, we commit that this confidential information will be stored in the most secure manner possible.",
"ar": "" "ar": "فيما يتعلق بأي بطاقة ائتمان أو تفاصيل معالجة الدفع الأخرى التي قدمتها لنا ، فإننا نلتزم بتخزين هذه المعلومات السرية بأكثر الطرق أمانًا قدر الإمكان."
} }
}, },
"kids_privacy": { "kids_privacy": {
"title": { "title": {
"en": "Kids' Privacy", "en": "Kids' Privacy",
"ar": "" "ar": "خصوصية الأطفال"
}, },
"text": { "text": {
"en": "We do not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers.", "en": "We do not address anyone under the age of 12. We do not knowingly collect personally identifiable information from anyone under the age of 12. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 12 without verification of parental consent, We take steps to remove that information from Our servers.",
"ar": "" "ar": "نحن لا نتعامل مع أي شخص يقل عمره عن 12 عامًا. نحن لا نجمع عن عمد معلومات تعريف شخصية من أي شخص يقل عمره عن 12 عامًا. إذا كنت أحد الوالدين أو وصيًا وكنت على علم بأن طفلك قد زودنا ببيانات شخصية ، فيرجى الاتصال نحن. إذا علمنا أننا قد جمعنا بيانات شخصية من أي شخص يقل عمره عن 12 عامًا دون التحقق من موافقة الوالدين ، فإننا نتخذ خطوات لإزالة هذه المعلومات من خوادمنا."
} }
}, },
"changes_policy": { "changes_policy": {
"title": { "title": {
"en": "Changes To Our Privacy Policy", "en": "Changes To Our Privacy Policy",
"ar": "" "ar": "التعديل على سياسة الخصوصية"
}, },
"text": { "text": {
"en": "We may change our Service and policies, and we may need to make changes to this Privacy Policy so that they accurately reflect our Service and policies. Unless otherwise required by law, we will notify you (for example, through our Service) before we make changes to this Privacy Policy and give you an opportunity to review them before they go into effect. Then, if you continue to use the Service, you will be bound by the updated Privacy Policy. If you do not want to agree to this or any updated Privacy Policy, you can delete your account.", "en": "We may change our Service and policies, and we may need to make changes to this Privacy Policy so that they accurately reflect our Service and policies. Unless otherwise required by law, we will notify you (for example, through our Service) before we make changes to this Privacy Policy and give you an opportunity to review them before they go into effect. Then, if you continue to use the Service, you will be bound by the updated Privacy Policy. If you do not want to agree to this or any updated Privacy Policy, you can delete your account.",
"ar": "" "ar": "قد نقوم بتغيير خدمتنا وسياساتنا ، وقد نحتاج إلى إجراء تغييرات على سياسة الخصوصية هذه بحيث تعكس خدماتنا وسياساتنا بدقة. ما لم يقتض القانون خلاف ذلك ، سنقوم بإخطارك (على سبيل المثال ، من خلال خدمتنا) قبل إجراء تغييرات على سياسة الخصوصية هذه ونمنحك فرصة لمراجعتها قبل أن تدخل حيز التنفيذ. بعد ذلك ، إذا واصلت استخدام الخدمة ، فسوف تلتزم بسياسة الخصوصية المحدثة. إذا كنت لا تريد الموافقة على سياسة الخصوصية هذه أو أي سياسة خصوصية محدثة ، يمكنك حذف حسابك."
} }
}, },
"third_party_services": { "third_party_services": {
"title": { "title": {
"en": "Third-Party Services", "en": "Third-Party Services",
"ar": "" "ar": "خدمات الطرف الثالث"
}, },
"text": { "text": {
"en": "We may display, include or make available third-party content (including data, information, applications and other products services) or provide links to third-party websites or services (\"Third- Party Services\").\nYou acknowledge and agree that EnCoach shall not be responsible for any Third-Party Services, including their accuracy, completeness, timeliness, validity, copyright compliance, legality, decency, quality or any other aspect thereof. EnCoach does not assume and shall not have any liability or responsibility to you or any other person or entity for any Third-Party Services.\nThird-Party Services and links thereto are provided solely as a convenience to you and you access and use them entirely at your own risk and subject to such third parties' terms and conditions.", "en": "We may display, include or make available third-party content (including data, information, applications and other products services) or provide links to third-party websites or services (\"Third- Party Services\").\nYou acknowledge and agree that EnCoach shall not be responsible for any Third-Party Services, including their accuracy, completeness, timeliness, validity, copyright compliance, legality, decency, quality or any other aspect thereof. EnCoach does not assume and shall not have any liability or responsibility to you or any other person or entity for any Third-Party Services.\nThird-Party Services and links thereto are provided solely as a convenience to you and you access and use them entirely at your own risk and subject to such third parties' terms and conditions.",
"ar": "" "ar": "يجوز لنا عرض محتوى جهة خارجية أو تضمينه أو توفيره (بما في ذلك البيانات والمعلومات والتطبيقات وخدمات المنتجات الأخرى) أو توفير روابط لمواقع أو خدمات الجهات الخارجية (\"خدمات الأطراف الثالثة\").\n أنت تقر وتوافق على أن (إنكوتش) لن تكون مسؤولة عن أي خدمات لأطراف ثالثة ، بما في ذلك دقتها واكتمالها وصلاحيتها وامتثالها لحقوق النشر والشرعية واللياقة والجودة أو أي جانب آخر من جوانبها. \n لا تتحمل (إنكوتش) أي التزام أو مسؤولية تجاهك أو تجاه أي شخص أو كيان آخر ولن تتحمل أي مسؤولية تجاه أي خدمات من جهات خارجية. يتم توفير خدمات الطرف الثالث والروابط الخاصة بها فقط من أجل الراحة لك ويمكنك الوصول إليها واستخدامها بالكامل على مسؤوليتك الخاصة وتخضع لشروط وأحكام هذه الأطراف الثالثة."
} }
}, },
"tracking_technologies": { "tracking_technologies": {
@@ -420,27 +416,31 @@
"list": [ "list": [
{ {
"en": "Google Maps API:\nGoogle Maps API is a robust tool that can be used to create a custom map, a searchable map, check-in functions, display live data synching with location, plan routes, or create a mashup just to name a few.\nGoogle Maps API may collect information from You and from Your Device for security purposes.\nGoogle Maps API collects information that is held in accordance with its Privacy Policy", "en": "Google Maps API:\nGoogle Maps API is a robust tool that can be used to create a custom map, a searchable map, check-in functions, display live data synching with location, plan routes, or create a mashup just to name a few.\nGoogle Maps API may collect information from You and from Your Device for security purposes.\nGoogle Maps API collects information that is held in accordance with its Privacy Policy",
"ar": "" "ar": "واجهة برمجة تطبيقات خرائط جوجل: \nتعد Google Maps API أداة قوية يمكن استخدامها لإنشاء خريطة مخصصة أو خريطة قابلة للبحث أو وظائف تسجيل الوصول أو عرض مزامنة البيانات الحية مع الموقع أو تخطيط المسارات أو إنشاء مزيج على سبيل المثال لا الحصر. \n قد تجمع Google Maps API معلومات منك ومن جهازك لأغراض أمنية. تجمع Google Maps API المعلومات التي يتم الاحتفاظ بها وفقًا لسياسة الخصوصية الخاصة بها"
}, },
{ {
"en": "Cookies:\nWe use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously.", "en": "Cookies:\nWe use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously.",
"ar": "" "ar": "ملف تعريف الارتباط : \n نحن نستخدم ملفات تعريف الارتباط لتحسين أداء ووظائف موقعنا / تطبيقنا ولكنها ليست ضرورية لاستخدامها. ومع ذلك ، بدون ملفات تعريف الارتباط هذه ، قد تصبح بعض الوظائف مثل مقاطع الفيديو غير متاحة أو قد يُطلب منك إدخال تفاصيل تسجيل الدخول الخاصة بك في كل مرة تزور فيها موقع الويب / التطبيق حيث لن نتمكن من تذكر أنك قمت بتسجيل الدخول مسبقًا."
} }
] ]
}, },
"contact": { "contact": {
"title": { "title": {
"en": "Contact Us", "en": "Contact Us",
"ar": "" "ar": "تواصل معنا"
}, },
"text": { "text": {
"en": "Don't hesitate to contact us if you have any questions.", "en": "Don't hesitate to contact us if you have any questions.",
"ar": "" "ar": "لا تتردد في التواصل معنا اذا كان لديك أي سؤال"
}, },
"list": [ "list": [
{ {
"en": "Via Email: support@EnCoach.com", "en": "Via Email: info@EnCoach.com",
"ar": "" "ar": "عبر البريد الإلكتروني : info@encoach.com"
},
{
"en": "Via this Link: https://EnCoach.com",
"ar": "عبر الموقع الإلكتروني https://encoach.com"
} }
] ]
} }

View File

@@ -1,388 +1,388 @@
{ {
"title": { "title": {
"en": "Terms & Conditions", "en": "Terms & Conditions",
"ar": "" "ar": "الشروط والأحكــــام"
}, },
"last_update": { "last_update": {
"en": "Update at 2023-10-22", "en": "Update at 03 Feb 2024",
"ar": "" "ar": "تم تحديثها بتاريخ 3 فبراير 2024"
}, },
"content": { "content": {
"general": { "general": {
"title": { "title": {
"en": "General Terms", "en": "General Terms",
"ar": "" "ar": "الشروط العامة"
}, },
"text": { "text": {
"en": "By accessing and placing an order with EnCoach, you confirm that you are in agreement with and bound by the terms of service contained in the Terms & Conditions outlined below.\nThese terms apply to the entire website and any email or other type of communication between you and EnCoach.\nUnder no circumstances shall EnCoach team be liable for any direct, indirect, special, incidental or consequential damages, including, but not limited to, loss of data or profit, arising out of the use, or the inability to use, the materials on this site, even if EnCoach team or an authorized representative has been advised of the possibility of such damages. If your use of materials from this site results in the need for servicing, repair or correction of equipment or data, you assume any costs thereof. EnCoach will not be responsible for any outcome that may occur during the course of usage of our resources. We reserve the rights to change prices and revise the resources usage policy in any moment. License.\nEnCoach grants you a revocable, non-exclusive, non-transferable, limited license to download, install and use the website/app strictly in accordance with the terms of this Agreement. These Terms & Conditions are a contract between you and EnCoach (referred to in these Terms & Conditions as \"EnCoach\", \"us\", \"we\" or \"our\"), the provider of the EnCoach website and the services accessible from the EnCoach website (which are collectively referred to in these Terms & Conditions as the \"EnCoach Service\").\nYou are agreeing to be bound by these Terms & Conditions. If you do not agree to these Terms & Conditions, please do not use the EnCoach Service. In these Terms & Conditions, \"you\" refers both to you as an individual and to the entity you represent. If you violate any of these Terms & Conditions, we reserve the right to cancel your account or block access to your account without notice.", "en": "By accessing and placing an order with EnCoach, you confirm that you are in agreement with and bound by the terms of service contained in the Terms & Conditions outlined below.\nThese terms apply to the entire website and any email or other type of communication between you and EnCoach.\nUnder no circumstances shall EnCoach team be liable for any direct, indirect, special, incidental or consequential damages, including, but not limited to, loss of data or profit, arising out of the use, or the inability to use, the materials on this site, even if EnCoach team or an authorized representative has been advised of the possibility of such damages. If your use of materials from this site results in the need for servicing, repair or correction of equipment or data, you assume any costs thereof. EnCoach will not be responsible for any outcome that may occur during the course of usage of our resources. We reserve the rights to change prices and revise the resources usage policy in any moment. License.\nEnCoach grants you a revocable, non-exclusive, non-transferable, limited license to download, install and use the website/app strictly in accordance with the terms of this Agreement. These Terms & Conditions are a contract between you and EnCoach (referred to in these Terms & Conditions as \"EnCoach\", \"us\", \"we\" or \"our\"), the provider of the EnCoach website and the services accessible from the EnCoach website (which are collectively referred to in these Terms & Conditions as the \"EnCoach Service\").\nYou are agreeing to be bound by these Terms & Conditions. If you do not agree to these Terms & Conditions, please do not use the EnCoach Service. In these Terms & Conditions, \"you\" refers both to you as an individual and to the entity you represent. If you violate any of these Terms & Conditions, we reserve the right to cancel your account or block access to your account without notice.",
"ar": "" "ar": "عن طريق الوصول إلى الموقع وتقديم طلب عبر إنكوتش، فإنك تؤكد أنك توافق وتلتزم بشروط الخدمة المبينة في الشروط والأحكام المبينة أدناه. \n تنطبق هذه الشروط على الموقع بأكمله وأي بريد إلكتروني أو أي نوع آخر من التواصل بينك وبين إنكوتش. \n بأيي حال من الأحوال، فإن فريق إنكوتش غير مسؤول عن أي أضرار مباشرة أو غير مباشرة أو خاصة أو عرضية أو تبعية، بما في ذلك، على سبيل المثال لا الحصر، فقدان البيانات أو الربح، الناشئة عن الاستخدام أو عدم القدرة على استخدام المواد المتواجدة على هذا الموقع، حتى لو كان فريق إنكوتش أو ممثل مفوض قد نصح بإمكانية حدوث مثل هذه الأضرار. إذا أدى استخدامك للمواد من هذا الموقع إلى الحاجة إلى صيانة أو إصلاح أو تصحيح للمعدات أو البيانات، فإنك تتحمل أي تكاليف ذلك. لن يكون إنكوتش مسؤولًا عن أي نتيجة قد تحدث أثناء استخدامك لمواردنا. نحتفظ بحقوق تغيير الأسعار ومراجعة سياسة استخدام الموارد في أي وقت. يمنحك إنكوتش ترخيصًا قابلاً للإلغاء وغير حصري وغير قابل للنقل ومحدودًا لتنزيل وتثبيت واستخدام الموقع/التطبيق وفقًا لشروط هذه الاتفاقية. هذه الشروط والأحكام هي عقد بينك وبين إنكوتش (المشار إليها في هذه الشروط والأحكام بـ \"إنكوتش\" أو \"نحن\" أو \"نحن\" أو \"لنا\")، مزود موقع إنكوتش والخدمات المتاحة من موقع إنكوتش (التي تشار إليها بشكل جماعي في هذه الشروط والأحكام بـ \"خدمة إنكوتش\"). أنت توافق على الالتزام بشروط وأحكام هذه الاتفاقية. \n إذا لم توافق على شروط وأحكام هذه الاتفاقية، يرجى عدم استخدام خدمة إنكوتش. في هذه الشروط والأحكام، \"أنت\" يشير إلى الفرد والكيان الذي تمثله. إذا انتهكت أي من هذه الشروط والأحكام، فإننا نحتفظ بالحق في إلغاء حسابك أو حظر وصولك إلى حسابك دون إشعار."
} }
}, },
"meaning": { "meaning": {
"title": { "title": {
"en": "Meanings", "en": "Meanings",
"ar": "" "ar": "المعاني والتفسيرات"
}, },
"text": { "text": {
"en": "For this Terms & Conditions:", "en": "For this Terms & Conditions:",
"ar": "" "ar": " لهذه الشروط والأحكام"
}, },
"list": [ "list": [
{ {
"en": "Cookie: small amount of data generated by a website and saved by your web browser. It is used to identify your browser, provide analytics, remember information about you such as your language preference or login information.", "en": "Cookie: small amount of data generated by a website and saved by your web browser. It is used to identify your browser, provide analytics, remember information about you such as your language preference or login information.",
"ar": "" "ar": "ملف تعريف الارتباط: إن الكمية الصغيرة من البيانات التي يتم إنشاؤها بواسطة موقع الويب وحفظها بواسطة متصفح الويب الخاص بك. يتم استخدامه لتحديد متصفحك، وتقديم التحليلات، وتذكر معلومات المرتبطة بك مثل تفضيلات اللغة أو معلومات تسجيل الدخول."
}, },
{ {
"en": "Company: when this policy mentions “Company,” “we,” “us,” or “our,” it refers to muscat Training Institute LLC, (Muscat , Sultanate of Oman) that is responsible for your information under this Terms & Conditions.", "en": "Company: when this policy mentions “Company,” “we,” “us,” or “our,” it refers to Integrated Artificial Intelligence LLC, (Muscat , Sultanate of Oman) that is responsible for your information under this Terms & Conditions.",
"ar": "" "ar": "الشركة: عندما تشير هذه السياسة إلى \"الشركة\" أو \"نحن\" أو \"لنا\" أو \"خاصتنا\"، فإنها تشير إلى شركة الذكاء الاصطناعي المتكامل (مسقط، سلطنة عمان) المسؤولة عن معلوماتك بموجب هذه الشروط والأحكام . "
}, },
{ {
"en": "Country: where EnCoach or the owners/founders of EnCoach are based, in this case is Oman", "en": "Country: where EnCoach or the owners/founders of EnCoach are based, in this case is Oman",
"ar": "" "ar": "البلد: حيث يوجد مقر ( إنكوتش ) أو مالكو / مؤسسو ( إنكوتش )، في هذه الحالة تكون سلطنة عمان."
}, },
{ {
"en": "Device: any internet connected device such as a phone, tablet, computer or any other device that can be used to visit EnCoach and use the services.", "en": "Device: any internet connected device such as a phone, tablet, computer or any other device that can be used to visit EnCoach and use the services.",
"ar": "" "ar": "الجهاز: أي جهاز متصل بالإنترنت مثل الهاتف أو الكمبيوتر اللوحي أو الكمبيوتر أو أي جهاز آخر يمكن استخدامه لزيارة ( إنكوتش ) واستخدام الخدمات."
}, },
{ {
"en": "Service: refers to the service provided by EnCoach as described in the relative terms (if available) and on this platform.", "en": "Service: refers to the service provided by EnCoach as described in the relative terms (if available) and on this platform.",
"ar": "" "ar": "الخدمة: تشير إلى الخدمة التي تقدمها ( إنكوتش ) كما هو موضح في المصطلحات ذات الصلة (إن وجدت) وعلى التطبيق أو الموقع الإلكتروني أو عنا. "
}, },
{ {
"en": "Third-party service: refers to advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you.", "en": "Third-party service: refers to advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you.",
"ar": "" "ar": "خدمة الطرف الثالث: تشير إلى المعلنين والرعاة وشركاء الترويج والتسويق والمتاجر وغيرهم ممن يقدمون المحتوى الخاص بنا أو الذين نعتقد أن منتجاتهم أو خدماتهم قد تهمك مما يعني اي طرف ثالث نتعاقد معه من اجل تقديم الخدمات."
}, },
{ {
"en": "Website: EnCoach's site, which can be accessed via this URL: www.EnCoach.me", "en": "Website: EnCoach's site, which can be accessed via this URL: https://EnCoach.me",
"ar": "" "ar": "موقع الويب: موقع ( إنكوتش ) ، الذي يمكن الوصول إليه عبر عنوان https://encoach.com"
}, },
{ {
"en": "You: a person or entity that is registered with EnCoach to use the Services.", "en": "You: a person or entity that is registered with EnCoach to use the Services.",
"ar": "" "ar": "أنت: شخص أو كيان مسجل في ( إنكوتش ) لاستخدام الخدمات."
} }
] ]
}, },
"restrictions": { "restrictions": {
"title": { "title": {
"en": "Restrictions", "en": "Restrictions",
"ar": "" "ar": "القيود"
}, },
"text": { "text": {
"en": "You agree not to, and you will not permit others to:", "en": "You agree not to, and you will not permit others to:",
"ar": "" "ar": "أنت توافق على عدم القيام بما يلي، ولن تسمح للآخرين بما يلي"
}, },
"list": [ "list": [
{ {
"en": "License, sell, rent, lease, assign, distribute, transmit, host, outsource, disclose or otherwise commercially exploit the website/app or make the platform available to any third party.", "en": "License, sell, rent, lease, assign, distribute, transmit, host, outsource, disclose or otherwise commercially exploit the website/app or make the platform available to any third party.",
"ar": "" "ar": "الترخيص أو البيع أو الإيجار أو التأجير أو التنازل أو التوزيع أو الإرسال أو الاستضافة أو الاستعانة بمصادر خارجية أو الكشف عن الموقع / التطبيق تجاريًا أو استغلاله تجاريًا أو إتاحة النظام لأي طرف ثالث."
}, },
{ {
"en": "Modify, make derivative works of, disassemble, decrypt, reverse compile or reverse engineer any part of the website/app.", "en": "Modify, make derivative works of, disassemble, decrypt, reverse compile or reverse engineer any part of the website/app.",
"ar": "" "ar": "تعديل أو عمل أعمال اشتقاقية أو تفكيك أو فك تشفير أو عكس ترجمة أو عكس هندسة أي جزء من الموقع / التطبيق"
}, },
{ {
"en": "Remove, alter or obscure any proprietary notice (including any notice of copyright or trademark) of EnCoach or its affiliates, partners, suppliers or the licensors of the website/app.", "en": "Remove, alter or obscure any proprietary notice (including any notice of copyright or trademark) of EnCoach or its affiliates, partners, suppliers or the licensors of the website/app.",
"ar": "" "ar": "إزالة أو تغيير أو طمس أي إشعار ملكية (بما في ذلك أي إشعار بحقوق النشر أو العلامة التجارية) لـ ( إنكوتش ) أو الشركات التابعة لها أو الشركاء أو الموردين أو المرخصين للموقع / التطبيق."
} }
] ]
}, },
"return_refund": { "return_refund": {
"title": { "title": {
"en": "Return and Refund Policy", "en": "Return and Refund Policy",
"ar": "" "ar": "سياسة الاسترجاع والاسترداد"
}, },
"text": { "text": {
"en": "Thanks for shopping at EnCoach. We appreciate the fact that you like to buy our service. We also want to make sure you have a rewarding experience while you're exploring, evaluating, and purchasing our products.\nAs with any shopping experience, there are terms and conditions that apply to transactions at EnCoach. We'll be as brief as our attorneys will allow.\n\nThe main thing to remember is that by placing an order or making a purchase at EnCoach, you agree to the terms along with EnCoach's Privacy Policy.\nIf, for any reason, You are not completely satisfied with any good or service that we provide, don't hesitate to contact us and we will discuss any of the issues you are going through with our product.", "en": "Thanks for Using EnCoach. We appreciate the fact that you like to buy our service. We also want to make sure you have a rewarding experience while you're exploring, evaluating, and purchasing our products.\nAs with any shopping experience, there are terms and conditions that apply to transactions at EnCoach. We'll be as brief as our attorneys will allow.\n\nThe main thing to remember is that by placing an order or making a purchase at EnCoach, you agree to the terms along with EnCoach's Privacy Policy.\nIf, for any reason, You are not completely satisfied with any good or service that we provide, don't hesitate to contact us and we will discuss any of the issues you are going through with our product.",
"ar": "" "ar": "شكرًا لاستخدامك إنكوتش. نقدر حقًا شغفك لشراء خدمتنا. نرغب أيضًا في التأكد من أنك ستحظى بتجربة مرضية أثناء استكشافك وتقييمك وشراءك لمنتجاتنا. \n كما هو الحال في أي تجربة تسوق، هناك شروط وأحكام تنطبق على المعاملات في إنكوتش. سنكون موجزين بقدر ما نستطيع\n. الشيء الأساسي الذي يجب تذكره هو أنه من خلال تقديم طلب أو شراء منتج في إنكوتش، فإنك توافق على الشروط بالإضافة إلى سياسة الخصوصية لإنكوتش. \n إذا، لأي سبب من الأسباب، لم تكن راضيًا تمامًا عن أي سلعة أو خدمة نقدمها، فلا تتردد في الاتصال بنا، وسنناقش أي مشكلة تواجهك مع منتجنا."
} }
}, },
"suggestions": { "suggestions": {
"title": { "title": {
"en": "Your Suggestions", "en": "Your Suggestions",
"ar": "" "ar": "مقترحاتك"
}, },
"text": { "text": {
"en": "Any feedback, comments, ideas, improvements or suggestions (collectively, \"Suggestions\") provided by you to EnCoach with respect to the website/app shall remain the sole and exclusive property of EnCoach.\nEnCoach shall be free to use, copy, modify, publish, or redistribute the Suggestions for any purpose and in any way without any credit or any compensation to you.", "en": "Any feedback, comments, ideas, improvements or suggestions (collectively, \"Suggestions\") provided by you to EnCoach with respect to the website/app shall remain the sole and exclusive property of EnCoach.\nEnCoach shall be free to use, copy, modify, publish, or redistribute the Suggestions for any purpose and in any way without any credit or any compensation to you.",
"ar": "" "ar": "أي ملاحظات أو تعليقات أو أفكار أو تحسينات أو اقتراحات (إجمالاً، \"اقتراحات\") تقدمها إلى (إنكوتش ) فيما يتعلق بالموقع الإلكتروني / التطبيق ستظل ملكية خاصة وحصرية لـ ( إنكوتش ). \n تتمتع ( إنكوتش ) بالحرية في استخدام الاقتراحات أو نسخها أو تعديلها أو نشرها أو إعادة توزيعها لأي غرض وبأي شكل من الأشكال دون أي ائتمان أو أي تعويض لك."
} }
}, },
"consent": { "consent": {
"title": { "title": {
"en": "Your Consent", "en": "Your Consent",
"ar": "" "ar": "موافقتك"
}, },
"text": { "text": {
"en": "We've updated our Terms & Conditions to provide you with complete transparency into what is being set when you visit our site and how it's being used. By using our website/app, registering an account, or making a purchase, you hereby consent to our Terms & Conditions.", "en": "We've updated our Terms & Conditions to provide you with complete transparency into what is being set when you visit our site and how it's being used. By using our website/app, registering an account, or making a purchase, you hereby consent to our Terms & Conditions.",
"ar": "" "ar": "لقد قمنا بتحديث شروطنا وأحكامنا لتوفير الشفافية الكاملة لك حول ما يتم تعيينه عند زيارتك لموقعنا وكيفية استخدامه. من خلال استخدام موقعنا/تطبيقنا، أو تسجيل حساب، أو إجراء عملية شراء، فإنك توافق على شروطنا وأحكامنا."
} }
}, },
"other_websites": { "other_websites": {
"title": { "title": {
"en": "Links to Other Websites", "en": "Links to Other Websites",
"ar": "" "ar": "روابط لمواقع أخرى"
}, },
"text": { "text": {
"en": "This Terms & Conditions applies only to the Services. The Services may contain links to other websites not operated or controlled by EnCoach. We are not responsible for the content, accuracy or opinions expressed in such websites, and such websites are not investigated, monitored or checked for accuracy or completeness by us. Please remember that when you use a link to go from the Services to another website, our Terms & Conditions are no longer in effect. Your browsing and interaction on any other website, including those that have a link on our platform, is subject to that website's own rules and policies. Such third parties may use their own cookies or other methods to collect information about you.", "en": "This Terms & Conditions applies only to the Services. The Services may contain links to other websites not operated or controlled by EnCoach. We are not responsible for the content, accuracy or opinions expressed in such websites, and such websites are not investigated, monitored or checked for accuracy or completeness by us. Please remember that when you use a link to go from the Services to another website, our Terms & Conditions are no longer in effect. Your browsing and interaction on any other website, including those that have a link on our platform, is subject to that website's own rules and policies. Such third parties may use their own cookies or other methods to collect information about you.",
"ar": "" "ar": "تنطبق هذه الشروط والأحكام على الخدمات فقط. قد تحتوي الخدمات على روابط لمواقع أخرى لا تديرها أو تتحكم فيها ( إنكوتش ). نحن لسنا مسؤولين عن المحتوى أو الدقة أو الآراء المعبر عنها في مثل هذه المواقع، ولا يتم التحقيق في هذه المواقع أو مراقبتها أو التحقق من دقتها أو اكتمالها من قبلنا. يرجى تذكر أنه عند استخدام ارتباط للانتقال من الخدمات إلى موقع ويب آخر، فإن الشروط والأحكام الخاصة بنا لم تعد سارية. يخضع تصفحك وتفاعلك على أي موقع ويب آخر، بما في ذلك المواقع التي تحتوي على رابط على نظامنا ، لقواعد وسياسات هذا الموقع. قد تستخدم هذه الأطراف الثالثة ملفات تعريف الارتباط الخاصة بها أو طرق أخرى لجمع معلومات عنك."
} }
}, },
"cookies": { "cookies": {
"title": { "title": {
"en": "Cookies", "en": "Cookies",
"ar": "" "ar": "ملف تعريف الارتباط"
}, },
"text": { "text": {
"en": "EnCoach uses \"Cookies\" to identify the areas of our website that you have visited. A Cookie is a small piece of data stored on your computer or mobile device by your web browser. We use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously. Most web browsers can be set to disable the use of Cookies. However, if you disable Cookies, you may not be able to access functionality on our website correctly or at all. We never place Personally Identifiable Information in Cookies.", "en": "EnCoach uses \"Cookies\" to identify the areas of our website that you have visited. A Cookie is a small piece of data stored on your computer or mobile device by your web browser. We use Cookies to enhance the performance and functionality of our website/app but are non-essential to their use. However, without these cookies, certain functionality like videos may become unavailable or you would be required to enter your login details every time you visit the website/app as we would not be able to remember that you had logged in previously. Most web browsers can be set to disable the use of Cookies. However, if you disable Cookies, you may not be able to access functionality on our website correctly or at all. We never place Personally Identifiable Information in Cookies.",
"ar": "" "ar": "تستخدم ( إنكوتش ) \"ملفات تعريف الارتباط\" لتحديد مناطق موقعك على الويب التي قمت بزيارتها. ملف تعريف الارتباط هو جزء صغير من البيانات المخزنة على جهاز الكمبيوتر الخاص بك أو جهازك المحمول بواسطة متصفح الويب الخاص بك. نحن نستخدم ملفات تعريف الارتباط لتحسين أداء ووظائف موقعنا / تطبيقنا ولكنها غير ضرورية لاستخدامها. ومع ذلك، بدون ملفات تعريف الارتباط هذه، قد تصبح بعض الوظائف مثل مقاطع الفيديو غير متاحة أو قد يُطلب منك إدخال تفاصيل تسجيل الدخول الخاصة بك في كل مرة تزور فيها موقع الويب / التطبيق حيث لن نتمكن من تذكر أنك قمت بتسجيل الدخول مسبقًا. يمكن ضبط معظم متصفحات الويب لتعطيل استخدام ملفات تعريف الارتباط. ومع ذلك، إذا قمت بتعطيل ملفات تعريف الارتباط، فقد لا تتمكن من الوصول إلى الوظائف الموجودة على موقعنا بشكل صحيح أو على الإطلاق. لا نضع أبدًا معلومات تعريف شخصية في ملفات تعريف الارتباط."
} }
}, },
"changes": { "changes": {
"title": { "title": {
"en": "Changes To Our Terms & Conditions", "en": "Changes To Our Terms & Conditions",
"ar": "" "ar": "التغييرات على الشروط والأحكام الخاصة بنا"
}, },
"text": { "text": {
"en": "You acknowledge and agree that EnCoach may stop (permanently or temporarily) providing the Service (or any features within the Service) to you or to users generally at EnCoach's sole discretion, without prior notice to you. You may stop using the Service at any time. You do not need to specifically inform EnCoach when you stop using the Service. You acknowledge and agree that if EnCoach disables access to your account, you may be prevented from accessing the Service, your account details or any files or other materials which is contained in your account.\nIf we decide to change our Terms & Conditions, we will post those changes on this page, and/or update the Terms & Conditions modification date below.", "en": "You acknowledge and agree that EnCoach may stop (permanently or temporarily) providing the Service (or any features within the Service) to you or to users generally at EnCoach's sole discretion, without prior notice to you. You may stop using the Service at any time. You do not need to specifically inform EnCoach when you stop using the Service. You acknowledge and agree that if EnCoach disables access to your account, you may be prevented from accessing the Service, your account details or any files or other materials which is contained in your account.\nIf we decide to change our Terms & Conditions, we will post those changes on this page, and/or update the Terms & Conditions modification date below.",
"ar": "" "ar": "أنت تقر وتوافق على أن ( إنكوتش ) ؛ قد تتوقف (بشكل دائم أو مؤقت) عن تقديم الخدمة (أو أي ميزات داخل الخدمة) لك أو للمستخدمين بشكل عام وفقًا لتقدير ( إنكوتش ) وحدها ، دون إشعار مسبق لك. يمكنك التوقف عن استخدام الخدمة في أي وقت. لا تحتاج إلى إبلاغ ( إنكوتش ) على وجه التحديد، عند التوقف عن استخدام الخدمة. أنت تقر وتوافق على أنه ( إنكوتش ) ؛ قد تعطل الوصول إلى حسابك ، فقد يتم منعك من الوصول إلى الخدمة أو تفاصيل حسابك أو أي ملفات أو مواد أخرى واردة في حسابك. \n إذا قررنا تغيير الشروط والأحكام الخاصة بنا ، فسنقوم بنشر هذه التغييرات على هذه الصفحة / أو تحديث تاريخ تعديل الشروط والأحكام ويتطلب عليك متابعة هذه التعديلات بشكل مستمر وفي حالة عدم قبولك لتلك التعديلات ، يرجى عدم استخدام التطبيق."
} }
}, },
"modifications": { "modifications": {
"title": { "title": {
"en": "Modifications to Our website/app", "en": "Modifications to Our website/app",
"ar": "" "ar": "تعديلات على موقعنا / التطبيق"
}, },
"text": { "text": {
"en": "EnCoach reserves the right to modify, suspend or discontinue, temporarily or permanently, the website/app or any service to which it connects, with or without notice and without liability to you.", "en": "EnCoach reserves the right to modify, suspend or discontinue, temporarily or permanently, the website/app or any service to which it connects, with or without notice and without liability to you.",
"ar": "" "ar": "تحتفظ ( إنكوتش ) بالحق في تعديل أو تعليق أو إيقاف، بشكل مؤقت أو دائم، موقع الويب / التطبيق أو أي خدمة تتصل بها، مع أو بدون إشعار وبدون أي مسؤولية تجاهك."
} }
}, },
"updates": { "updates": {
"title": { "title": {
"en": "Updates to Our website/app", "en": "Updates to Our website/app",
"ar": "" "ar": "تحديثات على موقعنا / التطبيق"
}, },
"text": { "text": {
"en": "EnCoach may from time to time provide enhancements or improvements to the features/ functionality of the website/app, which may include patches, bug fixes, updates, upgrades and other modifications (\"Updates\").\nUpdates may modify or delete certain features and/or functionalities of the website/app. You agree that EnCoach has no obligation to (i) provide any Updates, or (ii) continue to provide or enable any particular features and/or functionalities of the website/app to you.\nYou further agree that all Updates will be (i) deemed to constitute an integral part of the website/app, and (ii) subject to the terms and conditions of this Agreement.", "en": "EnCoach may from time to time provide enhancements or improvements to the features/ functionality of the website/app, which may include patches, bug fixes, updates, upgrades and other modifications (\"Updates\").\nUpdates may modify or delete certain features and/or functionalities of the website/app. You agree that EnCoach has no obligation to (i) provide any Updates, or (ii) continue to provide or enable any particular features and/or functionalities of the website/app to you.\nYou further agree that all Updates will be (i) deemed to constitute an integral part of the website/app, and (ii) subject to the terms and conditions of this Agreement.",
"ar": "" "ar": "قد توفر ( إنكوتش ) من وقت لآخر تحسينات أو تحسينات على ميزات / وظائف موقع الويب / التطبيق، والتي قد تتضمن تصحيحات وإصلاحات أخطاء وتحديثات وترقيات وتعديلات أخرى (\"التحديثات\"). قد تقوم التحديثات بتعديل أو حذف بعض الميزات و / أو وظائف موقع الويب / التطبيق. أنت توافق على أن ( إنكوتش ) ليست ملزمة بـ (1) تقديم أي تحديثات، أو (2) الاستمرار في توفير أو تمكين أي ميزات و / أو وظائف معينة لموقع الويب / التطبيق لك. أنت توافق أيضًا على أن جميع التحديثات (1) ستُعتبر جزءًا لا يتجزأ من موقع الويب / التطبيق، و (2) تخضع لبنود وشروط هذه الاتفاقية."
} }
}, },
"third-party": { "third-party": {
"title": { "title": {
"en": "Third-Party Services", "en": "Third-Party Services",
"ar": "" "ar": "خدمات الطرف الثالث"
}, },
"text": { "text": {
"en": "We may display, include or make available third-party content (including data, information, applications and other products services) or provide links to third-party websites or services (\"Third- Party Services\").\nYou acknowledge and agree that EnCoach shall not be responsible for any Third-Party Services, including their accuracy, completeness, timeliness, validity, copyright compliance, legality, decency, quality or any other aspect thereof. EnCoach does not assume and shall not have any liability or responsibility to you or any other person or entity for any Third-Party Services.\nThird-Party Services and links thereto are provided solely as a convenience to you and you access and use them entirely at your own risk and subject to such third parties' terms and conditions.", "en": "We may display, include or make available third-party content (including data, information, applications and other products services) or provide links to third-party websites or services (\"Third- Party Services\").\nYou acknowledge and agree that EnCoach shall not be responsible for any Third-Party Services, including their accuracy, completeness, timeliness, validity, copyright compliance, legality, decency, quality or any other aspect thereof. EnCoach does not assume and shall not have any liability or responsibility to you or any other person or entity for any Third-Party Services.\nThird-Party Services and links thereto are provided solely as a convenience to you and you access and use them entirely at your own risk and subject to such third parties' terms and conditions.",
"ar": "" "ar": "يجوز لنا عرض محتوى جهة خارجية أو تضمينه أو توفيره (بما في ذلك البيانات والمعلومات والتطبيقات وخدمات المنتجات الأخرى) أو توفير روابط لمواقع أو خدمات الجهات الخارجية (\"خدمات الأطراف الثالثة\"). أنت تقر وتوافق على أن ( إنكوتش ) لن تكون مسؤولة عن أي خدمات لأطراف ثالثة ، بما في ذلك دقتها واكتمالها وصلاحيتها. لا تتحمل ( إنكوتش ) أي التزام أو مسؤولية تجاهك أو تجاه أي شخص أو كيان آخر ولن تتحمل أي مسؤولية تجاه أي خدمات من جهات خارجية. يتم توفير خدمات الطرف الثالث والروابط الخاصة بها فقط من أجل الراحة لك ويمكنك الوصول إليها واستخدامها بالكامل على مسؤوليتك الخاصة وتخضع لشروط وأحكام هذه الأطراف الثالثة."
} }
}, },
"term_termination": { "term_termination": {
"title": { "title": {
"en": "Term and Termination", "en": "Term and Termination",
"ar": "" "ar": "المدة والإنهاء"
}, },
"text": { "text": {
"en": "This Agreement shall remain in effect until terminated by you or EnCoach.\nEnCoach may, in its sole discretion, at any time and for any or no reason, suspend or terminate this Agreement with or without prior notice.\nThis Agreement will terminate immediately, without prior notice from EnCoach, in the event that you fail to comply with any provision of this Agreement. You may also terminate this Agreement by deleting the website/app and all copies thereof from your computer.\nUpon termination of this Agreement, you shall cease all use of the website/app and delete all copies of the website/app from your computer.\nTermination of this Agreement will not limit any of EnCoach's rights or remedies at law or in equity in case of breach by you (during the term of this Agreement) of any of your obligations under the present Agreement.", "en": "This Agreement shall remain in effect until terminated by you or EnCoach.\nEnCoach may, in its sole discretion, at any time and for any or no reason, suspend or terminate this Agreement with or without prior notice.\nThis Agreement will terminate immediately, without prior notice from EnCoach, in the event that you fail to comply with any provision of this Agreement. You may also terminate this Agreement by deleting the website/app and all copies thereof from your computer.\nUpon termination of this Agreement, you shall cease all use of the website/app and delete all copies of the website/app from your computer.\nTermination of this Agreement will not limit any of EnCoach's rights or remedies at law or in equity in case of breach by you (during the term of this Agreement) of any of your obligations under the present Agreement.",
"ar": "" "ar": "تظل هذه الاتفاقية سارية المفعول حتى يتم إنهاؤها من قبلك أو من قبل ( إنكوتش ). \n يجوز لـ ( إنكوتش ) ، وفقًا لتقديرها الخاص ، في أي وقت ولأي سبب أو بدون سبب ، تعليق أو إنهاء هذه الاتفاقية بإشعار مسبق أو بدونه. \n سيتم إنهاء هذه الاتفاقية على الفور ، دون إشعار مسبق من ( إنكوتش ) ، في حالة عدم امتثالك لأي شرط من أحكام هذه الاتفاقية. يمكنك أيضًا إنهاء هذه الاتفاقية عن طريق حذف موقع الويب / التطبيق وجميع نسخه من جهاز الكمبيوتر الخاص بك. \n عند إنهاء هذه الاتفاقية، يجب عليك التوقف عن استخدام موقع الويب / التطبيق بالكامل وحذف جميع نسخ الموقع / التطبيق من جهاز الكمبيوتر الخاص بك. \n لن يؤدي إنهاء هذه الاتفاقية إلى تقييد أي من حقوق أو سبل الانتصاف الخاصة بـ ( إنكوتش ) في القانون أو في حقوق الملكية في حالة قيامك بخرق أي من التزاماتك بموجب الاتفاقية الحالية (خلال مدة هذه الاتفاقية)."
} }
}, },
"copyright_infrigement": { "copyright_infrigement": {
"title": { "title": {
"en": "Copyright Infringement Notice", "en": "Copyright Infringement Notice",
"ar": "" "ar": "إشعار انتهاك حقوق النشر"
}, },
"text": { "text": {
"en": "If you are a copyright owner or such owner's agent and believe any material on our website/app constitutes an infringement on your copyright, please contact us setting forth the following information: (a) a physical or electronic signature of the copyright owner or a person authorized to act on his behalf; (b) identification of the material that is claimed to be infringing; (c) your contact information, including your address, telephone number, and an email; (d) a statement by you that you have a good faith belief that use of the material is not authorized by the copyright owners; and (e) the a statement that the information in the notification is accurate, and, under penalty of perjury you are authorized to act on behalf of the owner.", "en": "If you are a copyright owner or such owner's agent and believe any material on our website/app constitutes an infringement on your copyright, please contact us setting forth the following information: (a) a physical or electronic signature of the copyright owner or a person authorized to act on his behalf; (b) identification of the material that is claimed to be infringing; (c) your contact information, including your address, telephone number, and an email; (d) a statement by you that you have a good faith belief that use of the material is not authorized by the copyright owners; and (e) the a statement that the information in the notification is accurate, and, under penalty of perjury you are authorized to act on behalf of the owner.",
"ar": "" "ar": "إذا كنت مالكًا لحقوق الطبع والنشر أو وكيلًا للمالك وتعتقد أن أي مادة على موقعنا / تطبيقنا تشكل انتهاكًا لحقوق الطبع والنشر الخاصة بك ، فيرجى الاتصال بنا مع توضيح المعلومات التالية: (أ) توقيع مادي أو إلكتروني لمالك حقوق الطبع والنشر أو أي شخص مخول بالتصرف نيابة عنه ؛ (ب) تحديد المواد التي يُدعى أنها منتهِكة ؛ (ج) معلومات الاتصال الخاصة بك ، بما في ذلك العنوان ورقم الهاتف والبريد الإلكتروني ؛ (د) تصريح من جانبك بأن لديك اعتقاد حسن النية بأن استخدام المواد غير مصرح به من قبل مالكي حقوق النشر ؛ و (هـ) الإفادة بأن المعلومات الواردة في الإشعار دقيقة ، وتحت طائلة عقوبة الحنث باليمين ، يحق لك التصرف نيابة عن المالك."
} }
}, },
"indemnification": { "indemnification": {
"title": { "title": {
"en": "Indemnification", "en": "Indemnification",
"ar": "" "ar": "التعويض"
}, },
"text": { "text": {
"en": "You agree to indemnify and hold EnCoach and its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (if any) harmless from any claim or demand, including reasonable attorneys' fees, due to or arising out of your: (a) use of the website/app; (b) violation of this Agreement or any law or regulation; or (c) violation of any right of a third party.", "en": "You agree to indemnify and hold EnCoach and its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (if any) harmless from any claim or demand, including reasonable attorneys' fees, due to or arising out of your: (a) use of the website/app; (b) violation of this Agreement or any law or regulation; or (c) violation of any right of a third party.",
"ar": "" "ar": "أنت توافق على تعويض ( إنكوتش ) والشركات التابعة لها والمسؤولين والموظفين والوكلاء والشركاء والمرخصين (إن وجد) من أي مطالبة أو طلب، بما في ذلك أتعاب المحاماة المعقولة، بسبب أو الناشئة عن: ( أ) استخدام الموقع / التطبيق ؛ (ب) انتهاك هذه الاتفاقية أو أي قانون أو لائحة ؛ أو (ج) انتهاك أي حق لطرف ثالث."
} }
}, },
"warranties": { "warranties": {
"title": { "title": {
"en": "No Warranties", "en": "No Warranties",
"ar": "" "ar": "لا توجد ضمانات"
}, },
"text": { "text": {
"en": "The website/app is provided to you \"AS IS\" and \"AS AVAILABLE\" and with all faults and defects without warranty of any kind. To the maximum extent permitted under applicable law, EnCoach, on its own behalf and on behalf of its affiliates and its and their respective licensors and service providers, expressly disclaims all warranties, whether express, implied, statutory or otherwise, with respect to the website/app, including all implied warranties of merchantability, fitness for a particular purpose, title and non-infringement, and warranties that may arise out of course of dealing, course of performance, usage or trade practice. Without limitation to the foregoing, EnCoach provides no warranty or undertaking, and makes no representation of any kind that the website/app will meet your requirements, achieve any intended results, be compatible or work with any other software, , systems or services, operate without interruption, meet any performance or reliability standards or be error free or that any errors or defects can or will be corrected.\nWithout limiting the foregoing, neither EnCoach nor any EnCoach's provider makes any representation or warranty of any kind, express or implied: (i) as to the operation or availability of the website/app, or the information, content, and materials or products included thereon; (ii) that the website/app will be uninterrupted or error-free; (iii) as to the accuracy, reliability, or currency of any information or content provided through the website/app; or (iv) that the website/app, its servers, the content, or e-mails sent from or on behalf of EnCoach are free of viruses, scripts, trojan horses, worms, malware, timebombs or other harmful components.\nSome jurisdictions do not allow the exclusion of or limitations on implied warranties or the limitations on the applicable statutory rights of a consumer, so some or all of the above exclusions and limitations may not apply to you.", "en": "The website/app is provided to you \"AS IS\" and \"AS AVAILABLE\" and with all faults and defects without warranty of any kind. To the maximum extent permitted under applicable law, EnCoach, on its own behalf and on behalf of its affiliates and its and their respective licensors and service providers, expressly disclaims all warranties, whether express, implied, statutory or otherwise, with respect to the website/app, including all implied warranties of merchantability, fitness for a particular purpose, title and non-infringement, and warranties that may arise out of course of dealing, course of performance, usage or trade practice. Without limitation to the foregoing, EnCoach provides no warranty or undertaking, and makes no representation of any kind that the website/app will meet your requirements, achieve any intended results, be compatible or work with any other software, , systems or services, operate without interruption, meet any performance or reliability standards or be error free or that any errors or defects can or will be corrected.\nWithout limiting the foregoing, neither EnCoach nor any EnCoach's provider makes any representation or warranty of any kind, express or implied: (i) as to the operation or availability of the website/app, or the information, content, and materials or products included thereon; (ii) that the website/app will be uninterrupted or error-free; (iii) as to the accuracy, reliability, or currency of any information or content provided through the website/app; or (iv) that the website/app, its servers, the content, or e-mails sent from or on behalf of EnCoach are free of viruses, scripts, trojan horses, worms, malware, timebombs or other harmful components.\nSome jurisdictions do not allow the exclusion of or limitations on implied warranties or the limitations on the applicable statutory rights of a consumer, so some or all of the above exclusions and limitations may not apply to you.",
"ar": "" "ar": "يتم توفير الموقع / التطبيق لك \"كما هو\" و \"كما هو متاح\" وبكافة العيوب والعيوب دون ضمان من أي نوع. إلى أقصى حد يسمح به القانون المعمول به، تخلي ( إنكوتش ) ، بالأصالة عن نفسها وبالنيابة عن الشركات التابعة لها والمرخصين ومقدمي الخدمات التابعين لها ، صراحةً من جميع الضمانات ، سواء كانت صريحة أو ضمنية أو قانونية أو غير ذلك ، فيما يتعلق بالموقع الإلكتروني / التطبيق ، بما في ذلك جميع الضمانات الضمنية الخاصة بالتسويق ، والملائمة لغرض معين ، والملكية وعدم الانتهاك ، والضمانات التي قد تنشأ عن سياق التعامل ، أو مسار الأداء ، أو الاستخدام أو الممارسة التجارية. \n على سبيل المثال لا الحصر، لا تقدم ( إنكوتش ) أي ضمان أو تعهد، ولا تقدم أي تمثيل من أي نوع بأن الموقع / التطبيق سيلبي متطلباتك أو يحقق أي نتائج مقصودة أو متوافق أو يعمل مع أي برامج أو أنظمة أو خدمات أخرى أو تعمل دون انقطاع ، أو تلبية أي معايير أداء أو موثوقية أو أن تكون خالية من الأخطاء أو أن أي أخطاء أو عيوب يمكن أو سيتم تصحيحها. \nبدون تقييد ما سبق ، لا تقدم ( إنكوتش ) أو أي مزود تابع لـ ( إنكوتش ) أي تعهد أو ضمان من أي نوع ، صريحًا أو ضمنيًا: (1) فيما يتعلق بتشغيل أو توفر موقع الويب / التطبيق ، أو المعلومات والمحتوى والمواد أو المنتجات المضمنة عليه (2) أن الموقع / التطبيق لن ينقطع أو يكون خاليًا من الأخطاء ؛ (3) فيما يتعلق بدقة أو موثوقية أو حداثة أي معلومات أو محتوى مقدم من خلال الموقع / التطبيق ؛ أو (4) أن موقع الويب / التطبيق أو خوادمه أو المحتوى أو رسائل البريد الإلكتروني المرسلة من أو نيابة عن ( إنكوتش ) خالية من الفيروسات أو البرامج النصية أو أحصنة طروادة أو الديدان أو البرامج الضارة أو القنابل الزمنية أو المكونات الضارة الأخرى."
} }
}, },
"limitation_liability": { "limitation_liability": {
"title": { "title": {
"en": "Limitation of Liability", "en": "Limitation of Liability",
"ar": "" "ar": "تحديد المسؤولية"
}, },
"text": { "text": {
"en": "Notwithstanding any damages that you might incur, the entire liability of EnCoach and any of its suppliers under any provision of this Agreement and your exclusive remedy for all of the foregoing shall be limited to the amount actually paid by you for the website/app.\nTo the maximum extent permitted by applicable law, in no event shall EnCoach or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, for loss of data or other information, for business interruption, for personal injury, for loss of privacy arising out of or in any way related to the use of or inability to use the website/app, third-party software and/or third-party hardware used with the website/app, or otherwise in connection with any provision of this Agreement), even if EnCoach or any supplier has been advised of the possibility of such damages and even if the remedy fails of its essential purpose.\nSome states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n\nThis platform utilizes algorithms to assess your IELTS proficiency level. However, Ecnoach is not accountable for achieving your desired score on the actual IELTS test. Our aim is to provide guidance for optimal learning that will improve your English and IELTS skills. It's important to acknowledge that this platform is a simulation, and the results and reports do not reflect your true level of proficiency in IELTS. Under no circumstances should they be considered or claimed as your actual IELTS level.", "en": "Notwithstanding any damages that you might incur, the entire liability of EnCoach and any of its suppliers under any provision of this Agreement and your exclusive remedy for all of the foregoing shall be limited to the amount actually paid by you for the website/app.\nTo the maximum extent permitted by applicable law, in no event shall EnCoach or its suppliers be liable for any special, incidental, indirect, or consequential damages whatsoever (including, but not limited to, damages for loss of profits, for loss of data or other information, for business interruption, for personal injury, for loss of privacy arising out of or in any way related to the use of or inability to use the website/app, third-party software and/or third-party hardware used with the website/app, or otherwise in connection with any provision of this Agreement), even if EnCoach or any supplier has been advised of the possibility of such damages and even if the remedy fails of its essential purpose.\nSome states/jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so the above limitation or exclusion may not apply to you.\n\nThis platform utilizes algorithms to assess your IELTS proficiency level. However, Ecnoach is not accountable for achieving your desired score on the actual IELTS test. Our aim is to provide guidance for optimal learning that will improve your English and IELTS skills. It's important to acknowledge that this platform is a simulation, and the results and reports do not reflect your true level of proficiency in IELTS. Under no circumstances should they be considered or claimed as your actual IELTS level.",
"ar": "" "ar": "بغض النظر عن أي أضرار قد تتكبدها، فإن المسؤولية الكاملة لـ ( إنكوتش ) وأي من مورديها بموجب أي حكم من أحكام هذه الاتفاقية والتعويض الحصري لكل ما سبق، ستقتصر على المبلغ الذي دفعته بالفعل للموقع / التطبيق. \n إلى الحد الأقصى الذي يسمح به القانون المعمول به ، لن تتحمل ( إنكوتش ) أو مورديها بأي حال من الأحوال المسؤولية عن أي أضرار خاصة أو عرضية أو غير مباشرة أو تبعية من أي نوع بما في ذلك ، على سبيل المثال لا الحصر ، الأضرار الناجمة عن فقدان البيانات أو معلومات أخرى ، لانقطاع الأعمال ، للإصابة الشخصية ، وفقدان الخصوصية الناشئ عن أو بأي طريقة تتعلق باستخدام أو عدم القدرة على استخدام موقع الويب / التطبيق ، وبرامج الطرف الثالث و / أو أجهزة الطرف الثالث المستخدمة مع موقع الويب / التطبيق ، أو بخلاف ذلك فيما يتعلق بأي حكم من أحكام هذه (الاتفاقية) ، حتى إذا تم إخطار ( إنكوتش ) أو أي مورد بإمكانية حدوث مثل هذه الأضرار وحتى إذا فشل العلاج في تحقيق غرضه الأساسي. \nتستخدم هذه المنصة خوارزميات لتقييم مستوى إلمامك بامتحان الآيلتس. ومع ذلك، فإن إنكوتش غير مسؤولة عن تحقيق الدرجة المرغوبة في امتحان الآيلتس الفعلي. هدفنا هو تقديم التوجيه للتعلم الأمثل الذي سيساهم في تحسين مهاراتك في اللغة الإنجليزية والآيلتس. من المهم أن ندرك أن هذه المنصة هي محاكاة، ونتائجها وتقاريرها لا تعكس مستوى إلمامك الحقيقي بامتحان الآيلتس. في أي حال من الأحوال، لا يجب اعتبارها أو ادعائها كمستوى آيلتس الفعلي الخاص بك."
} }
}, },
"severability": { "severability": {
"title": { "title": {
"en": "Severability", "en": "Severability",
"ar": "" "ar": "الاستقلالية"
}, },
"text": { "text": {
"en": "If any provision of this Agreement is held to be unenforceable or invalid, such provision will be changed and interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable law and the remaining provisions will continue in full force and effect.\nThis Agreement, together with the Privacy Policy and any other legal notices published by EnCoach on the Services, shall constitute the entire agreement between you and EnCoach concerning the Services. If any provision of this Agreement is deemed invalid by a court of competent jurisdiction, the invalidity of such provision shall not affect the validity of the remaining provisions of this Agreement, which shall remain in full force and effect. No waiver of any term of this Agreement shall be deemed a further or continuing waiver of such term or any other term, and EnCoach's failure to assert any right or provision under this Agreement shall not constitute a waiver of such right or provision. YOU AND EnCoach AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE SERVICES MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.", "en": "If any provision of this Agreement is held to be unenforceable or invalid, such provision will be changed and interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable law and the remaining provisions will continue in full force and effect.\nThis Agreement, together with the Privacy Policy and any other legal notices published by EnCoach on the Services, shall constitute the entire agreement between you and EnCoach concerning the Services. If any provision of this Agreement is deemed invalid by a court of competent jurisdiction, the invalidity of such provision shall not affect the validity of the remaining provisions of this Agreement, which shall remain in full force and effect. No waiver of any term of this Agreement shall be deemed a further or continuing waiver of such term or any other term, and EnCoach's failure to assert any right or provision under this Agreement shall not constitute a waiver of such right or provision. YOU AND EnCoach AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE SERVICES MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.",
"ar": "" "ar": "إذا تم اعتبار أي بند من أحكام هذه الاتفاقية غير قابل للتنفيذ أو غير صالح ، فسيتم تغيير هذا الحكم وتفسيره لتحقيق أهداف هذا الحكم إلى أقصى حد ممكن بموجب القانون المعمول به وستظل الأحكام المتبقية سارية المفعول والتأثير الكامل. \nتشكل هذه الاتفاقية، جنبًا إلى جنب مع سياسة الخصوصية وأي إشعارات قانونية أخرى تنشرها ( إنكوتش ) عن الخدمات، الاتفاقية الكاملة بينك وبين (إنكوتش) فيما يتعلق بالخدمات. إذا تم اعتبار أي حكم من أحكام هذه الاتفاقية غير صالح من قبل محكمة ذات اختصاص قضائي، فإن بطلان هذا الحكم لا يؤثر على صحة الأحكام المتبقية من هذه الاتفاقية، والتي تظل سارية المفعول والتأثير الكامل. \n لا يُعتبر أي تنازل عن أي بند من بنود هذه الاتفاقية تنازلاً آخر أو مستمرًا عن هذا المصطلح أو أي مصطلح آخر، ولا يشكل فشل \"( إنكوتش )\" في تأكيد أي حق أو حكم بموجب هذه الاتفاقية تنازلاً عن هذا الحق . توافق أنت و( إنكوتش ) على أن أي سبب من دعاوى الدعوى الناشئة عن الخدمات أو المتعلقة بها يجب أن تبدأ في غضون عام واحد (1) بعد اتخاذ سبب الدعوى. من ناحية اخري. تصرف مثل ذلك ممنوع دائما."
} }
}, },
"waiver": { "waiver": {
"title": { "title": {
"en": "Waiver", "en": "Waiver",
"ar": "" "ar": "التنازل"
}, },
"text": { "text": {
"en": "Except as provided herein, the failure to exercise a right or to require performance of an obligation under this Agreement shall not effect a party's ability to exercise such right or require such performance at any time thereafter nor shall be the waiver of a breach constitute waiver of any subsequent breach.\nNo failure to exercise, and no delay in exercising, on the part of either party, any right or any power under this Agreement shall operate as a waiver of that right or power. Nor shall any single or partial exercise of any right or power under this Agreement preclude further exercise of that or any other right granted herein. In the event of a conflict between this Agreement and any applicable purchase or other terms, the terms of this Agreement shall govern.", "en": "Except as provided herein, the failure to exercise a right or to require performance of an obligation under this Agreement shall not effect a party's ability to exercise such right or require such performance at any time thereafter nor shall be the waiver of a breach constitute waiver of any subsequent breach.\nNo failure to exercise, and no delay in exercising, on the part of either party, any right or any power under this Agreement shall operate as a waiver of that right or power. Nor shall any single or partial exercise of any right or power under this Agreement preclude further exercise of that or any other right granted herein. In the event of a conflict between this Agreement and any applicable purchase or other terms, the terms of this Agreement shall govern.",
"ar": "" "ar": "باستثناء ما هو منصوص عليه في هذه الاتفاقية، فإن الإخفاق في ممارسة حق أو طلب أداء التزام بموجب هذه الاتفاقية لن يؤثر على قدرة أي طرف على ممارسة هذا الحق أو يتطلب مثل هذا الأداء في أي وقت بعد ذلك ولا يجوز أن يكون التنازل عن خرق يمثل تنازلاً عن أي خرق لاحق. \n ولا يُعد أي إخفاق في ممارسة، أو تأخير في ممارسة، من جانب أي من الطرفين، أي حق أو أي سلطة بموجب هذه الاتفاقية بمثابة تنازل عن هذا الحق أو السلطة. ولا يجوز أن تمنع أي ممارسة فردية أو جزئية لأي حق أو سلطة بموجب هذه الاتفاقية ممارسة أخرى لذلك أو أي حق آخر ممنوح بموجب هذه الاتفاقية. في حالة وجود تعارض بين هذه الاتفاقية وأي عملية شراء سارية أو شروط أخرى، تسري شروط هذه الاتفاقية"
} }
}, },
"amendments": { "amendments": {
"title": { "title": {
"en": "Amendments to this Agreement", "en": "Amendments to this Agreement",
"ar": "" "ar": "التعديلات على هذه الاتفاقية"
}, },
"text": { "text": {
"en": "EnCoach reserves the right, at its sole discretion, to modify or replace this Agreement at any time. If a revision is material we will provide at least 30 days' notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\nBy continuing to access or use our website/app after any revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, you are no longer authorized to use EnCoach.", "en": "EnCoach reserves the right, at its sole discretion, to modify or replace this Agreement at any time. If a revision is material we will provide at least 30 days' notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.\nBy continuing to access or use our website/app after any revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, you are no longer authorized to use EnCoach.",
"ar": "" "ar": "تحتفظ (إنكوتش) بالحق، وفقًا لتقديرها الخاص، في تعديل أو استبدال هذه الاتفاقية في أي وقت. إذا كانت المراجعة جوهرية، فسنقدم إشعارًا قبل 30 يومًا على الأقل قبل تفعيل أي شروط جديدة. سيتم تحديد ما يشكل تغييرًا جوهريًا وفقًا لتقديرنا الخاص. من خلال الاستمرار في الوصول إلى موقعنا / تطبيقنا أو استخدامه بعد أن تصبح أي مراجعات فعالة، فإنك توافق على الالتزام بالشروط المعدلة. \n إذا كنت لا توافق على الشروط الجديدة، فلم يعد مسموحًا لك باستخدام ( إنكوتش )."
} }
}, },
"entire_agreement": { "entire_agreement": {
"title": { "title": {
"en": "Entire Agreement", "en": "Entire Agreement",
"ar": "" "ar": "اتفاق كامل"
}, },
"text": { "text": {
"en": "The Agreement constitutes the entire agreement between you and EnCoach regarding your use of the website/app and supersedes all prior and contemporaneous written or oral agreements between you and EnCoach.\nYou may be subject to additional terms and conditions that apply when you use or purchase other EnCoach's services, which EnCoach will provide to you at the time of such use or purchase.", "en": "The Agreement constitutes the entire agreement between you and EnCoach regarding your use of the website/app and supersedes all prior and contemporaneous written or oral agreements between you and EnCoach.\nYou may be subject to additional terms and conditions that apply when you use or purchase other EnCoach's services, which EnCoach will provide to you at the time of such use or purchase.",
"ar": "" "ar": "الاتفاقية تشكل الاتفاق الكامل بينك وبين (إنكوتش) بخصوص استخدامك للموقع/التطبيق وتجاوز جميع الاتفاقيات السابقة سواء كانت خطية أو شفهية بينك وبين إنكوتش والتي تمت في نفس الوقت أو بعده. \nقد تخضع لشروط وأحكام إضافية تنطبق عند استخدامك أو شراء خدمات (إنكوتش) الأخرى، والتي ستقدمها (إنكوتش) لك في وقت استخدامك أو شراءك لتلك الخدمات. "
} }
}, },
"updates_to_terms": { "updates_to_terms": {
"title": { "title": {
"en": "Updates to Our Terms", "en": "Updates to Our Terms",
"ar": "" "ar": "تحديثات على شروطنا"
}, },
"text": { "text": {
"en": "We may change our Service and policies, and we may need to make changes to these Terms so that they accurately reflect our Service and policies. Unless otherwise required by law, we will notify you (for example, through our Service) before we make changes to these Terms and give you an opportunity to review them before they go into effect. Then, if you continue to use the Service, you will be bound by the updated Terms. If you do not want to agree to these or any updated Terms, you can delete your account.", "en": "We may change our Service and policies, and we may need to make changes to these Terms so that they accurately reflect our Service and policies. Unless otherwise required by law, we will notify you (for example, through our Service) before we make changes to these Terms and give you an opportunity to review them before they go into effect. Then, if you continue to use the Service, you will be bound by the updated Terms. If you do not want to agree to these or any updated Terms, you can delete your account.",
"ar": "" "ar": "يجوز لنا تغيير خدماتنا وسياساتنا، وقد نحتاج إلى إجراء تغييرات على هذه الشروط بحيث تعكس خدماتنا وسياساتنا بدقة. \nما لم يقتض القانون خلاف ذلك، سنخطرك (على سبيل المثال، من خلال خدمتنا) ، ستكون ملتزم بالشروط المحدثة. \nإذا كنت لا تريد الموافقة على هذه الشروط أو أي شروط محدثة، يمكنك حذف حسابك."
} }
}, },
"intellectual_property": { "intellectual_property": {
"title": { "title": {
"en": "Intellectual Property", "en": "Intellectual Property",
"ar": "" "ar": "الملكية الفكرية"
}, },
"text": { "text": {
"en": "The website/app and its entire contents, features and functionality (including but not limited to all information, software, text, displays, images, video and audio, and the design, selection and arrangement thereof), are owned by EnCoach, its licensors or other providers of such material and are protected by Oman and international copyright, trademark, patent, trade secret and other intellectual property or proprietary rights laws. The material may not be copied, modified, reproduced, downloaded or distributed in any way, in whole or in part, without the express prior written permission of EnCoach, unless and except as is expressly provided in these Terms & Conditions. Any unauthorized use of the material is prohibited.", "en": "The website/app and its entire contents, features and functionality (including but not limited to all information, software, text, displays, images, video and audio, and the design, selection and arrangement thereof), are owned by EnCoach, its licensors or other providers of such material and are protected by Oman and international copyright, trademark, patent, trade secret and other intellectual property or proprietary rights laws. The material may not be copied, modified, reproduced, downloaded or distributed in any way, in whole or in part, without the express prior written permission of EnCoach, unless and except as is expressly provided in these Terms & Conditions. Any unauthorized use of the material is prohibited.",
"ar": "" "ar": "موقع الويب / التطبيق ومحتوياته بالكامل وميزاته ووظائفه (بما في ذلك على سبيل المثال لا الحصر جميع المعلومات والبرامج والنصوص وشاشات العرض والصور والفيديو والصوت والتصميم والاختيار والترتيب) ، مملوكة لـ ( إنكوتش ) ومرخصيها أو غيرهم من مقدمي هذه المواد وهي محمية من قبل سلطنة عمان وقوانين حقوق النشر والعلامات التجارية وبراءات الاختراع والأسرار التجارية وغيرها من قوانين حقوق الملكية الفكرية أو حقوق الملكية الدولية. \n لا يجوز نسخ المواد أو تعديلها أو إعادة إنتاجها أو تنزيلها أو توزيعها بأي شكل من الأشكال، كليًا أو جزئيًا، دون الحصول على إذن كتابي صريح مسبق من ( إنكوتش ) ، ما لم يتم النص على ذلك صراحةً في هذه الشروط والأحكام وباستثناء ما هو منصوص عليه صراحةً. يحظر أي استخدام غير مصرح به للمواد."
} }
}, },
"agreement_arbitrate": { "agreement_arbitrate": {
"title": { "title": {
"en": "Agreement to Arbitrate", "en": "Agreement to Arbitrate",
"ar": "" "ar": "اتفاق التحكيم"
}, },
"text": { "text": {
"en": "This section applies to any dispute EXCEPT IT DOESN'T INCLUDE A DISPUTE RELATING TO CLAIMS FOR INJUNCTIVE OR EQUITABLE RELIEF REGARDING THE ENFORCEMENT OR VALIDITY OF YOUR OR EnCoach's INTELLECTUAL PROPERTY RIGHTS. The term “dispute” means any dispute, action, or other controversy between you and EnCoach concerning the Services or this agreement, whether in contract, warranty, tort, statute, regulation, ordinance, or any other legal or equitable basis. “Dispute” will be given the broadest possible meaning allowable under law.", "en": "This section applies to any dispute EXCEPT IT DOESN'T INCLUDE A DISPUTE RELATING TO CLAIMS FOR INJUNCTIVE OR EQUITABLE RELIEF REGARDING THE ENFORCEMENT OR VALIDITY OF YOUR OR EnCoach's INTELLECTUAL PROPERTY RIGHTS. The term “dispute” means any dispute, action, or other controversy between you and EnCoach concerning the Services or this agreement, whether in contract, warranty, tort, statute, regulation, ordinance, or any other legal or equitable basis. “Dispute” will be given the broadest possible meaning allowable under law.",
"ar": "" "ar": "تنطبق هذه الفقرة على أي نزاع، باستثناء النزاعات المتعلقة بمطالبات الحصول على تسوية قضائية أو تسوية تكافؤ فيما يتعلق بتنفيذ أو صحة حقوق الملكية الفكرية الخاصة بك أو إنكوتش. \n يُعنى بمصطلح \"نزاع\" أي نزاع أو دعوى أو خلاف آخر بينك وبين إنكوتش بشأن الخدمات أو هذه الاتفاقية، سواء في العقد أو الضمان أو القرض أو النظام أو اللائحة أو الأمر القانوني أو التساوي أو أي أساس قانوني أو تكافؤ آخر. \n سيتم إعطاء \"النزاع\" أوسع معنى ممكن مسموح به بموجب القانون"
} }
}, },
"notice_dispute": { "notice_dispute": {
"title": { "title": {
"en": "Notice of Dispute", "en": "Notice of Dispute",
"ar": "" "ar": "إشعار النزاع"
}, },
"text": { "text": {
"en": "In the event of a dispute, you or EnCoach must give the other a Notice of Dispute, which is a written statement that sets forth the name, address, and contact information of the party giving it, the facts giving rise to the dispute, and the relief requested. You must send any Notice of Dispute via email to: support@EnCoach.me. EnCoach will send any Notice of Dispute to you by mail to your address if we have it, or otherwise to your email address. You and EnCoach will attempt to resolve any dispute through informal negotiation within sixty (60) days from the date the Notice of Dispute is sent. After sixty (60) days, you or EnCoach may commence arbitration.", "en": "In the event of a dispute, you or EnCoach must give the other a Notice of Dispute, which is a written statement that sets forth the name, address, and contact information of the party giving it, the facts giving rise to the dispute, and the relief requested. You must send any Notice of Dispute via email to: info@EnCoach.me. EnCoach will send any Notice of Dispute to you by mail to your address if we have it, or otherwise to your email address. You and EnCoach will attempt to resolve any dispute through informal negotiation within sixty (60) days from the date the Notice of Dispute is sent. After sixty (60) days, you or EnCoach may commence arbitration.",
"ar": "" "ar": "في حالة حدوث نزاع، يجب عليك أنت أو ( إنكوتش ) إرسال إشعار نزاع للآخر ، وهو بيان مكتوب يوضح الاسم والعنوان ومعلومات الاتصال الخاصة بالطرف الذي قدمه ، والحقائق التي أدت إلى النزاع. \n يجب عليك إرسال أي إشعار بالنزاع عبر البريد الإلكتروني إلى: info@encoach.com اما إنكوتش سترسل أي إشعار بالنزاع إليك عبر البريد إلى عنوانك إذا كان لدينا، أو إلى عنوان بريدك الإلكتروني المسجل معنا ستحاول أنت و (انكوتش) حل أي نزاع من خلال المفاوضات غير الرسمية في غضون ستين (60) يومًا من تاريخ إرسال إشعار النزاع. بعد ستين (60) يومًا، يمكنك أنت أو ( إنكوتش ) بدء التحكيم."
} }
}, },
"binding_arbitration": { "binding_arbitration": {
"title": { "title": {
"en": "Binding Arbitration", "en": "Binding Arbitration",
"ar": "" "ar": "التحكيم الملزم"
}, },
"text": { "text": {
"en": "If you and EnCoach don't resolve any dispute by informal negotiation, any other effort to resolve the dispute will be conducted exclusively by binding arbitration as described in this section. You are giving up the right to litigate (or participate in as a party or class member) all disputes in court before a judge or jury. The dispute shall be settled by binding arbitration in accordance with the commercial arbitration rules of the American Arbitration Association. Either party may seek any interim or preliminary injunctive relief from any court of competent jurisdiction, as necessary to protect the partys rights or property pending the completion of arbitration. Any and all legal, accounting, and other costs, fees, and expenses incurred by the prevailing party shall be borne by the non-prevailing party.", "en": "If you and EnCoach don't resolve any dispute by informal negotiation, any other effort to resolve the dispute will be conducted exclusively by binding arbitration as described in this section. You are giving up the right to litigate (or participate in as a party or class member) all disputes in court before a judge or jury. The dispute shall be settled by binding arbitration in accordance with the commercial arbitration rules of the American Arbitration Association. Either party may seek any interim or preliminary injunctive relief from any court of competent jurisdiction, as necessary to protect the partys rights or property pending the completion of arbitration. Any and all legal, accounting, and other costs, fees, and expenses incurred by the prevailing party shall be borne by the non-prevailing party.",
"ar": "" "ar": "إذا لم تحل أنت و ( إنكوتش ) أي نزاع عن طريق التفاوض غير الرسمي، فسيتم إجراء أي جهد آخر لحل النزاع حصريًا عن طريق التحكيم الملزم كما هو موضح في هذا القسم. \n أنت تتنازل عن الحق في التقاضي (أو المشاركة كطرف أو عضو في الفصل) في جميع النزاعات في المحكمة أمام قاضٍ. يتم تسوية النزاع عن طريق التحكيم الملزم وفقًا لقواعد التحكيم التجاري. يجوز لأي من الطرفين السعي للحصول على أي تعويض قضائي مؤقت أو أولي من أي محكمة ذات اختصاص قضائي، حسب الضرورة لحماية حقوق الطرف أو ممتلكاته في انتظار الانتهاء من التحكيم. يتحمل الطرف غير الفائز أي وجميع التكاليف القانونية والمحاسبية وغيرها من التكاليف والرسوم والنفقات التي يتكبدها الطرف السائد"
} }
}, },
"submissions_privacy": { "submissions_privacy": {
"title": { "title": {
"en": "Submissions and Privacy", "en": "Submissions and Privacy",
"ar": "" "ar": "عمليات الإرسال والخصوصية"
}, },
"text": { "text": {
"en": "In the event that you submit or post any ideas, creative suggestions, designs, photographs, information, advertisements, data or proposals, including ideas for new or improved products, services, features, technologies or promotions, you expressly agree that such submissions will automatically be treated as non-confidential and non-proprietary and will become the sole property of EnCoach without any compensation or credit to you whatsoever. EnCoach and its affiliates shall have no obligations with respect to such submissions or posts and may use the ideas contained in such submissions or posts for any purposes in any medium in perpetuity, including, but not limited to, developing, manufacturing, and marketing products and services using such ideas.", "en": "In the event that you submit or post any ideas, creative suggestions, designs, photographs, information, advertisements, data or proposals, including ideas for new or improved products, services, features, technologies or promotions, you expressly agree that such submissions will automatically be treated as non-confidential and non-proprietary and will become the sole property of EnCoach without any compensation or credit to you whatsoever. EnCoach and its affiliates shall have no obligations with respect to such submissions or posts and may use the ideas contained in such submissions or posts for any purposes in any medium in perpetuity, including, but not limited to, developing, manufacturing, and marketing products and services using such ideas.",
"ar": "" "ar": "في حالة إرسال أو نشر أي أفكار أو اقتراحات إبداعية أو تصميمات أو صور فوتوغرافية أو معلومات أو إعلانات أو بيانات أو مقترحات، بما في ذلك أفكار لمنتجات أو خدمات أو ميزات أو تقنيات أو عروض جديدة أو محسنة، فأنت توافق صراحةً على أن هذه الطلبات ستتم تلقائيًا التعامل معها على أنها غير سرية وغير مملوكة، وستصبح الملكية الوحيدة لـ ( إنكوتش ) دون أي تعويض أو ائتمان لك على الإطلاق. لا تتحمل ( إنكوتش ) والشركات التابعة لها أي التزامات فيما يتعلق بهذه المشاركات أو المنشورات وقد تستخدم الأفكار الواردة في هذه المشاركات أو المنشورات لأي أغراض في أي وسيط إلى الأبد، بما في ذلك، على سبيل المثال لا الحصر، تطوير وتصنيع وتسويق المنتجات والخدمات باستخدام مثل هذه الأفكار."
} }
}, },
"promotions": { "promotions": {
"title": { "title": {
"en": "Promotions", "en": "Promotions",
"ar": "" "ar": "الترقيات"
}, },
"text": { "text": {
"en": "EnCoach may, from time to time, include contests, promotions, sweepstakes, or other activities (“Promotions”) that require you to submit material or information concerning yourself. Please note that all Promotions may be governed by separate rules that may contain certain eligibility requirements, such as restrictions as to age and geographic location. You are responsible to read all Promotions rules to determine whether or not you are eligible to participate. If you enter any Promotion, you agree to abide by and to comply with all Promotions Rules.\nAdditional terms and conditions may apply to purchases of goods or services on or through the Services, which terms and conditions are made a part of this Agreement by this reference.", "en": "EnCoach may, from time to time, include contests, promotions, sweepstakes, or other activities (“Promotions”) that require you to submit material or information concerning yourself. Please note that all Promotions may be governed by separate rules that may contain certain eligibility requirements, such as restrictions as to age and geographic location. You are responsible to read all Promotions rules to determine whether or not you are eligible to participate. If you enter any Promotion, you agree to abide by and to comply with all Promotions Rules.\nAdditional terms and conditions may apply to purchases of goods or services on or through the Services, which terms and conditions are made a part of this Agreement by this reference.",
"ar": "" "ar": "قد تتضمن ( إنكوتش ) ، من وقت لآخر ، عروض ترويجية أو أنشطة أخرى (\"العروض الترويجية\") تتطلب منك إرسال مواد أو معلومات تتعلق بنفسك. يرجى ملاحظة أن جميع العروض الترويجية قد تكون محكومة بقواعد منفصلة قد تحتوي على متطلبات أهلية معينة، مثل القيود المفروضة على العمر والموقع الجغرافي. أنت مسؤول عن قراءة جميع قواعد العروض الترويجية لتحديد ما إذا كنت مؤهلاً للمشاركة أم لا. \nإذا قمت بإدخال أي عرض ترويجي، فإنك توافق على الالتزام والامتثال لجميع قواعد العروض الترويجية. \nقد يتم تطبيق شروط وأحكام إضافية على مشتريات السلع أو الخدمات على الخدمات أو من خلالها، والتي تعتبر الشروط والأحكام جزءًا من هذه الاتفاقية بموجب هذا المرجع."
} }
}, },
"typographical_errors": { "typographical_errors": {
"title": { "title": {
"en": "Typographical Errors", "en": "Typographical Errors",
"ar": "" "ar": "أخطاء مطبعية"
}, },
"text": { "text": {
"en": "In the event a product and/or service is listed at an incorrect price or with incorrect information due to typographical error, we shall have the right to refuse or cancel any orders placed for the product and/or service listed at the incorrect price. We shall have the right to refuse or cancel any such order whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is cancelled, we shall immediately issue a credit to your credit card account or other payment account in the amount of the charge.", "en": "In the event a product and/or service is listed at an incorrect price or with incorrect information due to typographical error, we shall have the right to refuse or cancel any orders placed for the product and/or service listed at the incorrect price. We shall have the right to refuse or cancel any such order whether or not the order has been confirmed and your credit card charged. If your credit card has already been charged for the purchase and your order is cancelled, we shall immediately issue a credit to your credit card account or other payment account in the amount of the charge.",
"ar": "" "ar": "في حالة إدراج منتج و / أو خدمة بسعر غير صحيح أو بمعلومات غير صحيحة بسبب خطأ مطبعي، يحق لنا رفض أو إلغاء أي طلبات مقدمة للمنتج و / أو الخدمة المدرجة بسعر غير صحيح. \n يحق لنا رفض أو إلغاء أي طلب من هذا القبيل سواء تم تأكيد الطلب أم لا وشحن بطاقتك الائتمانية. إذا تم بالفعل خصم رسوم الشراء من بطاقتك الائتمانية وتم إلغاء طلبك ، فسنصدر على الفور رصيدًا لحساب بطاقتك الائتمانية أو حساب دفع آخر بقيمة الرسوم."
} }
}, },
"misc": { "misc": {
"title": { "title": {
"en": "Miscellaneous", "en": "Miscellaneous",
"ar": "" "ar": "متفرقات"
}, },
"text": { "text": {
"en": "If for any reason a court of competent jurisdiction finds any provision or portion of these Terms & Conditions to be unenforceable, the remainder of these Terms & Conditions will continue in full force and effect. Any waiver of any provision of these Terms & Conditions will be effective only if in writing and signed by an authorized representative of EnCoach. EnCoach will be entitled to injunctive or other equitable relief (without the obligations of posting any bond or surety) in the event of any breach or anticipatory breach by you. EnCoach operates and controls the EnCoach Service from its offices in Oman. The Service is not intended for distribution to or use by any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation. Accordingly, those persons who choose to access the EnCoach Service from other locations do so on their own initiative and are solely responsible for compliance with local laws, if and to the extent local laws are applicable. These Terms & Conditions (which include and incorporate the EnCoach Privacy Policy) contains the entire understanding, and supersedes all prior understandings, between you and EnCoach concerning its subject matter, and cannot be changed or modified by you. The section headings used in this Agreement are for convenience only and will not be given any legal import.", "en": "If for any reason a court of competent jurisdiction finds any provision or portion of these Terms & Conditions to be unenforceable, the remainder of these Terms & Conditions will continue in full force and effect. Any waiver of any provision of these Terms & Conditions will be effective only if in writing and signed by an authorized representative of EnCoach. EnCoach will be entitled to injunctive or other equitable relief (without the obligations of posting any bond or surety) in the event of any breach or anticipatory breach by you. EnCoach operates and controls the EnCoach Service from its offices in Oman and from any part of the world. The Service is not intended for distribution to or use by any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation. Accordingly, those persons who choose to access the EnCoach Service from other locations do so on their own initiative and are solely responsible for compliance with local laws, if and to the extent local laws are applicable. These Terms & Conditions (which include and incorporate the EnCoach Privacy Policy) contains the entire understanding, and supersedes all prior understandings, between you and EnCoach concerning its subject matter, and cannot be changed or modified by you. The section headings used in this Agreement are for convenience only and will not be given any legal import.",
"ar": "" "ar": "إذا وجدت محكمة مختصة لأي سبب من الأسباب أن أي حكم أو جزء من هذه الشروط والأحكام غير قابل للتنفيذ، فستظل بقية هذه الشروط والأحكام سارية المفعول والتأثير الكامل. لن يكون أي تنازل عن أي شرط من هذه الشروط والأحكام ساريًا إلا إذا كان مكتوبًا وموقعًا من قبل ممثل معتمد من ( إنكوتش ). يحق لـ ( إنكوتش ) الحصول على أمر زجري أو أي تعويض إنصافي آخر (بدون التزامات بنشر أي تعهد أو ضمان) في حالة حدوث أي خرق أو خرق استباقي من جانبك. \n تدير ( إنكوتش ) وتتحكم في خدمة ( إنكوتش ) من مكاتبها في سلطنة عمان أو من مكاتبها حول العالم . \n الخدمة غير مخصصة للتوزيع أو الاستخدام من قبل أي شخص أو كيان في أي ولاية قضائية أو بلد حيث يكون هذا التوزيع أو الاستخدام مخالفًا للقانون أو اللوائح. وبناءً على ذلك، فإن هؤلاء الأشخاص الذين يختارون الوصول إلى خدمة (إنكوتش) من مواقع أخرى يفعلون ذلك بمبادرتهم الخاصة ويتحملون وحدهم المسؤولية عن الامتثال للقوانين المحلية، إذا كانت القوانين المحلية قابلة للتطبيق. تحتوي هذه الشروط والأحكام (التي تتضمن وتدرج سياسة الخصوصية في ( إنكوتش) على الفهم الكامل وتحل محل جميع التفاهمات السابقة بينك وبين ( إنكوتش ) فيما يتعلق بموضوعها، ولا يمكنك تغييرها أو تعديلها. عناوين الأقسام المستخدمة في هذه الاتفاقية هي للتسهيل فقط ولن يتم استيرادها بشكل قانوني"
} }
}, },
"disclaimer": { "disclaimer": {
"title": { "title": {
"en": "Disclaimer", "en": "Disclaimer",
"ar": "" "ar": "إخلاء المسؤولية"
}, },
"text": { "text": {
"en": "EnCoach is not responsible for any content, code or any other imprecision.\nEnCoach does not provide warranties or guarantees.\nIn no event shall EnCoach be liable for any special, direct, indirect, consequential, or incidental damages or any damages whatsoever, whether in an action of contract, negligence or other tort, arising out of or in connection with the use of the Service or the contents of the Service. EnCoach reserves the right to make additions, deletions, or modifications to the contents on the Service at any time without prior notice.\nThe EnCoach Service and its contents are provided \"as is\" and \"as available\" without any warranty or representations of any kind, whether express or implied. EnCoach is a distributor and not a publisher of the content supplied by third parties; as such, EnCoach exercises no editorial control over such content and makes no warranty or representation as to the accuracy, reliability or currency of any information, content, service or merchandise provided through or accessible via the EnCoach Service. Without limiting the foregoing, EnCoach specifically disclaims all warranties and representations in any content transmitted on or in connection with the EnCoach Service or on sites that may appear as links on the EnCoach Service, or in the products provided as a part of, or otherwise in connection with, the EnCoach Service, including without limitation any warranties of merchantability, fitness for a particular purpose or non-infringement of third party rights. No oral advice or written information given by EnCoach or any of its affiliates, employees, officers, directors, agents, or the like will create a warranty. Price and availability information is subject to change without notice. Without limiting the foregoing, EnCoach does not warrant that the EnCoach Service will be uninterrupted, uncorrupted, timely, or error-free.", "en": "EnCoach is not responsible for any content, code or any other imprecision.\nEnCoach does not provide warranties or guarantees.\nIn no event shall EnCoach be liable for any special, direct, indirect, consequential, or incidental damages or any damages whatsoever, whether in an action of contract, negligence or other tort, arising out of or in connection with the use of the Service or the contents of the Service. EnCoach reserves the right to make additions, deletions, or modifications to the contents on the Service at any time without prior notice.\nThe EnCoach Service and its contents are provided \"as is\" and \"as available\" without any warranty or representations of any kind, whether express or implied. EnCoach is a distributor and not a publisher of the content supplied by third parties; as such, EnCoach exercises no editorial control over such content and makes no warranty or representation as to the accuracy, reliability or currency of any information, content, service or merchandise provided through or accessible via the EnCoach Service. Without limiting the foregoing, EnCoach specifically disclaims all warranties and representations in any content transmitted on or in connection with the EnCoach Service or on sites that may appear as links on the EnCoach Service, or in the products provided as a part of, or otherwise in connection with, the EnCoach Service, including without limitation any warranties of merchantability, fitness for a particular purpose or non-infringement of third party rights. No oral advice or written information given by EnCoach or any of its affiliates, employees, officers, directors, agents, or the like will create a warranty. Price and availability information is subject to change without notice. Without limiting the foregoing, EnCoach does not warrant that the EnCoach Service will be uninterrupted, uncorrupted, timely, or error-free.",
"ar": "" "ar": "تقدم خدمة إنكوتش ومحتوياتها \"كما هي\" و \"حسب التوفر\" دون أي ضمان أو تمثيلات من أي نوع، سواء كانت صريحة أو ضمنية. \n إنكوتش هي موزع وليست ناشرًا للمحتوى الذي يتم توفيره من قبل أطراف ثالثة. وبصفتها كذلك، فإنكوتش لا تمارس أي سيطرة تحريرية على هذا المحتوى ولا تقدم أي ضمان أو تمثيل بشأن دقة أو موثوقية أو تحديث أي معلومات أو محتوى أو خدمة أو سلعة يتم توفيرها من خلال خدمة إنكوتش أو الوصول إليها عبرها. \n بدون الإقلال من ما سبق، لا تقدم إنكوتش صراحة جميع الضمانات والتمثيلات في أي محتوى يتم نقله عبر خدمة إنكوتش أو في المواقع التي قد تظهر كروابط على خدمة إنكوتش، أو في المنتجات المقدمة كجزء من خدمة إنكوتش، بما في ذلك ، ودون حصر ، أي ضمانات تجارية أو لياقة لغرض معين أو عدم انتهاك حقوق الطرف الثالث. \n لا توجد مشورة شفهية أو معلومات مكتوبة تقدمها إنكوتش أو أي من تابعاتها أو موظفيها أو ضباطها أو مديريها أو وكلائها أو ما شابه ذلك ستخلق ضمانًا. \n قد تتغير معلومات السعر والتوفر دون إشعار مسبق. \n بدون الإقلال من ما سبق، لا تضمن إنكوتش أن الخدمة ستكون غير منقطعة أو غير متلفة أو في الوقت المناسب أو خالية من الأخطاء."
} }
}, },
"contact": { "contact": {
"title": { "title": {
"en": "Contact Us", "en": "Contact Us",
"ar": "" "ar": "تواصل معنا"
}, },
"text": { "text": {
"en": "Don't hesitate to contact us if you have any questions.", "en": "Don't hesitate to contact us if you have any questions.",
"ar": "" "ar": "لا تتردد في التواصل معنا اذا كان لديك أي سؤال"
}, },
"list": [ "list": [
{ {
"en": "Via Email: support@EnCoach.com", "en": "Via Email: info@EnCoach.com",
"ar": "" "ar": "عبر البريد الإلكتروني : info@encoach.com"
}, },
{ {
"en": "Via this Link: https://EnCoach.com", "en": "Via this Link: https://EnCoach.com",
"ar": "" "ar": "عبر الموقع الإلكتروني https://encoach.com"
} }
] ]
} }