mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-29 06:03:49 +02:00

Some files have been moved to other directories to avoid conflicts with the jcfbase and jcfidelazarus package paths.
19 lines
505 B
ObjectPascal
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.
|
|
|