From: Tim-Philipp Müller Date: Sat, 24 Sep 2016 08:08:00 +0000 (+0100) Subject: meson: hook up translations X-Git-Tag: 1.10.4~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8150a742ee9f6799058d0dffbb82a53a4b285b52;p=platform%2Fupstream%2Fgst-plugins-ugly.git meson: hook up translations --- 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)