diff options
author | Aron Budea <aron.budea@collabora.com> | 2020-01-21 17:18:16 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2020-01-24 21:34:01 +0100 |
commit | 185bb77eee509cac7756074e42803c95ea7cf378 (patch) | |
tree | a049e152190fdb7e5a99f991cc6c5263ad84ea5b /scripts/locorestrings.py | |
parent | ea9c80b588041f2b19045fe4d7b300c6c2e4338d (diff) |
Add correct string and translations for Function Wizard
Change-Id: Ia9d8f2b102bc405d9eb9ef6364a00fc46c5798b7
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/87155
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'scripts/locorestrings.py')
-rwxr-xr-x | scripts/locorestrings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/locorestrings.py b/scripts/locorestrings.py index 537d520d0..f3411530a 100755 --- a/scripts/locorestrings.py +++ b/scripts/locorestrings.py @@ -64,6 +64,10 @@ if __name__ == "__main__": poFile = dir + lang + '/sc/messages.po' extractFromPo(poFile, ["STR_STYLENAME_", "STR_FILTER_SELCOUNT", "STR_ROWCOL_SELCOUNT", "STR_FUN_TEXT_", "STR_UNDO_INSERTCELLS", "STR_TABLE_COUNT"], translations) + # extract Function Wizard name for formula bar + poFile = dir + lang +'/formula/messages.po' + extractFromPo(poFile, ["STR_TITLE1"], translations) + # extract language names poFile = dir + lang + '/svtools/messages.po' extractFromPo(poFile, ["STR_ARR_SVT_LANGUAGE_TABLE"], translations) |