firefox-multilocale-chrome.patch
author Wolfgang Rosenauer <wr@rosenauer.org>
Fri, 19 Jun 2015 08:22:26 +0200
branchfirefox38
changeset 860 431252700c45
parent 837 a1f740acf68e
child 868 284da266ec46
permissions -rw-r--r--
update ESR flavour to latest main package
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>
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
     4
# Parent  c0a406c7a6cc5edc8fb34549428866ff39ad878f
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
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    10
@@ -378,16 +378,20 @@ pref("browser.helperApps.deleteTempFileO
686
ab25aac2aa83 Firefox 26.0b5 update
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 653
diff changeset
    11
 #endif
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    12
 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    13
 // search engines URL
289
3c0dff7ca9c4 Update to version 6.0b1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 251
diff changeset
    14
 pref("browser.search.searchEnginesURL",      "https://addons.mozilla.org/%LOCALE%/firefox/search-engines/");
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
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    34
@@ -66,27 +66,30 @@ STUB_HOOK = $(NSINSTALL) -D '$(_ABS_DIST
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    35
     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
    36
     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
    37
     $(NULL)
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    38
 endif
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    39
 
691
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    40
 ifeq ($(MOZ_WIDGET_TOOLKIT) $(DIST_SUBDIR),windows metro)
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    41
 SEARCHPLUGINS_NAMES = $(shell cat $(call MERGE_FILE,/searchplugins/metrolist.txt))
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    42
 else
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
691
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    47
 endif
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    48
 SEARCHPLUGINS_PATH := $(FINAL_TARGET)/searchplugins
807
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    49
 # metro build call a searchplugins target for search engine plugins
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    50
 .PHONY: searchplugins
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    51
 SEARCHPLUGINS_TARGET := libs searchplugins
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    52
-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
    53
+#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
    54
+SEARCHPLUGINS := $(addsuffix .xml,$(SEARCHPLUGINS_NAMES))
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    55
 # Some locale-specific search plugins may have preprocessor directives, but the
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    56
 # default en-US ones do not.
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    57
 SEARCHPLUGINS_FLAGS := --silence-missing-directive-warnings
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    58
-PP_TARGETS += SEARCHPLUGINS
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    59
+#PP_TARGETS += SEARCHPLUGINS
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    60
 
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    61
 # 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
    62
 # be included in langpack xpis.
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    63
 ifdef MOZ_METRO
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    64
 # metro build, include both app folders
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    65
 DIST_SUBDIRS = browser metro
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    66
 else
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    67
 DIST_SUBDIRS = $(DIST_SUBDIR)
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
    68
@@ -120,16 +123,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
    69
 libs:: $(FINAL_TARGET)/defaults/profile/bookmarks.html ;
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    70
 
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    71
 libs:: $(addprefix generic/profile/,$(PROFILE_FILES))
f54c68340963 Aurora 35.0 (20141115) uplift
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 805
diff changeset
    72
 	$(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
    73
 
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    74
 libs:: $(call MERGE_FILES,$(addprefix profile/chrome/,$(PROFILE_CHROME)))
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    75
 	$(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
    76
 
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    77
+tmp-search.jar.mn::
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    78
+	printf "$(AB_CD).jar:" > $@
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    79
+	printf "$(foreach plugin,$(SEARCHPLUGINS), \n locale/browser/searchplugins/$(plugin) ($(plugin)))" >> $@
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    80
+	@echo >> $@
409
ff30593d2daa switch to 12.0dev
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 289
diff changeset
    81
+
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    82
+searchplugins-jar:: $(SEARCHPLUGINS)
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    83
+	for SEARCHPLUGIN in $^; do \
709
7ce157f366c9 fix patch to use new preprocessor
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 703
diff changeset
    84
+	$(call py_action,preprocessor,$(DEFINES) $(ACDEFINES) \
7ce157f366c9 fix patch to use new preprocessor
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 703
diff changeset
    85
+	$$SEARCHPLUGIN > $$SEARCHPLUGIN-new) ; \
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    86
+	mv $$SEARCHPLUGIN-new $$SEARCHPLUGIN ; \
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    87
+	done
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    88
+
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    89
+searchplugins-jar:: tmp-search.jar.mn
691
18c2dc922e51 update to Firefox 27.0b2
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 686
diff changeset
    90
+	$(call py_action,jar_maker,\
703
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    91
+	$(QUIET) -j $(FINAL_TARGET)/chrome \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    92
+	-s $(topsrcdir)/$(relativesrcdir)/en-US/searchplugins \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    93
+	-s $(LOCALE_SRCDIR)/searchplugins \
c4aab80e472f Firefox 28.0beta1
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 691
diff changeset
    94
+	$(MAKE_JARS_FLAGS) tmp-search.jar.mn)
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    95
+
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    96
+libs:: searchplugins-jar
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    97
+
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
    98
+GARBAGE += tmp-search.jar.mn
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
    99
+
198
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   100
 libs-%:
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   101
 	$(NSINSTALL) -D $(DIST)/install
606
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
   102
 	@$(MAKE) -C ../../toolkit/locales libs-$*
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
   103
 	@$(MAKE) -C ../../services/sync/locales AB_CD=$* XPI_NAME=locale-$*
653
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   104
 ifdef MOZ_WEBAPP_RUNTIME
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   105
 	@$(MAKE) -C ../../webapprt/locales AB_CD=$* XPI_NAME=locale-$*
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   106
 endif
606
9d39369e1b4c FF19beta cycle preparation (does not build yet)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 541
diff changeset
   107
 	@$(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
   108
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
   109
--- a/browser/locales/jar.mn
447791e42c9b Package searchplugins into langpack chrome and load from there
Wolfgang Rosenauer <wr@rosenauer.org>
parents:
diff changeset
   110
+++ b/browser/locales/jar.mn
837
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 817
diff changeset
   111
@@ -146,14 +146,15 @@
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   112
     locale/browser/syncQuota.properties         (%chrome/browser/syncQuota.properties)
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   113
 #endif
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   114
 % 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
   115
     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
   116
 # the following files are browser-specific overrides
541
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   117
     locale/browser/netError.dtd                (%chrome/overrides/netError.dtd)
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   118
     locale/browser/appstrings.properties       (%chrome/overrides/appstrings.properties)
830e50bbfc79 working Aurora 17.0 build
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 515
diff changeset
   119
     locale/browser/downloads/settingsChange.dtd  (%chrome/overrides/settingsChange.dtd)
642
b30da62025bc 21 is now beta
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 606
diff changeset
   120
+    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
   121
 % 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
   122
 % 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
   123
 % 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
   124
 % locale pdf.js @AB_CD@ %locale/pdfviewer/
a9baaad57fa4 refreshed patches and removed obsolete ones
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 462
diff changeset
   125
     locale/pdfviewer/viewer.properties             (%pdfviewer/viewer.properties)
653
38c67b6b2f37 Aurora 23 (20130616)
Wolfgang Rosenauer <wr@rosenauer.org>
parents: 650
diff changeset
   126
     locale/pdfviewer/chrome.properties             (%pdfviewer/chrome.properties)