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) }}