Initial commit
This commit is contained in:
105
resources/lang/en/routes.php
Normal file
105
resources/lang/en/routes.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?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" => "welcome",
|
||||
"goodbye-deleted-user" => "goodbye",
|
||||
"main" => "main-page",
|
||||
"pay" => "pay",
|
||||
'pay-to-name' => 'pay/{name}',
|
||||
'pay-amount-to-name' => 'pay/{hours}/{minutes}/to/{name}',
|
||||
'pay-amount-to-name-description' => 'pay/{hours}/{minutes}/to/{name}/description/{description}',
|
||||
'transactions' => 'transactions',
|
||||
'statement' => 'statement/{transactionId}',
|
||||
'contacts' => 'contacts',
|
||||
'reports' => 'reports',
|
||||
'posts.manage' => 'posts/manage',
|
||||
'post.show' => 'post/{id}',
|
||||
'call.show' => 'call/{id}',
|
||||
'calls.manage' => 'calls/manage',
|
||||
'post.show_international' => 'post/{id}',
|
||||
'post.show_by_slug' => 'post/{slug}',
|
||||
'categories.manage' => 'categories/manage',
|
||||
'tags.manage' => 'tags/manage',
|
||||
'profiles.manage' => 'profiles/manage',
|
||||
'permissions.manage' => 'permissions/manage',
|
||||
'roles.manage' => 'roles/manage',
|
||||
|
||||
'static.getting-started' => 'getting-started',
|
||||
'static.faq' => 'faq',
|
||||
'static.privacy' => 'privacy',
|
||||
'static.organizations' => 'organizations',
|
||||
'static.principles' => 'principles',
|
||||
'static.report-issue' => 'report-issue',
|
||||
'static.events' => 'events',
|
||||
'static.the-hague' => 'the-hague',
|
||||
'static.lekkernassuh' => 'lekkernassuh',
|
||||
'static.amst-brus-lisb' => 'amsterdam-brussels-lisbon',
|
||||
'static.work-w-us' => 'work-with-us',
|
||||
'static.philosophy' => 'philosophy',
|
||||
'static.open-source' => 'open-source',
|
||||
'static.timebank-organization' => 'timebank-organization',
|
||||
'static.history' => 'history',
|
||||
'static.press-media' => 'press-and-media',
|
||||
'static.economics-and-research' => 'economics-and-research',
|
||||
'static.team' => 'team',
|
||||
'static.messenger' => 'about-messenger',
|
||||
'static.report-error' => 'report-error',
|
||||
|
||||
'profile.show' => '{type}/{id}',
|
||||
'profile.show_active' => 'profile/show',
|
||||
|
||||
'user.show' => 'user/{id}',
|
||||
'user.show-by-name' => 'user/{name}',
|
||||
'organization.show' => 'organization/{id}',
|
||||
'organization.show-by-name' => 'organization/{name}',
|
||||
'bank.show' => 'bank/{id}',
|
||||
'bank.show-by-name' => 'bank/{name}',
|
||||
'admin.show' => 'admin/{id}',
|
||||
'admin.show-by-name' => 'admin/{name}',
|
||||
'profile.edit' => 'profile/edit',
|
||||
|
||||
'users-overview' => 'users-overview',
|
||||
'search.show' => 'search',
|
||||
'terms.show' => 'terms-of-service',
|
||||
'policy.show' => 'privacy-policy',
|
||||
'profile.settings' => 'profile/settings',
|
||||
|
||||
'messenger.portal' => 'messenger',
|
||||
'messenger.show' => 'messenger/{conversation}',
|
||||
'messenger.private.create' => 'messenger/recipient/{alias}/{id}',
|
||||
'messenger.threads.show.call' => 'messenger/threads/{thread}/calls/{call}',
|
||||
'messenger.join.invite' => 'messenger/join/{invite}',
|
||||
|
||||
'chat.start' => 'chats/{profileType}/{id}',
|
||||
|
||||
'register' => 'register',
|
||||
'login' => 'login',
|
||||
'bank.login' => 'bank/login',
|
||||
'admin.login' => 'admin/login',
|
||||
'password.request' => 'password/forgot',
|
||||
'password.email' => 'password/email',
|
||||
'password.reset' => 'password/reset/{token}',
|
||||
'password.update' => 'password/reset',
|
||||
'logout' => 'logout',
|
||||
'bank.logout' => 'bank/logout',
|
||||
'admin.logout' => 'admin/logout'
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user