Commit 52ed7b27 by Diana Huang

Add i18n hooks.

LMS-1306
parent 0752375e
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<a href="${reverse('wiki:get', kwargs={'article_id' : article.id, 'path' : urlpath.path})}"> <a href="${reverse('wiki:get', kwargs={'article_id' : article.id, 'path' : urlpath.path})}">
<span class="icon-home icon"></span> <span class="icon-home icon"></span>
View View
${"<span class='sr'>(active)</span>" if selected_tab == "view" else ""} ${_("{span_start}active{span_end}").format(span_start="<span class='sr'>(", span_end=")</span>") if selected_tab == "view" else ""}
</a> </a>
</li> </li>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<a href="${reverse('wiki:edit', kwargs={'article_id' : article.id, 'path' : urlpath.path})}"> <a href="${reverse('wiki:edit', kwargs={'article_id' : article.id, 'path' : urlpath.path})}">
<span class="icon-edit icon"></span> <span class="icon-edit icon"></span>
Edit Edit
${"<span class='sr'>(active)</span>" if selected_tab == "edit" else ""} ${_("{span_start}active{span_end}").format(span_start="<span class='sr'>(", span_end=")</span>") if selected_tab == "edit" else ""}
</a> </a>
</li> </li>
%endif %endif
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<a href="${reverse('wiki:history', kwargs={'article_id' : article.id, 'path' : urlpath.path})}"> <a href="${reverse('wiki:history', kwargs={'article_id' : article.id, 'path' : urlpath.path})}">
<span class="icon-changes icon"></span> <span class="icon-changes icon"></span>
Changes Changes
${"<span class='sr'>(active)</span>" if selected_tab == "history" else ""} ${_("{span_start}active{span_end}").format(span_start="<span class='sr'>(", span_end=")</span>") if selected_tab == "history" else ""}
</a> </a>
</li> </li>
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<a href="${reverse('wiki:plugin', kwargs={'slug' : plugin.slug, 'article_id' : article.id, 'path' : urlpath.path}) }"> <a href="${reverse('wiki:plugin', kwargs={'slug' : plugin.slug, 'article_id' : article.id, 'path' : urlpath.path}) }">
<span class="${plugin.article_tab[1]} icon"></span> <span class="${plugin.article_tab[1]} icon"></span>
${plugin.article_tab[0]} ${plugin.article_tab[0]}
${"<span class='sr'>(active)</span>" if selected_tab == plugin.slug else ""} ${_("{span_start}active{span_end}").format(span_start="<span class='sr'>(", span_end=")</span>") if selected_tab == plugin.slug else ""}
</a> </a>
</li> </li>
%endif %endif
...@@ -53,7 +53,7 @@ ${_("This should be enabled for all non-anonymous users once the notifications a ...@@ -53,7 +53,7 @@ ${_("This should be enabled for all non-anonymous users once the notifications a
<a href="${reverse('wiki:settings', kwargs={'article_id' : article.id, 'path' : urlpath.path})}"> <a href="${reverse('wiki:settings', kwargs={'article_id' : article.id, 'path' : urlpath.path})}">
<span class="icon-settings icon"></span> <span class="icon-settings icon"></span>
${_("Settings")} ${_("Settings")}
${"<span class='sr'>(active)</span>" if selected_tab == "settings" else ""} ${_("{span_start}active{span_end}").format(span_start="<span class='sr'>(", span_end=")</span>") if selected_tab == "settings" else ""}
</a> </a>
</li> </li>
%endif %endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment