You've already forked lazarus-ccr
16 lines
315 B
ObjectPascal
16 lines
315 B
ObjectPascal
![]() |
unit wst_consts;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
resourcestring
|
||
|
SERR_InvalidHourOffetValue = '"%d" is not a valid hour offset value.';
|
||
|
SERR_InvalidMinuteOffetValue = '"%d" is not a valid minute offset value.';
|
||
|
SERR_InvalidParameter = 'Invalid parameter : "%s".';
|
||
|
|
||
|
implementation
|
||
|
|
||
|
end.
|
||
|
|