diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js
index fa32b3b5..764eb1d8 100644
--- a/chrome/content/vimperator/commands.js
+++ b/chrome/content/vimperator/commands.js
@@ -312,7 +312,7 @@ function Commands()//{{{
usage: ["bmd[el] [-T] {url}"],
short_help: "Delete a bookmark",
help: "Deletes all bookmarks which matches the url AND the specified tags. Use <Tab> key on a regular expression to complete the url which you want to delete.
" +
- "The following options WILL be interpretted in the future:
" +
+ "The following options WILL be interpreted in the future:
" +
" -T comma,separated,tag,list
",
completer: function(filter) { return get_bookmark_completions(filter); }
}
@@ -324,7 +324,7 @@ function Commands()//{{{
short_help: "Show bookmarks",
help: "Open the preview window at the bottom of the screen for all bookmarks which match the regexp either in the title or URL.
" +
"Close this window with :pclose or open entries with double click in the current tab or middle click in a new tab.
" +
- "The following options WILL be interpretted in the future:
" +
+ "The following options WILL be interpreted in the future:
" +
" -T comma,separated,tag,list
",
completer: function(filter) { return get_bookmark_completions(filter); }
}
@@ -360,7 +360,7 @@ function Commands()//{{{
{
usage: ["ec[ho]"],
short_help: "Display a string at the bottom of the window",
- help: "Echo all arguments of this command. Useful for showing informational messages.
Multiple lines WILL be seperated by \\n."
+ help: "Echo all arguments of this command. Useful for showing informational messages.
Multiple lines WILL be separated by \\n."
}
));
addDefaultCommand(new Command(["echoe[rr]"],
@@ -368,7 +368,7 @@ function Commands()//{{{
{
usage: ["echoe[rr]"],
short_help: "Display an error string at the bottom of the window",
- help: "Echo all arguments of this command highlighted in red. Useful for showing important messages.
Multiple lines WILL be seperated by \\n."
+ help: "Echo all arguments of this command highlighted in red. Useful for showing important messages.
Multiple lines WILL be separated by \\n."
}
));
addDefaultCommand(new Command(["exe[cute]"],
@@ -483,7 +483,7 @@ function Commands()//{{{
usage: ["o[pen] [url] [| url]"],
short_help: "Open one or more URLs in the current tab",
help: "Multiple URLs can be separated with the | character.
" +
- "Each |-separated token is analayzed and in this order:
"+
+ "Each |-separated token is analyzed and in this order:
"+
"
Vimperator is a free browser add-on for Firefox, which makes it look and behave like the Vim text editor.
' +
- 'It has similar key bindings, and you could call it a modal webbrowser, as key bindings differ according to which mode you are in.
Warning: To provide the most authentic Vim experience, the Firefox menubar and toolbar were hidden.
' +
'If you really need them, type: :set guioptions=mT to get it back.
\n' +
diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js
index af449702..b975db89 100644
--- a/chrome/content/vimperator/mappings.js
+++ b/chrome/content/vimperator/mappings.js
@@ -406,7 +406,7 @@ function Mappings()//{{{
{
short_help: "Scroll document to the left",
help: "Count is supported: 10h will move 10 times as much to the left.
" +
- "If the document cannot scroll more, a beep is emmited (unless 'beep' is turned off).",
+ "If the document cannot scroll more, a beep is emitted (unless 'beep' is turned off).",
flags: Mappings.flags.COUNT
}
));
@@ -414,7 +414,7 @@ function Mappings()//{{{
{
short_help: "Scroll document down",
help: "Count is supported: 10j will move 10 times as much down.
" +
- "If the document cannot scroll more, a beep is emmited (unless 'beep' is turned off).",
+ "If the document cannot scroll more, a beep is emitted (unless 'beep' is turned off).",
flags: Mappings.flags.COUNT
}
));
@@ -422,7 +422,7 @@ function Mappings()//{{{
{
short_help: "Scroll document up",
help: "Count is supported: 10k will move 10 times as much up.
" +
- "If the document cannot scroll more, a beep is emmited (unless 'beep' is turned off).",
+ "If the document cannot scroll more, a beep is emitted (unless 'beep' is turned off).",
flags: Mappings.flags.COUNT
}
));
@@ -430,7 +430,7 @@ function Mappings()//{{{
{
short_help: "Scroll document to the right",
help: "Count is supported: 10l will move 10 times as much to the right.
" +
- "If the document cannot scroll more, a beep is emmited (unless 'beep' is turned off).",
+ "If the document cannot scroll more, a beep is emitted (unless 'beep' is turned off).",
flags: Mappings.flags.COUNT
}
));
@@ -506,7 +506,7 @@ function Mappings()//{{{
help: "In AlwaysHint mode, every hintable item (according to the 'hinttags' XPath query) is assigned a label.
" +
"If you then press the keys for a label, it is followed as soon as it can be uniquely identified. Labels stay active after following a hint in this mode, press <Esc> to stop this mode.
" +
"This hint mode is especially useful for browsing large sites like Forums as hints are automatically regenerated when switching to a new document.
" +
- "Also, most Ctrl-prefixed short_helpcut keys are available in this mode for navigation."
+ "Also, most Ctrl-prefixed shortcut keys are available in this mode for navigation."
}
));
addDefaultMap(new Map(vimperator.modes.NORMAL, [";"], function(count) { hah.enableHahMode(vimperator.modes.EXTENDED_HINT); },
@@ -526,7 +526,7 @@ function Mappings()//{{{
"
s to save its destination (not implemented yet)<C-w> to open its destination in a new window;ab,ac,adt opens AB, AC and AD in a new tab.;ab,ac,adt opens AB, AC and AD in a new tab.'extendedhinttags' XPath string."
}
));
@@ -578,7 +578,7 @@ function Mappings()//{{{
{
short_help: "Escape next key",
help: "If you need to pass a certain key to a javascript form field or another extension prefix the key with <C-v>.<C-o> which are otherwise hidden in Vimperator.<C-o> which are otherwise hidden in Vimperator.<I>), <C-v> will pass the next key to Vimperator instead of the webpage."
}
));
diff --git a/chrome/content/vimperator/options.js b/chrome/content/vimperator/options.js
index a26dafc2..40f47334 100644
--- a/chrome/content/vimperator/options.js
+++ b/chrome/content/vimperator/options.js
@@ -278,7 +278,7 @@ var g_options = [/*{{{*/
[
["usermode", "um", "nousermode", "noum"],
["usermode", "um"],
- "Show current website with a minimal stylesheet to make it easily accessible",
+ "Show current website with a minimal style sheet to make it easily accessible",
"Note that this is a local option for now, later it may be split into a global and :setlocal part",
"boolean",
null,