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
f9697763
Commit
f9697763
authored
Jul 27, 2012
by
Dayle Rees
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #944 from dlabsnl/master
Dutch language.
parents
483f5705
ce3721a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
98 additions
and
0 deletions
+98
-0
pagination.php
application/language/nl/pagination.php
+8
-0
validation.php
application/language/nl/validation.php
+90
-0
No files found.
application/language/nl/pagination.php
0 → 100644
View file @
f9697763
<?php
return
array
(
'previous'
=>
'« Vorige'
,
'next'
=>
'Volgende »'
,
);
\ No newline at end of file
application/language/nl/validation.php
0 → 100644
View file @
f9697763
<?php
return
array
(
/*
|--------------------------------------------------------------------------
| Dutch validation language file
|--------------------------------------------------------------------------
|
*/
"accepted"
=>
"Het :attribute moet geaccepteerd zijn."
,
"active_url"
=>
"Het :attribute is geen geldig URL."
,
"after"
=>
"Het :attribute moet een datum na :date zijn."
,
"alpha"
=>
"Het :attribute mag alleen letters bevatten."
,
"alpha_dash"
=>
"Het :attribute mag alleen letters, nummers, onderstreep(_) en strepen(-) bevatten."
,
"alpha_num"
=>
"Het :attribute mag alleen letters en nummers"
,
"before"
=>
"Het :attribute moet een datum voor :date zijn."
,
"between"
=>
array
(
"numeric"
=>
"Het :attribute moet tussen :min en :max zijn."
,
"file"
=>
"Het :attribute moet tussen :min en :max kilobytes zijn."
,
"string"
=>
"Het :attribute moet tussen :min en :max tekens zijn."
,
),
"confirmed"
=>
"Het :attribute bevestiging komt niet overeen."
,
"different"
=>
"Het :attribute en :other moeten verschillend zijn."
,
"email"
=>
"Het :attribute formaat is ongeldig."
,
"exists"
=>
"Het gekozen :attribute is al ingebruik."
,
"image"
=>
"Het :attribute moet een afbeelding zijn."
,
"in"
=>
"Het gekozen :attribute is ongeldig."
,
"integer"
=>
"Het :attribute moet een getal zijn."
,
"ip"
=>
"Het :attribute moet een geldig IP adres bevatten."
,
"match"
=>
"Het :attribute formaat is ongeldig."
,
"max"
=>
array
(
"numeric"
=>
"Het :attribute moet minder dan :max zijn."
,
"file"
=>
"Het :attribute moet minder dan :max kilobytes zijn."
,
"string"
=>
"Het :attribute moet minder dan :max tekens zijn."
,
),
"mimes"
=>
"Het :attribute moet een bestand zijn van het bestandstype :values."
,
"min"
=>
array
(
"numeric"
=>
"Het :attribute moet minimaal :min zijn."
,
"file"
=>
"Het :attribute moet minimaal :min kilobytes zijn."
,
"string"
=>
"Het :attribute moet minimaal :min characters zijn."
,
),
"not_in"
=>
"Het :attribute formaat is ongeldig."
,
"numeric"
=>
"Het :attribute moet een nummer zijn."
,
"required"
=>
"Het :attribute veld is verplicht."
,
"same"
=>
"Het :attribute en :other moeten overeenkomen."
,
"size"
=>
array
(
"numeric"
=>
"Het :attribute moet :size zijn."
,
"file"
=>
"Het :attribute moet :size kilobyte zijn."
,
"string"
=>
"Het :attribute moet :size characters zijn."
,
),
"unique"
=>
"Het :attribute is al in gebruik."
,
"url"
=>
"Het :attribute formaat is ongeldig."
,
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute_rule" to name the lines. This helps keep your
| custom validation clean and tidy.
|
| So, say you want to use a custom validation message when validating that
| the "email" attribute is unique. Just add "email_unique" to this array
| with your custom message. The Validator will handle the rest!
|
*/
'custom'
=>
array
(),
/*
|--------------------------------------------------------------------------
| Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as "E-Mail Address" instead
| of "email". Your users will thank you.
|
| The Validator class will automatically search this array of lines it
| is attempting to replace the :attribute place-holder in messages.
| It's pretty slick. We think you'll like it.
|
*/
'attributes'
=>
array
(),
);
\ 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