-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NL] Complete translation for Dutch Language (#471)
* Added translations * [NL] added missing keys * [NL] fix translations * [NL] add keys that do not differ * cs-fix * Fix order in Migrations.php * cs-fix
- Loading branch information
1 parent
21fce8e
commit 5ef9878
Showing
24 changed files
with
259 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Cookie language settings | ||
return [ | ||
'invalidExpiresTime' => 'Onjuist "{0}" type voor het attribuut "Expires". Verwacht: string, integer, DateTimeInterface object.', | ||
'invalidExpiresValue' => 'De cookie-vervaldatum is onjuist.', | ||
'invalidCookieName' => 'De cookie-naam "{0}" bevat tekens die niet zijn toegestaan.', | ||
'emptyCookieName' => 'De cookie-naam mag niet leeg zijn.', | ||
'invalidSecurePrefix' => 'Om de prefix "__Secure-" te gebruiken moet het "Secure" attribuut ingesteld zijn.', | ||
'invalidHostPrefix' => 'De "__Host-" prefix gebruikt worden met de "Secure" optie, mag geen "Domain" optie hebben, en "Path" moet "/" zijn.', | ||
'invalidSameSite' => 'De waarde van SameSite moet zijn: None, Lax, Strict of een lege string, {0} gegeven.', | ||
'invalidSameSiteNone' => 'Om "SameSite=None" te gebruiken moet het "Secure" attribuut ingesteld zijn.', | ||
'invalidCookieInstance' => '"{0}" class verwacht dat de cookie-array in instance is van "{1}" maar vond "{2}" voor index {3}.', | ||
'unknownCookieInstance' => 'Cookie-object met de naam "{0}" en prefix "{1}" kon niet gevonden worden in de collectie.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Errors language settings | ||
return [ | ||
'pageNotFound' => '404 - Pagina niet gevonden', | ||
'sorryCannotFind' => 'Sorry! De pagina die u zoekt kon niet gevonden worden.', | ||
'whoops' => 'Oeps!', | ||
'weHitASnag' => 'Er gaat iets fout. Probeer het later nog eens...', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Fabricator language settings | ||
return [ | ||
'invalidModel' => 'Onjuist model gegeven voor fabricatie.', | ||
'missingFormatters' => 'Er zijn geen Geldige Formatters gedefinieerd.', | ||
'createFailed' => 'Fabricator kon geen rij invoegen in de tabel "{0}": {1}', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// "Language" language settings | ||
return [ | ||
'invalidMessageFormat' => 'Onjuist geformatteerd bericht: "{0}", argumenten: "{1}"', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Publisher language settings | ||
return [ | ||
'collision' => 'Onverwachte fout in Publisher "{0}" tijdens het kopieëren van "{1}" naar "{2}".', | ||
'destinationNotAllowed' => 'Doel komt niet voor op de lijst van toegestane Publisher Directories: "{0}"', | ||
'fileNotAllowed' => '"{0}" heeft geen toegang voor "{1}": {2}', | ||
|
||
// Publish Command | ||
'publishMissing' => 'Er is geen Publisher classes gevonden in {0} alle namespaces.', | ||
'publishSuccess' => '"{0}" heeft {1} bestand(en) gepubliceerd naar "{2}".', | ||
'publishFailure' => '"{0}" kon niet publiceren naar "{1}".', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Security language settings | ||
return [ | ||
'disallowedAction' => 'Het is niet toegestaan deze actie uit te voeren.', | ||
'insecureCookie' => 'Een beveiligde cookie kan niet over een niet-beveiligde verbinding verzonden worden.', | ||
|
||
// @deprecated | ||
'invalidSameSite' => 'De waarde van SameSite moet zijn: None, Lax, Strict, of de waarde moet leeg zijn. Huidige waarde: "{0}"', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Testing language settings | ||
return [ | ||
'invalidMockClass' => '"{0}" is geen geldige Mock class.', | ||
]; |
Oops, something went wrong.