2020-06-29 19:55:39 +00:00
|
|
|
i18n = import('i18n')
|
|
|
|
|
|
|
|
i18n.gettext(
|
|
|
|
meson.project_name(),
|
|
|
|
args: [
|
2022-05-18 09:34:40 +00:00
|
|
|
'--from-code=UTF-8',
|
|
|
|
'--keyword=_',
|
|
|
|
'--keyword=N_',
|
2020-06-29 19:55:39 +00:00
|
|
|
'--add-comments=TRANSLATORS:',
|
|
|
|
'--directory=@0@'.format(meson.source_root()),
|
|
|
|
'--directory=@0@'.format(meson.build_root()),
|
2022-05-16 14:57:08 +00:00
|
|
|
'--files-from=@0@'.format(meson.current_source_dir() / 'POTFILES'),
|
2020-06-29 19:55:39 +00:00
|
|
|
'--msgid-bugs-address=https://libvirt.org/bugs.html',
|
|
|
|
'--package-version=@0@'.format(meson.project_version()),
|
|
|
|
'--sort-output',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
potfiles_dep = [
|
|
|
|
access_gen_sources,
|
|
|
|
admin_client_generated,
|
|
|
|
admin_driver_generated,
|
|
|
|
remote_driver_generated,
|
|
|
|
remote_daemon_generated,
|
|
|
|
]
|
|
|
|
|
|
|
|
alias_target('libvirt-pot-dep', potfiles_dep)
|