mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 11:24:11 +01:00
Fix 'popups' safeSet message.
This commit is contained in:
@@ -1470,7 +1470,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
|
||||
{
|
||||
setter: function (value) {
|
||||
prefs.safeSet("accessibility.typeaheadfind.enablesound", !value,
|
||||
_("option.visualbell.safeSet"));
|
||||
_("option.safeSet", "visualbell"));
|
||||
return value;
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1209,7 +1209,7 @@ var Tabs = Module("tabs", {
|
||||
tabs.tabStyle.enabled = true;
|
||||
else {
|
||||
prefs.safeSet("browser.tabs.autoHide", value === "multitab",
|
||||
_("option.showtabline.safeSet"));
|
||||
_("option.safeSet", "showtabline"));
|
||||
tabs.tabStyle.enabled = false;
|
||||
}
|
||||
|
||||
@@ -1257,7 +1257,7 @@ var Tabs = Module("tabs", {
|
||||
if (group[2])
|
||||
prefs.safeSet("browser.tabs." + group[2],
|
||||
!(valueSet["all"] ^ valueSet[group[0]]),
|
||||
_("option.activate.safeSet"));
|
||||
_("option.safeSet", "activate"));
|
||||
return newValues;
|
||||
}
|
||||
});
|
||||
@@ -1292,9 +1292,9 @@ var Tabs = Module("tabs", {
|
||||
}
|
||||
|
||||
prefs.safeSet("browser.link.open_newwindow", open,
|
||||
_("option.popups.safeSet"));
|
||||
_("option.safeSet", "popups"));
|
||||
prefs.safeSet("browser.link.open_newwindow.restriction", restriction,
|
||||
_("option.popups.safeSet"));
|
||||
_("option.safeSet", "popups"));
|
||||
return values;
|
||||
},
|
||||
values: {
|
||||
|
||||
@@ -271,14 +271,12 @@ option.defaultValue = Default Value
|
||||
|
||||
option.bufferLocal = buffer local
|
||||
|
||||
option.activate.safeSet = See the 'activate' option.
|
||||
option.safeSet = See the '%S' option.
|
||||
option.guioptions.safeSet = See 'guioptions' scrollbar flags.
|
||||
|
||||
option.hintkeys.duplicate = Duplicate keys not allowed
|
||||
# The string 'passkeys' must appear exactly, including U0027 apostrophes
|
||||
option.passkeys.passedBy = passed by 'passkeys'
|
||||
option.popups.safeSet = See the 'activate' option.
|
||||
option.showtabline.safeSet = See 'showtabline' option.
|
||||
option.visualbell.safeSet = See 'visualbell' option.
|
||||
|
||||
pageinfo.s.ownerUnverified = %S (unverified)
|
||||
|
||||
|
||||
@@ -1272,7 +1272,8 @@ var DOM = Class("DOM", {
|
||||
|
||||
types: Class.Memoize(function () iter(
|
||||
{
|
||||
Mouse: "click mousedown mouseout mouseover mouseup " +
|
||||
Mouse: "click mousedown mouseout mouseover mouseup dblclick " +
|
||||
"hover " +
|
||||
"popupshowing popupshown popuphiding popuphidden " +
|
||||
"contextmenu",
|
||||
Key: "keydown keypress keyup",
|
||||
|
||||
Reference in New Issue
Block a user