Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds Dutch language #164

Merged
merged 1 commit into from
Jan 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Lang/en/email.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'view_discussion' => 'View The Discussion',
'farewell' => 'Have a great day!',
'unsuscribe' => [
'message' => 'If you no longer wish to be notified when someone responds to this form post be sure to uncheck the notification setting at the bottom of the page :)',
'message' => 'If you no longer wish to be notified when someone responds to this forum post be sure to uncheck the notification setting at the bottom of the page :)',
'action' => 'Don\'t like these emails?',
'link' => 'Unsubscribe to this Discussion',
],
Expand Down
31 changes: 31 additions & 0 deletions src/Lang/nl/alert.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php

return [
'success' => [
'title' => 'Goed zo!',
'reason' => [
'submitted_to_post' => 'Reactie succesvol geplaatst in de discussie.',
'updated_post' => 'De reactie is succesvol aangepast.',
'destroy_post' => 'De discussie en reacties zijn succesvol verwijderd.',
'destroy_from_discussion' => 'De reactie is succesvol verwijderd van de discussie.',
'created_discussion' => 'De discussie is succesvol aangemaakt.',
],
],
'info' => [
'title' => 'Let op!',
],
'warning' => [
'title' => 'Oeps!',
],
'danger' => [
'title' => 'Oh nee!',
'reason' => [
'errors' => 'Los de volgende problemen alsjeblieft op:',
'prevent_spam' => 'Om spam te voorkomen, wacht alsjeblieft :minutes tussen het plaatsen van nieuwe reacties.',
'trouble' => 'Helaas, er is een probleem opgetreden tijdens het plaatsen van je reactie.',
'update_post' => 'Helaas, je kan deze reactie niet wijzigen.',
'destroy_post' => 'Helaas, je kan deze reactie niet verwijderen.',
'create_discussion' => 'Helaas, er is een probleem opgetreden tijdens het plaatsen van je discussie :(',
],
],
];
14 changes: 14 additions & 0 deletions src/Lang/nl/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

return [
'preheader' => 'We laten je even weten dat iemand gereageerd heeft op een forum discussie.',
'greeting' => 'Hallo,',
'body' => 'We laten je even weten dat iemand gereageerd heeft op een forum discussie op',
'view_discussion' => 'Bekijk de discussie',
'farewell' => 'Nog een fijne dag gewenst!',
'unsuscribe' => [
'message' => 'Als je geen notificaties meer wilt ontvangen voor deze discussie, wijzig dan je aanmelding onderaan deze pagina :)',
'action' => 'Genoeg van deze e-mails?',
'link' => 'Afmelden voor deze discussie',
],
];
44 changes: 44 additions & 0 deletions src/Lang/nl/messages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?php

return [
'words' => [
'cancel' => 'Annuleer',
'delete' => 'Verwijder',
'edit' => 'Wijzig',
'yes' => 'Ja',
'no' => 'Nee',
'minutes' => '1 minuut| :count minuten',
],

'discussion' => [
'new' => 'Nieuwe discussie',
'all' => 'Toon alle discussies',
'create' => 'Creëer een discussie',
'posted_by' => 'Geplaatst door',
'head_details' => 'Geplaatst in',

],
'response' => [
'confirm' => 'Weet je zeker dat je deze reactie wilt verwijderen?',
'yes_confirm' => 'Ja, verwijder het',
'no_confirm' => 'Nee, bedankt',
'submit' => 'Plaats reactie',
'update' => 'Wijzig reactie',
],

'editor' => [
'title' => 'Titel van je discussie',
'select' => 'Kies een categorie',
'tinymce_placeholder' => 'Typ je bericht hier',
'select_color_text' => 'Kies een kleur voor deze discussie (optioneel)',
],

'email' => [
'notify' => 'Stuur mij notificaties van antwoorden',
],

'auth' => 'Je moet <a href="/:home/login">inloggen</a>
of <a href="/:home/register">registreren</a>
om een reactie te plaatsen.',

];