]> git.koha-community.org Git - koha.git/commit
Bug 37303: Replace po2json with a JS version
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 10 Jul 2024 10:16:55 +0000 (12:16 +0200)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 26 Jul 2024 13:49:53 +0000 (14:49 +0100)
commit4eb981635453871fa2a33396391f3f75a6baa8b1
treed045acf080f0c49cc9006d1189999a68fcc2c388
parentbbd1fa0bfa2604e60eb38072569d7af5ec6808d8
Bug 37303: Replace po2json with a JS version

When using __() (ie. Gettext.js) we are seeing the translations that are marked as fuzzy.
This is definitely not the expected behaviour.

It happens because (our version of) po2json are old and no longer maintained,
and just embed them.

It seems that the bin we have has been upgraded to a JS version
(different authors).

Test plan:
(replace LANG with your language code)
0. Do not apply this patch
Edit misc/translator/po/LANG-messages-js.po
Mark a string as fuzzy
Edit ./intranet-main.tt and add the following lines inside $(document).ready
  console.log(_("Your string"));
  console.log(__("Your string"));
Replace "Your string" with the string you are actually testing.

Update the templates: `koha-translate --update LANG --dev kohadev && restart_all`

Go to the Koha home page, open the console.

=> Notice that the second log in the console is displaying the fuzzy string.

1. Apply this patch
Install the new version of po2json using `yarn install`
Repeat the previous steps.

=> With this patch applied both logs show the English version of the
string.

Remove fuzzy, update the templates and try again.

Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
misc/translator/LangInstaller.pm
misc/translator/po2json [deleted file]
package.json