mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 22:03:42 +02:00
18 lines
221 B
ObjectPascal
18 lines
221 B
ObjectPascal
unit LUResStrings;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
resourcestring
|
|
ctsFileDoesNotExist = 'file "%s" does not exist';
|
|
ctsFileIsNotExecutable = '%s is not executable';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|