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/course.html b/erpnext/www/lms/course.html
index f2fd936..0d70ed5 100644
--- a/erpnext/www/lms/course.html
+++ b/erpnext/www/lms/course.html
@@ -72,11 +72,11 @@
{% if has_access %}
<div class='card-footer'>
{% if progress[topic.name].completed %}
- <span class="indicator green">Completed</span>
+ <span class="indicator green">{{_('Completed')}}</span>
{% elif progress[topic.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>
</a>