Skip to content

Commit

Permalink
Fixed issues with tr.sget in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogdani committed May 7, 2021
1 parent 293fcd3 commit b70212b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/update/tmpl/check_result.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<div id="{{ uid }}">
{% if status == 'updateable_warning' or status == 'updateable' %}
<div class="alert alert-info">
<p class="lead">{{ tr.sget('new_version_available', remote_vers) }}</p>
<p class="lead">{{ tr.sget('new_version_available', [remote_vers]) }}</p>
</div>
{% elseif branch == 'BraDyCMS-dev' %}
<div class="alert alert-warning">
<p class="lead">{{ tr.sget('dev_update_available', remote_vers) }}</p>
<p class="lead">{{ tr.sget('dev_update_available', [remote_vers]) }}</p>
</div>


Expand Down

0 comments on commit b70212b

Please sign in to comment.