xref: /aoo41x/main/forms/source/resource/xforms.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#ifndef _FRM_RESOURCE_HRC_
29#include "frm_resource.hrc"
30#endif
31
32
33String RID_STR_XFORMS_NO_BINDING_EXPRESSION
34{
35    Text [ en-US ] = "Please enter a binding expression.";
36};
37
38String RID_STR_XFORMS_INVALID_BINDING_EXPRESSION
39{
40    Text [ en-US ] = "This is an invalid binding expression.";
41};
42
43String RID_STR_XFORMS_INVALID_VALUE
44{
45    Text [ en-US ] = "Value is invalid.";
46};
47
48String RID_STR_XFORMS_REQUIRED
49{
50    Text [ en-US ] = "A value is required.";
51};
52
53String RID_STR_XFORMS_INVALID_CONSTRAINT
54{
55    Text [ en-US ] = "The constraint '$1' not validated.";
56};
57
58String RID_STR_XFORMS_VALUE_IS_NOT_A
59{
60    Text [ en-US ] = "The value is not of the type '$2'.";
61};
62
63String RID_STR_XFORMS_VALUE_MAX_INCL
64{
65    Text [ en-US ] = "The value must be smaller than or equal to $2.";
66};
67
68String RID_STR_XFORMS_VALUE_MAX_EXCL
69{
70    Text [ en-US ] = "The value must be smaller than $2.";
71};
72
73String RID_STR_XFORMS_VALUE_MIN_INCL
74{
75    Text [ en-US ] = "The value must be greater than or equal to $2.";
76};
77
78String RID_STR_XFORMS_VALUE_MIN_EXCL
79{
80    Text [ en-US ] = "The value must be greater than $2.";
81};
82
83String RID_STR_XFORMS_VALUE_PATTERN
84{
85    Text [ en-US ] = "The value does not match the pattern '$2'.";
86};
87
88String RID_STR_XFORMS_VALUE_TOTAL_DIGITS
89{
90    Text [ en-US ] = "$2 digits allowed at most.";
91};
92
93String RID_STR_XFORMS_VALUE_FRACTION_DIGITS
94{
95    Text [ en-US ] = "$2 fraction digits allowed at most.";
96};
97
98String RID_STR_XFORMS_VALUE_LENGTH
99{
100    Text [ en-US ] = "The string must be $2 characters long.";
101};
102
103String RID_STR_XFORMS_VALUE_MIN_LENGTH
104{
105    Text [ en-US ] = "The string must be at least $2 characters long.";
106};
107
108String RID_STR_XFORMS_VALUE_MAX_LENGTH
109{
110    Text [ en-US ] = "The string can only be $2 characters long at most.";
111};
112
113String RID_STR_DATATYPE_STRING
114{
115    Text [ en-US ] = "String";
116};
117
118String RID_STR_DATATYPE_URL
119{
120    Text [ en-US ] = "Hyperlink";
121};
122
123String RID_STR_DATATYPE_BOOLEAN
124{
125    Text [ en-US ] = "True/False (Boolean)";
126};
127
128String RID_STR_DATATYPE_DECIMAL
129{
130    Text [ en-US ] = "Decimal";
131};
132
133String RID_STR_DATATYPE_FLOAT
134{
135    Text [ en-US ] = "Floating point";
136};
137
138String RID_STR_DATATYPE_DOUBLE
139{
140    Text [ en-US ] = "Double";
141};
142
143String RID_STR_DATATYPE_DATE
144{
145    Text [ en-US ] = "Date";
146};
147
148String RID_STR_DATATYPE_TIME
149{
150    Text [ en-US ] = "Time";
151};
152
153String RID_STR_DATATYPE_DATETIME
154{
155    Text [ en-US ] = "Date and Time";
156};
157
158String RID_STR_DATATYPE_YEARMONTH
159{
160    Text [ en-US ] = "Month and year";
161};
162
163String RID_STR_DATATYPE_YEAR
164{
165    Text [ en-US ] = "Year";
166};
167
168String RID_STR_DATATYPE_MONTHDAY
169{
170    Text [ en-US ] = "Month and day";
171};
172
173String RID_STR_DATATYPE_MONTH
174{
175    Text [ en-US ] = "Month";
176};
177
178String RID_STR_DATATYPE_DAY
179{
180    Text [ en-US ] = "Day";
181};
182
183String RID_STR_XFORMS_CANT_EVALUATE
184{
185    Text [ en-US ] = "Error during evaluation";
186};
187
188String RID_STR_XFORMS_PATTERN_DOESNT_MATCH
189{
190    Text [ en-US ] = "The string '$1' does not match the required regular expression '$2'.";
191};
192
193String RID_STR_XFORMS_BINDING_UI_NAME
194{
195    Text [ en-US ] = "Binding" ;
196};
197