You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@797 8e941d3f-bd1b-0410-a28a-d453659cc2b4
28 lines
722 B
ObjectPascal
28 lines
722 B
ObjectPascal
{
|
|
This file is part of the Web Service Toolkit
|
|
Copyright (c) 2009 by Inoussa OUEDRAOGO
|
|
|
|
This file is provide under modified LGPL licence
|
|
( the files COPYING.modifiedLGPL and COPYING.LGPL).
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
}
|
|
{$INCLUDE wst_global.inc}
|
|
|
|
unit wst_consts;
|
|
|
|
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.
|
|
|