Fixes for use gettext in paramecio, deprecating old language system

This commit is contained in:
absurdo 2023-12-17 22:16:09 +01:00
parent fc15bd74bb
commit 2ba2ac6d37
11 changed files with 66 additions and 34 deletions

View file

@ -1,9 +1,9 @@
<%inherit file="home.html"/>
<%block name="content">
<div class="title">
${lang('admin', 'welcome_to_admin_dashboard', 'Welcome to Admin dashboard')}
${_('Welcome to Admin dashboard')}
</div>
<div class="cont">
${lang('admin', 'from_here_you_can_configure_your_site', 'From here you can configure your site')}.
${_('From here you can configure your site')}.
</div>
</%block>