menus.php
2.87 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' => 'Erişim Yönetimi',
'roles' => [
'all' => 'Tüm Roller',
'create' => 'Rol Oluştur',
'edit' => 'Rol Düzenle',
'management' => 'Rol Yönetimi',
'main' => 'Roller',
],
'users' => [
'all' => 'Tüm Kullanıcılar',
'change-password' => 'Parolayı Değiştir',
'create' => 'Kullanıcı Oluştur',
'deactivated' => 'Pasif Kullanıcılar',
'deleted' => 'Silinmiş Kullanıcılar',
'edit' => 'Kullanıcıyı Düzenle',
'main' => 'Kullanıcılar',
'view' => 'Kullanıcıyı Görüntüle',
],
],
'log-viewer' => [
'main' => 'Log Görüntüleyici',
'dashboard' => 'Kokpit',
'logs' => 'Loglar',
],
'sidebar' => [
'dashboard' => 'Kokpit',
'general' => 'Genel',
'system' => 'Sistem',
],
],
'language-picker' => [
'language' => 'Dil',
/*
* 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' => 'Arapça (Arabic)',
'zh' => 'Basitleştirilmiş Çince (Chinese Simplified)',
'zh-TW' => 'Geleneksel Çince (Chinese Traditional)',
'da' => 'Danimarka (Danish)',
'de' => 'Almanca (German)',
'el' => 'Yunanca (Greek)',
'en' => 'İngilizce (English)',
'es' => 'İspanyolca (Spanish)',
'fr' => 'Fransızca (French)',
'id' => 'Endonezya (Indonesian)',
'it' => 'İtalyanca (Italian)',
'ja' => 'Japonca (Japanese)',
'nl' => 'Hollandaca (Dutch)',
'pt_BR' => 'Brezilya Portekizcesi (Brazilian Portuguese)',
'ru' => 'Rusça (Russian)',
'sv' => 'İsveççe (Swedish)',
'th' => 'Tay (Thai)',
'tr' => 'Türkçe (Turkish)',
],
],
];