Bug 18675: Translatability: Get rid of [%% in translation for csv-profiles.tt
Translation tool for file csv-profiles.tt picks following line: %s [%% IF csv_profile.encoding == encoding OR NOT csv_profile AND encoding == 'utf8' %%] It is is due to a line break inside a template directive. This patch removes it. To test: - Verify that code change makes sense - Apply patch - Verify that csv exports behave as before Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
279126d710
commit
dd9da3e8f6
1 changed files with 1 additions and 2 deletions
|
@ -200,8 +200,7 @@ function reloadPage(p) {
|
|||
<li class="marc_specific"><label for="encoding">Encoding: </label>
|
||||
<select name="encoding" id="encoding">
|
||||
[% FOREACH encoding IN encodings %]
|
||||
[% IF csv_profile.encoding == encoding
|
||||
OR NOT csv_profile AND encoding == 'utf8' %]
|
||||
[% IF csv_profile.encoding == encoding OR NOT csv_profile AND encoding == 'utf8' %]
|
||||
<option selected="selected">[% encoding %]</option>
|
||||
[% ELSE %]
|
||||
<option>[% encoding %]</option>
|
||||
|
|
Loading…
Reference in a new issue