From 88bfc44ca2f348f665b8673491cdccced4bc03ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Luc=20Peuri=C3=A8re?= Date: Tue, 27 Jun 2006 21:48:54 +0000 Subject: [PATCH] some of the .po file had empty msgids and multilline comments from generator which were making garbage of some sub-menus. generated fresh .mo files added a missing copy in appit for Os X --- bin/.blender/.Blanguages | 2 +- tools/Blender.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/.blender/.Blanguages b/bin/.blender/.Blanguages index 2ed9024dc86..76115a0b189 100644 --- a/bin/.blender/.Blanguages +++ b/bin/.blender/.Blanguages @@ -5,7 +5,7 @@ Italian:it_IT German:de_DE Finnish:fi_FI Swedish:sv_SE -French:fr_FR.UTF-8 +French:fr_FR Spanish:es_ES Catalan:ca_ES Czech:cs_CZ diff --git a/tools/Blender.py b/tools/Blender.py index d896775dfb8..a5a0101d486 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -309,6 +309,8 @@ def AppIt(target=None, source=None, env=None): commands.getoutput(cmd) cmd = 'cp -R %s/bin/.blender/locale %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary) commands.getoutput(cmd) + cmd = 'cp %s/bin/.blender/.Blanguages %s/%s.app/Contents/Resources/'%(bldroot,builddir,binary) + commands.getoutput(cmd) cmd = 'cp -R %s/release/scripts %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary) commands.getoutput(cmd) cmd = 'chmod +x %s/%s.app/Contents/MacOS/%s'%(builddir,binary, binary)