menus.php
2.76 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' => 'Toegangs Beheer',
'roles' => [
'all' => 'Alle Rollen',
'create' => 'Creëer Rol',
'edit' => 'Rol aanpassen',
'management' => 'Rol Beheer',
'main' => 'Rollen',
],
'users' => [
'all' => 'Alle Gebruikers',
'change-password' => 'Wachtwoord veranderen',
'create' => 'Gebruiker aanmaken',
'deactivated' => 'Gedeactiveerde Gebruikers',
'deleted' => 'Verwijderde Gebruikers',
'edit' => 'Gebruiker aanpassen',
'main' => 'Gebruikers',
'view' => 'Bekijk Gebruiker',
],
],
'log-viewer' => [
'main' => 'Log Viewer',
'dashboard' => 'Dashboard',
'logs' => 'Logs',
],
'sidebar' => [
'dashboard' => 'Dashboard',
'general' => 'Algemeen',
'system' => 'System',
],
],
'language-picker' => [
'language' => 'Taal',
/*
* 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' => 'Arabisch (Arabic)',
'zh' => '(Chinese Simplified)',
'zh-TW' => '(Chinese Traditional)',
'da' => 'Deens (Danish)',
'de' => 'Duits (German)',
'el' => '(Greek)',
'en' => 'Engels (English)',
'es' => 'Spaans (Spanish)',
'fr' => 'Frans (French)',
'id' => 'Indonesisch (Indonesian)',
'it' => 'Italiaans (Italian)',
'ja' => '(Japanese)',
'nl' => 'Nederlands (Dutch)',
'pt_BR' => 'Braziliaans Portugees (Brazilian Portuguese)',
'ru' => 'Russisch (Russian)',
'sv' => 'Zweeds (Swedish)',
'th' => 'Thais (Thai)',
'tr' => '(Turkish)',
],
],
];