diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-09-29 07:42:25 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-09-29 07:42:25 +0000 |
commit | d56f809657af95c6e17ccb8a3b5bf82e3f2333f5 (patch) | |
tree | 1589375e7bd67d79e79945a5ca84796821833fa8 /scp2/macros | |
parent | 8e70905424d91c35644baea37fc4670b48d192a8 (diff) |
CWS-TOOLING: integrate CWS native199_DEV300
Diffstat (limited to 'scp2/macros')
-rw-r--r-- | scp2/macros/macro.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scp2/macros/macro.pl b/scp2/macros/macro.pl index 2aa1297f3bd3..53bf047d9e98 100644 --- a/scp2/macros/macro.pl +++ b/scp2/macros/macro.pl @@ -118,7 +118,9 @@ sub write_DIR_ISOLANGUAGE_ALL_LANG_LPROJ { print OUTFILE "#define DIR_ISOLANGUAGE_ALL_LANG_LPROJ "; foreach $lang (@completelangiso) { - print OUTFILE "\\\n\tDosName ($lang) = \"$lang.lproj\""; + my $speciallang = $lang; + if ( $speciallang eq "en-US" ) { $speciallang = "en"; } + print OUTFILE "\\\n\tDosName ($lang) = \"$speciallang.lproj\""; print OUTFILE "; " if ( $lang ne $completelangiso[$#completelangiso]); } print OUTFILE "\n\n"; |