Skip to content

Commit cb61a52

Browse files
TjoostenTjoosten
Tjoosten
authored and
Tjoosten
committed
dutch translation
1 parent 1af74a6 commit cb61a52

File tree

4 files changed

+146
-0
lines changed

4 files changed

+146
-0
lines changed

app/lang/nl/backups.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
return [
3+
'amount' => ":amount backup bestand is verwijderd.|:amount backup bestanden zijn werwijderd.",
4+
];

app/lang/nl/pagination.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
return array(
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Pagination Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used by the paginator library to build
11+
| the simple pagination links. You are free to change them to anything
12+
| you want to customize your views to better match your application.
13+
|
14+
*/
15+
16+
'previous' => '&laquo; Vorige',
17+
18+
'next' => 'Volgende &raquo;',
19+
20+
);

app/lang/nl/reminders.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
return array(
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Password Reminder Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are the default lines which match reasons
11+
| that are given by the password broker for a password update attempt
12+
| has failed, such as for an invalid token or invalid new password.
13+
|
14+
*/
15+
16+
"password" => "Wachtwoorden moeten minstens 6 karakters bevatten en met elkaar matchen.",
17+
18+
"user" => "We kunnen geen gebruiker vinden met dat email adres.",
19+
20+
"token" => "De herstel token voor het wachtwoord is incorrect",
21+
22+
"sent" => "De wachtwoord herrinering is verzonden!",
23+
24+
);

app/lang/nl/validation.php

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<?php
2+
3+
return array(
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Validation Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines contain the default error messages used by
11+
| the validator class. Some of these rules have multiple versions such
12+
| such as the size rules. Feel free to tweak each of these messages.
13+
|
14+
*/
15+
16+
"accepted" => "The :attribute must be accepted.",
17+
"active_url" => "The :attribute is not a valid URL.",
18+
"after" => "The :attribute must be a date after :date.",
19+
"alpha" => "The :attribute may only contain letters.",
20+
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
21+
"alpha_num" => "The :attribute may only contain letters and numbers.",
22+
"before" => "The :attribute must be a date before :date.",
23+
"between" => array(
24+
"numeric" => "The :attribute must be between :min - :max.",
25+
"file" => "The :attribute must be between :min - :max kilobytes.",
26+
"string" => "The :attribute must be between :min - :max characters.",
27+
),
28+
"confirmed" => "The :attribute confirmation does not match.",
29+
"date" => "The :attribute is not a valid date.",
30+
"date_format" => "The :attribute does not match the format :format.",
31+
"different" => "The :attribute and :other must be different.",
32+
"digits" => "The :attribute must be :digits digits.",
33+
"digits_between" => "The :attribute must be between :min and :max digits.",
34+
"email" => "The :attribute format is invalid.",
35+
"exists" => "The selected :attribute is invalid.",
36+
"image" => "The :attribute must be an image.",
37+
"in" => "The selected :attribute is invalid.",
38+
"integer" => "The :attribute must be an integer.",
39+
"ip" => "The :attribute must be a valid IP address.",
40+
"max" => array(
41+
"numeric" => "The :attribute may not be greater than :max.",
42+
"file" => "The :attribute may not be greater than :max kilobytes.",
43+
"string" => "The :attribute may not be greater than :max characters.",
44+
),
45+
"mimes" => "The :attribute must be a file of type: :values.",
46+
"min" => array(
47+
"numeric" => "The :attribute must be at least :min.",
48+
"file" => "The :attribute must be at least :min kilobytes.",
49+
"string" => "The :attribute must be at least :min characters.",
50+
),
51+
"not_in" => "The selected :attribute is invalid.",
52+
"numeric" => "The :attribute must be a number.",
53+
"regex" => "The :attribute format is invalid.",
54+
"required" => "The :attribute field is required.",
55+
"required_if" => "The :attribute field is required when :other is :value.",
56+
"required_with" => "The :attribute field is required when :values is present.",
57+
"required_without" => "The :attribute field is required when :values is not present.",
58+
"same" => "The :attribute and :other must match.",
59+
"size" => array(
60+
"numeric" => "De :attribute moet :size zijn.",
61+
"file" => "De :attribute moet :size kilobytes groot zijn.",
62+
"string" => "De :attribute moet minstens :size karakters bevatten.",
63+
),
64+
"unique" => "De :attribute is al bezet.",
65+
"url" => "De :attribute formaat is incorrect.",
66+
67+
/*
68+
|--------------------------------------------------------------------------
69+
| Custom Validation Language Lines
70+
|--------------------------------------------------------------------------
71+
|
72+
| Here you may specify custom validation messages for attributes using the
73+
| convention "attribute.rule" to name the lines. This makes it quick to
74+
| specify a specific custom language line for a given attribute rule.
75+
|
76+
*/
77+
78+
'custom' => [
79+
'tags' => [
80+
'required' => 'U moet minstens één tag selecteren.',
81+
'max_tags' => 'U kunt niet meer dan 3 tags gebruiken.',
82+
],
83+
],
84+
85+
/*
86+
|--------------------------------------------------------------------------
87+
| Custom Validation Attributes
88+
|--------------------------------------------------------------------------
89+
|
90+
| The following language lines are used to swap attribute place-holders
91+
| with something more reader friendly such as E-Mail Address instead
92+
| of "email". This simply helps us make messages a little cleaner.
93+
|
94+
*/
95+
96+
'attributes' => array(),
97+
98+
);

0 commit comments

Comments
 (0)