diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index 5750216d..f7a4bc5f 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -652,9 +652,9 @@ var g_mappings = [/*{{{*/ ["I"], "Disable vimperator keys", "Starts an 'ignorekeys' mode, where all keys except <Esc> are passed to the next event handler.
"+ - "This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore." + + "This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.
" + "To exit this mode, press <Esc>. If you also need to pass <Esc>"+ - "<Esc> in this mode to the webpage, prepend it with <C-v>.", + "in this mode to the webpage, prepend it with <C-v>.", function(count) { addMode(MODE_ESCAPE_ALL_KEYS); echo("Vimperator keys disabled. Press to reenable.");} ], [ diff --git a/chrome/content/vimperator/settings.js b/chrome/content/vimperator/settings.js index 05fd32ed..d1e7afad 100644 --- a/chrome/content/vimperator/settings.js +++ b/chrome/content/vimperator/settings.js @@ -88,7 +88,7 @@ var g_settings = [/*{{{*/ [ ["focusedhintstyle", "fhs"], "CSS specification of focused hints appearance", - "The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.", + null, function(value) { set_pref("focusedhintstyle", value); }, function() { return get_pref("focusedhintstyle"); }, "string", @@ -132,7 +132,7 @@ var g_settings = [/*{{{*/ [ ["hintstyle", "hs"], "CSS specification of unfocused hints appearance", - "The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.", + null, function(value) { set_pref("hintstyle", value); }, function() { return get_pref("hintstyle"); }, "string", diff --git a/chrome/content/vimperator/vimperator.xul b/chrome/content/vimperator/vimperator.xul index b922438d..47055db8 100644 --- a/chrome/content/vimperator/vimperator.xul +++ b/chrome/content/vimperator/vimperator.xul @@ -12,9 +12,7 @@ WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. -The Initial Developer of the Original Code is Shawn Betts. -Portions created by the Initial Developer are Copyright (C) 2004 -by the Initial Developer. All Rights Reserved. +(c) 2006-2007 Martin Stubenschrott Alternatively, the contents of this file may be used under the terms of either the GNU General Public License Version 2 or later (the "GPL"), or @@ -46,8 +44,7 @@ the terms of any one of the MPL, the GPL or the LGPL.