From 9ab92165c88a7c4a73027839b4d7c29011909f95 Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Wed, 25 May 2022 14:24:54 -0300 Subject: [PATCH 1/9] feat: translations --- lms/translations/es.csv | 49 +++++++++++++++++++++++++++++++++++++ lms/www/batch/learn.html | 12 ++++----- lms/www/courses/course.html | 4 +-- lms/www/courses/index.py | 3 ++- 4 files changed, 59 insertions(+), 9 deletions(-) create mode 100644 lms/translations/es.csv diff --git a/lms/translations/es.csv b/lms/translations/es.csv new file mode 100644 index 00000000..cc69de0d --- /dev/null +++ b/lms/translations/es.csv @@ -0,0 +1,49 @@ +Chapter,Capitulo, +Lesson,Lección, +Quiz,Cuestionario, +Interest,Interés, +Course,Curso, +All Live Courses,Todos los Cursos Disponibles, +All Live Courses ({0}),Todos los Cursos Disponibles ({0}), +All Courses,Todos los Cursos, +Instructors,Instructores, +Completed,Completado, +Evaluation On: ,Evaluación en: , +Under Review,Bajo Revisión, +Edit,Editar, +"You have exceeded the maximum number of attempts allowed to appear for evaluations of this course.","Ha superado el número máximo de intentos permitidos para presentarse a las evaluaciones de este curso.", +"Your course is currently under review. Once the review is complete, the System Admins will publish it on the website.","Su curso está actualmente en revisión. Una vez completada la revisión, los administradores del sistema lo publicarán en el sitio web.", +Enrolled,Inscriptos, +Lessons,Lecciones, +Get Certified,Obtenga la certificación, +Other Courses,Otros Cursos, +Reviews,Reseñas, +Write a review,Escribe una reseña, +Review the course,Reseña el curso, +Help us improve our course material.,Ayúdenos a mejorar el material del curso., +Add Chapter,Añadir Capítulo, +Add Lesson,Añadir Lección, +Start Learning,Comenzar a Aprender, +Checkout Course,Ver Curso, +Have a doubt?,¿Tiene una duda?, +"Post it here, our mentors will help you out.","Publícalo aquí, nuestros mentores te ayudarán.", +Questions,Preguntas, +Ask a Question,Haga una pregunta, +Submit for Review,Someter a revisión, +Notify me when available,Avísame cuando esté disponible, +Manage the course,Gestionar el curso, +Continue Learning,Continuar Aprendiendo, +Apply for Certificate,Aplicar para certificación, +Get Certificate,Obtener el certificado, +Pick a Slot,Elija una franja horaria, +"This course requires you to complete an evaluation to get certified. Please pick a slot based on your convenience for the evaluations. ","Este curso requiere que usted complete una evaluación para obtener la certificación. Por favor, elija un espacio basado en su conveniencia para las evaluaciones. " +"Slots","Horarios", +There are no slots available on this day.,No hay horarios disponibles para este día, +Submit,Enviar, +Course Creators,Creadores de cursos, +Mark as Complete,Marcar como completo, +Mark as Incomplete,Marcar como incompleto, +Mark as complete on moving to the next lesson,Marcar como completo al pasar a la siguiente lección, +"This lesson is not available for preview. Please join the course to access it.","Esta lección no está disponible para la vista previa. Por favor, únase al curso para acceder a ella.", +"This lesson is not available for preview. As you are the Instructor of the course only you can see it.","Esta lección no está disponible para la vista previa. Como usted es el instructor del curso, sólo usted puede verla.", +COMPLETED,COMPLETADO, \ No newline at end of file diff --git a/lms/www/batch/learn.html b/lms/www/batch/learn.html index d6416f61..76f2339a 100644 --- a/lms/www/batch/learn.html +++ b/lms/www/batch/learn.html @@ -147,13 +147,13 @@ {% macro Discussions() %} {% set is_instructor = frappe.session.user == course.instructor %} {% set condition = is_instructor if is_instructor else membership %} -{% set doctype, docname = "Course Lesson", lesson.name %} -{% set title = "Questions" %} -{% set cta_title = "Ask a Question" %} -{% set button_name = "Start Learning" %} +{% set doctype, docname = _("Course Lesson"), lesson.name %} +{% set title = _("Questions") %} +{% set cta_title = _("Ask a Question") %} +{% set button_name = _("Start Learning") %} {% set redirect_to = "/courses/" + course.name %} -{% set empty_state_title = "Have a doubt?" %} -{% set empty_state_subtitle = "Post it here, our mentors will help you out." %} +{% set empty_state_title = _("Have a doubt?") %} +{% set empty_state_subtitle = _("Post it here, our mentors will help you out.") %} {% include "frappe/templates/discussions/discussions_section.html" %} {% endmacro %} diff --git a/lms/www/courses/course.html b/lms/www/courses/course.html index d222de0f..2d545867 100644 --- a/lms/www/courses/course.html +++ b/lms/www/courses/course.html @@ -61,7 +61,7 @@
-
Instructors:
+
{{ _("Instructors") }}:
{% for instructor in get_instructors(course.name) %}
{{ widgets.Avatar(member=instructor, avatar_class="avatar-small") }} @@ -75,7 +75,7 @@ {% if membership %} {% set progress = frappe.utils.cint(membership.progress) %}
-
{{ progress }}% Completed
+
{{ progress }}% {{ _("Completed") }}
diff --git a/lms/www/courses/index.py b/lms/www/courses/index.py index d7fda57d..52694424 100644 --- a/lms/www/courses/index.py +++ b/lms/www/courses/index.py @@ -1,4 +1,5 @@ import frappe +from frappe import _ from lms.lms.doctype.lms_settings.lms_settings import check_profile_restriction def get_context(context): @@ -6,7 +7,7 @@ def get_context(context): context.live_courses, context.upcoming_courses = get_courses() context.restriction = check_profile_restriction() context.metatags = { - "title": "All Live Courses", + "title": _("All Live Courses"), "image": frappe.db.get_single_value("Website Settings", "banner_image"), "description": "This page lists all the courses published on our website", "keywords": "All Courses, Courses, Learn" From cc90ccece2ba724209bba186074337fc2441c277 Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Wed, 25 May 2022 14:38:50 -0300 Subject: [PATCH 2/9] feat: translations --- lms/translations/es.csv | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lms/translations/es.csv b/lms/translations/es.csv index cc69de0d..cec18d03 100644 --- a/lms/translations/es.csv +++ b/lms/translations/es.csv @@ -46,4 +46,12 @@ Mark as Incomplete,Marcar como incompleto, Mark as complete on moving to the next lesson,Marcar como completo al pasar a la siguiente lección, "This lesson is not available for preview. Please join the course to access it.","Esta lección no está disponible para la vista previa. Por favor, únase al curso para acceder a ella.", "This lesson is not available for preview. As you are the Instructor of the course only you can see it.","Esta lección no está disponible para la vista previa. Como usted es el instructor del curso, sólo usted puede verla.", -COMPLETED,COMPLETADO, \ No newline at end of file +COMPLETED,COMPLETADO, +Type title,Escriba el título, +Type here. Use markdown to format.,Escriba aquí. Utilice markdown para formatear., +Press Cmd+Enter to post your comment,Pulse Cmd+Enter para publicar su comentario, +Cancel,Cancelar, +Post,Publicar, +other,otro, +others,otros, +Search,Buscar, \ No newline at end of file From 227ca0ed41ce6af8baab6d72db4c7564c4ae557e Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:34:02 -0300 Subject: [PATCH 3/9] fix: translations --- lms/translations/es.csv | 57 ----------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 lms/translations/es.csv diff --git a/lms/translations/es.csv b/lms/translations/es.csv deleted file mode 100644 index cec18d03..00000000 --- a/lms/translations/es.csv +++ /dev/null @@ -1,57 +0,0 @@ -Chapter,Capitulo, -Lesson,Lección, -Quiz,Cuestionario, -Interest,Interés, -Course,Curso, -All Live Courses,Todos los Cursos Disponibles, -All Live Courses ({0}),Todos los Cursos Disponibles ({0}), -All Courses,Todos los Cursos, -Instructors,Instructores, -Completed,Completado, -Evaluation On: ,Evaluación en: , -Under Review,Bajo Revisión, -Edit,Editar, -"You have exceeded the maximum number of attempts allowed to appear for evaluations of this course.","Ha superado el número máximo de intentos permitidos para presentarse a las evaluaciones de este curso.", -"Your course is currently under review. Once the review is complete, the System Admins will publish it on the website.","Su curso está actualmente en revisión. Una vez completada la revisión, los administradores del sistema lo publicarán en el sitio web.", -Enrolled,Inscriptos, -Lessons,Lecciones, -Get Certified,Obtenga la certificación, -Other Courses,Otros Cursos, -Reviews,Reseñas, -Write a review,Escribe una reseña, -Review the course,Reseña el curso, -Help us improve our course material.,Ayúdenos a mejorar el material del curso., -Add Chapter,Añadir Capítulo, -Add Lesson,Añadir Lección, -Start Learning,Comenzar a Aprender, -Checkout Course,Ver Curso, -Have a doubt?,¿Tiene una duda?, -"Post it here, our mentors will help you out.","Publícalo aquí, nuestros mentores te ayudarán.", -Questions,Preguntas, -Ask a Question,Haga una pregunta, -Submit for Review,Someter a revisión, -Notify me when available,Avísame cuando esté disponible, -Manage the course,Gestionar el curso, -Continue Learning,Continuar Aprendiendo, -Apply for Certificate,Aplicar para certificación, -Get Certificate,Obtener el certificado, -Pick a Slot,Elija una franja horaria, -"This course requires you to complete an evaluation to get certified. Please pick a slot based on your convenience for the evaluations. ","Este curso requiere que usted complete una evaluación para obtener la certificación. Por favor, elija un espacio basado en su conveniencia para las evaluaciones. " -"Slots","Horarios", -There are no slots available on this day.,No hay horarios disponibles para este día, -Submit,Enviar, -Course Creators,Creadores de cursos, -Mark as Complete,Marcar como completo, -Mark as Incomplete,Marcar como incompleto, -Mark as complete on moving to the next lesson,Marcar como completo al pasar a la siguiente lección, -"This lesson is not available for preview. Please join the course to access it.","Esta lección no está disponible para la vista previa. Por favor, únase al curso para acceder a ella.", -"This lesson is not available for preview. As you are the Instructor of the course only you can see it.","Esta lección no está disponible para la vista previa. Como usted es el instructor del curso, sólo usted puede verla.", -COMPLETED,COMPLETADO, -Type title,Escriba el título, -Type here. Use markdown to format.,Escriba aquí. Utilice markdown para formatear., -Press Cmd+Enter to post your comment,Pulse Cmd+Enter para publicar su comentario, -Cancel,Cancelar, -Post,Publicar, -other,otro, -others,otros, -Search,Buscar, \ No newline at end of file From 0609174a14569ab35b95778552aac0b50f37edf5 Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:43:11 -0300 Subject: [PATCH 4/9] fix: translations --- .../multiple_testimonials/multiple_testimonials.html | 4 ++-- lms/lms/widgets/BreadCrumb.html | 2 +- lms/lms/widgets/HelloWorld.html | 2 +- lms/lms/widgets/RequestInvite.html | 3 +-- lms/templates/assignment.html | 4 ++-- lms/templates/emails/lms_course_interest.html | 2 +- .../emails/lms_invite_request_approved.html | 2 +- lms/templates/emails/lms_message.html | 4 ++-- .../emails/mentor_request_creation_email.html | 10 +++++----- .../emails/mentor_request_status_update_email.html | 8 ++++---- lms/templates/livecode/extension_footer.html | 4 ++-- lms/www/batch/join.html | 12 ++++++------ 12 files changed, 28 insertions(+), 29 deletions(-) diff --git a/lms/lms/web_template/multiple_testimonials/multiple_testimonials.html b/lms/lms/web_template/multiple_testimonials/multiple_testimonials.html index d8424fc9..f0d8fb3f 100644 --- a/lms/lms/web_template/multiple_testimonials/multiple_testimonials.html +++ b/lms/lms/web_template/multiple_testimonials/multiple_testimonials.html @@ -30,7 +30,7 @@ {% endif %} diff --git a/lms/lms/widgets/BreadCrumb.html b/lms/lms/widgets/BreadCrumb.html index ca7a4747..9bad598b 100644 --- a/lms/lms/widgets/BreadCrumb.html +++ b/lms/lms/widgets/BreadCrumb.html @@ -1,6 +1,6 @@
diff --git a/lms/templates/assignment.html b/lms/templates/assignment.html index ff543469..2bf14e41 100644 --- a/lms/templates/assignment.html +++ b/lms/templates/assignment.html @@ -1,10 +1,10 @@
-
Submit Work
+
{{ _("Submit Work") }}
-
Change
+
{{ _("Change") }}
diff --git a/lms/templates/emails/lms_course_interest.html b/lms/templates/emails/lms_course_interest.html index 1658b3e6..3dded006 100644 --- a/lms/templates/emails/lms_course_interest.html +++ b/lms/templates/emails/lms_course_interest.html @@ -14,6 +14,6 @@ {{ site_url }}{{ course_link }}


-

Thanks and Regards,

+

{{ _("Thanks and Regards") }},

{{ app_name }}

diff --git a/lms/templates/emails/lms_invite_request_approved.html b/lms/templates/emails/lms_invite_request_approved.html index dcda70f3..1d72009f 100644 --- a/lms/templates/emails/lms_invite_request_approved.html +++ b/lms/templates/emails/lms_invite_request_approved.html @@ -12,6 +12,6 @@ {{ site_url }}{{ signup_form_link }}


-

Thanks and Regards,

+

{{ _("Thanks and Regards") }},

{{site_name}}

diff --git a/lms/templates/emails/lms_message.html b/lms/templates/emails/lms_message.html index 4cfad56f..e762379a 100644 --- a/lms/templates/emails/lms_message.html +++ b/lms/templates/emails/lms_message.html @@ -8,6 +8,6 @@
-->

{{ message }}

-

By {{author}}

+

{{ _("By") }} {{author}}

{{ creation }}
-Open Course +{{ _("Open Course") }} diff --git a/lms/templates/emails/mentor_request_creation_email.html b/lms/templates/emails/mentor_request_creation_email.html index 20e51403..2d43ace6 100644 --- a/lms/templates/emails/mentor_request_creation_email.html +++ b/lms/templates/emails/mentor_request_creation_email.html @@ -1,9 +1,9 @@
-

Dear {{ member_name }},

+

{{ _("Dear") }} {{ member_name }},


-

You've applied to become a mentor for this course. Your request is currently under review.

-

If you are not any more interested to mentor the course {{ course }}, you can cancel your application.

+

{{ _("You've applied to become a mentor for this course. Your request is currently under review.") }}

+

{{ _("If you are not any more interested to mentor the course") }} {{ course }}, {{ _("you can") }} {{ _("cancel your application") }}.


-

Thanks and Regards,

-

Team School.

+

{{ _("Thanks and Regards") }},

+

{{ _("Team School") }}.

diff --git a/lms/templates/emails/mentor_request_status_update_email.html b/lms/templates/emails/mentor_request_status_update_email.html index db3ba35a..cb1eaf41 100644 --- a/lms/templates/emails/mentor_request_status_update_email.html +++ b/lms/templates/emails/mentor_request_status_update_email.html @@ -1,8 +1,8 @@
-

Dear {{ member_name }},

+

{{ _("Dear") }} {{ member_name }},


-

Your request to join us as a mentor for the course {{ course }} has been {{ status }}.

+

{{ _("Your request to join us as a mentor for the course") }} {{ course }} {{ _("has been") }} {{ status }}.


-

Thanks and Regards,

-

Team School.

+

{{ _("Thanks and Regards") }},

+

{{ _("Team School") }}.

diff --git a/lms/templates/livecode/extension_footer.html b/lms/templates/livecode/extension_footer.html index 10ec0e0f..cc141598 100644 --- a/lms/templates/livecode/extension_footer.html +++ b/lms/templates/livecode/extension_footer.html @@ -18,11 +18,11 @@
- +
- +
diff --git a/lms/www/batch/join.html b/lms/www/batch/join.html index 0a839709..ce46d291 100644 --- a/lms/www/batch/join.html +++ b/lms/www/batch/join.html @@ -11,9 +11,9 @@
- Login Required + {{ _("Login Required") }}
-
Please log in to confirm joining the course {{ batch.course_title }}.
+
{{ _("Please log in to confirm joining the course" )}} {{ batch.course_title }}.
{{_("Login")}}
@@ -22,9 +22,9 @@
- Already a member + {{ _("Already a member") }}
-
You are already a member of the batch {{ batch.title }} for the course {{ batch.course_title }}. +
{{ _("You are already a member of the batch") }} {{ batch.title }} {{ _("for the course") }} {{ batch.course_title }}.
{{_("Go to Batch Home")}}
@@ -33,9 +33,9 @@
- Confirm your membership + {{ _("Confirm your membership") }}
-
Please provide your confirmation to be a part of the batch {{ batch.title }} for the course +
{{ _("Please provide your confirmation to be a part of the batch") }} {{ batch.title }} {{ _("for the course") }} {{ batch.course_title }}.
{{_("Confirm")}} From 2be2646d955296c8a8a60c691d48ac59d5a1a21c Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:45:56 -0300 Subject: [PATCH 5/9] fix: translations --- lms/www/cohorts/index.html | 8 ++++---- lms/www/cohorts/join.html | 18 +++++++++--------- lms/www/courses/index.html | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lms/www/cohorts/index.html b/lms/www/cohorts/index.html index 68009df8..9c0b9fab 100644 --- a/lms/www/cohorts/index.html +++ b/lms/www/cohorts/index.html @@ -3,7 +3,7 @@ {% block page_content %} {% if cohorts %} -

Cohorts

+

{{ _("Cohorts") }}

{% for cohort in cohorts %}
@@ -12,8 +12,8 @@ {% endfor %}
{% else %} -

Permission Denied

-

You don't have permission to manage this course.

+

{{ _("Permission Denied") }}

+

{{ _("You don't have permission to manage this course.") }}

{% endif %} {% endblock %} @@ -31,7 +31,7 @@ | {{ stats.join_requests }} join requests

- Manage + {{ _("Manage") }}
diff --git a/lms/www/cohorts/join.html b/lms/www/cohorts/join.html index cb2423d2..58fed3dd 100644 --- a/lms/www/cohorts/join.html +++ b/lms/www/cohorts/join.html @@ -1,10 +1,10 @@ {% extends "www/cohorts/base.html" %} -{% block title %}Join Course{% endblock %} +{% block title %}{{ _("Join Course") }}{% endblock %} {% block page_content %} -

Join Course

+

{{ _("Join Course") }}

Course: {{course.title}} @@ -20,25 +20,25 @@

- Please login to be able to join the course.

+ {{ _("Please login to be able to join the course.") }}

- If you don't already have an account, you can sign up for a new account. + {{ _("If you don't already have an account, you can") }} {{ _("sign up for a new account") }}.

- Login to continue + {{ _("Login to continue") }}
{% elif subgroup.has_student(frappe.session.user) %}
-

You are already a student of this course.

- Start Learning → +

{{ _("You are already a student of this course.") }}

+ {{ _("Start Learning") }} →
{% elif subgroup.has_join_request(frappe.session.user) %}
-

We have received your request to join the course. You'll hear back from us soon.

+

{{ _("We have received your request to join the course. You'll hear back from us soon.") }}

{% else %} -Join the course +{{ _("Join the course") }} {% endif %} diff --git a/lms/www/courses/index.html b/lms/www/courses/index.html index aa830f96..d66aa112 100644 --- a/lms/www/courses/index.html +++ b/lms/www/courses/index.html @@ -8,7 +8,7 @@
{% if restriction.restrict %} - {% set profile_link = " profile " %} + {% set profile_link = " {{ _("profile") }} " %}
{{ _("You haven't completed your profile.") }}

{{ _("Complete your {0} to access the courses.").format(profile_link) }}

From 119c1cbb358e2bbe1b329e8ec5330396b0fa6e64 Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:48:35 -0300 Subject: [PATCH 6/9] fix: translations --- lms/www/courses/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/www/courses/index.html b/lms/www/courses/index.html index d66aa112..aa830f96 100644 --- a/lms/www/courses/index.html +++ b/lms/www/courses/index.html @@ -8,7 +8,7 @@
{% if restriction.restrict %} - {% set profile_link = " {{ _("profile") }} " %} + {% set profile_link = " profile " %}
{{ _("You haven't completed your profile.") }}

{{ _("Complete your {0} to access the courses.").format(profile_link) }}

From 5a33f4c70788506da304ef59f7fefdbc7a5d7c90 Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:49:51 -0300 Subject: [PATCH 7/9] fix: translations --- lms/translations/es.csv | 1 + 1 file changed, 1 insertion(+) create mode 100644 lms/translations/es.csv diff --git a/lms/translations/es.csv b/lms/translations/es.csv new file mode 100644 index 00000000..8298d54a --- /dev/null +++ b/lms/translations/es.csv @@ -0,0 +1 @@ +Course Enrollments,Inscripciones a cursos, \ No newline at end of file From 6ef86dce8cb40460e4ff800b205e7d0e27ccd47c Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Thu, 26 May 2022 09:52:04 -0300 Subject: [PATCH 8/9] fix: es --- lms/translations/es.csv | 58 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/lms/translations/es.csv b/lms/translations/es.csv index 8298d54a..cec18d03 100644 --- a/lms/translations/es.csv +++ b/lms/translations/es.csv @@ -1 +1,57 @@ -Course Enrollments,Inscripciones a cursos, \ No newline at end of file +Chapter,Capitulo, +Lesson,Lección, +Quiz,Cuestionario, +Interest,Interés, +Course,Curso, +All Live Courses,Todos los Cursos Disponibles, +All Live Courses ({0}),Todos los Cursos Disponibles ({0}), +All Courses,Todos los Cursos, +Instructors,Instructores, +Completed,Completado, +Evaluation On: ,Evaluación en: , +Under Review,Bajo Revisión, +Edit,Editar, +"You have exceeded the maximum number of attempts allowed to appear for evaluations of this course.","Ha superado el número máximo de intentos permitidos para presentarse a las evaluaciones de este curso.", +"Your course is currently under review. Once the review is complete, the System Admins will publish it on the website.","Su curso está actualmente en revisión. Una vez completada la revisión, los administradores del sistema lo publicarán en el sitio web.", +Enrolled,Inscriptos, +Lessons,Lecciones, +Get Certified,Obtenga la certificación, +Other Courses,Otros Cursos, +Reviews,Reseñas, +Write a review,Escribe una reseña, +Review the course,Reseña el curso, +Help us improve our course material.,Ayúdenos a mejorar el material del curso., +Add Chapter,Añadir Capítulo, +Add Lesson,Añadir Lección, +Start Learning,Comenzar a Aprender, +Checkout Course,Ver Curso, +Have a doubt?,¿Tiene una duda?, +"Post it here, our mentors will help you out.","Publícalo aquí, nuestros mentores te ayudarán.", +Questions,Preguntas, +Ask a Question,Haga una pregunta, +Submit for Review,Someter a revisión, +Notify me when available,Avísame cuando esté disponible, +Manage the course,Gestionar el curso, +Continue Learning,Continuar Aprendiendo, +Apply for Certificate,Aplicar para certificación, +Get Certificate,Obtener el certificado, +Pick a Slot,Elija una franja horaria, +"This course requires you to complete an evaluation to get certified. Please pick a slot based on your convenience for the evaluations. ","Este curso requiere que usted complete una evaluación para obtener la certificación. Por favor, elija un espacio basado en su conveniencia para las evaluaciones. " +"Slots","Horarios", +There are no slots available on this day.,No hay horarios disponibles para este día, +Submit,Enviar, +Course Creators,Creadores de cursos, +Mark as Complete,Marcar como completo, +Mark as Incomplete,Marcar como incompleto, +Mark as complete on moving to the next lesson,Marcar como completo al pasar a la siguiente lección, +"This lesson is not available for preview. Please join the course to access it.","Esta lección no está disponible para la vista previa. Por favor, únase al curso para acceder a ella.", +"This lesson is not available for preview. As you are the Instructor of the course only you can see it.","Esta lección no está disponible para la vista previa. Como usted es el instructor del curso, sólo usted puede verla.", +COMPLETED,COMPLETADO, +Type title,Escriba el título, +Type here. Use markdown to format.,Escriba aquí. Utilice markdown para formatear., +Press Cmd+Enter to post your comment,Pulse Cmd+Enter para publicar su comentario, +Cancel,Cancelar, +Post,Publicar, +other,otro, +others,otros, +Search,Buscar, \ No newline at end of file From d9b26f31f8c040472d1b49ba3f307d8523ab3b1f Mon Sep 17 00:00:00 2001 From: Francisco Roldan Date: Mon, 6 Jun 2022 14:50:08 -0300 Subject: [PATCH 9/9] trans: profile --- lms/translations/es.csv | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lms/translations/es.csv b/lms/translations/es.csv index cec18d03..f5837830 100644 --- a/lms/translations/es.csv +++ b/lms/translations/es.csv @@ -54,4 +54,11 @@ Cancel,Cancelar, Post,Publicar, other,otro, others,otros, -Search,Buscar, \ No newline at end of file +Search,Buscar, +taken,realizados, +Creator,Creador, +Courses Created,Cursos Creados, +Courses Mentored,Cursos con tutoría, +Edit Profile,Editar Perfil, +Open Network,Red abierta, +