From c0a838baaad4878e263d513ae5efbd4e713922f7 Mon Sep 17 00:00:00 2001 From: inoussa Date: Wed, 6 May 2009 16:53:48 +0000 Subject: [PATCH] resource strings should go into this unit. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@785 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- wst/trunk/wst_consts.pas | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 wst/trunk/wst_consts.pas diff --git a/wst/trunk/wst_consts.pas b/wst/trunk/wst_consts.pas new file mode 100644 index 000000000..a4fc79884 --- /dev/null +++ b/wst/trunk/wst_consts.pas @@ -0,0 +1,15 @@ +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. +