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:
mconnor%steelgryphon.com 2005-08-12 03:06:39 +00:00
Родитель b4a44d8d7c
Коммит 78c3248bef
3 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -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">