Recent versions of Gettext are able to translate several formats that are used in GNOME applications. This patch migrates from Intltool to Gettext by using meson's i18n features. https://bugzilla.gnome.org/show_bug.cgi?id=787588
10 lines
218 B
Meson
10 lines
218 B
Meson
appdata = 'gnome-control-center.appdata.xml'
|
|
|
|
i18n.merge_file(
|
|
appdata,
|
|
input: appdata + '.in',
|
|
output: appdata,
|
|
po_dir: po_dir,
|
|
install: true,
|
|
install_dir: join_paths(control_center_datadir, 'metainfo')
|
|
)
|