From 58320de94fb15d981f7e31b5bf2677144d15fcd7 Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Wed, 5 Feb 2025 16:57:46 -0500 Subject: [PATCH] Bug 39045: Add translation context to stock rotation status (active/inactive) This patch adds translation context to 'Active' and 'Inactive' when used as the status of stock rotation rota. To test: 1. Enable the StockRotation system preference 1.1. Go to Administration > System preferences 1.2. Search for StockRotation 1.3. Choose 'Enable' 1.4. Click 'Save all Circulation preferences' 2. Go to Cataloging > Stock rotation 3. Click 'New rota' 4. Enter a name for the rota 5. Click 'Save' --> There should be a column with the heading 'Active' 6. Click 'Manage' > 'Stages' 7. Click 'Add a stage' 8. Enter a duration 9. Click 'Save' 10. Click 'Return to rotas' 11. Click 'Activate' 12. Click 'Manage' > 'Items' 13. Click 'Add items' 14. Enter a barcode (e.g. 39999000001518) 15. Click 'Save' 16. Click the title of the item 17. Click 'Rota' (left menu) --> Under 'Rota status' it should say 'Active' 18. Go back to Cataloging > Stock rotation 19. Click 'Deactivate' 20. Click 'Manage' > 'Items' 21. Click the title of the item 22. Click 'Rota' (left menu) --> Under 'Rota status' it should say 'Inactive' 23. Apply patch 24. Update translations ktd --shell gulp po:update --lang fr-CA 25. View the fr-CA-messages.po file --> There should be entries with 'Rota status' in msgctxt 26. Optionally, translate the strings (remember to remove the fuzzy flag, if any) 27. Install new translations ktd --root --shell koha-translate --install fr-CA --dev kohadev 28. Enable the new language in Administration > System preferences > StaffInterfaceLanguages 29. Repeat step 1-17 --> Translations should be whatever you put in the po file Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt | 4 ++-- .../intranet-tmpl/prog/en/modules/tools/stockrotation.tt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt index 1b2e2a861b9..638519e56bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt @@ -62,10 +62,10 @@ [% IF item.rota %] [% IF !item.rota.active %] - Inactive + [% tp('Rota status', 'Inactive') | html %] [% ELSE %] - Active + [% tp('Rota status', 'Active') | html %] [% END %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt index 7735f0a55f9..bdf3207555c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stockrotation.tt @@ -125,7 +125,7 @@ Name Cyclical - Active + [% tp('Rota status', 'Active') | html %] Description Number of items Actions -- 2.39.5