summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-21 23:20:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-21 23:20:31 +0000
commit48210268415ff5d7afe6b28c01a097129f0aa3c7 (patch)
tree896a9f234871a072e62c921753d2a7bbd2519c96
parente133709def199e8a28e34abc56791b05d6079a90 (diff)
more spreading of I18N_PACKAGE as the name for .mo files
git-svn-id: svn://localhost/ardour2/branches/3.0@10752 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/wscript2
-rw-r--r--libs/ardour/wscript2
-rw-r--r--libs/gtkmm2ext/wscript2
3 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index 81e14c7f41..596776646c 100644
--- a/gtk2_ardour/wscript
+++ b/gtk2_ardour/wscript
@@ -634,7 +634,7 @@ def build(bld):
for mo in mo_files:
lang = os.path.basename(mo.srcpath()).replace('.mo', '')
bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
- lang, 'LC_MESSAGES', APPNAME + '.mo'),
+ lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
mo)
def i18n(bld):
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 9ffed559f1..7d7b2d3999 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -411,7 +411,7 @@ def build(bld):
for mo in mo_files:
lang = os.path.basename(mo.srcpath()).replace('.mo', '')
bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
- lang, 'LC_MESSAGES', 'libardour3.mo'),
+ lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
mo)
if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):
diff --git a/libs/gtkmm2ext/wscript b/libs/gtkmm2ext/wscript
index e454429fa8..3c65508eb8 100644
--- a/libs/gtkmm2ext/wscript
+++ b/libs/gtkmm2ext/wscript
@@ -103,7 +103,7 @@ def build(bld):
for mo in mo_files:
lang = os.path.basename(mo.srcpath()).replace('.mo', '')
bld.install_as(os.path.join(bld.env['PREFIX'], 'share', 'locale',
- lang, 'LC_MESSAGES', 'libgtkmm2ext.mo'),
+ lang, 'LC_MESSAGES', I18N_PACKAGE + '.mo'),
mo)
def i18n(bld):