diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-03-21 17:33:51 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-03-21 17:33:51 +1100 |
commit | 9ae921773d44cca123f1d4afc2522993a615659f (patch) | |
tree | e0affaf7e0a87f648bf3c75fee0d6c3273d7b000 /common/content/tabs.js | |
parent | be367b9ca19a791fc4f00d2bb5b11cb29921d504 (diff) | |
download | pentadactyl-9ae921773d44cca123f1d4afc2522993a615659f.tar.gz |
More ad hoc i18n work.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r-- | common/content/tabs.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index 16e5c992..f2665189 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -1010,7 +1010,7 @@ var Tabs = Module("tabs", { tabs.tabStyle.enabled = true; else { prefs.safeSet("browser.tabs.autoHide", value === "multitab", - "See 'showtabline' option."); + _("option.showtabline.safeSet")); tabs.tabStyle.enabled = false; } if (value !== "multitab" || !dactyl.has("Gecko2")) @@ -1053,7 +1053,7 @@ var Tabs = Module("tabs", { if (group[2]) prefs.safeSet("browser.tabs." + group[2], !(valueSet["all"] ^ valueSet[group[0]]), - "See the 'activate' option"); + _("option.activate.safeSet")); return newValues; } }); @@ -1091,9 +1091,9 @@ var Tabs = Module("tabs", { } prefs.safeSet("browser.link.open_newwindow", open, - "See 'popups' option."); + _("option.popups.safeSet")); prefs.safeSet("browser.link.open_newwindow.restriction", restriction, - "See 'popups' option."); + _("option.popups.safeSet")); return values; }, values: { |