1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24#ifndef _FRM_RESOURCE_HRC_ 25#include "frm_resource.hrc" 26#endif 27 28 29String RID_STR_XFORMS_NO_BINDING_EXPRESSION 30{ 31 Text [ en-US ] = "Please enter a binding expression."; 32}; 33 34String RID_STR_XFORMS_INVALID_BINDING_EXPRESSION 35{ 36 Text [ en-US ] = "This is an invalid binding expression."; 37}; 38 39String RID_STR_XFORMS_INVALID_VALUE 40{ 41 Text [ en-US ] = "Value is invalid."; 42}; 43 44String RID_STR_XFORMS_REQUIRED 45{ 46 Text [ en-US ] = "A value is required."; 47}; 48 49String RID_STR_XFORMS_INVALID_CONSTRAINT 50{ 51 Text [ en-US ] = "The constraint '$1' not validated."; 52}; 53 54String RID_STR_XFORMS_VALUE_IS_NOT_A 55{ 56 Text [ en-US ] = "The value is not of the type '$2'."; 57}; 58 59String RID_STR_XFORMS_VALUE_MAX_INCL 60{ 61 Text [ en-US ] = "The value must be smaller than or equal to $2."; 62}; 63 64String RID_STR_XFORMS_VALUE_MAX_EXCL 65{ 66 Text [ en-US ] = "The value must be smaller than $2."; 67}; 68 69String RID_STR_XFORMS_VALUE_MIN_INCL 70{ 71 Text [ en-US ] = "The value must be greater than or equal to $2."; 72}; 73 74String RID_STR_XFORMS_VALUE_MIN_EXCL 75{ 76 Text [ en-US ] = "The value must be greater than $2."; 77}; 78 79String RID_STR_XFORMS_VALUE_PATTERN 80{ 81 Text [ en-US ] = "The value does not match the pattern '$2'."; 82}; 83 84String RID_STR_XFORMS_VALUE_TOTAL_DIGITS 85{ 86 Text [ en-US ] = "$2 digits allowed at most."; 87}; 88 89String RID_STR_XFORMS_VALUE_FRACTION_DIGITS 90{ 91 Text [ en-US ] = "$2 fraction digits allowed at most."; 92}; 93 94String RID_STR_XFORMS_VALUE_LENGTH 95{ 96 Text [ en-US ] = "The string must be $2 characters long."; 97}; 98 99String RID_STR_XFORMS_VALUE_MIN_LENGTH 100{ 101 Text [ en-US ] = "The string must be at least $2 characters long."; 102}; 103 104String RID_STR_XFORMS_VALUE_MAX_LENGTH 105{ 106 Text [ en-US ] = "The string can only be $2 characters long at most."; 107}; 108 109String RID_STR_DATATYPE_STRING 110{ 111 Text [ en-US ] = "String"; 112}; 113 114String RID_STR_DATATYPE_URL 115{ 116 Text [ en-US ] = "Hyperlink"; 117}; 118 119String RID_STR_DATATYPE_BOOLEAN 120{ 121 Text [ en-US ] = "True/False (Boolean)"; 122}; 123 124String RID_STR_DATATYPE_DECIMAL 125{ 126 Text [ en-US ] = "Decimal"; 127}; 128 129String RID_STR_DATATYPE_FLOAT 130{ 131 Text [ en-US ] = "Floating point"; 132}; 133 134String RID_STR_DATATYPE_DOUBLE 135{ 136 Text [ en-US ] = "Double"; 137}; 138 139String RID_STR_DATATYPE_DATE 140{ 141 Text [ en-US ] = "Date"; 142}; 143 144String RID_STR_DATATYPE_TIME 145{ 146 Text [ en-US ] = "Time"; 147}; 148 149String RID_STR_DATATYPE_DATETIME 150{ 151 Text [ en-US ] = "Date and Time"; 152}; 153 154String RID_STR_DATATYPE_YEARMONTH 155{ 156 Text [ en-US ] = "Month and year"; 157}; 158 159String RID_STR_DATATYPE_YEAR 160{ 161 Text [ en-US ] = "Year"; 162}; 163 164String RID_STR_DATATYPE_MONTHDAY 165{ 166 Text [ en-US ] = "Month and day"; 167}; 168 169String RID_STR_DATATYPE_MONTH 170{ 171 Text [ en-US ] = "Month"; 172}; 173 174String RID_STR_DATATYPE_DAY 175{ 176 Text [ en-US ] = "Day"; 177}; 178 179String RID_STR_XFORMS_CANT_EVALUATE 180{ 181 Text [ en-US ] = "Error during evaluation"; 182}; 183 184String RID_STR_XFORMS_PATTERN_DOESNT_MATCH 185{ 186 Text [ en-US ] = "The string '$1' does not match the required regular expression '$2'."; 187}; 188 189String RID_STR_XFORMS_BINDING_UI_NAME 190{ 191 Text [ en-US ] = "Binding" ; 192}; 193