Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
260f9973
Commit
260f9973
authored
Jun 28, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added comments to validation lang.
parent
d51be02d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
7 deletions
+31
-7
validation.php
application/lang/en/validation.php
+31
-7
No files found.
application/lang/en/validation.php
View file @
260f9973
...
...
@@ -2,26 +2,50 @@
return
array
(
/*
|--------------------------------------------------------------------------
| General Validation Messages
|--------------------------------------------------------------------------
*/
"acceptance_of"
=>
"The :attribute must be accepted."
,
"confirmation_of"
=>
"The :attribute confirmation does not match."
,
"exclusion_of"
=>
"The :attribute value is invalid."
,
"format_of"
=>
"The :attribute format is invalid."
,
"inclusion_of"
=>
"The :attribute value is invalid."
,
"presence_of"
=>
"The :attribute can't be
blank
."
,
"presence_of"
=>
"The :attribute can't be
empty
."
,
"uniqueness_of"
=>
"The :attribute has already been taken."
,
"with_callback"
=>
"The :attribute is invalid."
,
"number_not_valid"
=>
"The :attribute is not a valid number."
,
"number_not_integer"
=>
"The :attribute is not a valid integer."
,
/*
|--------------------------------------------------------------------------
| Numericality_Of Validation Messages
|--------------------------------------------------------------------------
*/
"number_not_valid"
=>
"The :attribute must be a valid number."
,
"number_not_integer"
=>
"The :attribute must be an integer."
,
"number_wrong_size"
=>
"The :attribute must be :size."
,
"number_too_big"
=>
"The :attribute must be
less
than :max."
,
"number_too_big"
=>
"The :attribute must be
no more
than :max."
,
"number_too_small"
=>
"The :attribute must be at least :min."
,
/*
|--------------------------------------------------------------------------
| Length_Of Validation Messages
|--------------------------------------------------------------------------
*/
"string_wrong_size"
=>
"The :attribute must be :size characters."
,
"string_too_big"
=>
"The :attribute must be
less
than :max characters."
,
"string_too_big"
=>
"The :attribute must be
no more
than :max characters."
,
"string_too_small"
=>
"The :attribute must be at least :min characters."
,
"file_too_big"
=>
"The :attribute exceeded size limit of :maxkb."
,
"file_wrong_type"
=>
"The :attribute is an invalid type."
,
/*
|--------------------------------------------------------------------------
| Upload_Of Validation Messages
|--------------------------------------------------------------------------
*/
"file_wrong_type"
=>
"The :attribute is an invalid file type."
,
"file_too_big"
=>
"The :attribute exceeds size limit of :maxkb."
,
);
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment