2017-11-15 19:41:04 +01:00
|
|
|
i18n = import('i18n')
|
2020-11-08 18:33:37 +01:00
|
|
|
# This is currently busted on OSX
|
2023-04-22 21:21:40 +02:00
|
|
|
# and incomplete on any platform.
|
|
|
|
# It misses translatable strings not directly found in either
|
|
|
|
# C++ source, desktop or appdata file. This affects strings
|
|
|
|
# of the Windows installer (iss), from Lua scripts and JSON files.
|
|
|
|
# Until a solution is found, POT updates should continue to use make_pot.sh.
|
2020-11-08 18:33:37 +01:00
|
|
|
i18n.gettext('aegisub',
|
2023-04-22 21:21:40 +02:00
|
|
|
args: [
|
|
|
|
'-k_', '-kSTR_MENU', '-kSTR_DISP', '-kSTR_HELP', '-kwxT',
|
|
|
|
'-kfmt_tl', '-kfmt_plural:2,3', '-kwxPLURAL:1,2',
|
|
|
|
'--sort-by-file'
|
|
|
|
],
|
2020-11-08 18:33:37 +01:00
|
|
|
install_dir: localedir)
|