diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js
index c4642105..a6c3a907 100644
--- a/chrome/content/vimperator/commands.js
+++ b/chrome/content/vimperator/commands.js
@@ -263,7 +263,7 @@ function Commands() //{{{
{
usage: ["bma[dd] [-tTk] [url]"],
short_help: "Add a bookmark",
- help: "If you don't add a custom title, either the title of the webpage or the URL will be taken as the title.
" +
+ help: "If you don't add a custom title, either the title of the web page or the URL will be taken as the title.
" +
"Tags WILL be some mechanism to classify bookmarks. Assume, you tag a url with the tags \"linux\" and \"computer\" you'll be able to search for bookmarks containing these tags.
" +
"You can omit the optional [url] field, so just do :bmadd to bookmark the currently loaded web page with a default title and without any tags.
" +
" -t \"custom title\"
" +
@@ -536,7 +536,7 @@ function Commands() //{{{
},
{
usage: ["ma[rk] {arg}"],
- short_help: "Mark current location within the webpage"
+ short_help: "Mark current location within the web page"
}
));
addDefaultCommand(new Command(["marks"],
@@ -552,7 +552,7 @@ function Commands() //{{{
},
{
usage: ["marks {arg}"],
- short_help: "Show all location marks of current webpage",
+ short_help: "Show all location marks of current web page",
help: "Not implemented yet."
}
));
@@ -954,7 +954,7 @@ function Commands() //{{{
zoom_to,
{
usage: ["zo[om] {value}"],
- short_help: "Set zoom value of the webpage",
+ short_help: "Set zoom value of the web page",
help: "{value} can be between 25 and 500%. If it is omitted, zoom is reset to 100%."
}
));
diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js
index e2ec92da..b3dba707 100644
--- a/chrome/content/vimperator/mappings.js
+++ b/chrome/content/vimperator/mappings.js
@@ -477,7 +477,7 @@ function Mappings() //{{{
addDefaultMap(new Map(vimperator.modes.NORMAL, ["zz"],
zoom_to,
{
- short_help: "Set zoom value of the webpage",
+ short_help: "Set zoom value of the web page",
help: "Zoom value can be between 25 and 500%. If it is omitted, zoom is reset to 100%.",
flags: Mappings.flags.COUNT
}
@@ -733,7 +733,7 @@ function Mappings() //{{{
help: "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.
" +
"To exit this mode, press <Esc>. If you also need to pass <Esc>" +
- "in this mode to the webpage, prepend it with <C-v>."
+ "in this mode to the web page, prepend it with <C-v>."
}
));
addDefaultMap(new Map(vimperator.modes.NORMAL, [""],
@@ -742,14 +742,14 @@ 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>.
" +
"Also works to unshadow Firefox shortcuts like <C-o> which are otherwise hidden in Vimperator.
" +
- "When in 'ignorekeys' mode (activated by <I>), <C-v> will pass the next key to Vimperator instead of the webpage."
+ "When in 'ignorekeys' mode (activated by <I>), <C-v> will pass the next key to Vimperator instead of the web page."
}
));
addDefaultMap(new Map(vimperator.modes.NORMAL, [""],
BrowserStop,
{
short_help: "Stop loading",
- help: "Stops loading the current webpage."
+ help: "Stops loading the current web page."
}
));
// if you ever add/remove keys here, also check them in the vimperator.events.onKeyPress()
diff --git a/chrome/content/vimperator/options.js b/chrome/content/vimperator/options.js
index e83156e1..07f002eb 100644
--- a/chrome/content/vimperator/options.js
+++ b/chrome/content/vimperator/options.js
@@ -424,8 +424,8 @@ function Options() //{{{
addOption(new Option(["titlestring"], "string",
{
short_help: "Change the title of the browser window",
- help: "Vimperator changes the browser title from \"Title of webpage - Mozilla Firefox\" to " +
- "\"Title of webpage - Vimperator\".
If you don't like that, you can restore it with: " +
+ help: "Vimperator changes the browser title from \"Title of web page - Mozilla Firefox\" to " +
+ "\"Title of web page - Vimperator\".
If you don't like that, you can restore it with: " +
":set titlestring=Mozilla Firefox.",
setter: function(value) { Options.setPref("titlestring", value); setTitleString(value); },
default_value: "Vimperator"