feat: Enabled translation on html files in LMS [Proposal] (#21582)
* :fix: translation fix for html files in LMS
* fix: typo in translation
* Update content.html
* Update content.html
* Update profile.html
Co-authored-by: Shivam Mishra <scmmishra@users.noreply.github.com>
Co-authored-by: Marica <maricadsouza221197@gmail.com>
diff --git a/erpnext/www/lms/program.html b/erpnext/www/lms/program.html
index 271b781..7ad6186 100644
--- a/erpnext/www/lms/program.html
+++ b/erpnext/www/lms/program.html
@@ -55,11 +55,11 @@
{% if has_access and progress[course.name] %}
<div class='card-footer'>
{% if progress[course.name].completed %}
- <span class="indicator green">Completed</span>
+ <span class="indicator green">{{_('Completed')}}</span>
{% elif progress[course.name].started %}
- <span class="indicator orange">In Progress</span>
+ <span class="indicator orange">{{_('In Progress')}}</span>
{% else %}
- <span class="indicator blue">Start</span>
+ <span class="indicator blue">{{_('Start')}}</span>
{% endif %}
</div>
{% endif %}