13
0

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
This commit is contained in:
Paul Davis 2011-11-21 23:20:31 +00:00
parent e133709def
commit 4821026841
3 changed files with 3 additions and 3 deletions

View File

@ -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):

View File

@ -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'):

View File

@ -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):