generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 201
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 #225 from robin-dongbin/main
Add: Chinese (Simplified) language file.
- 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' => '复制', | ||
], | ||
]; |