diff --git a/mozilla/extensions/help/resources/locale/en-US/cs_nav_prefs_navigator.xhtml b/mozilla/extensions/help/resources/locale/en-US/cs_nav_prefs_navigator.xhtml index 94dcff367ba..2c9a50367fe 100644 --- a/mozilla/extensions/help/resources/locale/en-US/cs_nav_prefs_navigator.xhtml +++ b/mozilla/extensions/help/resources/locale/en-US/cs_nav_prefs_navigator.xhtml @@ -177,7 +177,8 @@

The Languages preferences panel allows you to choose the languages and - character encoding for displaying web pages:

+ character encoding for displaying web pages and choose if and how your typing + is spell checked:

+
  • Spelling: + +
  • [Return to beginning of section]

    diff --git a/mozilla/suite/browser/browser-prefs.js b/mozilla/suite/browser/browser-prefs.js index 091cba75593..00c68b519fd 100644 --- a/mozilla/suite/browser/browser-prefs.js +++ b/mozilla/suite/browser/browser-prefs.js @@ -190,6 +190,13 @@ pref("news.directory", ""); pref("browser.editor.disabled", false); pref("spellchecker.dictionary", ""); +// this will automatically enable inline spellchecking (if it is available) for +// editable elements in HTML +// 0 = spellcheck nothing +// 1 = check multi-line controls [default] +// 2 = check multi/single line controls +pref("layout.spellcheckDefault", 1); + // App-specific update preferences // Whether or not app updates are enabled - false initally for SeaMonkey diff --git a/mozilla/suite/common/contentAreaContextOverlay.xul b/mozilla/suite/common/contentAreaContextOverlay.xul index 67f9f0253ce..c7b8347e1f5 100644 --- a/mozilla/suite/common/contentAreaContextOverlay.xul +++ b/mozilla/suite/common/contentAreaContextOverlay.xul @@ -50,6 +50,7 @@ // Global variable that caches the default search engine info var gDefaultEngine = null; +