menus.php
2.72 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' => 'Manajemen Akses',
'roles' => [
'all' => 'Semua Peran',
'create' => 'Buat Peran',
'edit' => 'Edit Peran',
'management' => 'Manajemen Peran',
'main' => 'Peran',
],
'users' => [
'all' => 'Semua Pengguna',
'change-password' => 'Ubah Sandi',
'create' => 'Buat Pengguna',
'deactivated' => 'Pengguna Dinonaktifkan',
'deleted' => 'Pengguna Dihapus',
'edit' => 'Edit Pengguna',
'main' => 'Pengguna',
'view' => 'Lihat Pengguna',
],
],
'log-viewer' => [
'main' => 'Pengamat Catatan',
'dashboard' => 'Dasbor',
'logs' => 'Catatan',
],
'sidebar' => [
'dashboard' => 'Dasbor',
'general' => 'Umum',
'system' => 'Sistem',
],
],
'language-picker' => [
'language' => 'Bahasa',
/*
* 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' => 'Jerman (German)',
'el' => 'Yunani (Greek)',
'en' => 'Inggris (English)',
'es' => 'Spanyol (Spanish)',
'fr' => 'Perancis (French)',
'id' => 'Bahasa Indonesia (Indonesian)',
'it' => 'Italia (Italian)',
'ja' => '(Japanese)',
'nl' => 'Belanda (Dutch)',
'pt_BR' => 'Bahasa Portugis Brasil (Brazilian Portuguese)',
'ru' => 'Rusia (Russian)',
'sv' => 'Swedia (Swedish)',
'th' => 'Bahasa (Thai)',
'tr' => '(Turkish)',
],
],
];