1
0
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:
Doug Kearns
2008-07-30 05:30:30 +00:00
parent bc35f9368c
commit 366f9d79f4
3 changed files with 4 additions and 4 deletions

View File

@@ -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;
} }

View File

@@ -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;
} }

View File

@@ -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;
} }