Some more gettext() usage fixes: 

- fixed `%` vs. `.format()`
  - unified texts and usage `%s` vs. `{}`/`{0}`
  - improved text sentences for translate
  - added gettext for next texts
This commit is contained in:
Libor M
2020-04-20 11:19:09 +05:30
committed by Akshay Joshi
parent 8bdfa18efb
commit 36a3d4e53b
22 changed files with 48 additions and 54 deletions

View File

@@ -126,7 +126,7 @@
'<div class="custom-control custom-checkbox custom-checkbox-no-label">',
' <input tabindex="0" type="checkbox" class="custom-control-input" id="'+ id +'" />',
' <label class="custom-control-label" for="'+ id +'">',
' <span class="sr-only">Select All<span>',
' <span class="sr-only">' + gettext('Select All') + '<span>',
' </label>',
'</div>'
].join('\n'));