blob: 8f504e5edbaae054e120bd9833a2409d8eaf4a0c [file] [log] [blame]
###############################################################################
# Copyright (c) 2000, 2005 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# IBM Corporation - initial API and implementation
###############################################################################
# NLS file for JFace Data Binding
###############################################################################
Yes=Yes
yes=yes
No=No
no=no
True=True
true=true
False=False
false=false
and=and
or=or
Examples=Examples
ValueBinding_ErrorWhileSettingValue=An error occurred while setting the value.
Validate_BooleanHelp=Please type "Yes", "No", "True", or "False"
Validate_CharacterHelp=Please type a character
Validate_NoChangeAllowedHelp=Changes are not allowed in this field
Validate_RangeStart=Please enter a number between
Validate_Like=Please enter a number like
Validate_Number_Examples= 1.234, 256E-15, 42
# The following two regular expressions express any of: Yes, yes, No, no, True, true, False, false
# in both partially valid and fully valid forms.
Validate_BooleanPartialValidRegex=^$|^Y$|^y$|^Ye$|^ye$|^Yes$|^yes$|^T$|^t$|^Tr$|^tr$|^Tru$|^tru$|^True$|^true$|^N$|^n$|^No$|^no$|^F$|^f$|^Fa$|^fa$|^Fal$|^fal$|^Fals$|^fals$|^False$|^false$
Validate_BooleanValidRegex=^Yes$|^yes$|^No$|^no$|^True$|^true$|^False$|^false$