From 89bcceaadcec8a1db06d7accb549991e098a497f Mon Sep 17 00:00:00 2001 From: Samir Sabri Date: Wed, 20 Mar 2024 16:31:47 +0300 Subject: [PATCH] feat!: remove Transifex calls for OEP-58 (#889) --- .gitignore | 1 + .tx/config | 9 ------ Makefile | 22 -------------- src/i18n/index.js | 45 +-------------------------- src/i18n/messages/ar.json | 57 ----------------------------------- src/i18n/messages/de.json | 57 ----------------------------------- src/i18n/messages/de_DE.json | 57 ----------------------------------- src/i18n/messages/es_419.json | 57 ----------------------------------- src/i18n/messages/fa_IR.json | 57 ----------------------------------- src/i18n/messages/fr.json | 57 ----------------------------------- src/i18n/messages/fr_CA.json | 57 ----------------------------------- src/i18n/messages/hi.json | 57 ----------------------------------- src/i18n/messages/it.json | 57 ----------------------------------- src/i18n/messages/it_IT.json | 57 ----------------------------------- src/i18n/messages/pt.json | 57 ----------------------------------- src/i18n/messages/pt_PT.json | 57 ----------------------------------- src/i18n/messages/ru.json | 57 ----------------------------------- src/i18n/messages/uk.json | 57 ----------------------------------- src/i18n/messages/zh_CN.json | 57 ----------------------------------- 19 files changed, 2 insertions(+), 930 deletions(-) delete mode 100644 .tx/config delete mode 100644 src/i18n/messages/ar.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/hi.json delete mode 100644 src/i18n/messages/it.json delete mode 100644 src/i18n/messages/it_IT.json delete mode 100644 src/i18n/messages/pt.json delete mode 100644 src/i18n/messages/pt_PT.json delete mode 100644 src/i18n/messages/ru.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 4e93143e7..460c197f3 100755 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ temp/babel-plugin-react-intl /temp /.vscode /module.config.js +src/i18n/messages \ No newline at end of file diff --git a/.tx/config b/.tx/config deleted file mode 100644 index e91c5b7fe..000000000 --- a/.tx/config +++ /dev/null @@ -1,9 +0,0 @@ -[main] -host = https://www.transifex.com - -[o:open-edx:p:edx-platform:r:frontend-app-profile] -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 ca35e785a..352e6ec01 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,3 @@ -export TRANSIFEX_RESOURCE = frontend-app-profile -transifex_resource = frontend-app-profile -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 @@ -39,23 +35,6 @@ 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 @@ -68,7 +47,6 @@ pull_translations: translations/frontend-app-profile/src/i18n/messages:frontend-app-profile $(intl_imports) frontend-platform paragon frontend-component-header frontend-component-footer frontend-app-profile -endif # This target is used by Travis. validate-no-uncommitted-package-lock-changes: diff --git a/src/i18n/index.js b/src/i18n/index.js index 77a950e65..d6d1738de 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -1,44 +1 @@ -import { messages as headerMessages } from '@edx/frontend-component-header'; -import { messages as footerMessages } from '@edx/frontend-component-footer'; -import { messages as paragonMessages } from '@openedx/paragon'; -import arMessages from './messages/ar.json'; -import deMessages from './messages/de.json'; -import dedeCAMessages from './messages/de_DE.json'; -import es419Messages from './messages/es_419.json'; -import faIRMessages from './messages/fa_IR.json'; -import frCAMessages from './messages/fr_CA.json'; -import itMessages from './messages/it.json'; -import ititCAMessages from './messages/it_IT.json'; -import frMessages from './messages/fr.json'; -import hiMessages from './messages/hi.json'; -import ptMessages from './messages/pt.json'; -import ptptCAMessages 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, - 'es-419': es419Messages, - 'fa-ir': faIRMessages, - fr: frMessages, - 'zh-cn': zhcnMessages, - pt: ptMessages, - it: itMessages, - de: deMessages, - hi: hiMessages, - 'fr-ca': frCAMessages, - ru: ruMessages, - uk: ukMessages, - 'de-de': dedeCAMessages, - 'it-it': ititCAMessages, - 'pt-pt': ptptCAMessages, -}; - -export default [ - headerMessages, - footerMessages, - paragonMessages, - appMessages, -]; +export default []; diff --git a/src/i18n/messages/ar.json b/src/i18n/messages/ar.json deleted file mode 100644 index ed0e901b3..000000000 --- a/src/i18n/messages/ar.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "الملف الشخصي | {siteName}", - "profile.age.details": "لمشاركة ملفك الشخصي مع بقية متعلمي {siteName}، يجب أن تؤكد أنك عمرك يفوق 13 عامًا.", - "profile.age.set.date": "ضيط تاريخ ميلادك", - "profile.datejoined.member.since": "عضو منذ {year}", - "profile.notfound.message": "الصفحة التي تبحث عنها غير متوفرة أو هناك خطأ في العنوان. رجاءً تحقق من العنوان و حاول مجدّدًا.", - "profile.viewMyRecords": "عرض سجلّاتي", - "profile.loading": "يتم تحميل الملف الشخصي...", - "profile.username.description": "معلومات ملفك الشخصي تظهر لك فقط. وحده اسم المستخدم الخاص بك يظهر للآخرين على {siteName}.", - "profile.bio.empty": "إضافة نبذة قصيرة", - "profile.bio.about.me": "نبذة عنّي", - "profile.certificate.organization.label": "من طرف", - "profile.certificate.completion.date.label": "صدرت بتاريخ {date}", - "profile.no.certificates": "ليست لديك أي شهادات يعد.", - "profile.certificates.my.certificates": "شهاداتي", - "profile.certificates.view.certificate": "معاينة الشهادة", - "profile.certificates.types.verified": "شهادة موثقة", - "profile.certificates.types.professional": "شهادة مهنية", - "profile.certificates.types.unknown": "شهادة", - "profile.country.label": "الموقع", - "profile.country.empty": "إضافة الموقع", - "profile.education.empty": "إضافة المستوى التعليمي", - "profile.education.education": "المستوى التعليمي", - "profile.education.levels.p": "دكتوراه", - "profile.education.levels.m": "ماجستير / ماستر أو شهادة مهنيّة", - "profile.education.levels.b": "بكالوريوس / ليسانس", - "profile.education.levels.a": "درجة الزمالة / دبلوم الدراسات الجامعية", - "profile.education.levels.hs": "الثانوية العامة / البكالوريا", - "profile.education.levels.jhs": "المدرسة الإعدادية / المتوسطة", - "profile.education.levels.el": "المدرسة الابتدائية / الأساسية", - "profile.education.levels.none": "دون تعليم رسمي", - "profile.education.levels.o": "نوع آخر من التعليم", - "profile.learningGoal.learningGoal": "هدف التعلم", - "profile.learningGoal.options.start_career": "أريد أن أبدأ مسيرتي المهنية", - "profile.learningGoal.options.advance_career": "أريد أن ارتقي في مسيرتي المهنية", - "profile.learningGoal.options.learn_something_new": "أريد أن أتعلم شيئًا جديدًا", - "profile.learningGoal.options.something_else": "شيء آخر", - "profile.name.full.name": "الاسم الكامل", - "profile.name.details": "هذا هو الاسم الذي يظهر في حسابك وفي شهاداتك", - "profile.name.empty": "إضافة الاسم", - "profile.preferredlanguage.empty": "إضافة اللغة", - "profile.preferredlanguage.label": "لغة التحدّث الأساسية", - "profile.profileavatar.upload-button": "تحميل صورة", - "profile.profileavatar.remove.button": "حذف", - "profile.image.alt.attribute": "صورة الملف الشخصي", - "profile.profileavatar.change-button": "تغيير", - "profile.sociallinks.add": "إضافة {network}", - "profile.sociallinks.social.links": "روابط التواصل الاجتماعي", - "profile.editbutton.edit": "تعديل", - "profile.formcontrols.who.can.see": "من يستطيع رؤية هذا:", - "profile.formcontrols.button.cancel": "إلغاء", - "profile.formcontrols.button.save": "حفظ", - "profile.formcontrols.button.saving": "الحفظ جارٍ", - "profile.formcontrols.button.saved": "تم الحفظ", - "profile.visibility.who.just.me": "أنا فقط", - "profile.visibility.who.everyone": "جميع من على {siteName}" -} \ 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 e8dbcdc4e..000000000 --- a/src/i18n/messages/de.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "My Certificates", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 3b7bfe08c..000000000 --- a/src/i18n/messages/de_DE.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profil | {siteName}", - "profile.age.details": "Um Ihr Profil mit anderen {siteName}-Lernern zu teilen, müssen Sie bestätigen, dass Sie über 13 Jahre alt sind.", - "profile.age.set.date": "Legen Sie Ihr Geburtsdatum fest", - "profile.datejoined.member.since": "Mitglied seit {year}", - "profile.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.", - "profile.viewMyRecords": "Meine Aufzeichnungen anzeigen", - "profile.loading": "Profil lädt...", - "profile.username.description": "Ihre Profilinformationen sind nur für Sie sichtbar. Nur Ihr Benutzername ist für andere auf {siteName} sichtbar.", - "profile.bio.empty": "Fügen Sie Ihre Kurzbiografie hinzu", - "profile.bio.about.me": "Über mich", - "profile.certificate.organization.label": "Von", - "profile.certificate.completion.date.label": "Abgeschlossen am {date}", - "profile.no.certificates": "Sie haben bisher keine Zertifikate erhalten.", - "profile.certificates.my.certificates": "Meine Zertifikate", - "profile.certificates.view.certificate": "Zertifikat anschauen", - "profile.certificates.types.verified": "Beglaubigtes Zertifikat ", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Zertifikat", - "profile.country.label": "Ort", - "profile.country.empty": "Standort hinzufügen", - "profile.education.empty": "Ausbildung hinzufügen", - "profile.education.education": "Bildung", - "profile.education.levels.p": "Doktortitel", - "profile.education.levels.m": "Master oder gleichwertiger akademischer Bildungsgrad", - "profile.education.levels.b": "Bachelor", - "profile.education.levels.a": "Allgemeine Hochschulreife oder gleichwertiger Abschluss", - "profile.education.levels.hs": "Mittlere Reife", - "profile.education.levels.jhs": "Hauptschule", - "profile.education.levels.el": "Grundschule", - "profile.education.levels.none": "Keinen Bildungsabschluss", - "profile.education.levels.o": "Sonstige Bildung", - "profile.learningGoal.learningGoal": "Lernziel", - "profile.learningGoal.options.start_career": "Ich möchte meine Karriere starten", - "profile.learningGoal.options.advance_career": "Ich möchte mich beruflich weiterentwickeln", - "profile.learningGoal.options.learn_something_new": "Ich möchte etwas Neues lernen", - "profile.learningGoal.options.something_else": "Etwas anderes", - "profile.name.full.name": "Vollständiger Name", - "profile.name.details": "Dies ist der Name, der in Ihrem Konto und auf Ihren Zertifikaten erscheint.", - "profile.name.empty": "Name hinzufügen", - "profile.preferredlanguage.empty": "Sprache hinzufügen", - "profile.preferredlanguage.label": "Gesprochene Primärsprache ", - "profile.profileavatar.upload-button": "Foto hochladen", - "profile.profileavatar.remove.button": "Entfernen", - "profile.image.alt.attribute": "Profil Avatar", - "profile.profileavatar.change-button": "Ändern", - "profile.sociallinks.add": "{network} hinzufügen", - "profile.sociallinks.social.links": "Soziale Netzwerke", - "profile.editbutton.edit": "Bearbeiten", - "profile.formcontrols.who.can.see": "Wer kann das sehen:", - "profile.formcontrols.button.cancel": "Abbrechen", - "profile.formcontrols.button.save": "Speichern", - "profile.formcontrols.button.saving": "Speichert", - "profile.formcontrols.button.saved": "Gespeichert", - "profile.visibility.who.just.me": "Nur ich", - "profile.visibility.who.everyone": "Alle auf {siteName}" -} \ 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 fb4da67d0..000000000 --- a/src/i18n/messages/es_419.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Perfil | {siteName}", - "profile.age.details": "Para compartir el perfil con otros {siteName} estudiantes, debe confirmar que es mayor de 13 años.", - "profile.age.set.date": "Establece tu fecha de nacimiento", - "profile.datejoined.member.since": "Miembro desde {year}", - "profile.notfound.message": "La página que estas buscando no está disponible o hay un error en la URL. Por favor, comprueba la URL y vuelve a intentarlo.", - "profile.viewMyRecords": "Ver mis registros", - "profile.loading": "Cargando perfil...", - "profile.username.description": "La información del perfil solo la visualiza usted. Solo el nombre de usuario es visible para los demás en {siteName}.", - "profile.bio.empty": "Añade una breve biografía", - "profile.bio.about.me": "Sobre Mí", - "profile.certificate.organization.label": "Desde", - "profile.certificate.completion.date.label": "Completado el {date}", - "profile.no.certificates": "Todavía no ha obtenido ningún certificado.", - "profile.certificates.my.certificates": "Mis Certificados", - "profile.certificates.view.certificate": "Ver Certificado", - "profile.certificates.types.verified": "Certificado verificado", - "profile.certificates.types.professional": "Certificado profesional", - "profile.certificates.types.unknown": "Certificado", - "profile.country.label": "Ubicación", - "profile.country.empty": "Añade ubicación", - "profile.education.empty": "Añade Educación", - "profile.education.education": "Educación", - "profile.education.levels.p": "Doctorado", - "profile.education.levels.m": "Master o magíster", - "profile.education.levels.b": "Pregrado o Licenciatura", - "profile.education.levels.a": "Grado técnico - tecnológico", - "profile.education.levels.hs": "Enseñanza secundaria", - "profile.education.levels.jhs": "Formación media", - "profile.education.levels.el": "Enseñanza primaria", - "profile.education.levels.none": "Ninguna educación formal", - "profile.education.levels.o": "Otra educación", - "profile.learningGoal.learningGoal": "Objetivo de aprendizaje", - "profile.learningGoal.options.start_career": "quiero empezar mi carrera", - "profile.learningGoal.options.advance_career": "Quiero avanzar en mi carrera", - "profile.learningGoal.options.learn_something_new": "quiero aprender algo nuevo", - "profile.learningGoal.options.something_else": "Algo más", - "profile.name.full.name": "Nombre completo", - "profile.name.details": "Este es el nombre que aparecerá en tu cuenta y en tus certificados.", - "profile.name.empty": "Añade nombre", - "profile.preferredlanguage.empty": "Añadir idioma", - "profile.preferredlanguage.label": "Idioma principal que hablas", - "profile.profileavatar.upload-button": "Subir foto", - "profile.profileavatar.remove.button": "Eliminar", - "profile.image.alt.attribute": "avatar del perfil", - "profile.profileavatar.change-button": "Cambiar", - "profile.sociallinks.add": "Añade {network}", - "profile.sociallinks.social.links": "Enlaces De Redes Sociales", - "profile.editbutton.edit": "Editar", - "profile.formcontrols.who.can.see": "Quién puede ver esto:", - "profile.formcontrols.button.cancel": "Cancelar", - "profile.formcontrols.button.save": "Guardar", - "profile.formcontrols.button.saving": "Guardando", - "profile.formcontrols.button.saved": "Guardado", - "profile.visibility.who.just.me": "Solo yo", - "profile.visibility.who.everyone": "Todos en {siteName}" -} \ 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 d42805f91..000000000 --- a/src/i18n/messages/fa_IR.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "پرونده کاربری {siteName}", - "profile.age.details": "برای اشتراک‌گذاری پرونده کاربری خود با سایر یادگیرندگان {siteName}، باید تأیید کنید که بیش از 13 سال سن دارید.", - "profile.age.set.date": "تنظیم تاریخ تولد", - "profile.datejoined.member.since": "عضو شده از {year}", - "profile.notfound.message": "صفحه مورد نظر شما در دسترس نیست یا خطایی در نشانی آن وجود دارد. لطفاً نشانی اینترنتی را بررسی کرده و دوباره امتحان کنید.", - "profile.viewMyRecords": "مشاهده سوابق من", - "profile.loading": "در حال بارگذاری پرونده کاربری...", - "profile.username.description": "اطلاعات پرونده کاربری فقط برای شما قابل مشاهده است. سایرین فقط نام کاربری شما را در {siteName} می‌توانند ببینند.", - "profile.bio.empty": "بیوگرافی کوتاهی اضافه کنید", - "profile.bio.about.me": "درباره من", - "profile.certificate.organization.label": "از", - "profile.certificate.completion.date.label": "تکمیل شده در {date}", - "profile.no.certificates": "شما هنوز هیچ گواهی ندارید.", - "profile.certificates.my.certificates": "گواهی‌های من", - "profile.certificates.view.certificate": "نمایش گواهی", - "profile.certificates.types.verified": "گواهی تأییدشده", - "profile.certificates.types.professional": "گواهی حرفه‌ای", - "profile.certificates.types.unknown": "گواهی", - "profile.country.label": "مکان", - "profile.country.empty": "افزودن مکان", - "profile.education.empty": "افزودن تحصیلات", - "profile.education.education": "تحصیلات", - "profile.education.levels.p": "درجه دکتری", - "profile.education.levels.m": "کارشناسی ارشد یا مدرک حرفه‌ای", - "profile.education.levels.b": "مدرک کارشناسی", - "profile.education.levels.a": "مدرک کاردانی", - "profile.education.levels.hs": "متوسطه/دبیرستان", - "profile.education.levels.jhs": "مدرسه متوسطه دوره اول/ راهنمایی", - "profile.education.levels.el": "مدرسه ابتدایی", - "profile.education.levels.none": "بدون تحصیلات رسمی", - "profile.education.levels.o": "تحصیلات متفرقه", - "profile.learningGoal.learningGoal": "هدف یادگیری", - "profile.learningGoal.options.start_career": "من می خواهم کارم را شروع کنم", - "profile.learningGoal.options.advance_career": "من می خواهم حرفه ام را ارتقا دهم", - "profile.learningGoal.options.learn_something_new": "می‌خواهم چیز جدیدی یاد بگیرم", - "profile.learningGoal.options.something_else": "یک چیز دیگر", - "profile.name.full.name": "نام و نام خانوادگی", - "profile.name.details": "این همان نامی است که در حساب کاربری و گواهی‌های شما درج می‌شود.", - "profile.name.empty": "افزودن نام", - "profile.preferredlanguage.empty": "افزودن زبان", - "profile.preferredlanguage.label": "زبان اصلی صحبت شده", - "profile.profileavatar.upload-button": "بارگذاری عکس", - "profile.profileavatar.remove.button": "حذف", - "profile.image.alt.attribute": "چهرک پرونده کاربری", - "profile.profileavatar.change-button": "تغییر", - "profile.sociallinks.add": "افزودن {network}", - "profile.sociallinks.social.links": "پیوندهای رسانه اجتماعی", - "profile.editbutton.edit": " ویرایش", - "profile.formcontrols.who.can.see": "کسانی که می‌توانند این را ببینند:", - "profile.formcontrols.button.cancel": "لغو‌", - "profile.formcontrols.button.save": "ذخیره", - "profile.formcontrols.button.saving": "در حال ذخیره", - "profile.formcontrols.button.saved": "ذخیره شد", - "profile.visibility.who.just.me": "فقط من", - "profile.visibility.who.everyone": "هرکسی در {siteName}" -} \ 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 e6420521b..000000000 --- a/src/i18n/messages/fr.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "Pour partager votre profil avec d'autres étudiants {siteName}, vous devez confirmer que vous avez plus de 13 ans.", - "profile.age.set.date": "Définissez votre date de naissance", - "profile.datejoined.member.since": "Membre depuis {year}", - "profile.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.", - "profile.viewMyRecords": "Voir mes succès", - "profile.loading": "Chargement du profil....", - "profile.username.description": "Les informations de votre profil ne sont visibles que par vous. Seul votre nom d'utilisateur est visible par les autres sur {siteName}.", - "profile.bio.empty": "Ajouter une courte biographie", - "profile.bio.about.me": "À propos de moi", - "profile.certificate.organization.label": "De", - "profile.certificate.completion.date.label": "Terminé le {date}", - "profile.no.certificates": "Vous n'avez pas encore de certificats.", - "profile.certificates.my.certificates": "Mes certificats", - "profile.certificates.view.certificate": "Voir le certificat", - "profile.certificates.types.verified": "Certificat vérifié", - "profile.certificates.types.professional": "Certificat professionnel", - "profile.certificates.types.unknown": "Certificat", - "profile.country.label": "Localisation", - "profile.country.empty": "Ajouter localisation", - "profile.education.empty": "Ajouter une éducation", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorat", - "profile.education.levels.m": "Master ou diplôme professionnel", - "profile.education.levels.b": "Diplôme de licence", - "profile.education.levels.a": "Grade de l'associé", - "profile.education.levels.hs": "Lycée / enseignement secondaire", - "profile.education.levels.jhs": "Collège / enseignement secondaire inférieur", - "profile.education.levels.el": "Enseignement primaire", - "profile.education.levels.none": "Sans diplôme", - "profile.education.levels.o": "Autre niveau d'étude", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Nom complet", - "profile.name.details": "C'est le nom qui apparaît dans votre compte et sur vos certificats.", - "profile.name.empty": "Ajouter un nom", - "profile.preferredlanguage.empty": "Ajouter une langue", - "profile.preferredlanguage.label": "Langue principale parlée", - "profile.profileavatar.upload-button": "Envoyer la photo", - "profile.profileavatar.remove.button": "Supprimer", - "profile.image.alt.attribute": "Profil avatar", - "profile.profileavatar.change-button": "Modifier", - "profile.sociallinks.add": "Ajouter {network}", - "profile.sociallinks.social.links": "Liens vers les réseaux sociaux", - "profile.editbutton.edit": "Modifier", - "profile.formcontrols.who.can.see": "Qui peut voir ça :", - "profile.formcontrols.button.cancel": "Annuler", - "profile.formcontrols.button.save": "Enregistrer", - "profile.formcontrols.button.saving": "Enregistrement", - "profile.formcontrols.button.saved": "Enregistré", - "profile.visibility.who.just.me": "Juste moi", - "profile.visibility.who.everyone": "Tout le monde sur {siteName}" -} \ 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 395237485..000000000 --- a/src/i18n/messages/fr_CA.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profil | {siteName}", - "profile.age.details": "Pour partager votre profil avec d'autres apprenants {siteName}, vous devez confirmer que vous avez plus de 13 ans.", - "profile.age.set.date": "Entrez votre date de naissance", - "profile.datejoined.member.since": "Membre depuis {year}", - "profile.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.", - "profile.viewMyRecords": "Afficher mes dossiers", - "profile.loading": "Chargement du profil...", - "profile.username.description": "Les informations de votre profil ne sont visibles que par vous. Seul votre nom d'utilisateur est visible par les autres sur {siteName}.", - "profile.bio.empty": "Ajouter une courte biographie", - "profile.bio.about.me": "À propos de moi", - "profile.certificate.organization.label": "De", - "profile.certificate.completion.date.label": "Terminé le {date}", - "profile.no.certificates": "Vous n'avez pas encore d'attestation.", - "profile.certificates.my.certificates": "Mes Attestations", - "profile.certificates.view.certificate": "Voir votre attestation", - "profile.certificates.types.verified": "Attestation vérifiée", - "profile.certificates.types.professional": "Attestation professionnelle", - "profile.certificates.types.unknown": "Attestation", - "profile.country.label": "Adresse", - "profile.country.empty": "Ajouter un emplacement", - "profile.education.empty": "Ajouter formation", - "profile.education.education": "Formation", - "profile.education.levels.p": "Doctorat", - "profile.education.levels.m": "Maîtrise ou diplôme professionnel", - "profile.education.levels.b": "Diplôme de baccalauréat", - "profile.education.levels.a": "Diplôme d'associé", - "profile.education.levels.hs": "Lycée / enseignement secondaire", - "profile.education.levels.jhs": "Collège / enseignement secondaire inférieur", - "profile.education.levels.el": "Enseignement primaire", - "profile.education.levels.none": "Sans formation formelle", - "profile.education.levels.o": "Autre niveau de formation", - "profile.learningGoal.learningGoal": "Objectif d'apprentissage", - "profile.learningGoal.options.start_career": "Je veux commencer ma carrière", - "profile.learningGoal.options.advance_career": "Je veux faire progresser ma carrière", - "profile.learningGoal.options.learn_something_new": "Je veux apprendre quelque chose de nouveau", - "profile.learningGoal.options.something_else": "Autre chose", - "profile.name.full.name": "Nom complet", - "profile.name.details": "C'est le nom qui apparaît dans votre compte et sur vos attestations.", - "profile.name.empty": "Ajouter un nom", - "profile.preferredlanguage.empty": "Ajouter une langue", - "profile.preferredlanguage.label": "Langue principale parlée", - "profile.profileavatar.upload-button": "Téléverser une photo", - "profile.profileavatar.remove.button": "Retirer", - "profile.image.alt.attribute": "avatar de profil", - "profile.profileavatar.change-button": "Modifier", - "profile.sociallinks.add": "Ajouter {network}", - "profile.sociallinks.social.links": "Liens vers les réseaux sociaux", - "profile.editbutton.edit": "Éditer", - "profile.formcontrols.who.can.see": "Qui peut voir ça :", - "profile.formcontrols.button.cancel": "Annuler", - "profile.formcontrols.button.save": "Sauvegarder", - "profile.formcontrols.button.saving": "Sauvegarde en cours", - "profile.formcontrols.button.saved": "Sauvegardé", - "profile.visibility.who.just.me": "Juste moi", - "profile.visibility.who.everyone": "Tout le monde sur {siteName}" -} \ 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 e8dbcdc4e..000000000 --- a/src/i18n/messages/hi.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "My Certificates", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 e8dbcdc4e..000000000 --- a/src/i18n/messages/it.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "My Certificates", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 6f439245f..000000000 --- a/src/i18n/messages/it_IT.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profilo | {siteName}", - "profile.age.details": "Per condividere il tuo profilo con altri studenti di {siteName}, devi confermare di avere più di 13 anni.", - "profile.age.set.date": "Imposta la data di nascita ", - "profile.datejoined.member.since": "Membro da {year}", - "profile.notfound.message": "La pagina ricercata non è disponibile oppure è presente un errore nell'URL. Controllare l'URL e riprovare. ", - "profile.viewMyRecords": "Visualizza record personali ", - "profile.loading": "Caricamento del profilo... ", - "profile.username.description": "Le informazioni del tuo profilo sono visibili solo a te. Solo il tuo nome utente è visibile agli altri su {siteName}.", - "profile.bio.empty": "Aggiungi una breve biografia ", - "profile.bio.about.me": "Su di me", - "profile.certificate.organization.label": "Da ", - "profile.certificate.completion.date.label": "Completato il {date}", - "profile.no.certificates": "Non si dispone ancora di alcun certificato. ", - "profile.certificates.my.certificates": "Certificati personali ", - "profile.certificates.view.certificate": "Visualizza il certificato", - "profile.certificates.types.verified": "Certificato Verificato", - "profile.certificates.types.professional": "Certificato professionale ", - "profile.certificates.types.unknown": "Certificato ", - "profile.country.label": "Posizione", - "profile.country.empty": "Aggiungi posizione ", - "profile.education.empty": "Aggiungi titolo di studio ", - "profile.education.education": "Educazione", - "profile.education.levels.p": "Dottorato", - "profile.education.levels.m": "Laurea magistrale o titolo accademico professionale", - "profile.education.levels.b": "Laurea di primo livello ", - "profile.education.levels.a": "Diploma Professionale", - "profile.education.levels.hs": "Scuole superiori/liceo", - "profile.education.levels.jhs": "Scuole Medie", - "profile.education.levels.el": "Scuola Primaria/Elementare", - "profile.education.levels.none": "Nessun livello educativo formale", - "profile.education.levels.o": "Altro livello educativo", - "profile.learningGoal.learningGoal": "Obiettivo di apprendimento", - "profile.learningGoal.options.start_career": "Voglio iniziare il mio percorso", - "profile.learningGoal.options.advance_career": "Voglio avanzare nel mio percorso", - "profile.learningGoal.options.learn_something_new": "Voglio imparare qualcosa di nuovo", - "profile.learningGoal.options.something_else": "Qualcos'altro", - "profile.name.full.name": "Nome e Cognome", - "profile.name.details": "Questo è il nome visualizzato nel proprio account e nei propri certificati. ", - "profile.name.empty": "Aggiungi nome ", - "profile.preferredlanguage.empty": "Aggiungi lingua", - "profile.preferredlanguage.label": "Lingua principale ", - "profile.profileavatar.upload-button": "Carica foto", - "profile.profileavatar.remove.button": "Rimuovi", - "profile.image.alt.attribute": "avatar del profilo ", - "profile.profileavatar.change-button": "Cambia", - "profile.sociallinks.add": "Aggiungi {network}", - "profile.sociallinks.social.links": "Link social ", - "profile.editbutton.edit": "Modifica", - "profile.formcontrols.who.can.see": "Chi può visualizzare: ", - "profile.formcontrols.button.cancel": "Annulla", - "profile.formcontrols.button.save": "Salva", - "profile.formcontrols.button.saving": "Salvataggio in corso", - "profile.formcontrols.button.saved": "Salvato", - "profile.visibility.who.just.me": "Solo io ", - "profile.visibility.who.everyone": "Tutti su {siteName}" -} \ 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 e8dbcdc4e..000000000 --- a/src/i18n/messages/pt.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "My Certificates", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 8053e0abe..000000000 --- a/src/i18n/messages/pt_PT.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Perfil | {siteName}", - "profile.age.details": "Para partilhar o seu perfil com outros estudantes da plataforma {siteName}, tem de confirmar que tem mais de 13 anos de idade.", - "profile.age.set.date": "Indique a sua data de nascimento", - "profile.datejoined.member.since": "Utilizador desde {year}", - "profile.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.", - "profile.viewMyRecords": "Ver os Meus Registos", - "profile.loading": "A carregar perfil...", - "profile.username.description": "As informações do seu perfil só são visíveis para si. Apenas o seu nome de utilizador é visível para outros em {siteName}.", - "profile.bio.empty": "Adicionar uma breve biografia", - "profile.bio.about.me": "Sobre Mim", - "profile.certificate.organization.label": "De", - "profile.certificate.completion.date.label": "Concluído a {date}", - "profile.no.certificates": "Ainda não tem certificados.", - "profile.certificates.my.certificates": "Os Meus Certificados", - "profile.certificates.view.certificate": "Ver Certificado", - "profile.certificates.types.verified": "Certificado Validado", - "profile.certificates.types.professional": "Certificado Profissional", - "profile.certificates.types.unknown": "Certificado", - "profile.country.label": "Localização", - "profile.country.empty": "Adicionar localização", - "profile.education.empty": "Adicionar grau de escolaridade", - "profile.education.education": "Educação", - "profile.education.levels.p": "Doutoramento", - "profile.education.levels.m": "Mestrado ou Grau Profissional", - "profile.education.levels.b": "Licenciatura", - "profile.education.levels.a": "Pós-graduação", - "profile.education.levels.hs": "Secundário", - "profile.education.levels.jhs": "2ªciclo/3ºciclo", - "profile.education.levels.el": "Primária", - "profile.education.levels.none": "Sem estudos", - "profile.education.levels.o": "Outra formação", - "profile.learningGoal.learningGoal": "Objectivo de aprendizagem", - "profile.learningGoal.options.start_career": "Quero começar a minha carreira", - "profile.learningGoal.options.advance_career": "Quero progredir na minha carreira", - "profile.learningGoal.options.learn_something_new": "Quero aprender algo novo", - "profile.learningGoal.options.something_else": "Outra coisa", - "profile.name.full.name": "Nome Completo", - "profile.name.details": "Este é o nome que aparece na sua conta e nos seus certificados.", - "profile.name.empty": "Adicionar nome", - "profile.preferredlanguage.empty": "Adicionar idioma", - "profile.preferredlanguage.label": "Língua Materna", - "profile.profileavatar.upload-button": "Carregar Fotografia", - "profile.profileavatar.remove.button": "Eliminar", - "profile.image.alt.attribute": "Icon de perfil", - "profile.profileavatar.change-button": "Alterar", - "profile.sociallinks.add": "Adicionar {network}", - "profile.sociallinks.social.links": "Links de Redes Sociais", - "profile.editbutton.edit": "Editar", - "profile.formcontrols.who.can.see": "Quem pode ver isto:", - "profile.formcontrols.button.cancel": "Cancelar", - "profile.formcontrols.button.save": "Guardar", - "profile.formcontrols.button.saving": "A Guardar", - "profile.formcontrols.button.saved": "Guardado", - "profile.visibility.who.just.me": "Apenas eu", - "profile.visibility.who.everyone": "Toda a gente em {siteName}" -} \ 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 e8dbcdc4e..000000000 --- a/src/i18n/messages/ru.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "My Certificates", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 e4f624b80..000000000 --- a/src/i18n/messages/uk.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "Profile | {siteName}", - "profile.age.details": "To share your profile with other {siteName} learners, you must confirm that you are over the age of 13.", - "profile.age.set.date": "Set your date of birth", - "profile.datejoined.member.since": "Member since {year}", - "profile.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.", - "profile.viewMyRecords": "View My Records", - "profile.loading": "Profile loading...", - "profile.username.description": "Your profile information is only visible to you. Only your username is visible to others on {siteName}.", - "profile.bio.empty": "Add a short bio", - "profile.bio.about.me": "About Me", - "profile.certificate.organization.label": "From", - "profile.certificate.completion.date.label": "Completed on {date}", - "profile.no.certificates": "You don't have any certificates yet.", - "profile.certificates.my.certificates": "Мої сертифікати", - "profile.certificates.view.certificate": "View Certificate", - "profile.certificates.types.verified": "Verified Certificate", - "profile.certificates.types.professional": "Professional Certificate", - "profile.certificates.types.unknown": "Certificate", - "profile.country.label": "Location", - "profile.country.empty": "Add location", - "profile.education.empty": "Add education", - "profile.education.education": "Education", - "profile.education.levels.p": "Doctorate", - "profile.education.levels.m": "Master's or professional degree", - "profile.education.levels.b": "Bachelor's Degree", - "profile.education.levels.a": "Associate's degree", - "profile.education.levels.hs": "Secondary/high school", - "profile.education.levels.jhs": "Junior secondary/junior high/middle school", - "profile.education.levels.el": "Elementary/primary school", - "profile.education.levels.none": "No formal education", - "profile.education.levels.o": "Other education", - "profile.learningGoal.learningGoal": "Learning Goal", - "profile.learningGoal.options.start_career": "I want to start my career", - "profile.learningGoal.options.advance_career": "I want to advance my career", - "profile.learningGoal.options.learn_something_new": "I want to learn something new", - "profile.learningGoal.options.something_else": "Something else", - "profile.name.full.name": "Full Name", - "profile.name.details": "This is the name that appears in your account and on your certificates.", - "profile.name.empty": "Add name", - "profile.preferredlanguage.empty": "Add language", - "profile.preferredlanguage.label": "Primary Language Spoken", - "profile.profileavatar.upload-button": "Upload Photo", - "profile.profileavatar.remove.button": "Remove", - "profile.image.alt.attribute": "profile avatar", - "profile.profileavatar.change-button": "Change", - "profile.sociallinks.add": "Add {network}", - "profile.sociallinks.social.links": "Social Links", - "profile.editbutton.edit": "Edit", - "profile.formcontrols.who.can.see": "Who can see this:", - "profile.formcontrols.button.cancel": "Cancel", - "profile.formcontrols.button.save": "Save", - "profile.formcontrols.button.saving": "Saving", - "profile.formcontrols.button.saved": "Saved", - "profile.visibility.who.just.me": "Just me", - "profile.visibility.who.everyone": "Everyone on {siteName}" -} \ 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 98b4ecb92..000000000 --- a/src/i18n/messages/zh_CN.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "profile.page.title": "简介 | {siteName}", - "profile.age.details": "要与其他 {siteName} 学员分享您的个人资料,您必须确认您已年满 13 岁。", - "profile.age.set.date": "设置您的出生日期", - "profile.datejoined.member.since": "会员自{year}", - "profile.notfound.message": "您访问的地址不存在或有误。请检查URL后重新尝试访问。", - "profile.viewMyRecords": "查看我的记录", - "profile.loading": "简介文件加载中......", - "profile.username.description": "您的个人资料信息仅对您可见。 {siteName} 上的其他人只能看到您的用户名。", - "profile.bio.empty": "添加个人简历", - "profile.bio.about.me": "个人资料", - "profile.certificate.organization.label": "从", - "profile.certificate.completion.date.label": "在{date}前完成", - "profile.no.certificates": "你还没有任何证书。", - "profile.certificates.my.certificates": "我的证书", - "profile.certificates.view.certificate": "查看证书", - "profile.certificates.types.verified": "认证证书", - "profile.certificates.types.professional": "专业证书", - "profile.certificates.types.unknown": "证书", - "profile.country.label": "位置", - "profile.country.empty": "添加地址", - "profile.education.empty": "添加教育程度", - "profile.education.education": "教育程度", - "profile.education.levels.p": "博士", - "profile.education.levels.m": "硕士", - "profile.education.levels.b": "学士学位", - "profile.education.levels.a": "副学士学位", - "profile.education.levels.hs": "高中", - "profile.education.levels.jhs": "初中", - "profile.education.levels.el": "小学", - "profile.education.levels.none": "未受正规教育", - "profile.education.levels.o": "其他教育程度", - "profile.learningGoal.learningGoal": "学习目标", - "profile.learningGoal.options.start_career": "我想开始我的职业生涯", - "profile.learningGoal.options.advance_career": "我想提升我的事业", - "profile.learningGoal.options.learn_something_new": "我想学习新东西", - "profile.learningGoal.options.something_else": "别的东西", - "profile.name.full.name": "全名", - "profile.name.details": "用于显示在账户和证书上的姓名。", - "profile.name.empty": "添加名字", - "profile.preferredlanguage.empty": "添加语言", - "profile.preferredlanguage.label": "主要使用语言", - "profile.profileavatar.upload-button": "上传照片", - "profile.profileavatar.remove.button": "移除", - "profile.image.alt.attribute": "个人头像", - "profile.profileavatar.change-button": "更改", - "profile.sociallinks.add": "添加{network}", - "profile.sociallinks.social.links": "社交链接", - "profile.editbutton.edit": "编辑", - "profile.formcontrols.who.can.see": "对谁可见:", - "profile.formcontrols.button.cancel": "取消", - "profile.formcontrols.button.save": "保存", - "profile.formcontrols.button.saving": "正在保存", - "profile.formcontrols.button.saved": "已保存", - "profile.visibility.who.just.me": "仅自己", - "profile.visibility.who.everyone": "{siteName} 上的每个人" -} \ No newline at end of file