mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 20:07:59 +01:00
use 'web page' rather than 'webpage' in the help text
This commit is contained in:
@@ -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.<br/>" +
|
||||
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.<br/>" +
|
||||
"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.<br/>" +
|
||||
"You can omit the optional [url] field, so just do <code class=\"command\">:bmadd</code> to bookmark the currently loaded web page with a default title and without any tags.<br/>" +
|
||||
" -t \"custom title\"<br/>" +
|
||||
@@ -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%."
|
||||
}
|
||||
));
|
||||
|
||||
@@ -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 <code class=\"mapping\"><Esc></code> are passed to the next event handler.<br/>" +
|
||||
"This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.<br/>" +
|
||||
"To exit this mode, press <code class=\"mapping\"><Esc></code>. If you also need to pass <code class=\"mapping\"><Esc></code>" +
|
||||
"in this mode to the webpage, prepend it with <code class=\"mapping\"><C-v></code>."
|
||||
"in this mode to the web page, prepend it with <code class=\"mapping\"><C-v></code>."
|
||||
}
|
||||
));
|
||||
addDefaultMap(new Map(vimperator.modes.NORMAL, ["<C-v>"],
|
||||
@@ -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 <code class=\"mapping\"><C-v></code>.<br/>" +
|
||||
"Also works to unshadow Firefox shortcuts like <code class=\"mapping\"><C-o></code> which are otherwise hidden in Vimperator.<br/>" +
|
||||
"When in 'ignorekeys' mode (activated by <code class=\"mapping\"><I></code>), <code class=\"mapping\"><C-v></code> will pass the next key to Vimperator instead of the webpage."
|
||||
"When in 'ignorekeys' mode (activated by <code class=\"mapping\"><I></code>), <code class=\"mapping\"><C-v></code> will pass the next key to Vimperator instead of the web page."
|
||||
}
|
||||
));
|
||||
addDefaultMap(new Map(vimperator.modes.NORMAL, ["<C-c>"],
|
||||
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()
|
||||
|
||||
@@ -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\".<br/>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\".<br/>If you don't like that, you can restore it with: " +
|
||||
"<code class=\"command\">:set titlestring=Mozilla Firefox</code>.",
|
||||
setter: function(value) { Options.setPref("titlestring", value); setTitleString(value); },
|
||||
default_value: "Vimperator"
|
||||
|
||||
Reference in New Issue
Block a user