firefox-multilocale-chrome.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Sat, 18 Jul 2015 15:01:59 +0200
branchfirefox40
changeset 868 284da266ec46
parent 837 a1f740acf68e
permissions -rw-r--r--
40beta rebase
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     1
# HG changeset patch
817
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 816
diff changeset
     2
# Parent 16846914f968944f991c8b12fdc38ce8fc099d73
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     3
# User Wolfgang Rosenauer <wr@rosenauer.org>
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
     4
# Parent  adcf975f1f5a796da0b1926a67beba003fd08b6b
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     5
Add searchplugins to chrome packaging for proper localization
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     6
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     7
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     8
--- a/browser/app/profile/firefox.js
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
     9
+++ b/browser/app/profile/firefox.js
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    10
@@ -389,16 +389,20 @@ pref("browser.search.searchEnginesURL", 
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    11
 
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    12
 // Tell the search service to load search plugins from the locale JAR
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    13
 pref("browser.search.loadFromJars", true);
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    14
 pref("browser.search.jarURIs", "chrome://browser/locale/searchplugins/");
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    15
 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    16
 // pointer to the default engine name
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    17
 pref("browser.search.defaultenginename",      "chrome://browser-region/locale/region.properties");
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    18
 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    19
+// Tell the search service to load search plugins from the locale JAR
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    20
+pref("browser.search.loadFromJars", true);
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    21
+pref("browser.search.jarURIs", "chrome://browser/locale/searchplugins/");
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    22
+
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    23
 // Ordering of Search Engines in the Engine list. 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    24
 pref("browser.search.order.1",                "chrome://browser-region/locale/region.properties");
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    25
 pref("browser.search.order.2",                "chrome://browser-region/locale/region.properties");
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    26
 pref("browser.search.order.3",                "chrome://browser-region/locale/region.properties");
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    27
 
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    28
 // Market-specific search defaults (US market only)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    29
 pref("browser.search.geoSpecificDefaults", true);
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    30
 pref("browser.search.defaultenginename.US",      "data:text/plain,browser.search.defaultenginename.US=Yahoo");
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    31
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    32
--- a/browser/locales/Makefile.in
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    33
+++ b/browser/locales/Makefile.in
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    34
@@ -63,24 +63,27 @@ UNINSTALLER_PACKAGE_HOOK = $(RM) -r $(ST
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    35
 
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    36
 STUB_HOOK = $(NSINSTALL) -D '$(_ABS_DIST)/$(PKG_INST_PATH)'; \
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    37
     $(RM) '$(_ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    38
     cp ../installer/windows/l10ngen/stub.exe '$(_ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    39
     chmod 0755 '$(_ABS_DIST)/$(PKG_INST_PATH)$(PKG_STUB_BASENAME).exe'; \
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    40
     $(NULL)
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    41
 endif
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    42
 
805
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 804
diff changeset
    43
-SEARCHPLUGINS_NAMES = $(shell cat $(call MERGE_FILE,/searchplugins/list.txt)) ddg
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    44
+SEARCHPLUGINS_NAMES = $(shell cat \
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    45
+    $(firstword $(wildcard $(LOCALE_SRCDIR)/searchplugins/list.txt) \
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    46
+    @srcdir@/en-US/searchplugins/list.txt ) ) ddg
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    47
 SEARCHPLUGINS_PATH := .deps/generated_$(AB_CD)
807
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    48
 SEARCHPLUGINS_TARGET := libs searchplugins
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    49
-SEARCHPLUGINS := $(foreach plugin,$(addsuffix .xml,$(SEARCHPLUGINS_NAMES)),$(or $(wildcard $(call EN_US_OR_L10N_FILE,searchplugins/$(plugin))),$(info Missing searchplugin: $(plugin))))
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    50
+#SEARCHPLUGINS := $(foreach plugin,$(addsuffix .xml,$(SEARCHPLUGINS_NAMES)),$(or $(wildcard $(call EN_US_OR_L10N_FILE,searchplugins/$(plugin))),$(info Missing searchplugin: $(plugin))))
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    51
+SEARCHPLUGINS := $(addsuffix .xml,$(SEARCHPLUGINS_NAMES))
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    52
 # Some locale-specific search plugins may have preprocessor directives, but the
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    53
 # default en-US ones do not.
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    54
 SEARCHPLUGINS_FLAGS := --silence-missing-directive-warnings
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    55
-PP_TARGETS += SEARCHPLUGINS
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    56
+#PP_TARGETS += SEARCHPLUGINS
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    57
 
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    58
 list-txt = $(SEARCHPLUGINS_PATH)/list.txt
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    59
 GARBAGE += $(list-txt)
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    60
 
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    61
 libs:: searchplugins
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    62
 
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    63
 # Required for l10n.mk - defines a list of app sub dirs that should
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    64
 # be included in langpack xpis.
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
    65
@@ -119,16 +122,39 @@ NO_JA_JP_MAC_AB_CD := $(if $(filter ja-J
807
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    66
 libs:: $(FINAL_TARGET)/defaults/profile/bookmarks.html ;
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    67
 
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    68
 libs:: $(addprefix generic/profile/,$(PROFILE_FILES))
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    69
 	$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    70
 
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    71
 libs:: $(call MERGE_FILES,$(addprefix profile/chrome/,$(PROFILE_CHROME)))
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    72
 	$(SYSINSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/defaults/profile/chrome
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    73
 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    74
+tmp-search.jar.mn::
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    75
+	printf "$(AB_CD).jar:" > $@
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    76
+	printf "$(foreach plugin,$(SEARCHPLUGINS), \n locale/browser/searchplugins/$(plugin) ($(plugin)))" >> $@
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    77
+	@echo >> $@
409
ff30593d2daa switch to 12.0dev
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 289
diff changeset
    78
+
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    79
+searchplugins-jar:: $(SEARCHPLUGINS)
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    80
+	for SEARCHPLUGIN in $^; do \
709
7ce157f366c9 fix patch to use new preprocessor
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 703
diff changeset
    81
+	$(call py_action,preprocessor,$(DEFINES) $(ACDEFINES) \
7ce157f366c9 fix patch to use new preprocessor
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 703
diff changeset
    82
+	$$SEARCHPLUGIN > $$SEARCHPLUGIN-new) ; \
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    83
+	mv $$SEARCHPLUGIN-new $$SEARCHPLUGIN ; \
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    84
+	done
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    85
+
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    86
+searchplugins-jar:: tmp-search.jar.mn
691
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    87
+	$(call py_action,jar_maker,\
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    88
+	$(QUIET) -j $(FINAL_TARGET)/chrome \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    89
+	-s $(topsrcdir)/$(relativesrcdir)/en-US/searchplugins \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    90
+	-s $(LOCALE_SRCDIR)/searchplugins \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    91
+	$(MAKE_JARS_FLAGS) tmp-search.jar.mn)
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    92
+
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    93
+libs:: searchplugins-jar
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    94
+
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    95
+GARBAGE += tmp-search.jar.mn
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    96
+
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    97
 libs-%:
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    98
 	$(NSINSTALL) -D $(DIST)/install
606
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
    99
 	@$(MAKE) -C ../../toolkit/locales libs-$*
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
   100
 	@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
653
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   101
 ifdef MOZ_WEBAPP_RUNTIME
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   102
 	@$(MAKE) -C ../../webapprt/locales AB_CD=$* XPI_NAME=locale-$*
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   103
 endif
606
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
   104
 	@$(MAKE) -C ../../extensions/spellcheck/locales AB_CD=$* XPI_NAME=locale-$*
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   105
diff --git a/browser/locales/jar.mn b/browser/locales/jar.mn
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   106
--- a/browser/locales/jar.mn
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   107
+++ b/browser/locales/jar.mn
868
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
   108
@@ -152,14 +152,15 @@
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
   109
     locale/browser/searchplugins/list.txt       (.deps/generated_@AB_CD@/list.txt)
284da266ec46 40beta rebase
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 837
diff changeset
   110
     locale/browser/searchplugins/               (.deps/generated_@AB_CD@/*.xml)
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   111
 % locale browser-region @AB_CD@ %locale/browser-region/
220
2538fd6a51be update to 2.0b10/4.0b10
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 198
diff changeset
   112
     locale/browser-region/region.properties        (%chrome/browser-region/region.properties)
2538fd6a51be update to 2.0b10/4.0b10
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 198
diff changeset
   113
 # the following files are browser-specific overrides
541
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   114
     locale/browser/netError.dtd                (%chrome/overrides/netError.dtd)
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   115
     locale/browser/appstrings.properties       (%chrome/overrides/appstrings.properties)
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   116
     locale/browser/downloads/settingsChange.dtd  (%chrome/overrides/settingsChange.dtd)
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   117
+    locale/browser/searchplugins/list.txt      (%searchplugins/list.txt)
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   118
 % override chrome://global/locale/netError.dtd chrome://browser/locale/netError.dtd
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   119
 % override chrome://global/locale/appstrings.properties chrome://browser/locale/appstrings.properties
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   120
 % override chrome://mozapps/locale/downloads/settingsChange.dtd chrome://browser/locale/downloads/settingsChange.dtd
467
a9baaad57fa4 refreshed patches and removed obsolete ones
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 462
diff changeset
   121
 % locale pdf.js @AB_CD@ %locale/pdfviewer/
a9baaad57fa4 refreshed patches and removed obsolete ones
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 462
diff changeset
   122
     locale/pdfviewer/viewer.properties             (%pdfviewer/viewer.properties)
653
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   123
     locale/pdfviewer/chrome.properties             (%pdfviewer/chrome.properties)