menus.php
2.84 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' => 'Gestion des accès',
            'roles' => [
                'all'        => 'Tous les rôles',
                'create'     => 'Créer un rôle',
                'edit'       => 'Éditer un rôle',
                'management' => 'Gestion des rôles',
                'main'       => 'Rôles',
            ],
            'users' => [
                'all'             => 'Tous les utilisateurs',
                'change-password' => 'Changer le mot de passe',
                'create'          => 'Créer un utilisateur',
                'deactivated'     => 'Utilisateurs désactivés',
                'deleted'         => 'Utilisateurs supprimés',
                'edit'            => 'Éditer un utilisateur',
                'main'            => 'Utilisateurs',
                'view'            => "Voir l'utilisateur",
            ],
        ],
        'log-viewer' => [
            'main'      => 'Consulter les logs',
            'dashboard' => 'Tableau de bord',
            'logs'      => 'Logs',
        ],
        'sidebar' => [
            'dashboard' => 'Tableau de bord',
            'general'   => 'Général',
            'system'    => 'Système',
        ],
    ],
    'language-picker' => [
        'language' => 'Langue',
        /*
         * 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'    => 'Danois (Danish)',
            'de'    => 'Allemand (German)',
            'el'    => 'Grec (Greek)',
            'en'    => 'Anglais (English)',
            'es'    => 'Espagnol  (Spanish)',
            'fr'    => 'Français (French)',
            'id'    => 'Indonésien (Indonesian)',
            'it'    => 'Italien (Italian)',
            'ja'    => '(Japanese)',
            'nl'    => 'Hollandais (Dutch)',
            'pt_BR' => 'Portugais (Brazilian Portuguese)',
            'ru'    => 'Russe (Russian)',
            'sv'    => 'Suédois (Swedish)',
            'th'    => 'Thaïlandais (Thai)',
            'tr'    => '(Turkish)',
        ],
    ],
];