Initial commit
This commit is contained in:
103
resources/lang/nl/routes.php
Normal file
103
resources/lang/nl/routes.php
Normal file
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Localized routes to be used with mcamara/laravel-localization
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may translate your routes. For example, http://url/en/about and http://url/es/acerca
|
||||
| (acerca is about in spanish) or http://url/en/article/important-article and
|
||||
| http://url/es/articulo/important-article (article is articulo in spanish) would
|
||||
| be redirected to the same controller/view as follows:
|
||||
| It is necessary that at least the localize middleware in loaded in your
|
||||
| Route::group middleware (See installation instruction).
|
||||
|
|
||||
| For each language, add a routes.php into resources/lang/[**]/routes.php folder.
|
||||
| The file contains an array with all translatable routes.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
"welcome" => "welkom",
|
||||
"goodbye-deleted-user" => "tot-ziens",
|
||||
'main' => 'hoofd-pagina',
|
||||
'pay' => 'betaal',
|
||||
'pay-to-name' => 'betaal/{name}',
|
||||
'pay-amount-to-name' => 'betaal/{hours}/{minutes}/aan/{name}',
|
||||
'pay-amount-to-name-description' => 'betaal/{hours}/{minutes}/aan/{name}/omschrijving/{description}',
|
||||
'transactions' => 'transacties',
|
||||
'statement' => 'transactie-bewijs/{transactionId}',
|
||||
'contacts' => 'contacten',
|
||||
'reports' => 'rapporten',
|
||||
'posts.manage' => 'artikelen/beheren',
|
||||
'calls.manage' => 'oproepen/beheren',
|
||||
'post.show' => 'artikel/{id}',
|
||||
'post.show_international' => 'post/{id}',
|
||||
'post.show_by_slug' => 'artikel/{slug}',
|
||||
'categories.manage' => 'categorieen/beheren',
|
||||
'tags.manage' => 'labels/beheren',
|
||||
'profiles.manage' => 'profielen/beheren',
|
||||
'permissions.manage' => 'rechten/beheren',
|
||||
'roles.manage' => 'rollen/beheren',
|
||||
|
||||
'static.getting-started' => 'starten',
|
||||
'static.faq' => 'vraag-en-antwoord',
|
||||
'static.privacy' => 'privacy',
|
||||
'static.organizations' => 'organizaties',
|
||||
'static.principles' => 'principes',
|
||||
'static.report-issue' => 'probleem-melden',
|
||||
'static.events' => 'evenementen',
|
||||
'static.the-hague' => 'den-haag',
|
||||
'static.lekkernassuh' => 'lekkernassuh',
|
||||
'static.amst-brus-lisb' => 'amsterdam-brussel-lissabon',
|
||||
'static.work-w-us' => 'werk-bij-ons',
|
||||
'static.philosophy' => 'filosofie',
|
||||
'static.open-source' => 'open-source',
|
||||
'static.timebank-organization' => 'timebank-organizatie',
|
||||
'static.history' => 'geschiedenis',
|
||||
'static.press-media' => 'pers-en-media',
|
||||
'static.economics-and-research' => 'economie-en-onderzoek',
|
||||
'static.team' => 'team',
|
||||
'static.messenger' => 'over-messenger',
|
||||
'static.report-error' => 'fout-melden',
|
||||
|
||||
'profile.show' => 'profiel/{type}/{id}',
|
||||
'profile.show_active' => 'profiel/bekijken',
|
||||
|
||||
'user.show' => 'gebruiker/{id}',
|
||||
'user.show-by-name' => 'gebruiker/{name}',
|
||||
'organization.show' => 'organisatie/{id}',
|
||||
'bank.show' => 'bank/{id}',
|
||||
'bank.show-by-name' => 'bank/{name}',
|
||||
'admin.show' => 'admin/{id}',
|
||||
'admin.show-by-name' => 'admin/{name}',
|
||||
'profile.edit' => 'profiel/bewerken',
|
||||
|
||||
'users-overview' => 'gebruikers-overzicht',
|
||||
'search.show' => 'zoeken',
|
||||
'messenger.join' => 'messenger/uitnodiging/{invite}',
|
||||
'terms.show' => 'algemene-voorwaarden',
|
||||
'policy.show' => 'privacybeleid',
|
||||
'profile.settings' => 'profiel/instellingen',
|
||||
|
||||
'messenger.portal' => 'messenger',
|
||||
'messenger.show' => 'messenger/{thread}',
|
||||
'messenger.private.create' => 'messenger/recipient/{alias}/{id}',
|
||||
'messenger.threads.show.call' => 'messenger/threads/{thread}/calls/{call}',
|
||||
'messenger.join.invite' => 'messenger/meedoen/{invite}',
|
||||
|
||||
'chat.start' => 'chats/{profileType}/{id}',
|
||||
|
||||
'register' => 'registreren',
|
||||
'login' => 'inloggen',
|
||||
'bank.login' => 'bank/inloggen',
|
||||
'admin.login' => 'admin/inloggen',
|
||||
'password.request' => 'wachtwoord/vergeten',
|
||||
'password.email' => 'wachtwoord/email',
|
||||
'password.reset' => 'wachtwoord/reset/{token}',
|
||||
'password.update' => 'wachtwoord/reset',
|
||||
'logout' => 'uitloggen',
|
||||
'bank.logout' => 'bank/uitloggen',
|
||||
'admin.logout' => 'admin/uitloggen'
|
||||
];
|
||||
Reference in New Issue
Block a user