|
1 | 1 | <?php
|
2 | 2 |
|
| 3 | +/** |
| 4 | + * This is the Dutch translation for Confide. It has a formal and an informal spelling. |
| 5 | + * The formal spelling is used by default. However, by putting the first block in comment (just like this paragraph) and uncommenting the second block, the informal spelling will be used. |
| 6 | + **/ |
| 7 | + |
3 | 8 | return array(
|
4 | 9 |
|
5 | 10 | 'username' => 'Gebruikersnaam',
|
|
60 | 65 | ),
|
61 | 66 |
|
62 | 67 | );
|
| 68 | + |
| 69 | +/** |
| 70 | + * Uncomment the block below to use the informal spelling. |
| 71 | + **/ |
| 72 | + |
| 73 | +/* |
| 74 | +return array( |
| 75 | +
|
| 76 | + 'username' => 'Gebruikersnaam', |
| 77 | + 'password' => 'Wachtwoord', |
| 78 | + 'password_confirmation' => 'Bevestig wachtwoord', |
| 79 | + 'e_mail' => 'E-mail', |
| 80 | + 'username_e_mail' => 'Gebruikersnaam of e-mailadres', |
| 81 | +
|
| 82 | + 'signup' => array( |
| 83 | + 'title' => 'Registreren', |
| 84 | + 'desc' => 'Registreer een nieuw account', |
| 85 | + 'confirmation_required' => 'Bevestiging vereist', |
| 86 | + 'submit' => 'Maak nieuw account', |
| 87 | + ), |
| 88 | +
|
| 89 | + 'login' => array( |
| 90 | + 'title' => 'Inloggen', |
| 91 | + 'desc' => 'Vul je gegevens in', |
| 92 | + 'forgot_password' => '(wachtwoord vergeten)', |
| 93 | + 'remember' => 'Onthoud mij', |
| 94 | + 'submit' => 'Inloggen', |
| 95 | + ), |
| 96 | +
|
| 97 | + 'forgot' => array( |
| 98 | + 'title' => 'Wachtwoord vergeten', |
| 99 | + 'submit' => 'Doorgaan', |
| 100 | + ), |
| 101 | +
|
| 102 | + 'alerts' => array( |
| 103 | + 'account_created' => 'Je account is succesvol aangemaakt. Controleer je e-mailinbox voor instructies om je account the bevestigen.', |
| 104 | + 'too_many_attempts' => 'Te veel pogingen. Probeer het over een enkele minuten nog eens.', |
| 105 | + 'wrong_credentials' => 'Verkeerde gebruikersnaam, e-mailadres of wachtwoord.', |
| 106 | + 'not_confirmed' => 'Je account is waarschijnlijk niet bevestigd. Controleer je e-mailinbox voor de bevestigingslink.', |
| 107 | + 'confirmation' => 'Je account is bevestigd! Je kunt nu inloggen.', |
| 108 | + 'wrong_confirmation' => 'Verkeerde bevestigingscode.', |
| 109 | + 'password_forgot' => 'De informatie voor het opnieuw instellen van je wachtwoord is verstuurd naar je e-mailadres.', |
| 110 | + 'wrong_password_forgot' => 'Gebruiker niet gevonden.', |
| 111 | + 'password_reset' => 'Je wachtwoord is succesvol veranderd.', |
| 112 | + 'wrong_password_reset' => 'Verkeerd wachtwoord. Probeer het nog eens.', |
| 113 | + 'wrong_token' => 'Het token om je wachtwoord opnieuw in te stellen is niet geldig.', |
| 114 | + 'duplicated_credentials' => 'De ingevulde gegevens zijn al in gebruik. Probeer het eens met andere gegevens.', |
| 115 | + ), |
| 116 | +
|
| 117 | + 'email' => array( |
| 118 | + 'account_confirmation' => array( |
| 119 | + 'subject' => 'Accountbevestiging', |
| 120 | + 'greetings' => 'Hallo :name', |
| 121 | + 'body' => 'Klik op de onderstaande link om je account te bevestigen.', |
| 122 | + 'farewell' => 'Met vriendelijke groet', |
| 123 | + ), |
| 124 | +
|
| 125 | + 'password_reset' => array( |
| 126 | + 'subject' => 'Wachtwoord opnieuw instellen', |
| 127 | + 'greetings' => 'Hallo :name', |
| 128 | + 'body' => 'Klik op de onderstaande link om je wachtwoord opnieuw in te stellen.', |
| 129 | + 'farewell' => 'Met vriendelijke groet', |
| 130 | + ), |
| 131 | + ), |
| 132 | +
|
| 133 | +); |
| 134 | +*/ |
0 commit comments