mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-16 10:57:00 +00:00

Target to run the contrib/fix_translation.py scripts with the correct path. Update the RELEASE documentation to use the new target instead of calling the script "manually".
17 lines
390 B
Meson
17 lines
390 B
Meson
i18n.gettext(meson.project_name(),
|
|
preset : 'glib',
|
|
args: [
|
|
'--default-domain=' + meson.project_name(),
|
|
]
|
|
)
|
|
|
|
if get_option('plugin_uefi')
|
|
meson.add_install_script('make-images.sh', localedir, python3.path())
|
|
endif
|
|
|
|
run_target('fix-translations',
|
|
command: [
|
|
join_paths(meson.source_root(), 'contrib/fix_translations.py'),
|
|
join_paths(meson.source_root(), 'po')
|
|
])
|