lazutils: fixed typo

git-svn-id: trunk@35656 -
This commit is contained in:
mattias 2012-03-03 00:22:06 +00:00
parent f9525156e2
commit 8004b97fea
6 changed files with 10 additions and 6 deletions

View File

@ -9,7 +9,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: luresstrings.ctsfiledoesnotexists
#: luresstrings.ctsfiledoesnotexist
msgctxt "luresstrings.ctsfiledoesnotexist"
msgid "file \"%s\" does not exist"
msgstr "Datei \"%s\" existiert nicht"

View File

@ -1,7 +1,8 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: luresstrings.ctsfiledoesnotexists
#: luresstrings.ctsfiledoesnotexist
msgctxt "luresstrings.ctsfiledoesnotexist"
msgid "file \"%s\" does not exist"
msgstr ""

View File

@ -9,7 +9,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: luresstrings.ctsfiledoesnotexists
#: luresstrings.ctsfiledoesnotexist
msgctxt "luresstrings.ctsfiledoesnotexist"
msgid "file \"%s\" does not exist"
msgstr "arquivo \"%s\" não existe"

View File

@ -9,7 +9,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: luresstrings.ctsfiledoesnotexists
#: luresstrings.ctsfiledoesnotexist
msgctxt "luresstrings.ctsfiledoesnotexist"
msgid "file \"%s\" does not exist"
msgstr "Файл \"%s\" не существует"

View File

@ -225,7 +225,7 @@ begin
// TProcess does not report, if a program can not be executed
// to get good error messages consider the OS
if not FileExistsUTF8(AFilename) then begin
raise Exception.CreateFmt(ctsFileDoesNotExists,[AFilename]);
raise Exception.CreateFmt(ctsFileDoesNotExist,[AFilename]);
end;
{$IFNDEF Windows}
if not(BaseUnix.FpAccess(AFilename,BaseUnix.X_OK)=0) then

View File

@ -8,7 +8,7 @@ uses
Classes, SysUtils;
resourcestring
ctsFileDoesNotExists = 'file "%s" does not exist';
ctsFileDoesNotExist = 'file "%s" does not exist';
ctsFileIsNotExecutable = '%s is not executable';
implementation