summaryrefslogtreecommitdiff
path: root/scp2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-04-25 17:26:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-04-26 07:45:53 +0200
commitb04ec537b292c57db8ef06e138493bcf20e55282 (patch)
treee9806c2e26e64735eb4addd0e4e285e815f9c392 /scp2
parentdf2fc7c3e58758fc87de70d462be5d2eb26eea4a (diff)
DIR_ISOLANGUAGE_ALL_LANG_LPROJ is apparently unused
...since dfc4ace4278d6c9e77ec150f947a1a6ee454d70d "fdo#62442: Move the InfoPlist.strings files into the app from langpacks" Change-Id: Ia9913f3edcce1e9a9156de54a43d24766f8682ae Reviewed-on: https://gerrit.libreoffice.org/71316 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'scp2')
-rw-r--r--scp2/macros/macro.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/scp2/macros/macro.pl b/scp2/macros/macro.pl
index 7f54298f9a3e..20f456917937 100644
--- a/scp2/macros/macro.pl
+++ b/scp2/macros/macro.pl
@@ -47,7 +47,6 @@ write_ALL_LANG();
write_OTHER_LANGS();
write_DIR_ISOLANGUAGE_ALL_LANG_2();
write_DIR_ISOLANGUAGE_ALL_LANG();
-write_DIR_ISOLANGUAGE_ALL_LANG_LPROJ();
write_EXTRA_ALL_LANG();
write_EXTRA_ALL_LANG_BUT_EN_US();
write_MO_ALL_LANG_EXCEPT_EN_US_AND_QTZ();
@@ -130,18 +129,6 @@ sub write_DIR_ISOLANGUAGE_ALL_LANG
print OUTFILE "\n\n";
}
-sub write_DIR_ISOLANGUAGE_ALL_LANG_LPROJ
-{
- print OUTFILE "#define DIR_ISOLANGUAGE_ALL_LANG_LPROJ ";
- foreach $lang (@completelangiso) {
- 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";
-}
-
sub write_EXTRA_ALL_LANG
{
print OUTFILE "#define EXTRA_ALL_LANG(name,ext) ";