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