first commit

This commit is contained in:
ericli1018
2024-03-13 10:43:39 +08:00
commit 1caae33c43
677 changed files with 105611 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<?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 類型',
];