From 8c6832cc27f300cbc0cc7a16895063ffd3352688 Mon Sep 17 00:00:00 2001 From: Samir Sabri Date: Wed, 20 Mar 2024 16:31:22 +0300 Subject: [PATCH] feat!: remove Transifex calls for OEP-58 (#200) --- .gitignore | 2 + .tx/config | 8 ---- Makefile | 21 --------- src/i18n/index.js | 52 +--------------------- src/i18n/messages/ar.json | 84 ----------------------------------- src/i18n/messages/ca.json | 1 - src/i18n/messages/de_DE.json | 84 ----------------------------------- src/i18n/messages/es_419.json | 84 ----------------------------------- src/i18n/messages/fr.json | 84 ----------------------------------- src/i18n/messages/fr_CA.json | 84 ----------------------------------- src/i18n/messages/he.json | 1 - src/i18n/messages/hi.json | 84 ----------------------------------- src/i18n/messages/id.json | 1 - src/i18n/messages/it_IT.json | 84 ----------------------------------- src/i18n/messages/ko_kr.json | 1 - src/i18n/messages/pl.json | 1 - src/i18n/messages/pt_PT.json | 84 ----------------------------------- src/i18n/messages/pt_br.json | 1 - src/i18n/messages/ru.json | 84 ----------------------------------- src/i18n/messages/th.json | 1 - src/i18n/messages/uk.json | 84 ----------------------------------- src/i18n/messages/zh_CN.json | 84 ----------------------------------- 22 files changed, 3 insertions(+), 1011 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_DE.json delete mode 100644 src/i18n/messages/es_419.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_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_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 8060ea8..03cb306 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ 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 26c9047..0000000 --- a/.tx/config +++ /dev/null @@ -1,8 +0,0 @@ -[main] -host = https://www.transifex.com - -[o:open-edx:p:edx-platform:r:frontend-app-learner-record] -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 805a833..cb9413f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,3 @@ -export TRANSIFEX_RESOURCE = frontend-app-learner-record -transifex_resource = frontend-app-learner-record -transifex_langs = "ar,fr,es_419,zh_CN,fr_CA,it_IT,pt_PT,de_DE,uk,ru,hi" - intl_imports = ./node_modules/.bin/intl-imports.js transifex_utils = ./node_modules/.bin/transifex-utils.js i18n = ./src/i18n @@ -45,22 +41,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 @@ -74,7 +54,6 @@ pull_translations: translations/frontend-app-learner-record/src/i18n/messages:frontend-app-learner-record $(intl_imports) frontend-component-header frontend-component-footer frontend-platform paragon frontend-app-learner-record -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 f0a2ffa..d6d1738 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -1,51 +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 caMessages from './messages/ca.json'; -import dedeMessages from './messages/de_DE.json'; -import frcaMessages from './messages/fr_CA.json'; -import hiMessages from './messages/hi.json'; -import ititMessages from './messages/it_IT.json'; -import ptptMessages from './messages/pt_PT.json'; -// no need to import en messages-- they are in the defaultMessage field -import es419Messages from './messages/es_419.json'; -import frMessages from './messages/fr.json'; -import zhcnMessages from './messages/zh_CN.json'; -import heMessages from './messages/he.json'; -import idMessages from './messages/id.json'; -import kokrMessages from './messages/ko_kr.json'; -import plMessages from './messages/pl.json'; -import ptbrMessages from './messages/pt_br.json'; -import ruMessages from './messages/ru.json'; -import thMessages from './messages/th.json'; -import ukMessages from './messages/uk.json'; - -const appMessages = { - ar: arMessages, - 'es-419': es419Messages, - fr: frMessages, - 'zh-cn': zhcnMessages, - ca: caMessages, - he: heMessages, - id: idMessages, - 'ko-kr': kokrMessages, - pl: plMessages, - 'pt-br': ptbrMessages, - ru: ruMessages, - th: thMessages, - uk: ukMessages, - 'de-de': dedeMessages, - 'fr-ca': frcaMessages, - hi: hiMessages, - 'it-it': ititMessages, - 'pt-pt': ptptMessages, -}; - -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 5eaa4d3..0000000 --- a/src/i18n/messages/ar.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "سجلاتي التعلّمية | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "العودة إلى سجلاتي", - "records.list.error": "حدث خطأ ما أثناء محاولة استخراج سجلاتك عن البرنامج رجاءً أعد المحاولة لاحقًا.", - "page.loading.message": "Loading...", - "download.button.default": "تحميل سجل البرنامج", - "download.button.pending": "تحميل سجل البرنامج جارٍ", - "download.button.complete": "تم التحميل", - "send.program.record": "إرسال سجل البرنامج", - "copy.link.tooltip.message": "تم نسخ الرابط!", - "copy.program.record.link": "نسخ رابط سجل البرنامج", - "create.program.record.link": "إنشاء رابط سجل البرنامج", - "send.program.record.popover.heading": "إرسال سجل برنامجك جارٍ", - "send.program.record.popover.content": "تعمّق أكثر في تعلمك. أرسل سجلك إلى الجامعات التي تعتمد هذا البرنامج. يمكنك إرسال سجلك إلى جامعات متعددة في وقت واحد. لا يمكن التراجع عن إرسال السجلات بعد ان يتم ذلك.", - "share.program.record.popover.heading": "مشاركة سجل برنامجك جارية", - "share.program.record.popover.content": "أظهر تقدمك! شارك هذا السجل علنًا مع الجامعات وأرباب العمل. أنشئ 'رابطا عامًا لسجل البرنامج' حتى تتيح للناس إمكانية الوصول إلى سجلك.", - "download.program.record": "تنزيل سجل البرنامج", - "successful.record.download.toast.message": "نجح تنزيل سجل البرنامج", - "program.record.type": "سجل برنامج {program_type}", - "program.record.name": "سجل {program_name}", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "آخر تحديث {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "ألديك أسئلة عن سجلات المتعلمين؟", - "help.section.content.with.link": "لمعرفة المزيد حول السجلات يمكنك {link}", - "earned.status.badge": "تم التحصيل", - "not.earned.status.badge": "لم يتم التحصيل", - "partially.completed.status.badge": "مكتمل جزئيًا", - "send.records.try.again.button": "تكرار المحاولة", - "send.failure.alert.heading": "لم نتمكن من إرسال سجل برنامجك", - "send.failure.alert.message": "يمكنك محاولة إرسال سجلك إلى المسار {pathway_name} كجددًا. إن استمرت هذه المشكلة ف{link}", - "send.success.alert.heading": "لقد نجحت في إرسال سجل البرنامج الخاص بك", - "send.success.alert.message": "لقد تلقى {pathway_name} سجلك. تقرب من المدرسة لمعرفة المزيد حول كيفية طلب التسجيل فيها.", - "send.record.modal.header": "إرسال سجل البرنامج إلى شريك {platform} في الاعتماد", - "send.record.modal.description": "يمكنك مشاركة سجل البرنامج مباشرةً مع شركاء {platform} الذين يقدّمون اعتمادًا لبرنامج {programType}. لا يمكنك التراجع عن إرسال سجلك عند تمام ذلك.", - "send.record.modal.form.header": "حدد المنظمات التي ترغب في مراسلتها بهذا السجل:", - "send.record.modal.cancel.button": "إلغاء", - "send.record.modal.send.button": "إرسال سجل البرنامج", - "records.profile.link": "العودة إلى ملفي الشخصي", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "سجلات البرامج", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "عرض سجل البرنامج", - "records.help.header": "ألديك أسئلة عن سجلات المتعلمين؟", - "records.help.description": "To learn more about records you can", - "records.help.link": "قراءة المزيد في قسم المساعدة المتعلق بالسجلات.", - "records.header": "سجلاتي التعلمية" -} \ 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 9e26dfe..0000000 --- a/src/i18n/messages/ca.json +++ /dev/null @@ -1 +0,0 @@ -{} \ 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 d4d045a..0000000 --- a/src/i18n/messages/de_DE.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 c14ab5e..0000000 --- a/src/i18n/messages/es_419.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "Mis registros de alumno | {siteName}", - "learnerRecords": "Mis Registros de Estudiante", - "verifiableCredentials": "Credenciales verificables", - "certificate.card.name": "Certificado del programa", - "certificate.card.organization.label": "Desde", - "certificate.card.noOrg.text": "Sin organización", - "certificate.card.date.label": "Otorgado el {date}", - "certificate.card.action.label": "Crear", - "certificate.card.multiAction.label": "Crear con", - "credentials.modal.title": "Credencial verificable", - "credentials.modal.close.button": "Cerrar ventana modal", - "credentials.modal.close.mobile.button": "Cancelar", - "credentials.modal.mobile.title": "Para descargar una credencial verificable a su aplicación de billetera móvil, siga las instrucciones a continuación.", - "credentials.modal.instruction.appStore.button": "Descargar la aplicación móvil desde la App Store de Apple", - "credentials.modal.instruction.googlePlay.button": "Descargar la aplicación móvil desde Google Play", - "credentials.modal.instruction.title": "Siga las instrucciones a continuación para obtener una credencial verificable:", - "credentials.modal.instruction.step1": "Descargue e instale la aplicación de billetera en su teléfono inteligente.", - "credentials.modal.instruction.step2": "Registrarse en la aplicación para su identificación.", - "credentials.modal.instruction.step3": "Abrir la aplicación y seleccionar la opción \"Escanear código QR\". Escanear el código proporcionado.", - "credentials.modal.instruction.step4": "Una vez que lo haya hecho con éxito, cierre la ventana modal.", - "credentials.modal.deeplink": "Descargar Credencial", - "credentials.modal.loading": "Cargando...", - "credentials.modal.qrCode.label": "Código QR para obtener la credencial comprobable", - "credentials.modal.copyLink.label": "Copiar link", - "credentials.modal.error": "Se produjo un error al intentar recuperar el certificado de su programa. Por favor, intentarlo de nuevo más tarde.", - "credentials.profile.link": "Volver a Mi Perfil", - "credentials.list.empty": "No hay certificado disponible. Terminar el primer programa para obtener un certificado.", - "credentials.list.error": "Se produjo un error al intentar recuperar los certificados de su programa. Por favor, intentar de nuevo más tarde.", - "credentials.header": "Credenciales verificables", - "credentials.description": "Un certificado para un programa aparecerá en la lista una vez que haya obtenido todos los certificados de curso en un programa.", - "credentials.help.header": "¿Preguntas sobre credenciales verificables?", - "credentials.help.description": "Para obtener más información sobre las credenciales verificables, puede", - "credentials.help.link": "leer en nuestra página de soporte de credenciales verificables.", - "credentials.error.fetch.certificates": "No se pudieron obtener los certificados del programa", - "credentials.error.fetch.storages": "No se pudieron obtener los almacenamientos disponibles", - "credentials.error.issuance.init": "No se pudo iniciar la línea de emisión", - "link.back.to.records": "Volver a mis registros", - "records.list.error": "Se produjo un error al intentar recuperar los registros de su programa. Por favor, inténtelo de nuevo más tarde.", - "page.loading.message": "Cargando...", - "download.button.default": "Descargar registro del programa", - "download.button.pending": "Descargando el registro del programa", - "download.button.complete": "Descarga completa", - "send.program.record": "Enviar registro de programa", - "copy.link.tooltip.message": "¡Enlace copiado!", - "copy.program.record.link": "Copiar enlace de registro de programa", - "create.program.record.link": "Crear enlace de registro de programa", - "send.program.record.popover.heading": "Envío de su registro de programa", - "send.program.record.popover.content": "Persigue un aprendizaje más profundo. Envíe su registro a universidades que acepten este programa para crédito. Puede enviar su registro a varias universidades a la vez. Una vez enviados, los registros no se pueden cancelar.", - "share.program.record.popover.heading": "Compartir su registro de programa", - "share.program.record.popover.content": "¡Muestra el progreso! Comparta este registro públicamente con universidades y empleadores. Cree un \"enlace de registro de programa público\"; para que las personas accedan a su registro.", - "download.program.record": "Descargar registro del programa", - "successful.record.download.toast.message": "Registro de programa descargado con éxito", - "program.record.type": "{program_type} Registro del programa", - "program.record.name": "{program_name} Registro", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Última Actualización {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "¿Preguntas sobre los Registros de Estudiante?", - "help.section.content.with.link": "Para obtener más información sobre los registros, puede {link}", - "earned.status.badge": "Realizado", - "not.earned.status.badge": "No aprobado", - "partially.completed.status.badge": "Parcialmente Completado", - "send.records.try.again.button": "Intentar otra vez", - "send.failure.alert.heading": "No pudimos enviar el registro de su programa", - "send.failure.alert.message": "Puede intentar enviar su registro a la ruta {pathway_name} nuevamente. Si este problema persiste {link}", - "send.success.alert.heading": "Ha enviado con éxito su registro de programa", - "send.success.alert.message": "{pathway_name} ha recibido su registro. Consulte con la escuela para obtener más información sobre su proceso de solicitud.", - "send.record.modal.header": "Enviar registro de programa a {platform} socio de crédito", - "send.record.modal.description": "Puede compartir directamente el registro de su programa con {platform} socios que aceptan crédito para este programa {programType}. Una vez que envíe su registro, no podrá deshacer el envío.", - "send.record.modal.form.header": "Seleccione la(s) organización(es) a las que desea enviar este registro:", - "send.record.modal.cancel.button": "Cancelar", - "send.record.modal.send.button": "Enviar registro de programa", - "records.profile.link": "Volver a Mi Perfil", - "records.list.empty": "No hay registros todavía. Los registros del programa se crean una vez que haya obtenido al menos un certificado de curso en un programa.", - "records.subheader": "Registros del Programa", - "records.description": "Se crea un registro de programa una vez que hayas obtenido al menos un certificado en un curso de un programa.", - "records.record.view.link": "Ver Registro del Programa", - "records.help.header": "¿Preguntas sobre los Registros de Estudiante?", - "records.help.description": "Para obtener más información sobre los registros, puede", - "records.help.link": "lea más en nuestra área de ayuda de registros.", - "records.header": "Mis Registros de Estudiante" -} \ 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 d4d045a..0000000 --- a/src/i18n/messages/fr.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 85d05a4..0000000 --- a/src/i18n/messages/fr_CA.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "Mes dossiers d'apprenant | {siteName}", - "learnerRecords": "Mes dossiers d'apprenant", - "verifiableCredentials": "Informations d'identification vérifiables", - "certificate.card.name": "Attestation de programme", - "certificate.card.organization.label": "De", - "certificate.card.noOrg.text": "Sans organisation", - "certificate.card.date.label": "Attribué le {date}", - "certificate.card.action.label": "Créer", - "certificate.card.multiAction.label": "Créer avec", - "credentials.modal.title": "Informations d'identification vérifiables", - "credentials.modal.close.button": "Fermer la fenêtre modale", - "credentials.modal.close.mobile.button": "Annuler", - "credentials.modal.mobile.title": "Pour télécharger des informations d'identification sur votre application de portefeuille mobile, veuillez suivre les instructions ci-dessous.", - "credentials.modal.instruction.appStore.button": "Téléchargez l'application mobile depuis l'App Store d'Apple", - "credentials.modal.instruction.googlePlay.button": "Téléchargez l'application mobile depuis Google Play", - "credentials.modal.instruction.title": "Suivez les instructions ci-dessous pour obtenir des informations d'identification vérifiables :", - "credentials.modal.instruction.step1": "Téléchargez et installez l'application portefeuille sur votre téléphone intelligent.", - "credentials.modal.instruction.step2": "Inscrivez-vous à l'application pour vous identifier.", - "credentials.modal.instruction.step3": "Ouvrez l'application portefeuille et sélectionnez l'option \"Balayer le code QR\". Balayez ensuite l'image du code QR.", - "credentials.modal.instruction.step4": "Une fois que vous avez réussi, fermez la fenêtre modale.", - "credentials.modal.deeplink": "Télécharger les informations d'identification", - "credentials.modal.loading": "Chargement...", - "credentials.modal.qrCode.label": "Code QR pour obtenir l'information d'identification vérifiable", - "credentials.modal.copyLink.label": "Copier le lien", - "credentials.modal.error": "Une erreur s'est produite lors de la tentative de récupération de votre attestation de programme. Veuillez réessayer plus tard.", - "credentials.profile.link": "Retour à mon profil", - "credentials.list.empty": "Aucune attestation disponible. Terminez votre premier programme pour obtenir une attestation.", - "credentials.list.error": "Une erreur s'est produite lors de la tentative de récupération des attestations de votre programme. Veuillez réessayer plus tard.", - "credentials.header": "Informations d'identification vérifiables", - "credentials.description": "Un attestation pour un programme apparaîtra dans la liste une fois que vous aurez obtenu toutes les attestations de cours d'un programme.", - "credentials.help.header": "Des questions sur les informations d'identification vérifiables?", - "credentials.help.description": "Pour en savoir plus sur les informations d'identification vérifiables, vous pouvez", - "credentials.help.link": "lire dans notre page d'assistance sur les informations d'identification vérifiables.", - "credentials.error.fetch.certificates": "Impossible de récupérer les attestations du programme", - "credentials.error.fetch.storages": "Impossible de récupérer les espaces de stockage disponibles", - "credentials.error.issuance.init": "Impossible de lancer la ligne d'émission", - "link.back.to.records": "Retour à mes dossiers", - "records.list.error": "Une erreur s'est produite lors de la tentative de récupération des dossiers de votre programme. Veuillez réessayer plus tard.", - "page.loading.message": "Chargement...", - "download.button.default": "Télécharger le dossier du programme", - "download.button.pending": "Téléchargement du dossier du programme", - "download.button.complete": "Téléchargement complété", - "send.program.record": "Envoyer le dossier du programme", - "copy.link.tooltip.message": "Lien copié!", - "copy.program.record.link": "Copier le lien du dossier du programme", - "create.program.record.link": "Créer un lien de dossier de programme", - "send.program.record.popover.heading": "Envoi de votre dossier de programme", - "send.program.record.popover.content": "Poursuivre un apprentissage plus approfondi. Envoyez votre dossier aux universités qui acceptent ce programme pour crédit. Vous pouvez envoyer votre dossier à plusieurs universités à la fois. Une fois envoyés, les dossiers ne peuvent pas être renvoyés.", - "share.program.record.popover.heading": "Partager votre dossier de programme", - "share.program.record.popover.content": "Présentez votre progression! Partagez ce dossier publiquement avec les universités et les employeurs. Créez un 'lien dossier de programme public' pour permettre aux personnes d'accéder à votre dossier.", - "download.program.record": "Télécharger le dossier du programme", - "successful.record.download.toast.message": "Le dossier du programme a été téléchargé avec succès", - "program.record.type": "{program_type} Dossier du programme", - "program.record.name": "Dossier {program_name}", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Dernière mise à jour {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Des questions sur les dossiers d'apprenants?", - "help.section.content.with.link": "Pour en savoir plus sur les dossiers, vous pouvez {link}", - "earned.status.badge": "Obtenu", - "not.earned.status.badge": "Non obtenu", - "partially.completed.status.badge": "Partiellement achevé", - "send.records.try.again.button": "Essayer de nouveau", - "send.failure.alert.heading": "Nous n'avons pas pu envoyer votre dossier de programme", - "send.failure.alert.message": "Vous pouvez réessayer d'envoyer votre dossier au chemin {pathway_name}. Si ce problème persiste {link}", - "send.success.alert.heading": "Vous avez envoyé avec succès votre dossier de programme", - "send.success.alert.message": "{pathway_name} a reçu votre dossier. Vérifiez auprès de l'école pour en savoir plus sur leur processus de candidature.", - "send.record.modal.header": "Envoyer le dossier du programme au partenaire de crédit {platform}", - "send.record.modal.description": "Vous pouvez partager directement votre dossier de programme avec des partenaires {platform} qui acceptent le crédit pour ce programme {programType}. Une fois que vous avez envoyé votre dossier, vous ne pouvez pas l'annuler.", - "send.record.modal.form.header": "Sélectionnez l'organisation ou les organisations auxquelles vous souhaitez envoyer ce dossier :", - "send.record.modal.cancel.button": "Annuler", - "send.record.modal.send.button": "Envoyer le dossier du programme", - "records.profile.link": "Retour à mon profil", - "records.list.empty": "Aucun dossier pour le moment. Les dossiers de programme sont créés une fois que vous avez obtenu au moins une attestation de cours dans un programme.", - "records.subheader": "Dossiers du programme", - "records.description": "Un dossier de programme est créé une fois que vous avez obtenu au moins une attestation de cours dans un programme.", - "records.record.view.link": "Voir le dossier du programme", - "records.help.header": "Des questions sur les dossiers d'apprenants?", - "records.help.description": "Pour en savoir plus sur les dossiers, vous pouvez", - "records.help.link": "en savoir plus dans notre zone d'aide sur les dossiers.", - "records.header": "Mes dossiers d'apprenant" -} \ 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 9e26dfe..0000000 --- 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 d4d045a..0000000 --- a/src/i18n/messages/hi.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 9e26dfe..0000000 --- a/src/i18n/messages/id.json +++ /dev/null @@ -1 +0,0 @@ -{} \ 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 d4d045a..0000000 --- a/src/i18n/messages/it_IT.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 9e26dfe..0000000 --- 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 9e26dfe..0000000 --- a/src/i18n/messages/pl.json +++ /dev/null @@ -1 +0,0 @@ -{} \ 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 cb23882..0000000 --- a/src/i18n/messages/pt_PT.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "Meus registros de estudante | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Voltar aos Meus Registos", - "records.list.error": "Ocorreu um erro ao tentar recuperar os registros do programa. Por favor, tente novamente mais tarde.", - "page.loading.message": "Loading...", - "download.button.default": "Transferir registo do programa", - "download.button.pending": "Transferindo registo do programa", - "download.button.complete": "Transferência completa", - "send.program.record": "Enviar registo do programa", - "copy.link.tooltip.message": "Link copiado!", - "copy.program.record.link": "Copiar link de gravação do programa", - "create.program.record.link": "Criar link de gravação de programa", - "send.program.record.popover.heading": "Envio do seu registo do programa", - "send.program.record.popover.content": "Prosseguir uma aprendizagem mais profunda. Envie o seu registo para as universidades que aceitem este programa para obter equivalência. Pode enviar o seu registo para várias universidades ao mesmo tempo. Uma vez enviados, os registos não podem ser não enviados.", - "share.program.record.popover.heading": "Partilhar o seu registo de programa", - "share.program.record.popover.content": "Mostre o seu progresso! Partilhe este registo publicamente com universidades e empregadores. Crie uma 'ligação pública de registo do programa' para dar às pessoas acesso ao seu registo.", - "download.program.record": "Transferir registo do programa", - "successful.record.download.toast.message": "Registo do programa descarregado com sucesso", - "program.record.type": "{program_type} Registo do programa", - "program.record.name": "{program_name} Registo", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Última Atualização em {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Tem questões relativas aos 'Registos de Estudante'?", - "help.section.content.with.link": "Para saber mais sobre os registos, pode {link}", - "earned.status.badge": "Ganhou", - "not.earned.status.badge": "Não Concedido", - "partially.completed.status.badge": "Concluído Parcialmente", - "send.records.try.again.button": "Tente Novamente", - "send.failure.alert.heading": "Não nos foi possível enviar o seu registo do programa", - "send.failure.alert.message": "Pode tentar enviar novamente o seu registo para o caminho {pathway_name}. Se esta questão persistir {link}.", - "send.success.alert.heading": "Enviou com sucesso o seu registo do programa", - "send.success.alert.message": "{pathway_name} recebeu o seu registo. Verifique com a escola para saber mais sobre o seu processo de candidatura.", - "send.record.modal.header": "Enviar registo do programa para o parceiro de equivalência da {platform}", - "send.record.modal.description": "Pode partilhar directamente o seu registo de programa com parceiros {plataform} que aceitem equivalência para este programa {programType}. Uma vez enviado o seu registo, não pode cancelar o envio.", - "send.record.modal.form.header": "Seleccione a(s) organização(ões) a que deseja enviar este registo:", - "send.record.modal.cancel.button": "Cancelar", - "send.record.modal.send.button": "Enviar registo do programa", - "records.profile.link": "Voltar ao Meu Perfil", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Registos de Programa", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "Ver Registo do Programa", - "records.help.header": "Tem questões relativas aos 'Registos de Estudante'?", - "records.help.description": "To learn more about records you can", - "records.help.link": "leia mais na nossa área de ajuda dos registos.", - "records.header": "Meus Registos de Estudante" -} \ 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 9e26dfe..0000000 --- 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 d4d045a..0000000 --- a/src/i18n/messages/ru.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 9e26dfe..0000000 --- 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 d4d045a..0000000 --- a/src/i18n/messages/uk.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ 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 d4d045a..0000000 --- a/src/i18n/messages/zh_CN.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "PageTitle": "My Learner Records | {siteName}", - "learnerRecords": "My Learner Records", - "verifiableCredentials": "Verifiable Credentials", - "certificate.card.name": "Program Certificate", - "certificate.card.organization.label": "From", - "certificate.card.noOrg.text": "No organization", - "certificate.card.date.label": "Awarded on {date}", - "certificate.card.action.label": "Create", - "certificate.card.multiAction.label": "Create with", - "credentials.modal.title": "Verifiable credential", - "credentials.modal.close.button": "Close modal window", - "credentials.modal.close.mobile.button": "Cancel", - "credentials.modal.mobile.title": "To download a verifiable credential to your mobile wallet application, please follow the instructions below.", - "credentials.modal.instruction.appStore.button": "Download the mobile app from the Apple App Store", - "credentials.modal.instruction.googlePlay.button": "Download the mobile app from the Google Play", - "credentials.modal.instruction.title": "Follow the instructions below to get a verifiable credential:", - "credentials.modal.instruction.step1": "Download and install the wallet app on your smartphone.", - "credentials.modal.instruction.step2": "Sign up for the app to identify yourself.", - "credentials.modal.instruction.step3": "Open the wallet application and select the option \"Scan QR code\". Then scan the image of QR code.", - "credentials.modal.instruction.step4": "Once you have successfully done - close modal window.", - "credentials.modal.deeplink": "Download Credential", - "credentials.modal.loading": "Loading...", - "credentials.modal.qrCode.label": "QR code to obtain the verifiable credential", - "credentials.modal.copyLink.label": "Copy link", - "credentials.modal.error": "An error occurred attempting to retrieve your program certificate. Please try again later.", - "credentials.profile.link": "Back to My Profile", - "credentials.list.empty": "No certificate available. Finish your first program to get a certificate.", - "credentials.list.error": "An error occurred attempting to retrieve your program certificates. Please try again later.", - "credentials.header": "Verifiable Credentials", - "credentials.description": "A certificate for a program will appear in the list once you have earned all course certificates in a program.", - "credentials.help.header": "Questions about Verifiable Credentials?", - "credentials.help.description": "To learn more about Verifiable Credentials you can", - "credentials.help.link": "read in our Verifiable Credentials Support Page.", - "credentials.error.fetch.certificates": "Could not fetch program certificates", - "credentials.error.fetch.storages": "Could not fetch available storages", - "credentials.error.issuance.init": "Could not initiate issuance line", - "link.back.to.records": "Back to My Records", - "records.list.error": "An error occurred attempting to retrieve your program records. Please try again later.", - "page.loading.message": "Loading...", - "download.button.default": "Download program record", - "download.button.pending": "Downloading program record", - "download.button.complete": "Download complete", - "send.program.record": "Send program record", - "copy.link.tooltip.message": "Link copied!", - "copy.program.record.link": "Copy program record link", - "create.program.record.link": "Create program record link", - "send.program.record.popover.heading": "Sending your Program Record", - "send.program.record.popover.content": "Pursue deeper learning. Send your record to universities that accept this program for credit. You can send your record to multiple universities at once. Once sent, the records cannot be unsent.", - "share.program.record.popover.heading": "Sharing your Program Record", - "share.program.record.popover.content": "Showcase your progress! Share this record publicly with universities and employers. Create a 'public program record link' to give people access to your record.", - "download.program.record": "Download program record", - "successful.record.download.toast.message": "Program record sucessfullly downloaded", - "program.record.type": "{program_type} Program Record", - "program.record.name": "{program_name} Record", - "platform.and.school.name": "{platform} | {school}", - "last.updated.date": "Last Updated {date}", - "learner.username": "{username}", - "learner.email": "{email}", - "help.section.header": "Questions about Learner Records?", - "help.section.content.with.link": "To learn more about records you can {link}", - "earned.status.badge": "Earned", - "not.earned.status.badge": "Not Earned", - "partially.completed.status.badge": "Partially Completed", - "send.records.try.again.button": "Try Again", - "send.failure.alert.heading": "We were unable to send your program record", - "send.failure.alert.message": "You can try to send your record to the {pathway_name} pathway again. If this issue persists {link}", - "send.success.alert.heading": "You have successfully sent your program record", - "send.success.alert.message": "{pathway_name} has received your record. Check with the school to learn more about their application process.", - "send.record.modal.header": "Send Program Record to {platform} Credit Partner", - "send.record.modal.description": "You can directly share your program record with {platform} partners that accept credit for this {programType} Program. Once you send your record you cannot unsend it.", - "send.record.modal.form.header": "Select the organization(s) you wish to send this record to:", - "send.record.modal.cancel.button": "Cancel", - "send.record.modal.send.button": "Send program record", - "records.profile.link": "Back to My Profile", - "records.list.empty": "No records yet. Program records are created once you have earned at least one course certificate in a program.", - "records.subheader": "Program Records", - "records.description": "A program record is created once you have earned at least one course certificate in a program.", - "records.record.view.link": "View Program Record", - "records.help.header": "Questions about Learner Records?", - "records.help.description": "To learn more about records you can", - "records.help.link": "read more in our records help area.", - "records.header": "My Learner Records" -} \ No newline at end of file