generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #321 from cssf998811/i18n/zh-TW
Add traditional chinese translation
- Loading branch information
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Table Columns | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'column.name' => '角色名', | ||
'column.guard_name' => '守衛', | ||
'column.roles' => '角色', | ||
'column.permissions' => '權限', | ||
'column.updated_at' => '更新時間', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Form Fields | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'field.name' => '角色名', | ||
'field.guard_name' => '守衛', | ||
'field.permissions' => '權限', | ||
'field.select_all.name' => '全選', | ||
'field.select_all.message' => '啟用當前為該角色 <span class="text-primary font-medium">啟用的</span> 所有權限', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Navigation & Resource | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'nav.group' => 'Filament Shield', | ||
'nav.role.label' => '角色', | ||
'nav.role.icon' => 'heroicon-o-shield-check', | ||
'resource.label.role' => '角色', | ||
'resource.label.roles' => '角色', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Section & Tabs | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'section' => '實體', | ||
'resources' => '資源', | ||
'widgets' => '小工具', | ||
'pages' => '頁面', | ||
'custom' => '自訂', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Messages | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'forbidden' => '無權訪問', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Resource Permissions' Labels | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'resource_permission_prefixes_labels' => [ | ||
'view' => '檢視', | ||
'view_any' => '列表', | ||
'create' => '建立', | ||
'update' => '編輯', | ||
'delete' => '刪除', | ||
'delete_any' => '批量刪除', | ||
'force_delete' => '永久刪除', | ||
'force_delete_any' => '批量永久刪除', | ||
'restore' => '還原', | ||
'reorder' => '重新排序', | ||
'restore_any' => '批量還原', | ||
'replicate' => '複製', | ||
], | ||
]; |