summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-21 21:27:30 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-21 21:27:30 +0000
commit6567c1ba0a4a5c6a3f3b792c6ceb26e58ffb7ab4 (patch)
treeb4f0ea7291c4ec426c569c5b3d80385060ff5e98 /libs/gtkmm2ext/wscript
parent3a4848d055927fea4e9497d05455d62d30dcb094 (diff)
new i18n targets (to be explained in TRANSLATORS)
git-svn-id: svn://localhost/ardour2/branches/3.0@10743 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext/wscript')
-rw-r--r--libs/gtkmm2ext/wscript15
1 files changed, 14 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/wscript b/libs/gtkmm2ext/wscript
index 4412a9273f..cc3f3de706 100644
--- a/libs/gtkmm2ext/wscript
+++ b/libs/gtkmm2ext/wscript
@@ -17,6 +17,7 @@ GTKMM2EXT_LIB_VERSION = '0.8.3'
# Variables for 'waf dist'
APPNAME = 'gtkmm2ext'
VERSION = GTKMM2EXT_VERSION
+I18N_PACKAGE = 'gtkmm2ext3'
gtkmm2ext_sources = [
'actions.cc',
@@ -106,7 +107,19 @@ def build(bld):
mo)
def i18n(bld):
- autowaf.build_i18n(bld, top, 'libs/gtkmm2ext', APPNAME, gtkmm2ext_sources,
+ autowaf.build_i18n(bld, top, 'libs/gtkmm2ext', I18N_PACKAGE, gtkmm2ext_sources,
+ 'Paul Davis')
+
+def i18n_pot(bld):
+ autowaf.build_i18n_pot(bld, top, 'libs/gtkmm2ext', I18N_PACKAGE, gtkmm2ext_sources,
+ 'Paul Davis')
+
+def i18n_po(bld):
+ autowaf.build_i18n_po(bld, top, 'libs/gtkmm2ext', I18N_PACKAGE, gtkmm2ext_sources,
+ 'Paul Davis')
+
+def i18n_mo(bld):
+ autowaf.build_i18n_mo(bld, top, 'libs/gtkmm2ext', I18N_PACKAGE, gtkmm2ext_sources,
'Paul Davis')
def shutdown():