From 8150a742ee9f6799058d0dffbb82a53a4b285b52 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 24 Sep 2016 09:08:00 +0100 Subject: [PATCH] meson: hook up translations --- meson.build | 1 + po/meson.build | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 po/meson.build diff --git a/meson.build b/meson.build index 06611edf..5c5a1d02 100644 --- a/meson.build +++ b/meson.build @@ -137,3 +137,4 @@ libsinc = include_directories('gst-libs') subdir('gst') subdir('ext') subdir('tests') +subdir('po') diff --git a/po/meson.build b/po/meson.build new file mode 100644 index 00000000..0644277b --- /dev/null +++ b/po/meson.build @@ -0,0 +1,9 @@ +i18n = import('i18n') + +langs = [ 'af', 'az', 'bg', 'ca', 'cs', 'da', 'de', 'el', + 'en_GB', 'eo', 'es', 'eu', 'fi', 'fr', 'gl', 'hr', + 'hu', 'id', 'it', 'ja', 'lt', 'lv', 'ms', 'mt', + 'nb', 'nl', 'or', 'pl', 'pt_BR', 'ro', 'ru', 'sk', 'sl', + 'sq', 'sr', 'sv', 'tr', 'uk', 'vi', 'zh_CN' ] + +i18n.gettext('gst-plugins-ugly-1.0', languages : langs) -- 2.34.1