]> git.koha-community.org Git - koha.git/commit
Bug 38164: Skip fuzzy translations
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 14 Oct 2024 12:52:14 +0000 (09:52 -0300)
committerLucas Gass <lucas@bywatersolutions.com>
Wed, 23 Oct 2024 22:51:09 +0000 (22:51 +0000)
commit3c84a93e36128d7ce8fd7ac8f2ac06203ca04728
treef25ca517e23f9e3db453c31a11e8d0419cc13ca4
parentcfafd7bc2a57faa67e9c14e2db8cc807294142c8
Bug 38164: Skip fuzzy translations

This patch was envisioned by Julian Maurice.

Test plan:
0. Apply the 1st patch (the revert)
1. Go to `misc/translator/po`
2. es-ES-messages-js.po
3. Mark "Edit" string as fuzzy (around line 48). It should look like:

```
msgid "Edit"
msgstr "Editar"
```

4. Edit ./intranet-main.tt and add the following lines at the bottom,
   inside the `$(document).ready` block:

```javascript
  console.log(_("Edit"));
  console.log(__("Edit"));
```

5. Install the templates
  k$ koha-translate --install es-ES --dev kohadev && restart_all
6. Enable *es-ES* by searching for `language` in the sysprefs and switch
   to it for the staff interface.
7. Go to the Koha home page, open the browser console
=> FAIL: Notice that the second log in the console is displaying the
fuzzy string (i.e. is being translated when it shouldn't)
8. Apply this patch
9. Re-install the translated templates:
  k$ koha-translate --update es-ES --dev kohadev && restart_all
10. Repeat 7
=> SUCCESS: With this patch applied both logs show the English version of the
string.
11. Remove the fuzzy flag on `es-ES-messages-js.po`
12. Repeat 9 and 10
=> SUCCESS: The results are similar to step 7, but in this case they are
expected as the string is not marked fuzzy.
13. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Aleisha Amohia <aleishaamohia@hotmail.com>
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 5102f708a53861d6c4e4663e0a7d28f55cedeaf3)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
misc/translator/po2json