lazarus/components/jcf2/jcfbaseconsts.pas
DomingoGP a51afba79f Jedi code format: use jcfbase.lpk package in the jcfidelazarus package.
Some files have been moved to other directories to avoid conflicts with the jcfbase and jcfidelazarus package paths.
2023-06-01 23:11:24 +02:00

19 lines
505 B
ObjectPascal

unit jcfbaseConsts;
{$mode objfpc}{$H+}
interface
resourcestring
//Settings caption and error messages
lisTheSettingsFileDoesNotExist = 'The settings file "%s" does not exist.%s'+
'The formatter will work better if it is configured to use a valid settings file';
lisErrorWritingSettingsFileReadOnly = 'Error writing settings file: %s is read only';
lisErrorWritingSettingsException = 'Error writing settings file %s:%s%s';
lisNoSettingsFound = 'No settings found';
implementation
end.