summaryrefslogtreecommitdiff
path: root/libs/ardour
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/ardour
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/ardour')
-rw-r--r--libs/ardour/wscript17
1 files changed, 15 insertions, 2 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index f6d7a13d06..bfd9eb8474 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -21,8 +21,9 @@ LIBARDOUR_LIB_VERSION = '3.0.0'
CURRENT_SESSION_FILE_VERSION = 3000
# Variables for 'waf dist'
-APPNAME = 'libardour'
+APPNAME = 'libardour3'
VERSION = LIBARDOUR_VERSION
+I18N_PACKAGE = 'libardour3'
# Mandatory variables
top = '.'
@@ -454,5 +455,17 @@ def shutdown():
autowaf.shutdown()
def i18n(bld):
- autowaf.build_i18n(bld, top, 'libs/ardour', APPNAME, libardour_sources,
+ autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
+ 'Paul Davis')
+
+def i18n_pot(bld):
+ autowaf.build_i18n(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
+ 'Paul Davis')
+
+def i18n_po(bld):
+ autowaf.build_i18n_po(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
+ 'Paul Davis')
+
+def i18n_mo(bld):
+ autowaf.build_i18n_mo(bld, top, 'libs/ardour', I18N_PACKAGE, libardour_sources,
'Paul Davis')