menus.php
2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
return [
/*
|--------------------------------------------------------------------------
| Menus Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used in menu items throughout the system.
| Regardless where it is placed, a menu item can be listed here so it is easily
| found in a intuitive way.
|
*/
'backend' => [
'access' => [
'title' => '权限管理',
'roles' => [
'all' => '所有角色',
'create' => '新建角色',
'edit' => '编辑角色',
'management' => '角色管理',
'main' => '角色',
],
'users' => [
'all' => '所有用户',
'change-password' => '更改密码',
'create' => '新建用户',
'deactivated' => '未激活的用户',
'deleted' => '已删除的用户',
'edit' => '编辑用户',
'main' => '用户',
'view' => '查看用户',
],
],
'log-viewer' => [
'main' => '日志查看器',
'dashboard' => '指示板',
'logs' => '日志',
],
'sidebar' => [
'dashboard' => '指示板',
'general' => '常规',
'system' => '系统',
],
],
'language-picker' => [
'language' => '语言',
/*
* Add the new language to this array.
* The key should have the same language code as the folder name.
* The string should be: 'Language-name-in-your-own-language (Language-name-in-English)'.
* Be sure to add the new language in alphabetical order.
*/
'langs' => [
'ar' => '阿拉伯语(Arabic)',
'zh' => '中文(Chinese Simplified)',
'zh-TW' => '中文(Chinese Traditional)',
'da' => '丹麦语(Danish)',
'de' => '德语(German)',
'el' => '希腊语(Greek)',
'en' => '英语(English)',
'es' => '西班牙语(Spanish)',
'fr' => '法语(French)',
'id' => '印度尼西亚语(Indonesian)',
'it' => '意大利语(Italian)',
'ja' => '日语(Japanese)',
'nl' => '荷兰语(Dutch)',
'pt_BR' => '巴西葡萄牙语(Brazilian Portuguese)',
'ru' => '俄语(Russian)',
'sv' => '瑞典语(Swedish)',
'th' => '泰语(Thai)',
'tr' => '(Turkish)',
],
],
];