mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 16:32:27 +01:00
error messages should be capitalized
This commit is contained in:
@@ -1318,7 +1318,7 @@ liberator.Buffer = function () //{{{
|
|||||||
var args = liberator.commands.parseArgs(editor, [], "*", true).arguments;
|
var args = liberator.commands.parseArgs(editor, [], "*", true).arguments;
|
||||||
if (args.length < 1)
|
if (args.length < 1)
|
||||||
{
|
{
|
||||||
liberator.echoerr("no editor specified");
|
liberator.echoerr("No editor specified");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1560,7 +1560,7 @@ liberator.Marks = function () //{{{
|
|||||||
|
|
||||||
if (win.document.body.localName.toLowerCase() == "frameset")
|
if (win.document.body.localName.toLowerCase() == "frameset")
|
||||||
{
|
{
|
||||||
liberator.echoerr("marks support for frameset pages not implemented yet");
|
liberator.echoerr("Marks support for frameset pages not implemented yet");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -751,7 +751,7 @@ liberator.Editor = function () //{{{
|
|||||||
var args = liberator.commands.parseArgs(editor, [], "*", true).arguments;
|
var args = liberator.commands.parseArgs(editor, [], "*", true).arguments;
|
||||||
if (args.length < 1)
|
if (args.length < 1)
|
||||||
{
|
{
|
||||||
liberator.echoerr("no editor specified");
|
liberator.echoerr("No editor specified");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -493,7 +493,7 @@ lookup:
|
|||||||
|
|
||||||
if (!file.exists())
|
if (!file.exists())
|
||||||
{
|
{
|
||||||
liberator.echoerr("command not found: " + program);
|
liberator.echoerr("Command not found: " + program);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user