diff --git a/.gitignore b/.gitignore index 7f9f6bb..fe3f809 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ /public/assets/node_modules .DS_Store +composer.lock +/vendor/ +/.idea/ \ No newline at end of file diff --git a/config/chatter.php b/config/chatter.php index f9665c0..0867abe 100644 --- a/config/chatter.php +++ b/config/chatter.php @@ -23,11 +23,11 @@ /* |-------------------------------------------------------------------------- - | The main headline and description of your forum + | Headline logo |-------------------------------------------------------------------------- | - | Your headline and your description will be shown on the homepage of your - | forum, unless you change the default theme. + | Specify the url for your logo. If left empty the headline and + | description from the language files will be used. | | *headline_logo*: If this is set an image will be used on the forum home | instead of text. Specify the relative path to the image here. diff --git a/src/Lang/en/alert.php b/src/Lang/en/alert.php index 2eea463..9b6edd9 100644 --- a/src/Lang/en/alert.php +++ b/src/Lang/en/alert.php @@ -26,7 +26,7 @@ 'update_post' => 'Nah ah ah... Could not update your response. Make sure you\'re not doing anything shady.', 'destroy_post' => 'Nah ah ah... Could not delete the response. Make sure you\'re not doing anything shady.', 'create_discussion' => 'Whoops :( There seems to be a problem creating your '.mb_strtolower(trans('chatter::intro.titles.discussion')).'.', - 'title_required' => 'Please write a tittle', + 'title_required' => 'Please write a title', 'title_min' => 'The title has to have at least :min characters.', 'title_max' => 'The title has to have no more than :max characters.', 'content_required' => 'Please write some content', diff --git a/src/Lang/en/messages.php b/src/Lang/en/messages.php index b079777..5baa5d2 100644 --- a/src/Lang/en/messages.php +++ b/src/Lang/en/messages.php @@ -7,7 +7,6 @@ 'edit' => 'Edit', 'yes' => 'Yes', 'no' => 'No', - 'all' => 'All', 'minutes' => '1 minute| :count minutes', ], diff --git a/src/Lang/es/messages.php b/src/Lang/es/messages.php index ac0aa64..7592c3d 100644 --- a/src/Lang/es/messages.php +++ b/src/Lang/es/messages.php @@ -7,7 +7,6 @@ 'edit' => 'Editar', 'yes' => 'Si', 'no' => 'No', - 'all' => 'Todo', 'minutes' => '1 minuto| :count minutos', ], diff --git a/src/Lang/nl/alert.php b/src/Lang/nl/alert.php index 5f5eda1..e8a4f7e 100644 --- a/src/Lang/nl/alert.php +++ b/src/Lang/nl/alert.php @@ -26,12 +26,12 @@ '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 :(', - 'title_required' => 'Please write a tittle', - 'title_min' => 'The title has to have at least :min characters.', - 'title_max' => 'The title has to have no more than :max characters.', - 'content_required' => 'Please write some content', - 'content_min' => 'The content has to have at least :min characters', - 'category_required' => 'Please choose a category', + 'title_required' => 'Voeg alsjeblieft een titel toe', + 'title_min' => 'De titel heeft ten minste :min karkaters nodig.', + 'title_max' => 'De titel mag maar uit :max karakters bestaan.', + 'content_required' => 'Voeg alsjeblieft een bericht toe', + 'content_min' => 'Je bericht heeft ten minste :mix karakters nodig', + 'category_required' => 'Kies alsjeblieft een categorie', ], ], ]; diff --git a/src/Lang/nl/intro.php b/src/Lang/nl/intro.php index 6215698..b2e658a 100644 --- a/src/Lang/nl/intro.php +++ b/src/Lang/nl/intro.php @@ -31,8 +31,8 @@ | */ - 'headline' => 'Welcome to Chatter', - 'description' => 'A simple forum package for your Laravel app.', + 'headline' => 'Welkom bij Chatter', + 'description' => 'Een simpel forum package voor je Laravel app.', ]; diff --git a/src/Lang/nl/messages.php b/src/Lang/nl/messages.php index 697c7fe..a9c2100 100644 --- a/src/Lang/nl/messages.php +++ b/src/Lang/nl/messages.php @@ -7,7 +7,6 @@ 'edit' => 'Wijzig', 'yes' => 'Ja', 'no' => 'Nee', - 'all' => 'Toon', 'minutes' => '1 minuut| :count minuten', ],