mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-13 21:39:21 +02:00
lazutils: fixed typo
git-svn-id: trunk@35656 -
This commit is contained in:
parent
f9525156e2
commit
8004b97fea
@ -9,7 +9,8 @@ msgstr ""
|
|||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: luresstrings.ctsfiledoesnotexists
|
#: luresstrings.ctsfiledoesnotexist
|
||||||
|
msgctxt "luresstrings.ctsfiledoesnotexist"
|
||||||
msgid "file \"%s\" does not exist"
|
msgid "file \"%s\" does not exist"
|
||||||
msgstr "Datei \"%s\" existiert nicht"
|
msgstr "Datei \"%s\" existiert nicht"
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: luresstrings.ctsfiledoesnotexists
|
#: luresstrings.ctsfiledoesnotexist
|
||||||
|
msgctxt "luresstrings.ctsfiledoesnotexist"
|
||||||
msgid "file \"%s\" does not exist"
|
msgid "file \"%s\" does not exist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@ msgstr ""
|
|||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: luresstrings.ctsfiledoesnotexists
|
#: luresstrings.ctsfiledoesnotexist
|
||||||
|
msgctxt "luresstrings.ctsfiledoesnotexist"
|
||||||
msgid "file \"%s\" does not exist"
|
msgid "file \"%s\" does not exist"
|
||||||
msgstr "arquivo \"%s\" não existe"
|
msgstr "arquivo \"%s\" não existe"
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@ msgstr ""
|
|||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: luresstrings.ctsfiledoesnotexists
|
#: luresstrings.ctsfiledoesnotexist
|
||||||
|
msgctxt "luresstrings.ctsfiledoesnotexist"
|
||||||
msgid "file \"%s\" does not exist"
|
msgid "file \"%s\" does not exist"
|
||||||
msgstr "Файл \"%s\" не существует"
|
msgstr "Файл \"%s\" не существует"
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ begin
|
|||||||
// TProcess does not report, if a program can not be executed
|
// TProcess does not report, if a program can not be executed
|
||||||
// to get good error messages consider the OS
|
// to get good error messages consider the OS
|
||||||
if not FileExistsUTF8(AFilename) then begin
|
if not FileExistsUTF8(AFilename) then begin
|
||||||
raise Exception.CreateFmt(ctsFileDoesNotExists,[AFilename]);
|
raise Exception.CreateFmt(ctsFileDoesNotExist,[AFilename]);
|
||||||
end;
|
end;
|
||||||
{$IFNDEF Windows}
|
{$IFNDEF Windows}
|
||||||
if not(BaseUnix.FpAccess(AFilename,BaseUnix.X_OK)=0) then
|
if not(BaseUnix.FpAccess(AFilename,BaseUnix.X_OK)=0) then
|
||||||
|
@ -8,7 +8,7 @@ uses
|
|||||||
Classes, SysUtils;
|
Classes, SysUtils;
|
||||||
|
|
||||||
resourcestring
|
resourcestring
|
||||||
ctsFileDoesNotExists = 'file "%s" does not exist';
|
ctsFileDoesNotExist = 'file "%s" does not exist';
|
||||||
ctsFileIsNotExecutable = '%s is not executable';
|
ctsFileIsNotExecutable = '%s is not executable';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user