From 06c962de367faad4eb800f9e675e60a6ac6ab056 Mon Sep 17 00:00:00 2001 From: Samir Sabri Date: Sat, 21 Oct 2023 17:31:53 +0300 Subject: [PATCH] feat!: remove Transifex calls for OEP-58 --- .gitignore | 1 + .tx/config | 9 -- Makefile | 23 +---- src/i18n/index.jsx | 42 +------- src/i18n/messages/ar.json | 180 ---------------------------------- src/i18n/messages/ca.json | 1 - src/i18n/messages/de.json | 180 ---------------------------------- src/i18n/messages/de_DE.json | 180 ---------------------------------- src/i18n/messages/es_419.json | 180 ---------------------------------- src/i18n/messages/fa_IR.json | 180 ---------------------------------- src/i18n/messages/fr.json | 180 ---------------------------------- src/i18n/messages/fr_CA.json | 180 ---------------------------------- src/i18n/messages/he.json | 1 - src/i18n/messages/hi.json | 180 ---------------------------------- src/i18n/messages/id.json | 1 - src/i18n/messages/it.json | 180 ---------------------------------- src/i18n/messages/it_IT.json | 180 ---------------------------------- src/i18n/messages/ko_kr.json | 1 - src/i18n/messages/pl.json | 1 - src/i18n/messages/pt.json | 180 ---------------------------------- src/i18n/messages/pt_PT.json | 180 ---------------------------------- src/i18n/messages/pt_br.json | 1 - src/i18n/messages/ru.json | 180 ---------------------------------- src/i18n/messages/th.json | 1 - src/i18n/messages/uk.json | 180 ---------------------------------- src/i18n/messages/zh_CN.json | 180 ---------------------------------- 26 files changed, 3 insertions(+), 2779 deletions(-) delete mode 100644 .tx/config delete mode 100644 src/i18n/messages/ar.json delete mode 100644 src/i18n/messages/ca.json delete mode 100644 src/i18n/messages/de.json delete mode 100644 src/i18n/messages/de_DE.json delete mode 100644 src/i18n/messages/es_419.json delete mode 100644 src/i18n/messages/fa_IR.json delete mode 100644 src/i18n/messages/fr.json delete mode 100644 src/i18n/messages/fr_CA.json delete mode 100644 src/i18n/messages/he.json delete mode 100644 src/i18n/messages/hi.json delete mode 100644 src/i18n/messages/id.json delete mode 100644 src/i18n/messages/it.json delete mode 100644 src/i18n/messages/it_IT.json delete mode 100644 src/i18n/messages/ko_kr.json delete mode 100644 src/i18n/messages/pl.json delete mode 100644 src/i18n/messages/pt.json delete mode 100644 src/i18n/messages/pt_PT.json delete mode 100644 src/i18n/messages/pt_br.json delete mode 100644 src/i18n/messages/ru.json delete mode 100644 src/i18n/messages/th.json delete mode 100644 src/i18n/messages/uk.json delete mode 100644 src/i18n/messages/zh_CN.json diff --git a/.gitignore b/.gitignore index ceeeb024be..2afbcab954 100755 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ temp/babel-plugin-react-intl *~ /temp /.vscode +src/i18n/messages \ No newline at end of file diff --git a/.tx/config b/.tx/config deleted file mode 100644 index 93287d4648..0000000000 --- a/.tx/config +++ /dev/null @@ -1,9 +0,0 @@ -[main] -host = https://www.transifex.com - -[o:open-edx:p:edx-platform:r:frontend-app-authn] -file_filter = src/i18n/messages/.json -source_file = src/i18n/transifex_input.json -source_lang = en -type = KEYVALUEJSON - diff --git a/Makefile b/Makefile index b0d0cae330..6248724262 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,3 @@ -export TRANSIFEX_RESOURCE = frontend-app-authn -transifex_langs = "ar,de,de_DE,es_419,fa_IR,fr,fr_CA,hi,it,it_IT,pt,pt_PT,ru,uk,zh_CN" - intl_imports = ./node_modules/.bin/intl-imports.js transifex_utils = ./node_modules/.bin/transifex-utils.js i18n = ./src/i18n @@ -32,33 +29,15 @@ detect_changed_source_translations: # Checking for changed translations... git diff --exit-code $(i18n) -# Pushes translations to Transifex. You must run make extract_translations first. -push_translations: - # Pushing strings to Transifex... - tx push -s - # Fetching hashes from Transifex... - ./node_modules/@edx/reactifex/bash_scripts/get_hashed_strings_v3.sh - # Writing out comments to file... - $(transifex_utils) $(transifex_temp) --comments --v3-scripts-path - # Pushing comments to Transifex... - ./node_modules/@edx/reactifex/bash_scripts/put_comments_v3.sh - -ifeq ($(OPENEDX_ATLAS_PULL),) -# Pulls translations from Transifex. -pull_translations: - tx pull -t -f --mode reviewed --languages=$(transifex_langs) -else -# Experimental: OEP-58 Pulls translations using atlas pull_translations: rm -rf src/i18n/messages mkdir src/i18n/messages cd src/i18n/messages \ - && atlas pull --filter=$(transifex_langs) \ + && atlas pull \ translations/paragon/src/i18n/messages:paragon \ translations/frontend-app-authn/src/i18n/messages:frontend-app-authn $(intl_imports) paragon frontend-app-authn -endif # This target is used by Travis. validate-no-uncommitted-package-lock-changes: diff --git a/src/i18n/index.jsx b/src/i18n/index.jsx index 1814d8597b..d6d1738de6 100644 --- a/src/i18n/index.jsx +++ b/src/i18n/index.jsx @@ -1,41 +1 @@ -import { messages as paragonMessages } from '@edx/paragon'; - -import arMessages from './messages/ar.json'; -import deMessages from './messages/de.json'; -import deDEMessages from './messages/de_DE.json'; -import es419Messages from './messages/es_419.json'; -import faIRMessages from './messages/fa_IR.json'; -import frMessages from './messages/fr.json'; -import frCAMessages from './messages/fr_CA.json'; -import hiMessages from './messages/hi.json'; -import itMessages from './messages/it.json'; -import itITMessages from './messages/it_IT.json'; -import ptMessages from './messages/pt.json'; -import ptPTMessages from './messages/pt_PT.json'; -import ruMessages from './messages/ru.json'; -import ukMessages from './messages/uk.json'; -import zhCNMessages from './messages/zh_CN.json'; -// no need to import en messages-- they are in the defaultMessage field - -const appMessages = { - ar: arMessages, - de: deMessages, - 'de-de': deDEMessages, - 'es-419': es419Messages, - 'fa-ir': faIRMessages, - fr: frMessages, - 'fr-ca': frCAMessages, - hi: hiMessages, - it: itMessages, - 'it-it': itITMessages, - pt: ptMessages, - 'pt-pt': ptPTMessages, - ru: ruMessages, - uk: ukMessages, - 'zh-cn': zhCNMessages, -}; - -export default [ - paragonMessages, - appMessages, -]; +export default []; diff --git a/src/i18n/messages/ar.json b/src/i18n/messages/ar.json deleted file mode 100644 index e91cb68fa8..0000000000 --- a/src/i18n/messages/ar.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "ابدأ التعلم ", - "with.site.name": "مع {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "أهلا بك {username} في {siteName}", - "complete.your.profile.1": "أكمل", - "complete.your.profile.2": "ملفك الشخصي", - "institution.login.page.sub.heading": "اختر مؤسستك من القائمة أدناه", - "logistration.sign.in": "تسجيل الدخول", - "logistration.register": "التسجيل", - "enterprisetpa.title.heading": "هل ترغب في تسجيل الدخول باستخدام بيانات {providerName} الخاصة بك؟", - "enterprisetpa.login.button.text": "أرِني وسائل أخرى لتسجيل الدخول أو للتسجيل", - "enterprisetpa.login.button.text.public.account.creation.disabled": "أرني طرقًا أخرى لتسجيل الدخول", - "sso.sign.in.with": "تسجيل الدخول باستخدام {providerName}", - "sso.create.account.using": "إنشاء حساب باستخدام {providerName}", - "show.password": "إظهار كلمة المرور", - "hide.password": "اخفاء كلمة المرور", - "one.letter": "حرف واحد", - "one.number": "رقم واحد", - "eight.characters": "8 رموز", - "password.sr.only.helping.text": "يجب أن تحتوي كلمة المرور على الأقل 8 رموز، منها حرف واحد و رقم واحد على الأقل.", - "tpa.alert.heading": "انتهينا تقريبا!", - "login.third.party.auth.account.not.linked": "لقد نجحت في تسجيل الدخول إلى {currentProvider}، لكن حسابك على {currentProvider} غير موصول بأي حساب على {platformName}. لوصل حساباتك، سجّل الدخول الآن باستخدام كلمة مرورك على {platformName}.", - "register.third.party.auth.account.not.linked": "لقد سجلت دخولك بنجاح إلى {currentProvider}! نحتاج فقط قليلاً بعدُ من المعلومات قبل أن تبدأ التعلم مع {platformName}.", - "registration.using.tpa.form.heading": "إتمام إنشاء حسابك", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "الرجاء اختيار نوع الطلب الخاص بك:", - "error.notfound.message": "الصفحة التي تبحث عنها غير متوفرة أو هناك خطأ في العنوان. رجاءً تحقق من العنوان و حاول مجددًا.", - "forgot.password.confirmation.message": "لقد أرسلنا بريدًا إلكترونيًا إلى {email} به إرشادات لإعادة ضبط كلمة المرور الخاصة بك. إن لم تستلم رسالة إعادة ضبط كلمة المرور بعد دقيقة واحدة، فتحقق من إدخال عنوان البريد الإلكتروني الصحيح، أو تفقد مجلد الرسائل غير المرغوب فيها. إن احتجت مزيدًا من المساعدة، {supportLink}.", - "forgot.password.page.title": "نسيت كلمة المرور | {siteName}", - "forgot.password.page.heading": "إعادة ضبط كلمة المرور", - "forgot.password.page.instructions": "رجاءً أدخل عنوان بريدك الإلكتروني أدناه وسنرسل إليك بريدًا به إرشادات بخصوص كيفية إعادة ضبط كلمة مرورك.", - "forgot.password.page.invalid.email.message": "أدخل عنوان بريد إلكتروني صحيح", - "forgot.password.page.email.field.label": "البريد الإلكتروني", - "forgot.password.page.submit.button": "إرسال", - "forgot.password.error.alert.title.": "لم نتمكن من الاتصال بك.", - "forgot.password.error.message.title": "حدث خطأ ما.", - "forgot.password.request.in.progress.message": "طلبك السابق قيد التنفيذ، يرجى المحاولة مرة أخرى بعد لحظات قليلة.", - "forgot.password.empty.email.field.error": "أدخل بريدك الإلكتروني", - "forgot.password.email.help.text": "عنوان البريد الإلكتروني الذي استخدمته للتسجيل في {platformName}", - "confirmation.message.title": "تفقّد بريدك الإلكتروني", - "confirmation.support.link": "اتصل بالدعم الفني", - "need.help.sign.in.text": "هل تحتاج مساعدة في تسجيل الدخول؟", - "additional.help.text": "للمزيد من المساعدة، اتصل بدعم {platformName} على ", - "sign.in.text": "تسجيل الدخول", - "extend.field.errors": "{emailError} أدناه.", - "invalid.token.heading": "رابط إعادة ضبط كلمة المرور غير صالح", - "invalid.token.error.message": "رابط إعادة ضبط كلمة المرور هذا غير صالح. قد يكون مستعمَلا من قبل. أدخل بريدك الإلكتروني أدناه لتلقي رابط جديد.", - "token.validation.rate.limit.error.heading": "طلبات أكثر مما ينبغي", - "token.validation.rate.limit.error": "حدث خطأ بسبب كثرة الطلبات. رجاءً حاول مرة أخرى بعد مضي بعض الوقت.", - "token.validation.internal.sever.error.heading": "فشل في التحقق من صحة الشارة", - "token.validation.internal.sever.error": "حدث خطأ ما. جرب تحديث الصفحة أو تحقق من اتصالك بالإنترنت.", - "internal.server.error": "حدث خطأ ما. جرب تحديث الصفحة أو تحقق من اتصالك بالإنترنت.", - "account.activation.error.message": "شي ما لم يسر على ما يرام، يرجى {supportLink} لحل هذه المشكلة.", - "login.inactive.user.error": "أنت بحاجة لتفعيل حسابك من أجل تسجيل الدخول{lineBreak}\n{lineBreak}لقد أرسلنا للتو رابطًا للتفعيل إلى {email}. إن لم تتلقّ بريدًا إلكترونيا، تفقّد مجلدات الرسائل غير المرغوب فيها أو {supportLink}.", - "allowed.domain.login.error": "كونك مستخدمًا على {allowedDomain}، فإن عليك تسجيل الدخول باستخدام {tpaLink} الخاص بـ {allowedDomain} .", - "login.incorrect.credentials.error.attempts.text.1": "اسم المستخدم أو البريد الإلكتروني أو كلمة المرور التي أدخلتها غير صحيحة. لديك {remainingAttempts, plural,\n one {محاولة واحدة}\n two {محاولتان}\n few {# محاولات}\n many {# محاولة}\n other {# محاولة}\n} أخرى لتسجيل الدخول قبل أن يتم إقفال حسابك مؤقتًا.", - "login.incorrect.credentials.error.attempts.text.2": "إن نسيت كلمة مرورك، {resetLink}", - "account.locked.out.message.2": "لتكون في مأمن، يمكنك {resetLink} قبل تكرار المحاولة.", - "login.incorrect.credentials.error.with.reset.link": "اسم المستخدم أو البريد الإلكتروني أو كلمة المرور التي أدخلتها غير صحيحة. يرجى تكرار المحاولة أو {resetLink}.", - "login.page.title": "تسجيل الدخول | {siteName}", - "login.user.identity.label": "اسم المستخدم أو البريد الإلكتروني", - "login.password.label": "كلمة المرور", - "sign.in.button": "تسجيل الدخول", - "forgot.password": "نسيت كلمة المرور", - "institution.login.button": "بيانات المؤسسة / الجامعة", - "institution.login.page.title": "تسجيل الدخول باستخدام بيانات المؤسسة / الجامعة", - "login.other.options.heading": "أو قم بتسجيل الدخول باستخدام:", - "non.compliant.password.title": "لقد غيرنا متطلبات أمان كلمة المرور مؤخرًا", - "non.compliant.password.message": "كلمة مرورك الحالية لا تستسجيب لمتطلبات الأمان الجديدة. لقد أرسلنا للتو رسالة لإعادة ضبط كلمة المرور إلى عنوان البريد الإلكتروني المرتبط بهذا الحساب. شكرًا لك على مساعدتنا في الحفاظ على سلامة بياناتك.", - "account.locked.out.message.1": "لحماية حسابك، تم إقفاله مؤقتًا. حاول مرة أخرى بعد 30 دقيقة.", - "enterprise.login.btn.text": "بيانات الشركة أو المدرسة", - "username.or.email.format.validation.less.chars.message": "يجب أن يحتوي اسم المستخدم أو البريد الإلكتروني على 3 أحرف على الأقل.", - "email.validation.message": "أدخل اسم المستخدم أو البريد الإلكتروني الخاص بك", - "password.validation.message": "لم يتم استيفاء معايير كلمة المرور", - "account.activation.success.message.title": "نجح الأمر! لقد قمت بتفعيل حسابك.", - "account.activation.success.message": "ستصلك الآن تحديثات وتنبيهات عبر البريد الإلكتروني منا تتعلق بالمساقات التي قمت بالتسجيل فيها. قم بتسجيل الدخول للمتابعة.", - "account.activation.info.message": "هذا الحساب مفعَّل من قبل.", - "account.activation.error.message.title": "لا يمكن تفعيل حسابك", - "account.activation.support.link": "الاتصال بالدعم", - "account.confirmation.success.message.title": "نجحت العملية! لقد أكدت بريدك الإلكتروني.", - "account.confirmation.success.message": "سجل دخولك للمتابعة.", - "account.confirmation.info.message": "هذا البريد الإلكتروني مؤكد من قبل.", - "account.confirmation.error.message.title": "لا يمكن تأكيد بريدك الإلكتروني", - "tpa.account.link": "حساب {provider}", - "internal.server.error.message": "حدث خطأ ما. جرّب تحديث الصفحة أو تحقق من اتصالك بالانترنت.", - "login.rate.limit.reached.message": "كثرت محاولات تسجيل الدخول الفاشلة. رجاءً أعد المحاولة لاحقًا.", - "login.failure.header.title": "لم نتمكّن من تسجيل دخولك.", - "contact.support.link": "اتصل بدعم {platformName}", - "login.incorrect.credentials.error": "اسم المستخدم أو البريد الإلكتروني أو كلمة المرور التي أدخلتها غير صحيحة. حاول مرة اخرى.", - "login.form.invalid.error.message": "رجاءً املأ الحقول أدناه.", - "login.incorrect.credentials.error.reset.link.text": "إعادة ضبط كلمه المرور", - "login.incorrect.credentials.error.before.account.blocked.text": "انقر هنا لإعادة ضبطها.", - "password.security.nudge.title": "أمان كلمة المرور", - "password.security.block.title": "مطلوب تغيير كلمة المرور", - "password.security.nudge.body": "اكتشف نظامنا أن كلمة مرورك ضعيفة. ننصحك بتغييرها حتى يظل حسابك آمنًا.", - "password.security.block.body": "اكتشف نظامنا أن كلمة مرورك صعيفة. غيّر كلمة مرورك حتى يظل حسابك آمنًا.", - "password.security.close.button": "إغلاق", - "password.security.redirect.to.reset.password.button": "إعادة ضبط كلمة المرور", - "login.tpa.authentication.failure": "عذرًا ، غير مصرح لك بالوصول إلى {platform_name} عبر هذه القناة. يرجى الاتصال بمسؤول التعلم أو المدير من أجل الوصول إلى {platform_name}. {lineBreak} {lineBreak} تفاصيل الخطأ: {lineBreak} {errorMessage}", - "progressive.profiling.page.title": "مرحبا بكم | {siteName}", - "progressive.profiling.page.heading": "بعض الأسئلة الموجهة لك ستساعدنا كي نزداد ذكاءً.", - "optional.fields.information.link": "معرفة المزيد عن كيفية استخدامنا لهذه المعلومات.", - "optional.fields.submit.button": "إرسال", - "optional.fields.skip.button": "التخطي مؤقتا", - "optional.fields.next.button": "التالي", - "continue.to.platform": "المواصلة إلى {platformName}", - "modal.title": "شكرا لإعلامنا.", - "modal.description": "إن غيرت رأيك، قيمكنك إكمال ملفك الشخصي ضمن الإعدادات في أي وقت.", - "welcome.page.error.heading": "لم نتمكن من تحديث ملفك الشخصي", - "welcome.page.error.message": "حدث خطأ ما. يمكنك إكمال ملفك الشخصي ضمن الإعدادات في أي وقت.", - "recommendation.page.title": "التوصيات | {siteName}", - "recommendation.page.heading": "لدينا بعض التوصيات لكي تبدأ.", - "recommendation.skip.button": "التخطي مؤقتا", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "التسجيل | {siteName}", - "registration.fullname.label": "الاسم الكامل", - "registration.email.label": "البريد الإلكتروني", - "registration.username.label": "اسم المستخدم العامّ", - "registration.password.label": "كلمة المرور", - "registration.country.label": "البلد / المنطقة", - "registration.opt.in.label": "أوافق على تلقّي رسائل تسويقية من {siteName}.", - "help.text.name": "سيتم استخدام هذا الاسم في أي شهادات تحصل عليها.", - "help.text.username.1": "الاسم الذي ستُعرَف به في مساقاتك.", - "help.text.username.2": "لا يمكن تغيير هذا لاحقًا.", - "help.text.email": "لتفعيل الحساب و التحديثات الهامة", - "create.account.for.free.button": "إنشاء حساب مجانا", - "registration.other.options.heading": "أو سجل باستخدام:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "بيانات المؤسسة / الجامعة", - "register.institution.login.page.title": "التسجيل باستخدام بيانات المؤسسة / الجامعة", - "empty.name.field.error": "أدخل اسمك الكامل", - "empty.email.field.error": "أدخل بريدك الإلكتروني", - "empty.username.field.error": "يجب أن يتكون اسم المستخدم من 2 إلى 30 حرفًا", - "empty.password.field.error": "لم يتم استيفاء معايير كلمة المرور", - "empty.country.field.error": "حدد بلدك أو منطقة إقامتك", - "email.do.not.match": "عناوين البريد الإلكتروني غير متطابقة.", - "email.invalid.format.error": "أدخل بريدا إلكترونيا صحيحا", - "username.validation.message": "يجب أن يتكون اسم المستخدم من 2 إلى 30 حرفًا", - "name.validation.message": "أدخل اسمًا صحيحا", - "username.format.validation.message": "يمكن أن تحتوي أسماء المستخدمين فقط على أحرف (A-Z، a-z)، و أرقام (0-9)، و أسطر سفلية (_)، و واصلات (-). لا يمكن أن تحتوي أسماء المستخدمين على مسافات", - "registration.request.failure.header": "لم نتمكّن من إنشاء حسابك.", - "registration.empty.form.submission.error": "رجاءً تحقّق من أجوبتك و حاول مجددا.", - "registration.request.server.error": "حدث خطأ ما. جرب تحديث الصفحة أو تحقق من اتصالك بالإنترنت.", - "registration.rate.limit.error": "كثرت محاولات التسجيل الفاشلة. أعد المحاولة لاحقًا.", - "registration.tpa.session.expired": "نفد وقت التسجيل باستخدام {provider}.", - "registration.tpa.authentication.failure": "عذرًا، غير مصرح لك بالوصول إلى {platform_name} عبر هذه القناة. يرجى الاتصال بمسؤول التعلم أو المدير من أجل الوصول إلى {platform_name}. {lineBreak} {lineBreak} تفاصيل الخطأ: {lineBreak} {errorMessage}", - "terms.of.service.and.honor.code": "شروط الخدمة وميثاق الشرف الأكاديمي", - "privacy.policy": "سياسة الخصوصية", - "honor.code": "ميثاق الشرف الأكاديمي", - "terms.of.service": "شروط الخدمة", - "registration.username.suggestion.label": "مقترح:", - "did.you.mean.alert.text": "هل تقصد", - "register.page.terms.of.service.and.honor.code": "بإنشاءك حسابًا، فإنك توافق على {tosAndHonorCode} و تقر بأن {platformName} و كل عضو يعالج بياناتك الشخصية وفقًا لـ{privacyPolicy}.", - "register.page.honor.code": "اوافق على شروط {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "اوافق على {platformName} {termsOfService}", - "sign.in": "تسجيل الدخول", - "reset.password.page.title": "إعادة ضبط كلمة المرور | {siteName}", - "reset.password": "إعادة ضبط كلمة المرور", - "reset.password.page.instructions": "قم بإدخال و تأكيد كلمة مرورك.", - "new.password.label": "كلمة المرور الجديدة", - "confirm.password.label": "تأكيد كلمة المرور", - "passwords.do.not.match": "كلمتا المرور غير متطابقتين", - "confirm.your.password": "تأكيد كلمة مرورك", - "reset.password.failure.heading": "لم نتمكن من إعادة ضبط كلمة مرورك.", - "reset.password.form.submission.error": "رجاءً تحقق من أجوبتك وحاول مجددًا.", - "reset.server.rate.limit.error": "طلبات أكثر مما ينبغي.", - "reset.password.success.heading": "تمت إعادة ضبط كلمة المرور.", - "reset.password.success": "تمت إعادة ضبط كلمة مرورك. سجل الدخول إلى حسابك.", - "rate.limit.error": "حدث خطأ بسبب كثرة الطلبات. رجاءً حاول مرة أخرى بعد مضي بعض الوقت." -} \ No newline at end of file diff --git a/src/i18n/messages/ca.json b/src/i18n/messages/ca.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/ca.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/de.json b/src/i18n/messages/de.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/de.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/de_DE.json b/src/i18n/messages/de_DE.json deleted file mode 100644 index 05ba5af5b2..0000000000 --- a/src/i18n/messages/de_DE.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Beginne zu lernen", - "with.site.name": "mit {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Willkommen bei {siteName}, {username}!", - "complete.your.profile.1": "Vervollständige", - "complete.your.profile.2": "dein Profil", - "institution.login.page.sub.heading": "Wählen Sie Ihre Institution aus der folgenden Liste aus", - "logistration.sign.in": "Anmelden", - "logistration.register": "Registrieren", - "enterprisetpa.title.heading": "Möchten Sie sich mit Ihren {providerName}-Anmeldedaten anmelden?", - "enterprisetpa.login.button.text": "Andere Möglichkeiten für die Anmeldung oder Registrierung", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Melden Sie sich mit {providerName} an", - "sso.create.account.using": "Erstellen Sie ein Konto mit {providerName}", - "show.password": "Passwort anzeigen", - "hide.password": "Passwort verbergen", - "one.letter": "1 Buchstabe", - "one.number": "1 Nummer", - "eight.characters": "8 Charaktere", - "password.sr.only.helping.text": "Das Passwort muss mindestens 8 Zeichen, mindestens einen Buchstaben und mindestens eine Zahl enthalten", - "tpa.alert.heading": "Fast fertig!", - "login.third.party.auth.account.not.linked": "Sie haben sich erfolgreich bei {currentProvider} angemeldet, aber Ihr {currentProvider}-Konto hat kein verknüpftes {platformName}-Konto. Um Ihre Konten zu verknüpfen, melden Sie sich jetzt mit Ihrem {platformName}-Passwort an.", - "register.third.party.auth.account.not.linked": "Sie haben sich erfolgreich bei {currentProvider} angemeldet! Wir brauchen nur ein paar mehr Informationen, bevor Sie anfangen, mit {platformName} zu lernen.", - "registration.using.tpa.form.heading": "Beenden Sie die Erstellung Ihres Kontos", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "Die gesuchte Seite ist nicht verfügbar oder es liegt ein Fehler in der URL vor. Bitte überprüfen Sie die URL und versuchen Sie es erneut.", - "forgot.password.confirmation.message": "Wir haben eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts an {email} gesendet. Wenn Sie nach 1 Minute keine Nachricht zum Zurücksetzen des Passworts erhalten, überprüfen Sie, ob Sie die richtige E-Mail-Adresse eingegeben haben, oder überprüfen Sie Ihren Spam-Ordner. Wenn Sie weitere Hilfe benötigen, {supportLink}.", - "forgot.password.page.title": "Passwort vergessen | {siteName}", - "forgot.password.page.heading": "Passwort zurücksetzen", - "forgot.password.page.instructions": "Bitte geben Sie unten Ihre E-Mail-Adresse ein und wir senden Ihnen eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts.", - "forgot.password.page.invalid.email.message": "Geben sie eine gültige E-Mail-Adresse an", - "forgot.password.page.email.field.label": "E-Mail Adresse", - "forgot.password.page.submit.button": "Einreichen", - "forgot.password.error.alert.title.": "Wir konnten Sie nicht kontaktieren.", - "forgot.password.error.message.title": "Ein Fehler ist aufgetreten.", - "forgot.password.request.in.progress.message": "Ihre vorherige Anfrage ist in Bearbeitung, bitte versuchen Sie es in wenigen Augenblicken erneut.", - "forgot.password.empty.email.field.error": "Geben sie ihre E-Mail Adresse ein", - "forgot.password.email.help.text": "Die E-Mail-Adresse, mit der Sie sich bei {platformName} registriert haben", - "confirmation.message.title": "Prüfen Sie Ihr E-Mail-Postfach", - "confirmation.support.link": "wenden Sie sich an den technischen Support", - "need.help.sign.in.text": "Brauchen Sie Hilfe bei der Anmeldung?", - "additional.help.text": "Wenden Sie sich für weitere Hilfe an den {platformName}-Support unter", - "sign.in.text": "Anmelden", - "extend.field.errors": "{emailError} unten.", - "invalid.token.heading": "Ungültiger Link zum Zurücksetzen des Passworts", - "invalid.token.error.message": "Dieser Link zum Zurücksetzen des Passwortes ist ungültig. Möglicherweise wurde es bereits verwendet. Geben Sie unten Ihre E-Mail-Adresse ein, um einen neuen Link zu erhalten.", - "token.validation.rate.limit.error.heading": "Zu viele Anfragen", - "token.validation.rate.limit.error": "Aufgrund von zu vieler Anfragen ist ein Fehler aufgetreten. Bitte versuchen Sie es nach einiger Zeit erneut.", - "token.validation.internal.sever.error.heading": "Token-Validierungsfehler", - "token.validation.internal.sever.error": "Ein Fehler ist aufgetreten. Versuchen Sie, die Seite zu aktualisieren, oder überprüfen Sie Ihre Internetverbindung.", - "internal.server.error": "Ein Fehler ist aufgetreten. Versuchen Sie, die Seite zu aktualisieren, oder überprüfen Sie Ihre Internetverbindung.", - "account.activation.error.message": "Etwas ist schief gelaufen, bitte {supportLink} um dieses Problem zu lösen.", - "login.inactive.user.error": "Um sich anzumelden, müssen Sie Ihr Konto aktivieren.{lineBreak} {lineBreak}Wir haben gerade einen Aktivierungslink an {email} gesendet. Wenn Sie keine E-Mail erhalten, überprüfen Sie Ihre Spam-Ordner oder {supportLink}.", - "allowed.domain.login.error": "Als {allowedDomain}-Benutzer müssen Sie sich mit Ihrem {allowedDomain} {tpaLink} anmelden.", - "login.incorrect.credentials.error.attempts.text.1": "Der eingegebene Benutzername, die E-Mail oder das Passwort ist falsch. Sie haben {remainingAttempts} weitere Anmeldeversuche, bevor Ihr Konto vorübergehend gesperrt wird.", - "login.incorrect.credentials.error.attempts.text.2": "Wenn Sie Ihr Passwort vergessen haben, {resetLink}", - "account.locked.out.message.2": "Um auf der sicheren Seite zu sein, können Sie {resetLink} tun, bevor Sie es erneut versuchen.", - "login.incorrect.credentials.error.with.reset.link": "Der eingegebene Benutzername, die E-Mail-Adresse oder das Passwort ist falsch. Bitte versuchen Sie es erneut oder {resetLink}.", - "login.page.title": "Anmelden | {siteName}", - "login.user.identity.label": "Benutzername oder E-Mail-Adresse", - "login.password.label": "Passwort", - "sign.in.button": "Anmelden", - "forgot.password": "Passwort vergessen", - "institution.login.button": "Zeugnisse der Institution/des Campus", - "institution.login.page.title": "Melden Sie sich mit Institutions-/Campus-Anmeldeinformationen an", - "login.other.options.heading": "Oder melden Sie sich an mit:", - "non.compliant.password.title": "Wir haben kürzlich unsere Passwortanforderungen geändert", - "non.compliant.password.message": "Ihr aktuelles Passwort entspricht nicht den neuen Sicherheitsanforderungen. Wir haben gerade eine Nachricht zum Zurücksetzen des Passworts an die mit diesem Konto verknüpfte E-Mail-Adresse gesendet. Vielen Dank, dass Sie uns helfen, Ihre Daten zu schützen.", - "account.locked.out.message.1": "Um Ihr Konto zu schützen, wurde es vorübergehend gesperrt. Versuchen Sie es in 30 Minuten erneut.", - "enterprise.login.btn.text": "Arbeits- oder Schulzeugnisse", - "username.or.email.format.validation.less.chars.message": "Benutzername oder E-Mail müssen mindestens 3 Zeichen lang sein.", - "email.validation.message": "Geben Sie Ihren Benutzernamen oder Ihre E-Mail-Adresse ein", - "password.validation.message": "Die Passwortkriterien wurden nicht erfüllt", - "account.activation.success.message.title": "Super! Sie haben Ihr Konto aktiviert.", - "account.activation.success.message": "Sie erhalten jetzt E-Mail-Updates und Benachrichtigungen von uns in Bezug auf die Kurse, für die Sie eingeschrieben sind. Melden Sie sich an, um fortzufahren.", - "account.activation.info.message": "Dieses Konto wurde bereits aktiviert.", - "account.activation.error.message.title": "Ihr Konto konnte nicht aktiviert werden", - "account.activation.support.link": "kontaktieren Sie den Support", - "account.confirmation.success.message.title": "Super! Sie haben Ihre E-Mail bestätigt.", - "account.confirmation.success.message": "Melden Sie sich an, um fortzufahren.", - "account.confirmation.info.message": "Diese E-Mail-Adresse wurde bereits bestätigt.", - "account.confirmation.error.message.title": "Ihre E-Mail-Adresse konnte nicht bestätigt werden", - "tpa.account.link": "{provider}-Konto", - "internal.server.error.message": "Ein Fehler ist aufgetreten. Versuchen Sie, die Seite zu aktualisieren, oder überprüfen Sie Ihre Internetverbindung.", - "login.rate.limit.reached.message": "Zu viele fehlgeschlagene Anmeldeversuche. Bitte versuche es später noch einmal.", - "login.failure.header.title": "Wir konnten Sie leider nicht einloggen.", - "contact.support.link": "Wenden Sie sich an den Support der {platformName}", - "login.incorrect.credentials.error": "Der eingegebene Benutzername, die E-Mail-Adresse oder das Passwort ist falsch. Bitte versuche es erneut.", - "login.form.invalid.error.message": "Bitte füllen Sie die unten stehenden Felder aus.", - "login.incorrect.credentials.error.reset.link.text": "Setzen Sie Ihr Passwort zurück", - "login.incorrect.credentials.error.before.account.blocked.text": "Klicken Sie hier, um es zurückzusetzen.", - "password.security.nudge.title": "Passwortsicherheit", - "password.security.block.title": "Passwortänderung erforderlich", - "password.security.nudge.body": "Unser System hat festgestellt, dass Ihr Passwort angreifbar ist. Wir empfehlen Ihnen, es zu ändern, damit Ihr Konto sicher bleibt.", - "password.security.block.body": "Unser System hat festgestellt, dass Ihr Passwort angreifbar ist. Ändern Sie Ihr Passwort, damit Ihr Konto sicher bleibt.", - "password.security.close.button": "Schließen", - "password.security.redirect.to.reset.password.button": "Setzen Sie Ihr Passwort zurück", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "Ein paar Fragen an Sie helfen uns, schlauer zu werden.", - "optional.fields.information.link": "Erfahren Sie mehr darüber, wie wir diese Informationen verwenden.", - "optional.fields.submit.button": "Einreichen", - "optional.fields.skip.button": "Überspringen", - "optional.fields.next.button": "Weiter", - "continue.to.platform": "Weiter zu {platformName}", - "modal.title": "Danke, dass Sie uns das mitteilen.", - "modal.description": "Sie können Ihr Profil jederzeit in den Einstellungen vervollständigen, wenn Sie Ihre Meinung ändern.", - "welcome.page.error.heading": "Wir konnten Ihr Profil nicht aktualisieren", - "welcome.page.error.message": "Ein Fehler ist aufgetreten. Sie können Ihr Profil jederzeit in den Einstellungen vervollständigen.", - "recommendation.page.title": "Empfehlungen | {siteName}", - "recommendation.page.heading": "Wir haben ein paar Empfehlungen für den Einstieg.", - "recommendation.skip.button": "Überspringen", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Registrieren | {siteName}", - "registration.fullname.label": "Vollständiger Name", - "registration.email.label": "E-Mail-Adresse", - "registration.username.label": "Öffentlicher Benutzername", - "registration.password.label": "Passwort", - "registration.country.label": "Land/Region", - "registration.opt.in.label": "Ich stimme zu, dass {siteName} mir Marketingmitteilungen senden darf.", - "help.text.name": "Dieser Name wird von allen Zertifikaten verwendet, die Sie erwerben.", - "help.text.username.1": "Der Name, der Sie in Ihren Kursen identifiziert.", - "help.text.username.2": "Dies kann später nicht mehr geändert werden.", - "help.text.email": "Für die Kontoaktivierung und wichtige Updates", - "create.account.for.free.button": "Erstellen Sie kostenlos ein Benutzerkonto", - "registration.other.options.heading": "Oder registrieren Sie sich bei:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Zeugnisse der Institution/des Campus", - "register.institution.login.page.title": "Registrieren Sie sich mit Institutions-/Campus-Anmeldeinformationen", - "empty.name.field.error": "Geben Sie Ihren vollständigen Namen ein", - "empty.email.field.error": "Geben Sie Ihre E-Mail-Adresse ein", - "empty.username.field.error": "Der Benutzername muss zwischen 2 und 30 Zeichen lang sein", - "empty.password.field.error": "Kennwortkriterien wurden nicht erfüllt", - "empty.country.field.error": "Wählen Sie das Land oder die Region Ihres Wohnsitzes aus", - "email.do.not.match": "Die E-Mail-Adressen stimmen nicht überein.", - "email.invalid.format.error": "Geben sie eine gültige E-Mail-Adresse an", - "username.validation.message": "Der Benutzername muss zwischen 2 und 30 Zeichen lang sein", - "name.validation.message": "Geben Sie einen gültigen Namen ein", - "username.format.validation.message": "Benutzernamen dürfen nur Buchstaben (AZ, az), Ziffern (0-9), Unterstriche (_) und Bindestriche (-) enthalten. Benutzernamen dürfen keine Leerzeichen enthalten", - "registration.request.failure.header": "Wir konnten Ihr Konto leider nicht erstellen.", - "registration.empty.form.submission.error": "Bitte überprüfen Sie Ihre Antworten und versuchen Sie es erneut.", - "registration.request.server.error": "Ein Fehler ist aufgetreten. Versuchen Sie, die Seite zu aktualisieren, oder überprüfen Sie Ihre Internetverbindung.", - "registration.rate.limit.error": "Zu viele fehlgeschlagene Registrierungsversuche. Versuchen Sie es später noch einmal.", - "registration.tpa.session.expired": "Die Registrierung mit {provider} ist abgelaufen.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Nutzungsbedingungen und Verhaltenskodex", - "privacy.policy": "Datenschutzbestimmungen", - "honor.code": "Verhaltenskodex", - "terms.of.service": "Nutzungsbedingungen", - "registration.username.suggestion.label": "Empfohlen:", - "did.you.mean.alert.text": "Meinten Sie", - "register.page.terms.of.service.and.honor.code": "Wenn Sie ein Konto erstellen, stimmen Sie den {tosAndHonorCode} zu und erkennen an, dass {platformName} und jedes \nMitglied Ihre personenbezogenen Daten in Übereinstimmung mit den {privacyPolicy} verarbeitet.", - "register.page.honor.code": "Ich stimme den {platformName} {tosAndHonorCode} zu", - "register.page.terms.of.service": "Ich stimme den {platformName} {termsOfService} zu", - "sign.in": "Anmelden", - "reset.password.page.title": "Passwort zurücksetzen | {siteName}", - "reset.password": "Passwort zurücksetzen", - "reset.password.page.instructions": "Neues Passwort eingeben und bestätigen", - "new.password.label": "Neues Passwort", - "confirm.password.label": "Kennwort bestätigen", - "passwords.do.not.match": "Passwörter stimmen nicht überein", - "confirm.your.password": "Bestätigen Sie Ihr Passwort", - "reset.password.failure.heading": "Wir konnten Ihr Passwort nicht zurücksetzen.", - "reset.password.form.submission.error": "Bitte überprüfen Sie Ihre Antworten und versuchen Sie es erneut.", - "reset.server.rate.limit.error": "Zu viele Anfragen.", - "reset.password.success.heading": "Zurücksetzen des Passworts abgeschlossen.", - "reset.password.success": "Ihr Passwort wurde zurückgesetzt. Melden Sie sich bei Ihrem Konto an.", - "rate.limit.error": "Aufgrund zu vieler Anfragen ist ein Fehler aufgetreten. Bitte versuchen Sie es nach einiger Zeit erneut." -} \ No newline at end of file diff --git a/src/i18n/messages/es_419.json b/src/i18n/messages/es_419.json deleted file mode 100644 index 86c07360d5..0000000000 --- a/src/i18n/messages/es_419.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Empieza a aprender", - "with.site.name": "con {siteName}", - "your.career.turning.point": "El punto de inflexión de tu carrera", - "is.here": "es aquí.", - "welcome.to.platform": "¡Bienvenido a {siteName}, {username}!", - "complete.your.profile.1": "Completado", - "complete.your.profile.2": "tu perfil ", - "institution.login.page.sub.heading": "Selecciona tu institución de la lista siguiente", - "logistration.sign.in": "Iniciar sesión", - "logistration.register": "Registrarse", - "enterprisetpa.title.heading": "¿Deseas iniciar sesión con tus credenciales de {providerName}?", - "enterprisetpa.login.button.text": "Mostrar otras formas de iniciar sesión o de registrarme", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Mostrar otras formas de iniciar sesión", - "sso.sign.in.with": "Inicio de sesión con {providerName}", - "sso.create.account.using": "Crear una cuenta con {providerName}", - "show.password": "Mostrar contraseña", - "hide.password": "Ocultar contraseña", - "one.letter": "1 letra", - "one.number": "1 número", - "eight.characters": "8 caracteres", - "password.sr.only.helping.text": "La contraseña debe contener al menos 8 caracteres, al menos una letra y al menos un número", - "tpa.alert.heading": "¡Ya casi has terminado!", - "login.third.party.auth.account.not.linked": "Te has registrado correctamente en {currentProvider}, pero tu cuenta de {currentProvider} no tiene una cuenta de {platformName} asociada. Para asociar tus cuentas, inicia sesión ahora usando tu contraseña de {platformName}.", - "register.third.party.auth.account.not.linked": "¡Has iniciado sesión con éxito en {currentProvider}! Sólo necesitamos un poco más de información antes de que empieces a aprender con {platformName}.", - "registration.using.tpa.form.heading": "Termina de crear tu cuenta", - "zendesk.supportTitle": "Soporte edX", - "zendesk.selectTicketForm": "Elegir el tipo de solicitud:", - "error.notfound.message": "La página que estas buscando no está disponible o hay un error en la URL. Por favor, verifica la URL y vuelve a intentarlo.", - "forgot.password.confirmation.message": "Hemos enviado un correo electrónico a {email} con instrucciones para restablecer tu contraseña.\n Si no recibes un mensaje de restablecimiento de contraseña después de 1 minuto, verifica que has introducido\n la dirección de correo electrónico correcta, o comprueba tu carpeta de correo no deseado. Si necesitas más ayuda, {supportLink}.", - "forgot.password.page.title": "Olvidé la contraseña | {siteName}", - "forgot.password.page.heading": "Restablecer mi contraseña", - "forgot.password.page.instructions": "Por favor, introduce tu dirección de correo electrónico y te enviaremos un correo electrónico con instrucciones sobre cómo restablecer tu contraseña.", - "forgot.password.page.invalid.email.message": "Introduce una dirección de correo electrónico válida", - "forgot.password.page.email.field.label": "Correo electrónico", - "forgot.password.page.submit.button": "Enviar", - "forgot.password.error.alert.title.": "No hemos podido entrar en contacto contigo.", - "forgot.password.error.message.title": "Ha ocurrido un error.", - "forgot.password.request.in.progress.message": "Su solicitud anterior está en progreso, por favor inténtalo de nuevo en unos minutos.", - "forgot.password.empty.email.field.error": "Introduce tu email", - "forgot.password.email.help.text": "El correo electrónico que utilizaste para registrarte en {platformName}", - "confirmation.message.title": "Verifica tu correo electrónico", - "confirmation.support.link": "entra en contacto con el equipo de soporte técnico", - "need.help.sign.in.text": "¿Necesitas ayuda para iniciar sesión?", - "additional.help.text": "Para obtener ayuda adicional, comuníquese con el soporte de {platformName} en", - "sign.in.text": "Iniciar sesión", - "extend.field.errors": "{emailError} a continuación.", - "invalid.token.heading": "Enlace de restablecimiento de contraseña inválido", - "invalid.token.error.message": "Este enlace para restablecer la contraseña no es válido. Es posible que ya haya sido utilizado. Introduce tu correo electrónico para recibir un nuevo enlace.", - "token.validation.rate.limit.error.heading": "Demasiadas solicitudes", - "token.validation.rate.limit.error": "Se ha producido un error debido a demasiadas solicitudes. Por favor, inténtalo de nuevo después de algún tiempo.", - "token.validation.internal.sever.error.heading": "Fallo de validación del token", - "token.validation.internal.sever.error": "Se ha producido un error. Intenta actualizar la página o verifica tu conexión a Internet.", - "internal.server.error": "Se ha producido un error. Intenta actualizar la página o verifica tu conexión a Internet.", - "account.activation.error.message": "Algo no funcionó correctamente, por favor {supportLink} para resolver este problema.", - "login.inactive.user.error": "Para iniciar sesión, debes activar tu cuenta..{lineBreak}\n {lineBreak} Acabamos de enviar un enlace de activación a {email}. Si no recibes un correo electrónico,\n revisa tus carpetas de spam o {supportLink}.", - "allowed.domain.login.error": "Como usuario {allowedDomain}, debe iniciar sesión con su {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "El nombre de usuario, el email o la contraseña que has introducido son incorrectos. Tienes {remainingAttempts} intentos más de inicio de sesión\n antes de que tu cuenta se bloquee temporalmente.", - "login.incorrect.credentials.error.attempts.text.2": "Si has olvidado tu contraseña, {resetLink}", - "account.locked.out.message.2": "Para estar seguro, puedes {resetLink} antes de volver a intentarlo.", - "login.incorrect.credentials.error.with.reset.link": "El nombre de usuario, el correo electrónico o la contraseña que has introducido son incorrectos. Por favor, inténtalo de nuevo o {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Nombre de usuario o correo electrónico", - "login.password.label": "Contraseña", - "sign.in.button": "Iniciar sesión", - "forgot.password": "Olvidé mi contraseña", - "institution.login.button": "Credenciales de la institución/campus", - "institution.login.page.title": "Iniciar sesión con las credenciales de la institución/campus", - "login.other.options.heading": "O bien, inicia sesión con:", - "non.compliant.password.title": "Recientemente hemos cambiado los requisitos de las contraseñas", - "non.compliant.password.message": "Tu contraseña actual no cumple con los nuevos requisitos de seguridad. Acabamos de enviar un mensaje de restablecimiento de contraseña a la dirección de correo electrónico asociada a esta cuenta. Gracias por ayudarnos a mantener tus datos seguros.", - "account.locked.out.message.1": "Para proteger tu cuenta, se ha bloqueado temporalmente. Inténtalo de nuevo en 30 minutos.", - "enterprise.login.btn.text": "Credenciales de la empresa o de la institución ", - "username.or.email.format.validation.less.chars.message": "El nombre de usuario o el correo electrónico deben tener al menos 3 caracteres.", - "email.validation.message": "Introduce tu nombre de usuario o correo electrónico", - "password.validation.message": "No se han cumplido los criterios de la contraseña", - "account.activation.success.message.title": "Ha sido un éxito. Has activado tu cuenta.", - "account.activation.success.message": "Ahora recibirás por correo electrónico actualizaciones y alertas relacionadas con los cursos en los que estás inscrito. Inicia sesión para continuar.", - "account.activation.info.message": "La cuenta ya ha sido activada.", - "account.activation.error.message.title": "Tu cuenta no ha podido ser activada", - "account.activation.support.link": "contacta al equipo de soporte de edX", - "account.confirmation.success.message.title": "¡Éxito! Has confirmado tu correo electrónico.", - "account.confirmation.success.message": "Inicia sesión para continuar.", - "account.confirmation.info.message": "Este correo electrónico ya ha sido confirmado.", - "account.confirmation.error.message.title": "Tu correo electrónico no pudo ser confirmado", - "tpa.account.link": "{provider} cuenta", - "internal.server.error.message": "Se ha producido un error. Intenta actualizar la página o comprueba tu conexión a Internet.", - "login.rate.limit.reached.message": "Demasiados intentos fallidos de inicio de sesión. Inténtelo de nuevo más tarde.", - "login.failure.header.title": "No se ha podido iniciar tu sesión.", - "contact.support.link": "entrar en contacto con el soporte de {platformName}", - "login.incorrect.credentials.error": "El nombre de usuario, el correo electrónico o la contraseña que has introducido son incorrectos. Por favor, inténtalo de nuevo.", - "login.form.invalid.error.message": "Por favor, complete los siguientes campos.", - "login.incorrect.credentials.error.reset.link.text": "restablecer la contraseña", - "login.incorrect.credentials.error.before.account.blocked.text": "Pulse aquí para restablecerla.", - "password.security.nudge.title": "Seguridad de contraseña", - "password.security.block.title": "Cambio de contraseña requerido", - "password.security.nudge.body": "Nuestro sistema detectó que su contraseña es vulnerable. Le recomendamos que lo cambie para que su cuenta se mantenga segura.", - "password.security.block.body": "Nuestro sistema detectó que su contraseña es vulnerable. Cambie su contraseña para que su cuenta permanezca segura.", - "password.security.close.button": "Cerrar", - "password.security.redirect.to.reset.password.button": "Restablece tu contraseña", - "login.tpa.authentication.failure": "Lo sentimos, no está autorizado para acceder a {platform_name} a través de este canal. Comuníquese con su administrador o gerente de aprendizaje para acceder a {platform_name}.{lineBreak}{lineBreak}Detalles del error:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Bienvenido | {siteName}", - "progressive.profiling.page.heading": "Unas cuantas preguntas para ti nos ayudarán a mejorar.", - "optional.fields.information.link": "Aprende más sobre cómo usamos esta información.", - "optional.fields.submit.button": "Enviar", - "optional.fields.skip.button": "Saltar por ahora ", - "optional.fields.next.button": "Siguiente", - "continue.to.platform": "Continuar a {platformName}", - "modal.title": "Gracias por informarnos.", - "modal.description": "Puedes completar tu perfil en los ajustes en cualquier momento si cambias de opinión.", - "welcome.page.error.heading": "No hemos podido actualizar tu perfil", - "welcome.page.error.message": "Se ha producido un error. Puedes completar tu perfil en los ajustes en cualquier momento.", - "recommendation.page.title": "Recomendaciones | {siteName}", - "recommendation.page.heading": "Tenemos algunas recomendaciones para empezar.", - "recommendation.skip.button": "Saltar por ahora ", - "recommendation.option.trending": "Tendencias", - "recommendation.option.popular": "Más popular", - "recommendation.product-card.pill-text.course": "Curso", - "recommendation.product-card.pill-text.professional-certificate": "Certificado profesional", - "recommendation.product-card.pill-text.emeritus": "Ofrecido en Emeritus", - "recommendation.product-card.pill-text.shorelight": "Ofrecido a través de Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Suscripción", - "recommendation.product-card.launch-icon.sr-text": "Abrir un enlace en una pestaña nueva", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Nombre completo", - "registration.email.label": "Correo electrónico", - "registration.username.label": "Nombre de usuario público", - "registration.password.label": "Contraseña", - "registration.country.label": "País/Región", - "registration.opt.in.label": "Acepto que {siteName} pueda enviarme mensajes de marketing.", - "help.text.name": "Este nombre será utilizado por los certificados que obtengas.", - "help.text.username.1": "El nombre que te identificará en tus cursos.", - "help.text.username.2": "Esto no puede modificarse posteriormente.", - "help.text.email": "Para la activación de la cuenta y las actualizaciones importantes", - "create.account.for.free.button": "Crea una cuenta gratis", - "registration.other.options.heading": "O regístrese con:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Credenciales de la institución/campus", - "register.institution.login.page.title": "Registro con credenciales de la institución/campus", - "empty.name.field.error": "Introduce tu nombre completo", - "empty.email.field.error": "Introduce tu email", - "empty.username.field.error": "El nombre de usuario debe tener entre 2 y 30 caracteres", - "empty.password.field.error": "No se han cumplido los criterios de la contraseña", - "empty.country.field.error": "Selecciona tu país o región de residencia", - "email.do.not.match": "Los correos electrónicos no son iguales.", - "email.invalid.format.error": "Introduce una dirección de correo electrónico válida", - "username.validation.message": "El nombre de usuario debe tener entre 2 y 30 caracteres", - "name.validation.message": "Introduce un nombre válido", - "username.format.validation.message": "Los nombres de usuario solo pueden contener letras (A-Z, a-z), números (0-9), guiones bajos (_) y guiones (-). Los nombres de usuario no pueden contener espacios", - "registration.request.failure.header": "No pudimos crear tu cuenta.", - "registration.empty.form.submission.error": "Por favor, verifica tus respuestas y vuelve a intentarlo.", - "registration.request.server.error": "Se ha producido un error. Intenta actualizar la página o comprueba tu conexión a Internet.", - "registration.rate.limit.error": "Demasiados intentos de registro fallidos. Vuelve a intentarlo más tarde.", - "registration.tpa.session.expired": "Inscripción usando {provider} ha expirado.", - "registration.tpa.authentication.failure": "Lo sentimos, no está autorizado para acceder a {platform_name} a través de este canal. Comuníquese con su administrador o gerente de aprendizaje para acceder a {platform_name}.{lineBreak}{lineBreak}Detalles del error:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Condiciones de servicio y código de honor", - "privacy.policy": "Política de privacidad ", - "honor.code": "Código de Honor", - "terms.of.service": "Términos de servicio", - "registration.username.suggestion.label": "Se recomienda:", - "did.you.mean.alert.text": "¿Quieres decir", - "register.page.terms.of.service.and.honor.code": "Al crear una cuenta, aceptas el {tosAndHonorCode} y reconoces que {platformName} y cada\n Miembro procesa tus datos personales de acuerdo con la {privacyPolicy}.", - "register.page.honor.code": "Acepto las {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "Acepto las {platformName} {termsOfService}", - "sign.in": "Iniciar sesión", - "reset.password.page.title": "Restablecer contraseña | {siteName}", - "reset.password": "Restablecer mi contraseña", - "reset.password.page.instructions": "Ingresa y confirma tu nueva contraseña.", - "new.password.label": "Nueva contraseña", - "confirm.password.label": "Confirmar contraseña", - "passwords.do.not.match": "Las contraseñas no coinciden", - "confirm.your.password": "Confirma tu contraseña", - "reset.password.failure.heading": "No hemos podido restablecer tu contraseña.", - "reset.password.form.submission.error": "Por favor, verifica tus respuestas y vuelve a intentarlo.", - "reset.server.rate.limit.error": "Demasiadas solicitudes.", - "reset.password.success.heading": "Restablecimiento de la contraseña completado.", - "reset.password.success": "Tu contraseña ha sido restablecida. Acceda a tu cuenta.", - "rate.limit.error": "Se ha producido un error debido a demasiadas solicitudes. Por favor, inténtalo de nuevo después de algún tiempo." -} \ No newline at end of file diff --git a/src/i18n/messages/fa_IR.json b/src/i18n/messages/fa_IR.json deleted file mode 100644 index e0e0aba7f4..0000000000 --- a/src/i18n/messages/fa_IR.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "آغاز یادگیری", - "with.site.name": "با {siteName}", - "your.career.turning.point": "نقطه عطف حرفه ای شما", - "is.here": "اینجاست.", - "welcome.to.platform": "خوش آمدید به {siteName}, {username}!", - "complete.your.profile.1": "کامل", - "complete.your.profile.2": "پرونده کاربری شما", - "institution.login.page.sub.heading": "موسسه خود را از فهرست زیر برگزینید", - "logistration.sign.in": "ورود", - "logistration.register": "ثبت‌نام", - "enterprisetpa.title.heading": "آیا می‌خواهید با استفاده از اطلاعات کاربری {providerName} خود وارد سامانه شوید؟", - "enterprisetpa.login.button.text": "راه‌های دیگری برای ورود به سامانه یا ثبت‌نام به من نشان بده", - "enterprisetpa.login.button.text.public.account.creation.disabled": "راه های دیگری را برای ورود به سیستم به من نشان دهید", - "sso.sign.in.with": "با {providerName} وارد شوید", - "sso.create.account.using": "با استفاده از {providerName} حساب کاربری بسازید", - "show.password": "نمایش گذرواژه", - "hide.password": "پنهان‌سازی گذرواژه", - "one.letter": "1 نامه", - "one.number": "1 رقم", - "eight.characters": "8 نویسه", - "password.sr.only.helping.text": "گذرواژه باید حداقل 8 نویسه، حداقل یک حرف و حداقل یک عدد داشته باشد", - "tpa.alert.heading": "تقریبا تمام شد!", - "login.third.party.auth.account.not.linked": "شما با موفقیت به {currentProvider} وارد شدید، اما حساب کاربری {currentProvider} شما به حساب کاربری {platformName} پیوند ندارد. برای پیوند حساب‌های کاربری خود، اکنون با استفاده از گذرواژه {platformName} خود وارد شوید.", - "register.third.party.auth.account.not.linked": "شما با موفقیت به {currentProvider} وارد شدید! پیش از آغاز یادگیری با {platformName} فقط به کمی اطلاعات بیشتر نیاز داریم.", - "registration.using.tpa.form.heading": "ساخت حساب کاربری خود را به اتمام برسانید", - "zendesk.supportTitle": "پشتیبانی edX", - "zendesk.selectTicketForm": "لطفا نوع درخواست خود را انتخاب کنید:", - "error.notfound.message": "صفحه مورد نظر شما در دسترس نیست یا خطایی در نشانی اینترنتی وجود دارد. لطفاً نشانی اینترنتی را بررسی کرده و دوباره تلاش کنید.", - "forgot.password.confirmation.message": "ما رایانامه‌ای به‌همراه دستورالعمل بازنشانی گذرواژه به {email} ارسال کردیم. اگر پس از 1 دقیقه پیام بازنشانی را دریافت نکردید، بررسی کنید که نشانی رایانامه را صحیح وارد کرده‌اید یا پوشه هرزنامه خود را بررسی کنید. اگر به دریافت راهنمایی بیشتری، با {supportLink} تماس بگیرید.", - "forgot.password.page.title": "فراموش گذرواژه | {siteName}", - "forgot.password.page.heading": "بازتنظیم گذرواژه", - "forgot.password.page.instructions": "لطفا نشانی رایانامه خود را در قسمت زیر وارد کنید و ما رایانامه‌ای حاوی دستورالعمل نحوه بازتنظیم مجدد گذرواژه برای شما ارسال خواهیم کرد.", - "forgot.password.page.invalid.email.message": "نشانی رایانامه معتبری را وارد کنید", - "forgot.password.page.email.field.label": "رایانامه", - "forgot.password.page.submit.button": "ارسال", - "forgot.password.error.alert.title.": "ما نتوانستیم با شما تماس بگیریم.", - "forgot.password.error.message.title": "خطایی رخ داد.", - "forgot.password.request.in.progress.message": "درخواست قبلی شما در حال انجام است، لطفا چند لحظه دیگر دوباره تلاش کنید.", - "forgot.password.empty.email.field.error": "نشانی رایانامه خود را وارد کنید", - "forgot.password.email.help.text": "نشانی رایانامه‌ای که برای ثبت‌نام در {platformName} استفاده کردید", - "confirmation.message.title": "صندوق رایانامه خود را ببینید", - "confirmation.support.link": "با پشتیبانی فنی تماس بگیرید", - "need.help.sign.in.text": "برای ورود به سامانه نیاز به کمک دارید؟", - "additional.help.text": "برای دریافت راهنمایی بیشتر، با پشتیبانی {platformName} در این آدرس تماس بگیرید", - "sign.in.text": "ورود", - "extend.field.errors": "{emailError} زیر.", - "invalid.token.heading": "پیوند بازتنظیم گذرواژه معتبر نیست", - "invalid.token.error.message": "این پیوند برای بازتنظیم گذرواژه معتبر نیست. ممکن است قبلاً استفاده شده باشد. برای دریافت پیوند جدید نشانی رایانامه خود را در زیر وارد کنید.", - "token.validation.rate.limit.error.heading": "تعداد زیاد درخواست", - "token.validation.rate.limit.error": "به دلیل درخواست‌های زیاد، خطایی روی داده است. لطفا بعد از مدتی دوباره امتحان کنید.", - "token.validation.internal.sever.error.heading": "اعتبارسنجی رمز انجام نشد", - "token.validation.internal.sever.error": "خطایی رخ داده است. صفحه را دوباره بارگیری کنید یا اتصال اینترنت خود را بررسی کنید.", - "internal.server.error": "خطایی رخ داده است. صفحه را دوباره بارگیری کنید یا اتصال اینترنت خود را بررسی کنید.", - "account.activation.error.message": "اشتباهی رخ داد، لطفاً برای حل این مساله ، به این قسمت{supportLink} مراجعه کنید.", - "login.inactive.user.error": "برای ورود به سامانه، باید حساب کاربری خود را فعال کنید.{lineBreak} {lineBreak}هم اکنون پیوند فعالسازی را به {email} فرستادیم. اگر رایانامه‌ای دریافت نکردید، پوشه‌های هرزنامه یا {supportLink} را بررسی کنید.", - "allowed.domain.login.error": "به عنوان کاربر {allowedDomain}، باید با {allowedDomain} {tpaLink} خود وارد شوید.", - "login.incorrect.credentials.error.attempts.text.1": "نام کاربری، نشانی رایانامه یا گذرواژه‌ای که وارد کرده‌اید نادرست است. پیش از اینکه حساب کاربری شما موقتا قفل شود، {remainingAttempts} تلاش دیگر برای ورود به سامانه دارید.", - "login.incorrect.credentials.error.attempts.text.2": "اگر گذرواژه خود را فراموش کرده‌اید، {resetLink}", - "account.locked.out.message.2": "برای حفظ امنیت، می‌توانید پیش از تلاش مجدد، {resetLink} را انجام دهید.", - "login.incorrect.credentials.error.with.reset.link": "نام کاربری، نشانی رایانامه یا گذرواژه‌ای که وارد کردید درست نیست. لطفاً دوباره امتحان کنید یا {resetLink}.", - "login.page.title": "ورود به سامانه | {siteName}", - "login.user.identity.label": "نام کاربری یا نشانی رایانامه", - "login.password.label": "گذرواژه", - "sign.in.button": "ورود به سامانه", - "forgot.password": "فراموشی گذرواژه", - "institution.login.button": "اعتبارنامه‌های موسسه/پردیس", - "institution.login.page.title": "با اعتبار موسسه/پردیس وارد شوید", - "login.other.options.heading": "یا وارد شوید با:", - "non.compliant.password.title": "ما اخیراً الزامات گذرواژه خود را تغییر دادیم", - "non.compliant.password.message": "گذرواژه فعلی شما الزامات امنیتی جدید را برآورده نمی‌کند. ما فقط یک پیام بازتنظیم گذرواژه به نشانی رایانامه مرتبط با این حساب کاربری ارسال کردیم. از اینکه به ما کمک می‌کنید تا داده‌های شما را ایمن نگه دارید متشکریم.", - "account.locked.out.message.1": "حساب کاربری شما، به دلیل حفاظت، به‌طور موقت قفل شده است. 30 دقیقه دیگر دوباره امتحان کنید.", - "enterprise.login.btn.text": "اعتبار دانشکده یا شرکت", - "username.or.email.format.validation.less.chars.message": "نام کاربری یا نشانی رایانامه حداقل باید 3 نویسه داشته باشد", - "email.validation.message": "نام کاربری یا رایانامه خود را وارد کنید", - "password.validation.message": "معیارهای گذرواژه رعایت نشده است", - "account.activation.success.message.title": "موفق شدید! شما حساب کاربری خود را فعال کردید.", - "account.activation.success.message": "اکنون رایانامه‌های مربوط به روزآمدسازی‌ها و هشدارها درباره دوره‌های آموزشی را که در آن ثبت‌نام کرده‌اید از ما دریافت خواهید کرد. برای ادامه وارد شوید.", - "account.activation.info.message": "حساب کاربری مورد نظر شما قبلاً فعال شده است.", - "account.activation.error.message.title": "امکان فعالسازی حساب کاربری شما نبود", - "account.activation.support.link": "تماس با پشتیبانی ", - "account.confirmation.success.message.title": "موفق شدید! نشانی رایانامه خود را تایید کردید.", - "account.confirmation.success.message": "برای ادامه وارد سامانه شوید.", - "account.confirmation.info.message": "این نشانی رایانامه قبلا تایید شده‌است.", - "account.confirmation.error.message.title": "امکان تایید نشانی رایانامه شما وجود ندارد", - "tpa.account.link": "حساب {provider}", - "internal.server.error.message": "خطایی رخ داده است. صفحه را دوباره بارگیری کنید یا اتصال اینترنت خود را بررسی کنید.", - "login.rate.limit.reached.message": "شما برای ورود به حساب کاربری چند بار تلاش ناموفق داشتید. لطفا بعدا تلاش نمایید.", - "login.failure.header.title": "قادر نیستیم شما را به سامانه وارد کنیم.", - "contact.support.link": "با پشتیبانی {platformName} تماس بگیرید", - "login.incorrect.credentials.error": "نام کاربری، نشانی رایانامه یا گذرواژه‌ای که وارد کردید نادرست است. لطفا دوباره تلاش کنید.", - "login.form.invalid.error.message": "لطفا قسمت‌های زیر را پر کنید.", - "login.incorrect.credentials.error.reset.link.text": "گذرواژه را بازتنظیم کنید", - "login.incorrect.credentials.error.before.account.blocked.text": "برای بازتنظیم اینجا بزنید", - "password.security.nudge.title": "امنیت گذرواژه", - "password.security.block.title": "تغییر گذرواژه ضروری است", - "password.security.nudge.body": "سامانه ما تشخیص داده است که گذرواژه شما آسیب‌پذیر است. توصیه ما این است که آن را تغییر دهید تا حساب کاربری شما ایمن بماند.", - "password.security.block.body": "سامانه ما تشخیص داده است که گذرواژه شما ضعیف و آسیب‌پذیر است. گذرواژه خود را تغییر دهید تا حساب کاربری شما ایمن بماند.", - "password.security.close.button": "بستن", - "password.security.redirect.to.reset.password.button": "بازتنظیم گذرواژه", - "login.tpa.authentication.failure": "متأسفیم، شما مجاز به دسترسی به {platform_name} از طریق این کانال نیستید. لطفاً برای دسترسی به {platform_name} با سرپرست یا مدیر آموزشی خود تماس بگیرید.{lineBreak}{lineBreak}جزئیات خطا:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "خوش آمدید | {siteName}", - "progressive.profiling.page.heading": "چند سوال برای شما به ما کمک خواهد کرد تا باهوش‌تر شویم.", - "optional.fields.information.link": "درباره نحوه استفاده ما از این اطلاعات بیشتر بدانید.", - "optional.fields.submit.button": "ارسال", - "optional.fields.skip.button": "فعلا بگذرید", - "optional.fields.next.button": "بعدی", - "continue.to.platform": "ادامه در {platformName}", - "modal.title": "از اینکه اطلاع دادید تشکر می‌کنیم.", - "modal.description": "در صورت تغییر تصمیم‌تان، شما هر زمانی این امکان را دارید که پرونده کاربری خود را در قسمت تنظیمات تکمیل کنید. ", - "welcome.page.error.heading": "امکان روزآمدسازی پرونده کاربری شما نیست", - "welcome.page.error.message": "خطایی رخ داد. می‌توانید پرونده کاربری خود را هر زمان در قسمت تنظیمات تکمیل کنید.", - "recommendation.page.title": "توصیه ها | {siteName}", - "recommendation.page.heading": "ما چند توصیه برای شروع کار داریم.", - "recommendation.skip.button": "فعلا بگذرید", - "recommendation.option.trending": "پرطرفدار", - "recommendation.option.popular": "محبوبترین", - "recommendation.product-card.pill-text.course": "دوره آموزشی", - "recommendation.product-card.pill-text.professional-certificate": "گواهی حرفه‌ای", - "recommendation.product-card.pill-text.emeritus": "ارائه شده در Emeritus", - "recommendation.product-card.pill-text.shorelight": "از طریق Shorelight ارائه می شود", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "اشتراک", - "recommendation.product-card.launch-icon.sr-text": "پیوندی را در یک برگه جدید باز می کند", - "register.page.title": "ثبت‌نام | {siteName}", - "registration.fullname.label": "نام و نام خانوادگی", - "registration.email.label": "رایانامه", - "registration.username.label": "نام‌کاربری عمومی", - "registration.password.label": "گذرواژه", - "registration.country.label": "کشور/منطقه", - "registration.opt.in.label": "با ارسال پیام‌های بازرگانی از سوی {siteName} موافقم.", - "help.text.name": "این نام در هر گواهی که بدست آورید استفاده خواهد شد.", - "help.text.username.1": "نامی که شما را در دوره‌های آموزشی با آن شناخته خواهید شد.", - "help.text.username.2": "این مورد بعدا قابل تغییر نیست.", - "help.text.email": "برای فعال‌سازی حساب کاربری و روزآمدسازی‌های مهم", - "create.account.for.free.button": "یک حساب کاربری رایگان بسازید", - "registration.other.options.heading": "یا ثبت‌نام کنید با:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "اعتبارنامه‌های موسسه/پردیس", - "register.institution.login.page.title": "با اعتبارنامه موسسه/پردیس ثبت‌نام کنید", - "empty.name.field.error": "نام و نام خانوادگی خود را وارد کنید", - "empty.email.field.error": "نشانی رایانامه خود را وارد کنید", - "empty.username.field.error": "نام کاربری باید بین 2 تا 30 نویسه داشته باشد", - "empty.password.field.error": "معیارهای گذرواژه رعایت نشده است", - "empty.country.field.error": "کشور یا منطقه محل سکونت خود را برگزینید", - "email.do.not.match": "نشانی‌های رایانامه همخوانی ندارند.", - "email.invalid.format.error": "نشانی رایانامه معتبر وارد کنید", - "username.validation.message": "نام کاربری باید بین 2 تا 30 نویسه داشته باشد", - "name.validation.message": "نامی معتبر وارد کنید", - "username.format.validation.message": "نام کاربری فقط می‌تواند شامل حروف (A-Z، a-z)، اعداد (0-9)، خط زیر (_) و خط فاصله (-) باشد. نام کاربری نمی‌تواند حاوی فاصله باشد", - "registration.request.failure.header": "موفق به ایجاد حساب کاربری شما نشدیم.", - "registration.empty.form.submission.error": "لطفاً پاسخ‌های خود را بررسی کرده و دوباره امتحان کنید.", - "registration.request.server.error": "خطایی رخ داده است. صفحه را دوباره بارگیری کنید یا اتصال اینترنت خود را بررسی کنید.", - "registration.rate.limit.error": "تعداد دفعات تلاش ناموفق برای ثبت‌نام بسیار بوده است. بعدا دوباره تلاش کنید.", - "registration.tpa.session.expired": "مهلت ثبت‌نام {provider} به پایان رسیده‌است.", - "registration.tpa.authentication.failure": "متأسفیم، شما مجاز به دسترسی به {platform_name} از طریق این کانال نیستید. لطفاً برای دسترسی به {platform_name} با سرپرست یا مدیر آموزشی خود تماس بگیرید.{lineBreak}{lineBreak}جزئیات خطا:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "شرایط استفاده از خدمات و اصول اخلاقی", - "privacy.policy": "قواعد حفظ حریم خصوصی", - "honor.code": "اصول اخلاقی", - "terms.of.service": "شرایط استفاده از خدمات", - "registration.username.suggestion.label": "پیشنهادشده:", - "did.you.mean.alert.text": "منظور شما این بود", - "register.page.terms.of.service.and.honor.code": "با ایجاد یک حساب کاربری، با {tosAndHonorCode} موافقت می‌کنید و تصدیق می‌کنید که {platformName} و هر عضو داده‌های شخصی شما را مطابق با {privacyPolicy} پردازش می‌کنند.", - "register.page.honor.code": "من با {platformName} {tosAndHonorCode} موافقم", - "register.page.terms.of.service": "من با {platformName} {termsOfService} موافقم", - "sign.in": "ورود", - "reset.password.page.title": "بازتنظیم گذرواژه | {siteName}", - "reset.password": "بازتنظیم گذرواژه", - "reset.password.page.instructions": "گذرواژه جدید را مجددا وارد کنید ", - "new.password.label": "گذرواژه جدید", - "confirm.password.label": "تایید گذرواژه", - "passwords.do.not.match": "گذرواژه‌ها مطابقت ندارند", - "confirm.your.password": "تایید گذرواژه ", - "reset.password.failure.heading": "امکان بازتنظیم گذرواژه شما نیست.", - "reset.password.form.submission.error": "لطفاً پاسخ‌های خود را بررسی کرده و دوباره امتحان کنید.", - "reset.server.rate.limit.error": "تعداد درخواست‌ها خیلی زیاد است.", - "reset.password.success.heading": "بازتنظیم گذرواژه  تکمیل شد.", - "reset.password.success": "گذرواژه شما بازتنظیم شد. وارد حساب کاربری خود شوید", - "rate.limit.error": "به دلیل درخواست‌های زیاد، خطایی روی داده است. لطفا بعد از مدتی دوباره امتحان کنید." -} \ No newline at end of file diff --git a/src/i18n/messages/fr.json b/src/i18n/messages/fr.json deleted file mode 100644 index 241fe9376d..0000000000 --- a/src/i18n/messages/fr.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Démarrer l'apprentissage", - "with.site.name": "avec {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Bienvenue sur {siteName}, {username}!", - "complete.your.profile.1": "Terminé", - "complete.your.profile.2": "votre profil", - "institution.login.page.sub.heading": "Sélectionner votre institution dans la liste ci-dessous", - "logistration.sign.in": "Connectez-vous", - "logistration.register": "S'inscrire", - "enterprisetpa.title.heading": "Souhaitez-vous vous connecter à l'aide de vos identifiants {providerName} ?", - "enterprisetpa.login.button.text": "Montrez-moi d'autres méthodes pour me connecter ou m'inscrire", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Connectez-vous avec {providerName}", - "sso.create.account.using": "Créer un compte avec {providerName}", - "show.password": "Afficher le mot de passe", - "hide.password": "Cacher le mot de passe ", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Le mot de passe doit contenir au moins 8 caractères, au moins une lettre et au moins un chiffre", - "tpa.alert.heading": "Presque fini !", - "login.third.party.auth.account.not.linked": "Vous vous êtes connecté avec succès à {currentProvider}, mais votre compte {currentProvider} n'a pas de compte relié à {platformName}. Pour lier vos comptes, connectez-vous en utilisant votre mot de passe {platformName}.", - "register.third.party.auth.account.not.linked": "Vous vous êtes connecté avec succès à {currentProvider} ! Nous avons juste besoin d'un peu plus d'informations avant que vous commenciez à apprendre avec {platformName}.", - "registration.using.tpa.form.heading": "Terminer la création de votre compte", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "La page que vous recherchez n'est pas disponible ou il y a une erreur dans l'URL. Veuillez vérifier l'URL et réessayer.", - "forgot.password.confirmation.message": "Nous avons envoyé un courriel à {email} avec des instructions pour réinitialiser votre mot de passe.\n Si vous ne recevez pas de message de réinitialisation de mot de passe après 1 minute, vérifiez que vous avez saisi\nl'adresse courriel correctement, ou vérifiez votre dossier de courriel indésirable. Si vous avez besoin d'aide supplémentaire, {supportLink}.", - "forgot.password.page.title": " Mot de passe oublié | {siteName}", - "forgot.password.page.heading": "Réinitialiser le mot de passe", - "forgot.password.page.instructions": "Veuillez entrer votre adresse courriel ci-dessous et nous vous enverrons un courriel avec les instructions pour réinitialiser votre mot de passe.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Envoyez", - "forgot.password.error.alert.title.": "Nous n'avons pas pu vous contacter.", - "forgot.password.error.message.title": "Une erreur est survenue.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Saisissez votre courriel", - "forgot.password.email.help.text": "L'adresse courriel que vous avez utilisée pour vous inscrire sur {platformName}", - "confirmation.message.title": "Vérifiez votre email", - "confirmation.support.link": "contacter le support technique", - "need.help.sign.in.text": "Besoin d'aide pour vous enregistrer?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Connectez-vous", - "extend.field.errors": "{emailError} ci-dessous.", - "invalid.token.heading": "Lien de réinitialisation du mot de passe non valide", - "invalid.token.error.message": "Ce lien de réinitialisation de mot de passe n'est pas valide. Il a peut-être déjà été utilisé. Entrez votre courriel ci-dessous pour recevoir un nouveau lien.", - "token.validation.rate.limit.error.heading": "Trop de demandes", - "token.validation.rate.limit.error": "Une erreur s'est produite en raison d'un trop grand nombre de demandes. Veuillez réessayer après un certain temps.", - "token.validation.internal.sever.error.heading": "Échec de la validation du jeton", - "token.validation.internal.sever.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "internal.server.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "account.activation.error.message": "Une erreur s'est produite, veuillez {supportLink} pour résoudre ce problème.", - "login.inactive.user.error": "Pour vous connecter, vous devez activer votre compte.{lineBreak}\n {lineBreak}Nous venons d'envoyer un lien d'activation à {email}. Si vous ne recevez pas de courriel,\n vérifiez vos dossiers de spam ou {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "Le nom d'utilisateur, le courriel ou le mot de passe que vous avez entré est incorrect. Vous avez {remainingAttempts} tentatives\n de connexion avant que votre compte soit temporairement verrouillé.", - "login.incorrect.credentials.error.attempts.text.2": "Si vous avez oublié votre mot de passe, {resetLink}", - "account.locked.out.message.2": "Par mesure de sécurité, vous pouvez {resetLink} avant de réessayer.", - "login.incorrect.credentials.error.with.reset.link": "Le nom d'utilisateur, l'adresse courriel ou le mot de passe que vous avez saisis sont incorrects. Veuillez réessayer ou {resetLink}.", - "login.page.title": "Connexion | {siteName}", - "login.user.identity.label": "Nom d'utilisateur ou courriel", - "login.password.label": "Mot de passe", - "sign.in.button": "Connectez-vous", - "forgot.password": "Mot de passe oublié", - "institution.login.button": "Identifiants de l'établissement/du campus", - "institution.login.page.title": "Connectez vous avec les crédentiels d'institution ou de campus", - "login.other.options.heading": "Ou se connecter avec :", - "non.compliant.password.title": "Nous avons récemment modifié nos exigences en matière de mot de passe", - "non.compliant.password.message": "Votre mot de passe actuel ne répond pas aux nouvelles exigences de sécurité. Nous venons d'envoyer un message de réinitialisation de mot de passe à l'adresse courriel associée à ce compte. Merci de nous aider à protéger vos données.", - "account.locked.out.message.1": "Pour protéger votre compte, il a été temporairement verrouillé. Réessayez dans 30 minutes.", - "enterprise.login.btn.text": "Identifiants de la compagnie ou de l'école", - "username.or.email.format.validation.less.chars.message": "Le nom d'utilisateur ou l'adresse courriel doit comporter au moins 3 caractères.", - "email.validation.message": "Entrez votre nom d'utilisateur ou votre adresse courriel", - "password.validation.message": "Les critères de mot de passe n'ont pas été remplis", - "account.activation.success.message.title": "Succès! Vous avez activé votre compte.", - "account.activation.success.message": "Vous recevrez maintenant des mises à jour par courriel et des alertes de notre part concernant les cours auxquels vous êtes inscrit. Connectez-vous pour continuer.", - "account.activation.info.message": "Ce compte a déjà été activé.", - "account.activation.error.message.title": "Votre compte n'a pas pu être activé", - "account.activation.support.link": "contacter le support", - "account.confirmation.success.message.title": "Succès ! Vous avez confirmé votre courriel.", - "account.confirmation.success.message": "Se connecter pour continuer.", - "account.confirmation.info.message": "Ce courriel a déjà été confirmé.", - "account.confirmation.error.message.title": "Votre courriel ne peut pas être confirmé.", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "login.rate.limit.reached.message": "Trop de tentatives de connexion échouées. Réessayez plus tard.", - "login.failure.header.title": "Nous n'avons pas pu vous connecter.", - "contact.support.link": "veuillez contacter le support {platformName}", - "login.incorrect.credentials.error": "Le nom d'utilisateur, l'adresse courriel ou le mot de passe que vous avez saisis sont incorrects. Veuillez réessayer.", - "login.form.invalid.error.message": "Veuillez remplir les champs ci-dessous.", - "login.incorrect.credentials.error.reset.link.text": "réinitialiser votre mot de passe", - "login.incorrect.credentials.error.before.account.blocked.text": "cliquez ici pour le réinitialiser.", - "password.security.nudge.title": "Sécurité du mot de passe", - "password.security.block.title": "Changement de mot de passe requis", - "password.security.nudge.body": "Notre système a détecté que votre mot de passe est vulnérable. Nous vous recommandons de le modifier afin que votre compte reste sécurisé.", - "password.security.block.body": "Notre système a détecté que votre mot de passe est vulnérable. Changez votre mot de passe afin que votre compte reste sécurisé.", - "password.security.close.button": "Fermer", - "password.security.redirect.to.reset.password.button": "Réinitialiser votre mot de passe", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "Quelques questions pour vous nous aideront à devenir plus intelligents.", - "optional.fields.information.link": "En savoir plus sur la façon dont nous utilisons ces informations.", - "optional.fields.submit.button": "Envoyez", - "optional.fields.skip.button": "Ignorer pour l'instant", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continuer vers {platformName}", - "modal.title": "Merci de nous en informer.", - "modal.description": "Vous pouvez compléter votre profil dans les paramètres à tout moment si vous changez d'avis.", - "welcome.page.error.heading": "Nous n'avons pas pu mettre à jour votre profil", - "welcome.page.error.message": "Une erreur s'est produite. Vous pouvez compléter votre profil dans les paramètres à tout moment.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "S'inscrire | {siteName}", - "registration.fullname.label": "Nom complet", - "registration.email.label": "Email", - "registration.username.label": "Nom d'utilisateur public", - "registration.password.label": "Mot de passe", - "registration.country.label": "Pays/Région", - "registration.opt.in.label": "{siteName} peux m'envoyer des messages de marketing.", - "help.text.name": "Ce nom sera utilisé pour toutes les attestations que vous obtiendrez.", - "help.text.username.1": "Le nom qui vous identifiera dans vos cours.", - "help.text.username.2": "Cela ne peut pas être modifié ultérieurement.", - "help.text.email": "Pour l'activation du compte et les mises à jour importantes", - "create.account.for.free.button": "Créer un compte gratuitement", - "registration.other.options.heading": "Ou inscrivez-vous avec :", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Identifiants de l'établissement/du campus", - "register.institution.login.page.title": "Inscription avec les crédentiels d'institution ou de campus", - "empty.name.field.error": "Saisissez votre nom complet", - "empty.email.field.error": "Saisissez votre courriel", - "empty.username.field.error": "Le nom d'utilisateur doit comporter entre 2 et 30 caractères", - "empty.password.field.error": "Les critères de mot de passe n'ont pas été remplis", - "empty.country.field.error": "Sélectionnez votre pays ou région de résidence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Le nom d'utilisateur doit comporter entre 2 et 30 caractères", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "Nous n'avons pas pu créer votre compte.", - "registration.empty.form.submission.error": "Veuillez vérifier vos réponses et réessayer.", - "registration.request.server.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "registration.rate.limit.error": "Trop de tentatives d'inscriptions ont échoué. Réessayez plus tard.", - "registration.tpa.session.expired": "L'inscription avec {provider} a échouée.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Conditions d'utilisation et Code d'honneur", - "privacy.policy": "Politique de confidentialité", - "honor.code": "Code d'honneur", - "terms.of.service": " Conditions d'utilisation", - "registration.username.suggestion.label": "Suggéré :", - "did.you.mean.alert.text": "Vouliez-vous dire", - "register.page.terms.of.service.and.honor.code": "En créant un compte, vous acceptez le {tosAndHonorCode} et vous reconnaissez que {platformName} et chaque\n membre peut traiter vos données personnelles conformément à la {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Connectez-vous", - "reset.password.page.title": "Réinitialiser le mot de passe | {siteName}", - "reset.password": "Réinitialiser le mot de passe", - "reset.password.page.instructions": "Saisir et confirmer votre nouveau mot de passe.", - "new.password.label": "Nouveau mot de passe", - "confirm.password.label": "Confirmer le mot de passe", - "passwords.do.not.match": "Les mots de passe ne correspondent pas", - "confirm.your.password": "Confirmer votre mot de passe", - "reset.password.failure.heading": "Nous n'avons pas pu réinitialiser votre mot de passe.", - "reset.password.form.submission.error": "Veuillez vérifier vos réponses et réessayer.", - "reset.server.rate.limit.error": "Trop de demandes.", - "reset.password.success.heading": "Réinitialisation du mot de passe complétée.", - "reset.password.success": "Votre mot de passe a été réinitialisé. Connectez-vous à votre compte.", - "rate.limit.error": "Une erreur s'est produite en raison d'un trop grand nombre de demandes. Veuillez réessayer après un certain temps." -} \ No newline at end of file diff --git a/src/i18n/messages/fr_CA.json b/src/i18n/messages/fr_CA.json deleted file mode 100644 index 95433ddf68..0000000000 --- a/src/i18n/messages/fr_CA.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Commencez à apprendre", - "with.site.name": "avec {siteName}", - "your.career.turning.point": "Votre tournant de carrière", - "is.here": "est là.", - "welcome.to.platform": "Bienvenue sur {siteName}, {username}!", - "complete.your.profile.1": "Complet", - "complete.your.profile.2": "votre profil", - "institution.login.page.sub.heading": "Sélectionner votre institution dans la liste ci-dessous", - "logistration.sign.in": "Connexion", - "logistration.register": "Inscription", - "enterprisetpa.title.heading": "Souhaitez-vous vous connecter à l'aide de vos informations d'identification {providerName}?", - "enterprisetpa.login.button.text": "Affichez moi d'autres façons de se connecter ou de s'inscrire", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Montrez-moi d'autres façons de me connecter", - "sso.sign.in.with": "Connectez-vous avec {providerName}", - "sso.create.account.using": "Créer un compte avec {providerName}", - "show.password": "Afficher le mot de passe", - "hide.password": "Cacher le mot de passe", - "one.letter": "1 lettre", - "one.number": "1 numéro", - "eight.characters": "8 caractères", - "password.sr.only.helping.text": "Le mot de passe doit contenir au moins 8 caractères, au moins une lettre et au moins un chiffre", - "tpa.alert.heading": "Presque terminé!", - "login.third.party.auth.account.not.linked": "Vous vous êtes connecté avec succès à {currentProvider}, mais votre compte {currentProvider} n'a pas de compte relié à {platformName}. Pour lier vos comptes, connectez-vous en utilisant votre mot de passe {platformName}.", - "register.third.party.auth.account.not.linked": "Vous vous êtes connecté avec succès à {currentProvider}! Nous avons juste besoin d'un peu plus d'informations avant que vous commenciez à apprendre avec {platformName}.", - "registration.using.tpa.form.heading": "Terminer la création de votre compte", - "zendesk.supportTitle": "Prise en charge d'edX", - "zendesk.selectTicketForm": "Veuillez choisir votre type de demande :", - "error.notfound.message": "La page que vous recherchez n'est pas disponible ou il y a une erreur dans l'URL. Veuillez vérifier l'URL et réessayer.", - "forgot.password.confirmation.message": "Nous avons envoyé un courriel à {email} avec des instructions pour réinitialiser votre mot de passe.\n Si vous ne recevez pas de message de réinitialisation de mot de passe après 1 minute, vérifiez que vous avez saisi\nl'adresse courriel correctement, ou vérifiez votre dossier de pourriels. Si vous avez besoin d'aide supplémentaire, {supportLink}.", - "forgot.password.page.title": "Mot de passe oublié | {siteName}", - "forgot.password.page.heading": "Réinitialiser le mot de passe", - "forgot.password.page.instructions": "Veuillez entrer votre adresse courriel ci-dessous et nous vous enverrons un courriel avec les instructions pour réinitialiser votre mot de passe.", - "forgot.password.page.invalid.email.message": "Entrez une adresse de courriel valide", - "forgot.password.page.email.field.label": "Courriel", - "forgot.password.page.submit.button": "Soumettre", - "forgot.password.error.alert.title.": "Nous n'avons pas pu vous contacter.", - "forgot.password.error.message.title": "Une erreur est survenue.", - "forgot.password.request.in.progress.message": "Votre demande précédente est en cours, veuillez réessayer dans quelques instants.", - "forgot.password.empty.email.field.error": "Saisissez votre courriel", - "forgot.password.email.help.text": "L'adresse courriel que vous avez utilisée pour vous inscrire sur {platformName}", - "confirmation.message.title": "Vérifiez votre courriel", - "confirmation.support.link": "contacter le support technique", - "need.help.sign.in.text": "Besoin d'aide pour vous connecter?", - "additional.help.text": "Pour obtenir une aide supplémentaire, contactez l'assistance {platformName} à l'adresse ", - "sign.in.text": "Connexion", - "extend.field.errors": "{emailError} ci-dessous.", - "invalid.token.heading": "Lien de réinitialisation du mot de passe non valide", - "invalid.token.error.message": "Ce lien de réinitialisation de mot de passe n'est pas valide. Il a peut-être déjà été utilisé. Entrez votre courriel ci-dessous pour recevoir un nouveau lien.", - "token.validation.rate.limit.error.heading": "Trop de demandes", - "token.validation.rate.limit.error": "Une erreur s'est produite en raison d'un trop grand nombre de demandes. Veuillez réessayer après un certain temps.", - "token.validation.internal.sever.error.heading": "Échec de la validation du jeton", - "token.validation.internal.sever.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "internal.server.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "account.activation.error.message": "Une erreur s'est produite, veuillez {supportLink} pour résoudre ce problème.", - "login.inactive.user.error": "Pour vous connecter, vous devez activer votre compte.{lineBreak}\n {lineBreak}Nous venons d'envoyer un lien d'activation à {email}. Si vous ne recevez pas de courriel,\n vérifiez vos dossiers de pourriels ou {supportLink}.", - "allowed.domain.login.error": "En tant qu'utilisateur {allowedDomain}, vous devez vous connecter avec votre {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "Le nom d'utilisateur, le courriel ou le mot de passe que vous avez entré sont incorrects. Vous avez {remainingAttempts} tentatives\n de connexion avant que votre compte soit temporairement verrouillé.", - "login.incorrect.credentials.error.attempts.text.2": "Si vous avez oublié votre mot de passe, {resetLink}", - "account.locked.out.message.2": "Par mesure de sécurité, vous pouvez {resetLink} avant de réessayer.", - "login.incorrect.credentials.error.with.reset.link": "Le nom d'utilisateur, l'adresse courriel ou le mot de passe que vous avez saisis sont incorrects. Veuillez réessayer ou {resetLink}.", - "login.page.title": "Connexion | {siteName}", - "login.user.identity.label": "Nom d'utilisateur ou courriel", - "login.password.label": "Mot de passe", - "sign.in.button": "Connexion", - "forgot.password": "Mot de passe oublié", - "institution.login.button": "Informations d'identification de l'établissement/du campus", - "institution.login.page.title": "Connectez vous avec les informations d'identification d'institution ou de campus", - "login.other.options.heading": "Ou se connecter avec :", - "non.compliant.password.title": "Nous avons récemment modifié nos exigences en matière de mot de passe", - "non.compliant.password.message": "Votre mot de passe actuel ne répond pas aux nouvelles exigences de sécurité. Nous venons d'envoyer un message de réinitialisation de mot de passe à l'adresse courriel associée à ce compte. Merci de nous aider à protéger vos données.", - "account.locked.out.message.1": "Pour protéger votre compte, il a été temporairement verrouillé. Réessayez dans 30 minutes.", - "enterprise.login.btn.text": "Informations d'identification de la compagnie ou de l'école", - "username.or.email.format.validation.less.chars.message": "Le nom d'utilisateur ou l'adresse courriel doit comporter au moins 3 caractères.", - "email.validation.message": "Entrez votre nom d'utilisateur ou votre adresse courriel", - "password.validation.message": "Les critères de mot de passe n'ont pas été remplis", - "account.activation.success.message.title": "Succès! Vous avez activé votre compte.", - "account.activation.success.message": "Vous recevrez maintenant des mises à jour par courriel et des alertes de notre part concernant les cours auxquels vous êtes inscrit. Connectez-vous pour continuer.", - "account.activation.info.message": "Ce compte a déjà été activé.", - "account.activation.error.message.title": "Votre compte n'a pas pu être activé", - "account.activation.support.link": "contacter le support", - "account.confirmation.success.message.title": "Bravo! Vous avez confirmé votre courriel.", - "account.confirmation.success.message": "Se connecter pour continuer.", - "account.confirmation.info.message": "Ce courriel a déjà été confirmé.", - "account.confirmation.error.message.title": "Votre courriel ne peut pas être confirmé", - "tpa.account.link": "compte {provider}", - "internal.server.error.message": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "login.rate.limit.reached.message": "Trop de tentatives d'accès refusées. Essayer plus tard.", - "login.failure.header.title": "Nous n'avons pas pu vous connecter.", - "contact.support.link": "veuillez contacter le support {platformName}", - "login.incorrect.credentials.error": "Le nom d'utilisateur, l'adresse courriel ou le mot de passe que vous avez saisis sont incorrects. Veuillez réessayer.", - "login.form.invalid.error.message": "Veuillez remplir les champs ci-dessous.", - "login.incorrect.credentials.error.reset.link.text": "réinitialiser votre mot de passe", - "login.incorrect.credentials.error.before.account.blocked.text": "cliquez ici pour le réinitialiser.", - "password.security.nudge.title": "Sécurité du mot de passe", - "password.security.block.title": "Changement de mot de passe requis", - "password.security.nudge.body": "Notre système a détecté que votre mot de passe est vulnérable. Nous vous recommandons de le modifier afin que votre compte reste sécurisé.", - "password.security.block.body": "Notre système a détecté que votre mot de passe est vulnérable. Changez votre mot de passe afin que votre compte reste sécurisé.", - "password.security.close.button": "Fermer", - "password.security.redirect.to.reset.password.button": "Réinitialiser votre mot de passe", - "login.tpa.authentication.failure": "Nous sommes désolés, vous n'êtes pas autorisé à accéder à {platform_name} via ce canal. Veuillez contacter votre administrateur ou responsable de formation pour accéder à {platform_name}.{lineBreak}{lineBreak}Détails de l'erreur :{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Bienvenue | {siteName}", - "progressive.profiling.page.heading": "Quelques questions pour vous nous aideront à devenir plus intelligents.", - "optional.fields.information.link": "En savoir plus sur la façon dont nous utilisons ces informations.", - "optional.fields.submit.button": "Soumettre", - "optional.fields.skip.button": "Ignorer pour l'instant", - "optional.fields.next.button": "Suivant", - "continue.to.platform": "Continuer vers {platformName}", - "modal.title": "Merci de nous en informer.", - "modal.description": "Vous pouvez compléter votre profil dans les paramètres à tout moment si vous changez d'avis.", - "welcome.page.error.heading": "Nous n'avons pas pu mettre à jour votre profil", - "welcome.page.error.message": "Une erreur s'est produite. Vous pouvez compléter votre profil dans les paramètres à tout moment.", - "recommendation.page.title": "Recommandations | {siteName}", - "recommendation.page.heading": "Nous avons quelques recommandations pour vous aider à démarrer.", - "recommendation.skip.button": "Ignorer pour l'instant", - "recommendation.option.trending": "Tendance", - "recommendation.option.popular": "Le plus populaire", - "recommendation.product-card.pill-text.course": "Cours", - "recommendation.product-card.pill-text.professional-certificate": "Attestation professionnelle", - "recommendation.product-card.pill-text.emeritus": "Offert à titre émérite", - "recommendation.product-card.pill-text.shorelight": "Offert par Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Abonnement", - "recommendation.product-card.launch-icon.sr-text": "Ouvre un lien dans un nouvel onglet", - "register.page.title": "S'inscrire | {siteName}", - "registration.fullname.label": "Nom complet", - "registration.email.label": "Courriel", - "registration.username.label": "Nom d'utilisateur", - "registration.password.label": "Mot de passe", - "registration.country.label": "Pays/Région", - "registration.opt.in.label": "{siteName} peux m'envoyer des messages de marketing.", - "help.text.name": "Ce nom sera utilisé pour toutes les attestations que vous obtiendrez.", - "help.text.username.1": "Le nom qui vous identifiera dans vos cours.", - "help.text.username.2": "Cela ne peut pas être modifié ultérieurement.", - "help.text.email": "Pour l'activation du compte et les mises à jour importantes", - "create.account.for.free.button": "Créer un compte gratuitement", - "registration.other.options.heading": "Ou inscrivez-vous avec :", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Informations d'identification de l'établissement/du campus", - "register.institution.login.page.title": "Inscription avec les informations d'identification d'institution ou de campus", - "empty.name.field.error": "Saisissez votre nom complet", - "empty.email.field.error": "Saisissez votre courriel", - "empty.username.field.error": "Le nom d'utilisateur doit comporter entre 2 et 30 caractères", - "empty.password.field.error": "Les critères de mot de passe n'ont pas été remplis", - "empty.country.field.error": "Sélectionnez votre pays ou région de résidence", - "email.do.not.match": "Les adresses courriel ne correspondent pas.", - "email.invalid.format.error": "Entrez une adresse de courriel valide", - "username.validation.message": "Le nom d'utilisateur doit comporter entre 2 et 30 caractères", - "name.validation.message": "Entrez un nom valide", - "username.format.validation.message": "Les noms d'utilisateur ne peuvent contenir que des lettres (A-Z, a-z), des chiffres (0-9), des traits de soulignement (_) et des traits d'union (-). Les noms d'utilisateur ne peuvent pas contenir d'espaces", - "registration.request.failure.header": "Nous n'avons pas pu créer votre compte.", - "registration.empty.form.submission.error": "Veuillez vérifier vos réponses et réessayer.", - "registration.request.server.error": "Une erreur est survenue. Essayer de rafraîchir la page, ou vérifier votre connexion Internet.", - "registration.rate.limit.error": "Trop de tentatives d'inscriptions ont échoué. Réessayez plus tard.", - "registration.tpa.session.expired": "L'inscription à l'aide de {provider} a expiré.", - "registration.tpa.authentication.failure": "Nous sommes désolés, vous n'êtes pas autorisé à accéder à {platform_name} via ce canal. Veuillez contacter votre administrateur ou responsable de formation pour accéder à {platform_name}.{lineBreak}{lineBreak}Détails de l'erreur :{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Conditions générales du service et code d'honneur", - "privacy.policy": "Politique de confidentialité", - "honor.code": "Code d'honneur", - "terms.of.service": "Conditions générales du service", - "registration.username.suggestion.label": "Suggéré :", - "did.you.mean.alert.text": "Vouliez-vous dire", - "register.page.terms.of.service.and.honor.code": "En créant un compte, vous acceptez le {tosAndHonorCode} et vous reconnaissez que {platformName} et chaque\n membre peut traiter vos données personnelles conformément à la {privacyPolicy}.", - "register.page.honor.code": "J'accepte le {tosAndHonorCode} {platformName}", - "register.page.terms.of.service": "J'accepte les {termsOfService} {platformName}", - "sign.in": "Connexion", - "reset.password.page.title": "Réinitialiser le mot de passe | {siteName}", - "reset.password": "Réinitialiser le mot de passe", - "reset.password.page.instructions": "Saisir et confirmer votre nouveau mot de passe.", - "new.password.label": "Nouveau mot de passe", - "confirm.password.label": "Confirmer le mot de passe", - "passwords.do.not.match": "Les mots de passe ne correspondent pas", - "confirm.your.password": "Confirmer votre mot de passe", - "reset.password.failure.heading": "Nous n'avons pas pu réinitialiser votre mot de passe.", - "reset.password.form.submission.error": "Veuillez vérifier vos réponses et réessayer.", - "reset.server.rate.limit.error": "Trop de demandes.", - "reset.password.success.heading": "Réinitialisation du mot de passe complétée.", - "reset.password.success": "Votre mot de passe a été réinitialisé. Connectez-vous à votre compte.", - "rate.limit.error": "Une erreur s'est produite en raison d'un trop grand nombre de demandes. Veuillez réessayer après un certain temps." -} \ No newline at end of file diff --git a/src/i18n/messages/he.json b/src/i18n/messages/he.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/he.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/hi.json b/src/i18n/messages/hi.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/hi.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/id.json b/src/i18n/messages/id.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/id.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/it.json b/src/i18n/messages/it.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/it.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/it_IT.json b/src/i18n/messages/it_IT.json deleted file mode 100644 index 0e91e1b6d7..0000000000 --- a/src/i18n/messages/it_IT.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Inizia a imparare", - "with.site.name": "con {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Benvenuto in {siteName}, {username}!", - "complete.your.profile.1": "Completata", - "complete.your.profile.2": "Il tuo profilo", - "institution.login.page.sub.heading": "Scegli il tuo istituto dall'elenco sottostante", - "logistration.sign.in": "Accedi", - "logistration.register": "Registrazione", - "enterprisetpa.title.heading": "Vuoi accedere utilizzando le credenziali {providerName}?", - "enterprisetpa.login.button.text": "Mostrami altre modalità di accesso o registrazione", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Accedi con {providerName}", - "sso.create.account.using": "Crea un account utilizzando {providerName}", - "show.password": "Mostra password", - "hide.password": "Nascondi password", - "one.letter": "1 lettera", - "one.number": "1 numero", - "eight.characters": "8 caratteri", - "password.sr.only.helping.text": "La password deve contenere almeno 8 caratteri, almeno una lettera e almeno un numero", - "tpa.alert.heading": "Quasi fatto!", - "login.third.party.auth.account.not.linked": "Hai correttamente effettuato l'accesso in {currentProvider}, ma il tuo account {currentProvider} non ha un account {platformName} ad esso abbinato. Per collegare i tuoi account accesi utilizzando la password {platformName}. ", - "register.third.party.auth.account.not.linked": "Hai eseguito correttamente l'accesso a {a03f0f8cfb85cz0}! Abbiamo solo bisogno di un po' più di informazioni prima di iniziare a imparare con {platformName}.", - "registration.using.tpa.form.heading": "Completa la creazione del tuo account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "La pagina che stai cercando non è disponibile o si è verificato un errore nell'URL. Controlla l'URL e riprova. ", - "forgot.password.confirmation.message": "Abbiamo inviato un'email a {email} con le istruzioni per reimpostare la password. Se non ricevi un messaggio di reimpostazione della password dopo 1 minuto, verifica di aver inserito l'indirizzo e-mail corretto o controlla la cartella spam. Se hai bisogno di ulteriore assistenza, {supportLink}.", - "forgot.password.page.title": "Dimenticato la password | {siteName}", - "forgot.password.page.heading": "Resetta la password", - "forgot.password.page.instructions": "Inserisci il tuo indirizzo e-mail qui sotto e ti invieremo un'e-mail con le istruzioni su come reimpostare la tua password.", - "forgot.password.page.invalid.email.message": "Inserisci un indirizzo email valido", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Invia", - "forgot.password.error.alert.title.": "Non siamo stati in grado di contattarti.", - "forgot.password.error.message.title": "Si è verificato un errore. ", - "forgot.password.request.in.progress.message": "La tua richiesta precedente è in corso di elaborazione, riprova tra qualche istante. ", - "forgot.password.empty.email.field.error": "Inserisci il tuo indirizzo email", - "forgot.password.email.help.text": "L'indirizzo email che hai utilizzato per registrarti con {platformName}", - "confirmation.message.title": "Controlla la tua casella di posta", - "confirmation.support.link": "contatta il supporto tecnico", - "need.help.sign.in.text": "Hai bisogno di aiuto per l'accesso? ", - "additional.help.text": "Per ulteriore assistenza, contattare l'assistenza {platformName} all'indirizzo", - "sign.in.text": "Accedi", - "extend.field.errors": "{emailError} di seguito.", - "invalid.token.heading": "Link di ripristino della password non valido", - "invalid.token.error.message": "Questo link per reimpostare la password non è valido. Potrebbe essere stato già utilizzato. Inserisci la tua email qui sotto per ricevere un nuovo link.", - "token.validation.rate.limit.error.heading": "Troppe richieste", - "token.validation.rate.limit.error": "Si è verificato un errore dovuto alle troppe richieste. Prova di nuovo più tardi.", - "token.validation.internal.sever.error.heading": "Errore di convalida del token", - "token.validation.internal.sever.error": "Si è verificato un errore. Prova ad aggiornare la pagina oppure verifica la connessione internet.", - "internal.server.error": "Si è verificato un errore. Prova ad aggiornare la pagina oppure verifica la connessione internet.", - "account.activation.error.message": "Si è verificato un errore, seleziona {supportLink} per risolvere il problema. ", - "login.inactive.user.error": "Per accedere, devi attivare il tuo account.{lineBreak} {lineBreak}Abbiamo appena inviato un link di attivazione a {email}. Se non ricevi un'email, controlla la cartella della posta indesiderata oppure seleziona {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "Il nome utente, l'e-mail o la password che hai inserito non sono corretti. Hai {remainingAttempts} più tentativi di accesso prima che il tuo account venga temporaneamente bloccato.", - "login.incorrect.credentials.error.attempts.text.2": "Se hai dimenticato la password, {resetLink}", - "account.locked.out.message.2": "Per sicurezza, puoi {resetLink} prima di riprovare.", - "login.incorrect.credentials.error.with.reset.link": "Il nome utente, l'e-mail o la password inseriti non sono corretti. Riprova o {resetLink}.", - "login.page.title": "Accesso | {siteName}", - "login.user.identity.label": "Nome utente o email ", - "login.password.label": "Password", - "sign.in.button": "Accedi", - "forgot.password": "Password dimenticata", - "institution.login.button": "Credenziali dell'istituto/campus", - "institution.login.page.title": "Accedi con le credenziali dell'istituzione/campus", - "login.other.options.heading": "Oppure accedi con:", - "non.compliant.password.title": "Abbiamo di recente modificato i requisiti per la password ", - "non.compliant.password.message": "La tua password attuale non soddisfa i nuovi requisiti di sicurezza. Abbiamo appena inviato un messaggio di reimpostazione della password all'indirizzo e-mail associato a questo account. Grazie per averci aiutato a mantenere i tuoi dati al sicuro.", - "account.locked.out.message.1": "Per proteggere il tuo account, è stato temporaneamente bloccato. Riprova tra 30 minuti.", - "enterprise.login.btn.text": "Credenziali aziendali o scolastiche", - "username.or.email.format.validation.less.chars.message": "Il nome utente o l'e-mail deve contenere almeno 3 caratteri.", - "email.validation.message": "Inserisci il tuo nome utente o e-mail", - "password.validation.message": "I criteri della password non sono stati soddisfatti", - "account.activation.success.message.title": "Completato correttamente! Hai attivato il tuo account. ", - "account.activation.success.message": "A breve ti invieremo avvisi e aggiornamenti via email relativi al corso a cui ti sei iscritto. Accedi per proseguire.", - "account.activation.info.message": "Questo account è già stato attivato.", - "account.activation.error.message.title": "Impossibile attivare il tuo account.", - "account.activation.support.link": "contatta il supporto", - "account.confirmation.success.message.title": "Successo! Hai confermato la tua email.", - "account.confirmation.success.message": "Accedi per continuare.", - "account.confirmation.info.message": "Questa email è già stata confermata.", - "account.confirmation.error.message.title": "Impossibile confermare la tua email", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "Si è verificato un errore. Prova ad aggiornare la pagina oppure verifica la connessione internet.", - "login.rate.limit.reached.message": "Troppi tentativi di login falliti. Riprova più tardi.", - "login.failure.header.title": "Impossibile autorizzare il tuo accesso.", - "contact.support.link": "contatta il supporto {platformName} ", - "login.incorrect.credentials.error": "Il nome utente, l'e-mail o la password inseriti non sono corretti. Per favore riprova.", - "login.form.invalid.error.message": "Si prega di compilare i campi sottostanti.", - "login.incorrect.credentials.error.reset.link.text": "reimposta la tua password", - "login.incorrect.credentials.error.before.account.blocked.text": "clicca qui per ripristinarlo.", - "password.security.nudge.title": "Sicurezza della password", - "password.security.block.title": "È richiesta la modifica della password", - "password.security.nudge.body": "Il nostro sistema ha rilevato che la tua password è vulnerabile. Ti consigliamo di cambiarlo in modo che il tuo account rimanga sicuro.", - "password.security.block.body": "Il nostro sistema ha rilevato che la tua password è vulnerabile. Cambia la tua password in modo che il tuo account rimanga sicuro.", - "password.security.close.button": "Chiudi", - "password.security.redirect.to.reset.password.button": "Ripristina la tua password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Benvenuto | {siteName}", - "progressive.profiling.page.heading": "Alcune domande per te ci aiuteranno a diventare più intelligenti.", - "optional.fields.information.link": "Ulteriori informazioni su come utilizziamo queste informazioni.", - "optional.fields.submit.button": "Invia", - "optional.fields.skip.button": "Salta per ora", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continua con {platformName}", - "modal.title": "Grazie per averci fatto sapere.", - "modal.description": "Puoi completare il tuo profilo nelle impostazioni in qualsiasi momento se cambi idea.", - "welcome.page.error.heading": "Impossibile aggiornare il tuo profilo", - "welcome.page.error.message": "Si è verificato un errore. Puoi completare il tuo profilo nelle impostazioni in qualsiasi momento.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Registrazione | {siteName}", - "registration.fullname.label": "Nome e Cognome", - "registration.email.label": "Email", - "registration.username.label": "Nome utente pubblico", - "registration.password.label": "Password", - "registration.country.label": "Paese/regione", - "registration.opt.in.label": "Accetto che {siteName} possa inviarmi messaggi di marketing.", - "help.text.name": "Questo nome verrà utilizzato per tutti i certificati conseguiti.", - "help.text.username.1": "Il nome che ti identificherà nei tuoi corsi.", - "help.text.username.2": "Questo non può essere modificato in seguito.", - "help.text.email": "Per l'attivazione dell'account e aggiornamenti importanti", - "create.account.for.free.button": "Crea un account gratis", - "registration.other.options.heading": "Oppure registrati con:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Credenziali dell'istituto/campus", - "register.institution.login.page.title": "Registrati con le credenziali dell'istituzione/campus", - "empty.name.field.error": "Inserisci il tuo nome e cognome", - "empty.email.field.error": "Inserisci il tuo indirizzo email", - "empty.username.field.error": "Il nome utente deve essere compreso tra 2 e 30 caratteri", - "empty.password.field.error": "I criteri della password non sono stati soddisfatti", - "empty.country.field.error": "Seleziona il tuo paese o regione di residenza", - "email.do.not.match": "Gli indirizzi email non corrispondono.", - "email.invalid.format.error": "Inserisci un indirizzo email valido", - "username.validation.message": "Il nome utente deve essere compreso tra 2 e 30 caratteri", - "name.validation.message": "Inserisci un nome valido", - "username.format.validation.message": "I nomi utente possono contenere solo lettere (AZ, az), numeri (0-9), trattini bassi (_) e trattini (-). I nomi utente non possono contenere spazi", - "registration.request.failure.header": "Impossibile creare il tuo account.", - "registration.empty.form.submission.error": "Controlla le tue risposte e riprova.", - "registration.request.server.error": "Si è verificato un errore. Prova ad aggiornare la pagina oppure verifica la connessione internet.", - "registration.rate.limit.error": "Troppi tentativi di registrazione non riusciti. Prova di nuovo più tardi.", - "registration.tpa.session.expired": "La registrazione mediante {provider} è andata in timeout.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Termini e Condizioni del Servizio", - "privacy.policy": "Informativa sulla privacy", - "honor.code": "Codice d'Onore", - "terms.of.service": "Termini di Servizio", - "registration.username.suggestion.label": "Suggerito:", - "did.you.mean.alert.text": "Intendevi", - "register.page.terms.of.service.and.honor.code": "Creando un account, accetti il {tosAndHonorCode} e riconosci che {platformName} e ciascun Membro trattano i tuoi dati personali in conformità con l' {privacyPolicy}.", - "register.page.honor.code": "Accetto {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "Accetto {platformName} {termsOfService}", - "sign.in": "Accedi", - "reset.password.page.title": "Ripristina password | {siteName}", - "reset.password": "Resetta la password", - "reset.password.page.instructions": "Immettere e confermare la nuova password. ", - "new.password.label": "Nuova password", - "confirm.password.label": "Conferma password", - "passwords.do.not.match": "le passwords non corrispondono", - "confirm.your.password": "Conferma la tua password", - "reset.password.failure.heading": "Impossibile ripristinare la tua password.", - "reset.password.form.submission.error": "Controlla le tue risposte e riprova.", - "reset.server.rate.limit.error": "Troppe richieste.", - "reset.password.success.heading": "Ripristino della password completato.", - "reset.password.success": "La tua password è stata resettata. Accedi al tuo account.", - "rate.limit.error": "Si è verificato un errore dovuto alle troppe richieste. Prova di nuovo più tardi." -} \ No newline at end of file diff --git a/src/i18n/messages/ko_kr.json b/src/i18n/messages/ko_kr.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/ko_kr.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/pl.json b/src/i18n/messages/pl.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/pl.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/pt.json b/src/i18n/messages/pt.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/pt.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/pt_PT.json b/src/i18n/messages/pt_PT.json deleted file mode 100644 index fb7cf9f1c0..0000000000 --- a/src/i18n/messages/pt_PT.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Começar a aprender", - "with.site.name": "com {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Bem vindo a {siteName}, {username}!", - "complete.your.profile.1": "Concluído", - "complete.your.profile.2": "o seu perfil", - "institution.login.page.sub.heading": "Escolha a sua instituição a partir da lista abaixo", - "logistration.sign.in": "Iniciar sessão", - "logistration.register": "Registe-se", - "enterprisetpa.title.heading": "Gostaria de iniciar sessão usando as suas {providerName} credenciais?", - "enterprisetpa.login.button.text": "Mostre-me outras formas de iniciar sessão ou registar-se", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Mostre-me outras formas de iniciar sessão", - "sso.sign.in.with": "Inicie sessão com {providerName}", - "sso.create.account.using": "Criar conta usando {providerName}", - "show.password": "Mostrar palavra-passe", - "hide.password": "Ocultar palavra-passe", - "one.letter": "1 letra", - "one.number": "1 número", - "eight.characters": "8 caracteres", - "password.sr.only.helping.text": "A palavra-passe deve conter pelo menos 8 carateres, pelo menos uma letra, e pelo menos um número", - "tpa.alert.heading": "Quase pronto!", - "login.third.party.auth.account.not.linked": "Iniciou sessão com sucesso em {currentProvider}, mas a sua conta {currentProvider} não está vinculada a uma conta {platformName}. Para vincular as suas contas, inicie sessão através da sua palavra-passe em {platformName}.", - "register.third.party.auth.account.not.linked": "Entrou com sucesso em {currentProvider}! Só precisamos de um pouco mais de informação antes de começar a aprender com {platformName}.", - "registration.using.tpa.form.heading": "Acabe de criar a sua conta", - "zendesk.supportTitle": "Apoio edX", - "zendesk.selectTicketForm": "Por favor, escolha o seu tipo de pedido:", - "error.notfound.message": "A página que procura não está disponível ou há um erro no URL. Por favor, verifique o URL e tente novamente.", - "forgot.password.confirmation.message": "Enviámos um email para {email} com instruções para redefinir a sua palavra-passe.\n Se não receber uma mensagem de redefinição de palavra-passe após 1 minuto, verifique se introduziu\n o endereço de correio electrónico correto, ou verifique a sua pasta de spam. Se precisar de mais assistência, {supportLink}.", - "forgot.password.page.title": "Esqueceu a Senha | {siteName}", - "forgot.password.page.heading": "Redefinir palavra-passe", - "forgot.password.page.instructions": "Por favor introduza o seu endereço de email abaixo e enviar-lhe-emos um email com instruções sobre como redefinir a sua palavra-passe.", - "forgot.password.page.invalid.email.message": "Introduzir um endereço de correio electrónico válido", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submeter", - "forgot.password.error.alert.title.": "Não nos foi possível contactá-lo.", - "forgot.password.error.message.title": "Ocorreu um erro.", - "forgot.password.request.in.progress.message": "O seu pedido anterior está a ser processado, por favor tente novamente dentro de momentos.", - "forgot.password.empty.email.field.error": "Digite o seu email", - "forgot.password.email.help.text": "O endereço de e-mail que usou para se registar em {platformName}", - "confirmation.message.title": "Verifique o seu email", - "confirmation.support.link": "contacto o suporte técnico", - "need.help.sign.in.text": "Precisa de ajuda para entrar?", - "additional.help.text": "Para ajuda adicional, contacte o apoio {platformName} em", - "sign.in.text": "Iniciar sessão", - "extend.field.errors": "{emailError} abaixo.", - "invalid.token.heading": "Link para Redefinir Palavra-passe inválido", - "invalid.token.error.message": "Este link de redefinição de palavra-passe é inválido. Pode já ter sido utilizada. Introduza o seu email abaixo para receber um novo link.", - "token.validation.rate.limit.error.heading": "Demasiados pedidos", - "token.validation.rate.limit.error": "Ocorreu um erro devido a demasiados pedidos. Por favor, tente novamente após algum tempo.", - "token.validation.internal.sever.error.heading": "Falha na validação do Token", - "token.validation.internal.sever.error": "Ocorreu um erro. Tente actualizar a página, ou verifique a sua ligação à Internet.", - "internal.server.error": "Ocorreu um erro. Tente actualizar a página, ou verifique a sua ligação à Internet.", - "account.activation.error.message": "Alguma coisa correu mal, siga {supportLink} para resolver esta questão.", - "login.inactive.user.error": "Para iniciar sessão, precisa ativar a sua conta. {lineBreak}\n {lineBreak} Acabámos de enviar um link de ativação para {email}. Se não receber um e-mail,\n verifique as suas pastas de spam ou {supportLink}.", - "allowed.domain.login.error": "Como utilizador do {allowedDomain}, deve iniciar sessão com o seu {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "O nome de utilizador, email ou palavra-passe que introduziu está incorreto. Tem {remainingAttempts} mais tentativas\n de login antes da sua conta ser temporariamente bloqueada.", - "login.incorrect.credentials.error.attempts.text.2": "Se esqueceu a sua palavra-passe, {resetLink}", - "account.locked.out.message.2": "Por precaução, pode {resetLink} antes de tentar novamente.", - "login.incorrect.credentials.error.with.reset.link": "O nome de utilizador, email ou senha que introduziu está incorreto. Por favor, tente novamente ou {resetLink}.", - "login.page.title": "Iniciar sessão | {siteName}", - "login.user.identity.label": "Nome de utilizador ou e-mail", - "login.password.label": "Palavra-passe", - "sign.in.button": "Iniciar Sessão", - "forgot.password": "Esqueci-me da palavra-passe", - "institution.login.button": "Credenciais da instituição/campus", - "institution.login.page.title": "Inicie sessão com credenciais de instituição/campus", - "login.other.options.heading": "Ou faça login com:", - "non.compliant.password.title": "Recentemente mudámos os nossos requisitos de palavra-passe", - "non.compliant.password.message": "A sua palavra-passe atual não satisfaz os novos requisitos de segurança. Acabámos de enviar uma mensagem de redefinição da palavra-passe para o endereço de email associado a esta conta. Obrigado por nos ajudar a manter os seus dados em segurança.", - "account.locked.out.message.1": "Para proteger sua conta, esta foi temporariamente bloqueada. Tente novamente dentro de 30 minutos.", - "enterprise.login.btn.text": "Credenciais da empresa ou escola", - "username.or.email.format.validation.less.chars.message": "O nome de utilizador ou email deve ter pelo menos 3 carateres.", - "email.validation.message": "Insira o seu nome de utilizador ou email", - "password.validation.message": "Os critérios de palavra-passe não foram cumpridos", - "account.activation.success.message.title": "Sucesso! Você ativou a sua conta.", - "account.activation.success.message": "Receberá agora actualizações por e-mail e alertas nossos relacionados com os cursos em que está inscrito. Inicie a sessão para continuar.", - "account.activation.info.message": "Esta conta já foi ativada.", - "account.activation.error.message.title": "A sua conta não pôde ser ativada", - "account.activation.support.link": "contato de suporte", - "account.confirmation.success.message.title": "Sucesso! Confirmou o seu email.", - "account.confirmation.success.message": "Inicie sessão para continuar.", - "account.confirmation.info.message": "Este email já foi confirmado.", - "account.confirmation.error.message.title": "Não foi possível confirmar o seu email", - "tpa.account.link": "Conta {provider}", - "internal.server.error.message": "Ocorreu um erro. Tente actualizar a página, ou verifique a sua ligação à Internet.", - "login.rate.limit.reached.message": "Muitas tentativas de login sem sucesso. Tente novamente mais tarde.", - "login.failure.header.title": "O seu acesso não foi possível.", - "contact.support.link": "contactar o suporte {platformName}", - "login.incorrect.credentials.error": "O nome de utilizador, email, ou palavra-passe que introduziu está incorreto. Por favor, tente novamente.", - "login.form.invalid.error.message": "Por favor, preencha os campos abaixo.", - "login.incorrect.credentials.error.reset.link.text": "redefinir a sua palavra-passe", - "login.incorrect.credentials.error.before.account.blocked.text": "clique aqui para a redefinir.", - "password.security.nudge.title": "Segurança da palavra-passe", - "password.security.block.title": "Alteração de palavra-passe necessária", - "password.security.nudge.body": "O nosso sistema detectou que a sua palavra-passe é vulnerável. Recomendamos que a altere para que a sua conta permaneça segura.", - "password.security.block.body": "O nosso sistema detectou que a sua palavra-passe é vulnerável. Altere a sua palavra-passe para que a sua conta permaneça segura.", - "password.security.close.button": "Fechar", - "password.security.redirect.to.reset.password.button": "Redefinir a sua palavra-passe", - "login.tpa.authentication.failure": "Lamentamos, mas não tem autorização para aceder à plataforma {platform_name} através deste canal. Pedimos-lhe que entre em contacto com o administrador ou gestor do curso para aceder à plataforma {platform_name}. {line_break}{line_break}Detalhes do erro: {line_break}{error_message}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "Algumas perguntas para si vão ajudar a tornar-nos mais espertos.", - "optional.fields.information.link": "Saiba mais sobre a forma como utilizamos esta informação.", - "optional.fields.submit.button": "Submeter", - "optional.fields.skip.button": "Saltar por enquanto", - "optional.fields.next.button": "Seguinte", - "continue.to.platform": "Continue para {platformName}", - "modal.title": "Obrigado por nos informar.", - "modal.description": "Pode completar o seu perfil nas configurações em qualquer altura se mudar de ideias.", - "welcome.page.error.heading": "Não foi possível atualizar o seu perfil", - "welcome.page.error.message": "Ocorreu um erro. Pode completar o seu perfil nas configurações em qualquer altura.", - "recommendation.page.title": "Recomendações | {siteName}", - "recommendation.page.heading": "Temos algumas recomendações para o ajudar a começar.", - "recommendation.skip.button": "Saltar por enquanto", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Registar | {siteName}", - "registration.fullname.label": "Nome completo", - "registration.email.label": "E-mail", - "registration.username.label": "Nome de utilizador público", - "registration.password.label": "Palavra-passe", - "registration.country.label": "País/Região", - "registration.opt.in.label": "Concordo que {siteName} pode enviar-me mensagens de marketing.", - "help.text.name": "Este nome será usado por quaisquer certificados que conseguir obter.", - "help.text.username.1": "O nome que o irá identificar nos seus cursos.", - "help.text.username.2": "Isto não pode ser alterado mais tarde.", - "help.text.email": "Para ativação de contas e atualizações importantes", - "create.account.for.free.button": "Criar uma conta gratuitamente", - "registration.other.options.heading": "Ou registe-se com:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Credenciais da instituição/campus", - "register.institution.login.page.title": "Registo com credenciais da instituição/campus", - "empty.name.field.error": "Insira o seu nome completo", - "empty.email.field.error": "Insira o seu email", - "empty.username.field.error": "O nome de utilizador deve ter entre 2 e 30 carateres", - "empty.password.field.error": "Os critérios de palavra-passe não foram cumpridos", - "empty.country.field.error": "Selecione o seu país ou região de residência", - "email.do.not.match": "Os endereços de email não correspondem.", - "email.invalid.format.error": "Introduzir um endereço de correio electrónico válido", - "username.validation.message": "O nome de utilizador deve ter entre 2 e 30 carateres", - "name.validation.message": "Introduza um nome válido", - "username.format.validation.message": "Os nomes de utilizador só podem conter letras (A-Z, a-z), numerais (0-9), sublinhados (_), e hífenes (-). Os nomes de utilizador não podem conter espaços", - "registration.request.failure.header": "Não foi possível criar a sua conta.", - "registration.empty.form.submission.error": "Verifique as suas respostas e tente novamente.", - "registration.request.server.error": "Ocorreu um erro. Tente actualizar a página, ou verifique a sua ligação à Internet.", - "registration.rate.limit.error": "Demasiadas tentativas de registo falhadas. Tente novamente mais tarde.", - "registration.tpa.session.expired": "O tempo para registo utilizando {provider} expirou.", - "registration.tpa.authentication.failure": "Lamentamos, mas não tem autorização para aceder à plataforma {platform_name} através deste canal. Pedimos-lhe que entre em contacto com o administrador ou gestor do curso para aceder à plataforma {platform_name}. {line_break}{line_break}Detalhes do erro: {line_break}{error_message}", - "terms.of.service.and.honor.code": "Termos de Serviço e Código de Honra", - "privacy.policy": "Política de Privacidade", - "honor.code": "Código de Honra", - "terms.of.service": "Termos do Serviço", - "registration.username.suggestion.label": "Sugerido:", - "did.you.mean.alert.text": "Quis dizer", - "register.page.terms.of.service.and.honor.code": "Ao criar uma conta, concorda com o {tosAndHonorCode} e reconhece que {platformName} e cada\n Membro processa os seus dados pessoais em conformidade com a {privacyPolicy}.", - "register.page.honor.code": "Concordo com a {tosAndHonorCode} {platformName}", - "register.page.terms.of.service": "Concordo com os {termsOfService} {platformName}", - "sign.in": "Iniciar sessão", - "reset.password.page.title": "Redefinir Palavra-passe | {siteName}", - "reset.password": "Redefinir palavra-passe", - "reset.password.page.instructions": "Insira e confirme a sua nova palavra-passe.", - "new.password.label": "Nova palavra-passe", - "confirm.password.label": "Confirmar palavra-passe", - "passwords.do.not.match": "As palavras-passe não coincidem", - "confirm.your.password": "Confirme a sua palavra-passe", - "reset.password.failure.heading": "Não conseguimos redefinir sua palavra-passe.", - "reset.password.form.submission.error": "Por favor, verifique as suas respostas e tente novamente.", - "reset.server.rate.limit.error": "Demasiados pedidos.", - "reset.password.success.heading": "Redefinição de palavra-passe concluída", - "reset.password.success": "A sua palavra-passe foi redefinida. Inicie sessão na sua conta.", - "rate.limit.error": "Ocorreu um erro devido a demasiados pedidos. Por favor, tente novamente após algum tempo." -} \ No newline at end of file diff --git a/src/i18n/messages/pt_br.json b/src/i18n/messages/pt_br.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/pt_br.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/ru.json b/src/i18n/messages/ru.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/ru.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/th.json b/src/i18n/messages/th.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/src/i18n/messages/th.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/src/i18n/messages/uk.json b/src/i18n/messages/uk.json deleted file mode 100644 index 5c0dfae32e..0000000000 --- a/src/i18n/messages/uk.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "Start learning", - "with.site.name": "with {siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "Welcome to {siteName}, {username}!", - "complete.your.profile.1": "Complete", - "complete.your.profile.2": "your profile", - "institution.login.page.sub.heading": "Choose your institution from the list below", - "logistration.sign.in": "Sign in", - "logistration.register": "Register", - "enterprisetpa.title.heading": "Would you like to sign in using your {providerName} credentials?", - "enterprisetpa.login.button.text": "Show me other ways to sign in or register", - "enterprisetpa.login.button.text.public.account.creation.disabled": "Show me other ways to sign in", - "sso.sign.in.with": "Sign in with {providerName}", - "sso.create.account.using": "Create account using {providerName}", - "show.password": "Show password", - "hide.password": "Hide password", - "one.letter": "1 letter", - "one.number": "1 number", - "eight.characters": "8 characters", - "password.sr.only.helping.text": "Password must contain at least 8 characters, at least one letter, and at least one number", - "tpa.alert.heading": "Almost done!", - "login.third.party.auth.account.not.linked": "You have successfully signed into {currentProvider}, but your {currentProvider} account does not have a linked {platformName} account. To link your accounts, sign in now using your {platformName} password.", - "register.third.party.auth.account.not.linked": "You've successfully signed into {currentProvider}! We just need a little more information before you start learning with {platformName}.", - "registration.using.tpa.form.heading": "Finish creating your account", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "The page you're looking for is unavailable or there's an error in the URL. Please check the URL and try again.", - "forgot.password.confirmation.message": "We sent an email to {email} with instructions to reset your password.\n If you do not receive a password reset message after 1 minute, verify that you entered\n the correct email address, or check your spam folder. If you need further assistance, {supportLink}.", - "forgot.password.page.title": "Forgot Password | {siteName}", - "forgot.password.page.heading": "Reset password", - "forgot.password.page.instructions": "Please enter your email address below and we will send you an email with instructions on how to reset your password.", - "forgot.password.page.invalid.email.message": "Enter a valid email address", - "forgot.password.page.email.field.label": "Email", - "forgot.password.page.submit.button": "Submit", - "forgot.password.error.alert.title.": "We were unable to contact you.", - "forgot.password.error.message.title": "An error occurred.", - "forgot.password.request.in.progress.message": "Your previous request is in progress, please try again in a few moments.", - "forgot.password.empty.email.field.error": "Enter your email", - "forgot.password.email.help.text": "The email address you used to register with {platformName}", - "confirmation.message.title": "Check your email", - "confirmation.support.link": "contact technical support", - "need.help.sign.in.text": "Need help signing in?", - "additional.help.text": "For additional help, contact {platformName} support at ", - "sign.in.text": "Sign in", - "extend.field.errors": "{emailError} below.", - "invalid.token.heading": "Invalid password reset link", - "invalid.token.error.message": "This password reset link is invalid. It may have been used already. Enter your email below to receive a new link.", - "token.validation.rate.limit.error.heading": "Too many requests", - "token.validation.rate.limit.error": "An error has occurred because of too many requests. Please try again after some time.", - "token.validation.internal.sever.error.heading": "Token validation failure", - "token.validation.internal.sever.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "internal.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "account.activation.error.message": "Something went wrong, please {supportLink} to resolve this issue.", - "login.inactive.user.error": "In order to sign in, you need to activate your account.{lineBreak}\n {lineBreak}We just sent an activation link to {email}. If you do not receive an email,\n check your spam folders or {supportLink}.", - "allowed.domain.login.error": "As {allowedDomain} user, You must login with your {allowedDomain} {tpaLink}.", - "login.incorrect.credentials.error.attempts.text.1": "The username, email or password you entered is incorrect. You have {remainingAttempts} more sign in\n attempts before your account is temporarily locked.", - "login.incorrect.credentials.error.attempts.text.2": "If you've forgotten your password, {resetLink}", - "account.locked.out.message.2": "To be on the safe side, you can {resetLink} before trying again.", - "login.incorrect.credentials.error.with.reset.link": "The username, email, or password you entered is incorrect. Please try again or {resetLink}.", - "login.page.title": "Login | {siteName}", - "login.user.identity.label": "Username or email", - "login.password.label": "Password", - "sign.in.button": "Sign in", - "forgot.password": "Forgot password", - "institution.login.button": "Institution/campus credentials", - "institution.login.page.title": "Sign in with institution/campus credentials", - "login.other.options.heading": "Or sign in with:", - "non.compliant.password.title": "We recently changed our password requirements", - "non.compliant.password.message": "Your current password does not meet the new security requirements. We just sent a password-reset message to the email address associated with this account. Thank you for helping us keep your data safe.", - "account.locked.out.message.1": "To protect your account, it's been temporarily locked. Try again in 30 minutes.", - "enterprise.login.btn.text": "Company or school credentials", - "username.or.email.format.validation.less.chars.message": "Username or email must have at least 3 characters.", - "email.validation.message": "Enter your username or email", - "password.validation.message": "Password criteria has not been met", - "account.activation.success.message.title": "Success! You have activated your account.", - "account.activation.success.message": "You will now receive email updates and alerts from us related to the courses you are enrolled in. Sign in to continue.", - "account.activation.info.message": "This account has already been activated.", - "account.activation.error.message.title": "Your account could not be activated", - "account.activation.support.link": "contact support", - "account.confirmation.success.message.title": "Success! You have confirmed your email.", - "account.confirmation.success.message": "Sign in to continue.", - "account.confirmation.info.message": "This email has already been confirmed.", - "account.confirmation.error.message.title": "Your email could not be confirmed", - "tpa.account.link": "{provider} account", - "internal.server.error.message": "An error has occurred. Try refreshing the page, or check your internet connection.", - "login.rate.limit.reached.message": "Too many failed login attempts. Try again later.", - "login.failure.header.title": "We couldn't sign you in.", - "contact.support.link": "contact {platformName} support", - "login.incorrect.credentials.error": "The username, email, or password you entered is incorrect. Please try again.", - "login.form.invalid.error.message": "Please fill in the fields below.", - "login.incorrect.credentials.error.reset.link.text": "reset your password", - "login.incorrect.credentials.error.before.account.blocked.text": "click here to reset it.", - "password.security.nudge.title": "Password security", - "password.security.block.title": "Password change required", - "password.security.nudge.body": "Our system detected that your password is vulnerable. We recommend you change it so that your account stays secure.", - "password.security.block.body": "Our system detected that your password is vulnerable. Change your password so that your account stays secure.", - "password.security.close.button": "Close", - "password.security.redirect.to.reset.password.button": "Reset your password", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "Welcome | {siteName}", - "progressive.profiling.page.heading": "A few questions for you will help us get smarter.", - "optional.fields.information.link": "Learn more about how we use this information.", - "optional.fields.submit.button": "Submit", - "optional.fields.skip.button": "Skip for now", - "optional.fields.next.button": "Next", - "continue.to.platform": "Continue to {platformName}", - "modal.title": "Thanks for letting us know.", - "modal.description": "You can complete your profile in settings at any time if you change your mind.", - "welcome.page.error.heading": "We couldn't update your profile", - "welcome.page.error.message": "An error occurred. You can complete your profile in settings at any time.", - "recommendation.page.title": "Recommendations | {siteName}", - "recommendation.page.heading": "We have a few recommendations to get you started.", - "recommendation.skip.button": "Skip for now", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "Register | {siteName}", - "registration.fullname.label": "Full name", - "registration.email.label": "Email", - "registration.username.label": "Public username", - "registration.password.label": "Password", - "registration.country.label": "Country/Region", - "registration.opt.in.label": "I agree that {siteName} may send me marketing messages.", - "help.text.name": "This name will be used by any certificates that you earn.", - "help.text.username.1": "The name that will identify you in your courses.", - "help.text.username.2": "This can not be changed later.", - "help.text.email": "For account activation and important updates", - "create.account.for.free.button": "Create an account for free", - "registration.other.options.heading": "Or register with:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "Institution/campus credentials", - "register.institution.login.page.title": "Register with institution/campus credentials", - "empty.name.field.error": "Enter your full name", - "empty.email.field.error": "Enter your email", - "empty.username.field.error": "Username must be between 2 and 30 characters", - "empty.password.field.error": "Password criteria has not been met", - "empty.country.field.error": "Select your country or region of residence", - "email.do.not.match": "The email addresses do not match.", - "email.invalid.format.error": "Enter a valid email address", - "username.validation.message": "Username must be between 2 and 30 characters", - "name.validation.message": "Enter a valid name", - "username.format.validation.message": "Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores (_), and hyphens (-). Usernames cannot contain spaces", - "registration.request.failure.header": "We couldn't create your account.", - "registration.empty.form.submission.error": "Please check your responses and try again.", - "registration.request.server.error": "An error has occurred. Try refreshing the page, or check your internet connection.", - "registration.rate.limit.error": "Too many failed registration attempts. Try again later.", - "registration.tpa.session.expired": "Registration using {provider} has timed out.", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "Terms of Service and Honor Code", - "privacy.policy": "Privacy Policy", - "honor.code": "Honor Code", - "terms.of.service": "Terms of Service", - "registration.username.suggestion.label": "Suggested:", - "did.you.mean.alert.text": "Did you mean", - "register.page.terms.of.service.and.honor.code": "By creating an account, you agree to the {tosAndHonorCode} and you acknowledge that {platformName} and each\n Member process your personal data in accordance with the {privacyPolicy}.", - "register.page.honor.code": "I agree to the {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "I agree to the {platformName} {termsOfService}", - "sign.in": "Sign in", - "reset.password.page.title": "Reset Password | {siteName}", - "reset.password": "Reset password", - "reset.password.page.instructions": "Enter and confirm your new password.", - "new.password.label": "New password", - "confirm.password.label": "Confirm password", - "passwords.do.not.match": "Passwords do not match", - "confirm.your.password": "Confirm your password", - "reset.password.failure.heading": "We couldn't reset your password.", - "reset.password.form.submission.error": "Please check your responses and try again.", - "reset.server.rate.limit.error": "Too many requests.", - "reset.password.success.heading": "Password reset complete.", - "reset.password.success": "Your password has been reset. Sign in to your account.", - "rate.limit.error": "An error has occurred because of too many requests. Please try again after some time." -} \ No newline at end of file diff --git a/src/i18n/messages/zh_CN.json b/src/i18n/messages/zh_CN.json deleted file mode 100644 index ea9d880698..0000000000 --- a/src/i18n/messages/zh_CN.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "start.learning": "开始学习", - "with.site.name": "{siteName}", - "your.career.turning.point": "Your career turning point", - "is.here": "is here.", - "welcome.to.platform": "欢迎来到{siteName},{username}!", - "complete.your.profile.1": "完成", - "complete.your.profile.2": "个人资料", - "institution.login.page.sub.heading": "从下面的列表中选择您的机构", - "logistration.sign.in": "登录", - "logistration.register": "注册", - "enterprisetpa.title.heading": "您要使用 {providerName} 登录吗?", - "enterprisetpa.login.button.text": "为我显示其他登录或注册方式", - "enterprisetpa.login.button.text.public.account.creation.disabled": "显示其他登录方式", - "sso.sign.in.with": "使用 {providerName} 登录", - "sso.create.account.using": "使用 {providerName} 创建帐户", - "show.password": "显示密码", - "hide.password": "隐藏密码", - "one.letter": "1 个字母", - "one.number": "1个数字", - "eight.characters": "8个字符", - "password.sr.only.helping.text": "密码必须包含至少 8 个字符、至少一个字母和至少一个数字", - "tpa.alert.heading": "快完成了!", - "login.third.party.auth.account.not.linked": "您已成功登录 {currentProvider},但您的 {currentProvider} 帐户没有关联的 {platformName} 帐户。要链接您的帐户,请立即使用您的 {platformName} 密码登录。", - "register.third.party.auth.account.not.linked": "您已成功登录 {currentProvider}!在您开始学习 {platformName} 之前,我们只需要更多信息。", - "registration.using.tpa.form.heading": "完成创建您的帐户", - "zendesk.supportTitle": "edX Support", - "zendesk.selectTicketForm": "Please choose your request type:", - "error.notfound.message": "您访问的地址不存在或有误。请检查URL后重新尝试访问。", - "forgot.password.confirmation.message": "我们向 {email} 发送了一封电子邮件,其中包含重置密码的说明。如果您在 1 分钟后没有收到密码重置消息,请确认您输入了正确的电子邮件地址,或者检查您的垃圾邮件文件夹。如果您需要进一步的帮助,点击{supportLink}。", - "forgot.password.page.title": "忘记密码 | {siteName}", - "forgot.password.page.heading": "重置密码", - "forgot.password.page.instructions": "请在下面输入您的电子邮件地址,我们将向您发送一封电子邮件,其中包含有关如何重置密码的说明。", - "forgot.password.page.invalid.email.message": "输入一个有效的电子邮件地址", - "forgot.password.page.email.field.label": "邮箱", - "forgot.password.page.submit.button": "提交", - "forgot.password.error.alert.title.": "我们无法联系到您。", - "forgot.password.error.message.title": "发生了一个错误。", - "forgot.password.request.in.progress.message": "你的前一个请求正在处理中,请稍后再尝试。", - "forgot.password.empty.email.field.error": "输入你的电子邮箱", - "forgot.password.email.help.text": "您用于注册 {platformName} 的电子邮件地址", - "confirmation.message.title": "查收您的邮件", - "confirmation.support.link": "联系技术支持", - "need.help.sign.in.text": "需要帮助登录?", - "additional.help.text": "如需更多帮助,请通过以下方式联系 {platformName} 支持", - "sign.in.text": "登录", - "extend.field.errors": "{emailError} 如下。", - "invalid.token.heading": "密码重置链接无效", - "invalid.token.error.message": "此密码重置链接无效。它可能已经被使用过。在下面输入您的电子邮件以接收新链接。", - "token.validation.rate.limit.error.heading": "请求过多", - "token.validation.rate.limit.error": "由于请求过多而发生错误。请稍后重试。", - "token.validation.internal.sever.error.heading": "验证失败", - "token.validation.internal.sever.error": "发生了错误。尝试刷新页面,或检查您的互联网连接。", - "internal.server.error": "发生了错误。尝试刷新页面,或检查您的互联网连接。", - "account.activation.error.message": "出了点问题,请联系{supportLink}解决这个问题。", - "login.inactive.user.error": "若要登录,您需要激活您的帐户。{lineBreak} {lineBreak}我们刚刚向 {email} 发送了一个激活链接。如果您没有收到电子邮件,请检查您的垃圾邮件文件夹或 {supportLink}。", - "allowed.domain.login.error": "作为 {allowedDomain} 用户,您必须使用 {allowedDomain} {tpaLink} 登录。", - "login.incorrect.credentials.error.attempts.text.1": "您输入的用户名、电子邮件或密码不正确。在您的帐户被暂时锁定之前,您还有 {remainingAttempts} 次登录尝试。", - "login.incorrect.credentials.error.attempts.text.2": "如果您忘记了密码,{resetLink}", - "account.locked.out.message.2": "为了安全起见,您可以先{resetLink}再试一次。", - "login.incorrect.credentials.error.with.reset.link": "您输入的用户名、电子邮件或密码不正确。请重试或 {resetLink}。", - "login.page.title": "登入 | {siteName}", - "login.user.identity.label": "用户名或电子邮件", - "login.password.label": "密码", - "sign.in.button": "登录", - "forgot.password": "忘记密码", - "institution.login.button": "机构/校园凭证", - "institution.login.page.title": "使用机构/校园凭据登录", - "login.other.options.heading": "或登录:", - "non.compliant.password.title": "我们最近更改了密码要求", - "non.compliant.password.message": "您当前的密码不符合新的安全要求。我们刚刚向与此帐户关联的电子邮件地址发送了密码重置邮件。感谢您帮助我们保护您的数据安全。", - "account.locked.out.message.1": "为了保护您的帐户,它已被暂时锁定。请在 30 分钟后重试。", - "enterprise.login.btn.text": "单位或学校证书", - "username.or.email.format.validation.less.chars.message": "用户名或电子邮件必须至少包含 3 个字符。", - "email.validation.message": "输入您的用户名或电子邮件", - "password.validation.message": "未满足密码条件", - "account.activation.success.message.title": "成功!您已激活您的帐户。", - "account.activation.success.message": "您现在将收到我们发送的与您注册的课程相关的电子邮件更新和提醒。登录以继续。", - "account.activation.info.message": "本账号已经被激活。", - "account.activation.error.message.title": "您的帐户无法激活", - "account.activation.support.link": "请联系技术支持", - "account.confirmation.success.message.title": "成功!您已确认您的电子邮件。", - "account.confirmation.success.message": "登录并继续。", - "account.confirmation.info.message": "此电子邮件已被确认。", - "account.confirmation.error.message.title": "无法确认您的电子邮件", - "tpa.account.link": "{provider} 帐户", - "internal.server.error.message": "发生了错误。尝试刷新页面,或检查您的互联网连接。", - "login.rate.limit.reached.message": "失败次数超过限制,请稍后再试!", - "login.failure.header.title": "登录失败。", - "contact.support.link": "联系 {platformName} 支持", - "login.incorrect.credentials.error": "您输入的用户名、电子邮件或密码不正确。请再试一次。", - "login.form.invalid.error.message": "请填写以下字段。", - "login.incorrect.credentials.error.reset.link.text": "重置你的密码", - "login.incorrect.credentials.error.before.account.blocked.text": "点击此处来重置它。", - "password.security.nudge.title": "密码安全", - "password.security.block.title": "需要更改密码", - "password.security.nudge.body": "系统检测到您的密码存在漏洞。我们建议您更改它,以便您的帐户保持安全。", - "password.security.block.body": "系统检测到您的密码存在漏洞。更改您的密码,以确保您的帐户安全。", - "password.security.close.button": "关闭", - "password.security.redirect.to.reset.password.button": "重置你的密码", - "login.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "progressive.profiling.page.title": "欢迎来的 | {siteName}", - "progressive.profiling.page.heading": "你的问题将会帮助我们服务做的更好。", - "optional.fields.information.link": "详细了解我们如何使用这些信息。", - "optional.fields.submit.button": "提交", - "optional.fields.skip.button": "暂时跳过", - "optional.fields.next.button": "下一节", - "continue.to.platform": "继续{platformName}", - "modal.title": "感谢您指点。", - "modal.description": "如果您改变主意,可以随时在设置中完成您的个人资料。", - "welcome.page.error.heading": "我们无法更新您的个人资料", - "welcome.page.error.message": "发生错误。您可以随时在设置中完成您的个人资料。", - "recommendation.page.title": "建议 | {siteName}", - "recommendation.page.heading": "我们有一些建议可以帮助您入门。", - "recommendation.skip.button": "暂时跳过", - "recommendation.option.trending": "Trending", - "recommendation.option.popular": "Most Popular", - "recommendation.product-card.pill-text.course": "Course", - "recommendation.product-card.pill-text.professional-certificate": "Professional Certificate", - "recommendation.product-card.pill-text.emeritus": "Offered on Emeritus", - "recommendation.product-card.pill-text.shorelight": "Offered through Shorelight", - "recommendation.product-card.footer-text.number-of-courses": "{length} {label}", - "recommendation.product-card.footer-text.subscription": "Subscription", - "recommendation.product-card.launch-icon.sr-text": "Opens a link in a new tab", - "register.page.title": "注册 | {siteName}", - "registration.fullname.label": "全名", - "registration.email.label": "邮箱", - "registration.username.label": "公开用户名", - "registration.password.label": "密码", - "registration.country.label": "国家/地区", - "registration.opt.in.label": "我同意 {siteName} 可以向我发送课程相关推广信息。", - "help.text.name": "您获得的任何证书都将使用此名称。", - "help.text.username.1": "此名称将会用于您在课程中的身份识别。", - "help.text.username.2": "过后无法更改。", - "help.text.email": "用于帐户激活和重要更新", - "create.account.for.free.button": "免费创建一个帐户", - "registration.other.options.heading": "或注册:", - "create.account.cta.button": "{label}", - "register.institution.login.button": "机构/院系验证", - "register.institution.login.page.title": "使用机构/院系账户注册", - "empty.name.field.error": "输入您的全名", - "empty.email.field.error": "输入你的电子邮箱", - "empty.username.field.error": "用户名必须介于 2 到 30 个字符之间", - "empty.password.field.error": "未满足密码条件", - "empty.country.field.error": "选择您居住的国家或地区", - "email.do.not.match": "邮箱不一致。", - "email.invalid.format.error": "输入一个有效的电子邮件地址", - "username.validation.message": "用户名必须介于 2 到 30 个字符之间", - "name.validation.message": "输入有效名称", - "username.format.validation.message": "用户名只能包含字母(AZ、az)、数字(0-9)、下划线(_)和连字符(-)。用户名不能包含空格", - "registration.request.failure.header": "无法创建账号。", - "registration.empty.form.submission.error": "请检查您的回复并重试。", - "registration.request.server.error": "发生了错误。尝试刷新页面,或检查您的互联网连接。", - "registration.rate.limit.error": "注册尝试失败次数过多。稍后再试。", - "registration.tpa.session.expired": "使用{provider}注册已超时。", - "registration.tpa.authentication.failure": "We are sorry, you are not authorized to access {platform_name} via this channel. Please contact your learning administrator or manager in order to access {platform_name}.{lineBreak}{lineBreak}Error Details:{lineBreak}{errorMessage}", - "terms.of.service.and.honor.code": "服务条款和诚信准则", - "privacy.policy": "隐私政策", - "honor.code": "规则", - "terms.of.service": "服务条款", - "registration.username.suggestion.label": "建议:", - "did.you.mean.alert.text": "你的意思是", - "register.page.terms.of.service.and.honor.code": "创建帐户即表示您同意 {tosAndHonorCode} 并承认 {platformName} 和每位会员根据 {privacyPolicy} 处理您的个人数据。", - "register.page.honor.code": "我同意 {platformName} {tosAndHonorCode}", - "register.page.terms.of.service": "我同意接受 {platformName} {termsOfService}", - "sign.in": "登录", - "reset.password.page.title": "重设密码 | {siteName}", - "reset.password": "重置密码", - "reset.password.page.instructions": "输入并确认你的新密码。", - "new.password.label": "新密码", - "confirm.password.label": "确认密码", - "passwords.do.not.match": "密码不匹配", - "confirm.your.password": "确认你的密码", - "reset.password.failure.heading": "我们无法重置您的密码。", - "reset.password.form.submission.error": "请检查您的回复并重试。", - "reset.server.rate.limit.error": "请求过多。", - "reset.password.success.heading": "密码重置完成。", - "reset.password.success": "您的密码已重置。登录到您的帐户。", - "rate.limit.error": "由于请求过多而发生错误。请稍后重试。" -} \ No newline at end of file