45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
<?php
|
|
|
|
// --------------------------------------------------------
|
|
// This is only a pointer file, not an actual language file
|
|
// --------------------------------------------------------
|
|
//
|
|
// If you've copied this file to your /resources/lang/vendor/backpack/
|
|
// folder, please delete it, it's no use there. You need to copy/publish the
|
|
// actual language file, from the package.
|
|
|
|
// If a langfile with the same name exists in the package, load that one
|
|
if (file_exists(__DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__))) {
|
|
return include __DIR__.'/../../../../../permissionmanager/src/resources/lang/'.basename(__DIR__).'/'.basename(__FILE__);
|
|
}
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Permission Manager Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used for Laravel Backpack - Permission Manager
|
|
| Author: Lúdio Oliveira <ludio.ao@gmail.com>
|
|
|
|
|
*/
|
|
'name' => '名稱',
|
|
'role' => '角色',
|
|
'roles' => '角色',
|
|
'roles_have_permission' => '擁有此權限的角色',
|
|
'permission_singular' => '權限',
|
|
'permission_plural' => '權限',
|
|
'user_singular' => '使用者',
|
|
'user_plural' => '使用者',
|
|
'email' => 'Email',
|
|
'extra_permissions' => '額外權限',
|
|
'password' => '密碼',
|
|
'password_confirmation' => '再次輸入新密碼',
|
|
'user_role_permission' => '使用者角色與權限',
|
|
'user' => '使用者',
|
|
'users' => '使用者',
|
|
'guard_type' => 'Guard 類型',
|
|
|
|
];
|
|
|