mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
bug 271097 - add UI to enable turning off searchplugin auto-update, patch by O. Atsushi (torisugari@gmail.com), r+a=me
This commit is contained in:
parent
b4a44d8d7c
commit
78c3248bef
@ -217,6 +217,9 @@ pref("browser.search.order.Yahoo", "chrome://branding/content/searchc
|
||||
// (note: must be a string representation of a float or it'll default to 0.0)
|
||||
pref("browser.search.basic.min_ver", "0.0");
|
||||
|
||||
// send ping to the server to update
|
||||
pref("browser.search.update", true);
|
||||
|
||||
pref("browser.history.grouping", "day");
|
||||
pref("browser.sessionhistory.max_entries", 50);
|
||||
pref("browser.sessionhistory.max_viewers", 3);
|
||||
|
@ -79,6 +79,7 @@
|
||||
<preference id="app.update.disable_button.showUpdateHistory"
|
||||
name="app.update.disable_button.showUpdateHistory"
|
||||
type="bool"/>
|
||||
<preference id="browser.search.update" name="browser.search.update" type="bool"/>
|
||||
|
||||
<preference id="security.enable_ssl2" name="security.enable_ssl2" type="bool"/>
|
||||
<preference id="security.enable_ssl3" name="security.enable_ssl3" type="bool"/>
|
||||
@ -161,6 +162,12 @@
|
||||
label="&checkNow.label;" accesskey="&extensionsCheckNow.accesskey;"
|
||||
oncommand="gAdvancedPane.checkForAddonUpdates();"/>
|
||||
</hbox>
|
||||
<hbox>
|
||||
<checkbox id="enableSearchUpdate"
|
||||
label="&enableSearchUpdate.label;"
|
||||
accesskey="&enableSearchUpdate.accesskey;"
|
||||
preference="browser.search.update"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
<separator/>
|
||||
<label id="updateModeLabel" control="updateMode">&whenUpdatesFound.label;</label>
|
||||
|
@ -19,6 +19,8 @@
|
||||
<!ENTITY enableAppUpdate.accesskey "F">
|
||||
<!ENTITY enableExtensionUpdate.label "Installed Extensions and Themes">
|
||||
<!ENTITY enableExtensionUpdate.accesskey "x">
|
||||
<!ENTITY enableSearchUpdate.label "Search Engines">
|
||||
<!ENTITY enableSearchUpdate.accesskey "h">
|
||||
<!ENTITY checkNow.label "Check Now...">
|
||||
<!ENTITY appCheckNow.accesskey "N">
|
||||
<!ENTITY extensionsCheckNow.accesskey "o">
|
||||
|
Loading…
Reference in New Issue
Block a user