Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.63 KB | None | 0 0
  1. ###############################################################################
  2. ## Default Resource Bundle file for the Stripes Framework. Values should be
  3. ## placed in here for the following:
  4. ## - Form Field Labels, unless you want users to see a non-localized, non-
  5. ## pretty name from the form field declaration (prettied up a little).
  6. ## - Error messages for:
  7. ## - Standard validation error messages
  8. ## - Converter error messages
  9. ## - Error messages used in your custom ActionBean classes
  10. ###############################################################################
  11.  
  12. # Resource strings used by the stripes:errors tag when there are no nested tags
  13. stripes.errors.header=<div style="color:#b72222; font-weight: bold">Please fix the following errors:</div><ol>
  14. stripes.errors.beforeError=<li style="color: #b72222;">
  15. stripes.errors.afterError=</li>
  16. stripes.errors.footer=</ol>
  17.  
  18. stripes.fieldErrors.header=
  19. stripes.fieldErrors.beforeError=<span style="color: #b72222;">
  20. stripes.fieldErrors.afterError=</span><br />
  21. stripes.fieldErrors.footer=
  22.  
  23. # Resource strings used by the stripes:messages tag
  24. stripes.messages.header=<ul class="messages">
  25. stripes.messages.beforeMessage=<li>
  26. stripes.messages.afterMessage=</li>
  27. stripes.messages.footer=</ul>
  28.  
  29. # Validation error messages produced by converter classes
  30. converter.number.invalidNumber=The value ({1}) entered in field {0} must be a valid number
  31. converter.byte.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
  32. converter.short.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
  33. converter.integer.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
  34. converter.float.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
  35. converter.enum.notAnEnumeratedValue=The value "{1}" is not a valid value for field {0}
  36. converter.date.invalidDate=The value ({1}) entered in field {0} must be a valid date
  37. converter.email.invalidEmail=The value ({1}) entered is not a valid email address
  38.  
  39. # Validation error messages produced by the annotation based validations
  40. validation.required.valueNotPresent={0} is a required field
  41. validation.minlength.valueTooShort={0} must be at least {2} characters long
  42. validation.maxlength.valueTooLong={0} must be no more than {2} characters long
  43. validation.minvalue.valueBelowMinimum=The minimum allowed value for {0} is {2}
  44. validation.maxvalue.valueAboveMaximum=The maximum allowed value for {0} is {2}
  45. validation.mask.valueDoesNotMatch=<em>{1}</em> is not a valid {0}
  46. validation.expression.valueFailedExpression=The value supplied ({1}) for field {0} is invalid
  47.  
  48. numberOne=Number 1
  49.  
  50. ###############################################################################
  51. ## Bugzooky Example properties
  52. ###############################################################################
  53. #bug.component.id=Component
  54. #bug.owner.id=Assigned To
  55. #bug.priority=Priority
  56. #bug.status=Status
  57. #bug.dueDate=Due Date
  58. #bug.percentComplete=Percent Complete
  59. #bug.shortDescription=Short Description
  60. #bug.longDescription=Long Description
  61.  
  62. #net.sourceforge.stripes.examples.bugzooky.SingleBugActionBean.bug.percentComplete.valueBelowMinimum={0} must be a number between 0 and 100
  63. #net.sourceforge.stripes.examples.bugzooky.SingleBugActionBean.bug.percentComplete.valueAboveMaximum={0} must be a number between 0 and 100
  64.  
  65. #bugs.component.id=Component
  66. #bugs.owner.id=Assigned To
  67. #bugs.priority=Priority
  68. #bugs.status=Status
  69. #bugs.shortDescription=Short Description
  70. #bugs.longDescription=Long Description
  71.  
  72.  
  73. # Login action error messages and fields
  74. username=Username
  75. password=Password
  76. #net.sourceforge.stripes.examples.bugzooky.LoginActionBean.usernameDoesNotExist=The {0} ''{1}'' does not exist. Please check your {0} and try again.
  77. #net.sourceforge.stripes.examples.bugzooky.LoginActionBean.incorrectPassword=The {0} entered does not match the {0} on file.
  78.  
  79. # Registration action error messages and fields
  80. user.username=Username
  81. user.password=Password
  82. user.firstName=First Name
  83. user.lastName=Last Name
  84. confirmPassword=Confirm Password
  85. #net.sourceforge.stripes.examples.bugzooky.RegisterActionBean.confirmPassword.valueFailedExpression=The Passwords entered did not match.
  86. #net.sourceforge.stripes.examples.bugzooky.RegisterActionBean.usernameTaken=The {0} ''{1}'' is already taken.
  87. #net.sourceforge.stripes.examples.bugzooky.RegisterActionBean.successMessage=Thank you for registering {0}, your account has been created with username ''{1}''
  88.  
  89. phoneNumber.areaCode=Area code
  90. phoneNumber.phoneNumber=Phone number
  91.  
  92. FirstNameOrSurnameRequired=First name or surname is required
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement