Skip to content

Commit

Permalink
Fixed issue #14294: Multi-numeric labels not translated
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikvitt authored and lacrioque committed Dec 4, 2018
1 parent b948ccf commit dc20f30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -13,7 +13,7 @@
{% if sumRemainingEqn %}
<li class="form-group ls-group-remaining ls-group-dynamic">
<div class="control-label col-xs-12 col-sm-{{sLabelWidth}}">
{{ gT('Remaining: ') }}
{{ gT('Remaining') }}:
</div>
<div class="ls-input-group col-xs-12 col-sm-{{sInputContainerWidth}} {% if sLabelWidth == 0 %} hidden{% endif %}">
{% if prefix %}
Expand All @@ -37,7 +37,7 @@
{% if sumEqn %}
<li class="form-group ls-group-total ls-group-dynamic">
<div class="control-label col-xs-12 col-sm-{{sLabelWidth}}">
{{ gT('Total: ') }}
{{ gT('Total:') }}
</div>
<div class="ls-input-group col-xs-12 col-sm-{{sInputContainerWidth}}">
{% if prefix %}
Expand Down
Expand Up @@ -14,7 +14,7 @@
<li class="form-group ls-group-remaining ls-group-dynamic">
<div class="col-xs-12 col-sm-{{ sInputContainerWidth }} col-md-offset-{{ sLabelWidth }}">
<div class="control-label">
{{ gT('Remaining: ') }}
{{ gT('Remaining') }}:
</div>
{% if prefix %}
<div class="prefix-text prefix"><!-- Suffix prefix are not shown inline, but only in the slider: completely diofferent concept : set hidden -->
Expand All @@ -37,7 +37,7 @@
<li class="form-group ls-group-total ls-group-dynamic">
<div class="col-xs-12 col-sm-{{ sInputContainerWidth }} col-md-offset-{{ sLabelWidth }}">
<div class="control-label">
{{gT('Total: ')}}
{{gT('Total:')}}
</div>
<div id="totalvalue_{{ id }}" class="form-control-static numeric dynamic-total" data-number="1">
{{ '{'~sumEqn~'}' }}
Expand Down

0 comments on commit dc20f30

Please sign in to comment.