labels.php
5.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
return [
/*
|--------------------------------------------------------------------------
| Labels Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used in labels throughout the system.
| Regardless where it is placed, a label can be listed here so it is easily
| found in a intuitive way.
|
*/
'general' => [
'all' => 'Tutti',
'yes' => 'Sì',
'no' => 'No',
'custom' => 'Custom', // TODO TRANSLATION
'actions' => 'Azioni',
'active' => 'Active',
'buttons' => [
'save' => 'Salva',
'update' => 'Aggiorna',
],
'hide' => 'Nascondi',
'inactive' => 'Inactive',
'none' => 'Nessuno',
'show' => 'Visualizza',
'toggle_navigation' => 'Menu Navigazione',
],
'backend' => [
'access' => [
'roles' => [
'create' => 'Crea ruolo',
'edit' => 'Modifica ruolo',
'management' => 'Gestione ruolo',
'table' => [
'number_of_users' => 'Numero di utenti',
'permissions' => 'Permessi',
'role' => 'Ruolo',
'sort' => 'Ordina',
'total' => 'Ruolo|Totale ruoli',
],
],
'users' => [
'active' => 'Utenti attivi',
'all_permissions' => 'Tutti i permessi',
'change_password' => 'Cambia password',
'change_password_for' => 'Cambia password per :user',
'create' => 'Crea utente',
'deactivated' => 'Utenti disattivati',
'deleted' => 'Utenti eliminati',
'edit' => 'Modifica utente',
'management' => 'Gestione utente',
'no_permissions' => 'Nessun permesso',
'no_roles' => 'Nessuno ruolo da assegnare.',
'permissions' => 'Permessi',
'table' => [
'confirmed' => 'Confermato',
'created' => 'Creato',
'email' => 'E-mail',
'id' => 'ID',
'last_updated' => 'Ultimo aggiornamento',
'name' => 'Nome',
'no_deactivated' => 'Nessun utente disattivato',
'no_deleted' => 'Nessun utente eliminato',
'roles' => 'Ruoli',
'social' => 'Social',
'total' => 'utente(i) totali', // TODO: pluralization
],
'tabs' => [
'titles' => [
'overview' => 'Overview',
'history' => 'History',
],
'content' => [
'overview' => [
'avatar' => 'Avatar',
'confirmed' => 'Confirmed',
'created_at' => 'Created At',
'deleted_at' => 'Deleted At',
'email' => 'E-mail',
'last_updated' => 'Last Updated',
'name' => 'Name',
'status' => 'Status',
],
],
],
'view' => 'View User',
],
],
],
'frontend' => [
'auth' => [
'login_box_title' => 'Login',
'login_button' => 'Login',
'login_with' => 'Login tramite :social_media',
'register_box_title' => 'Registrazione',
'register_button' => 'Registrati',
'remember_me' => 'Ricordami',
],
'contact' => [
'box_title' => 'Contact Us',
'button' => 'Send Information',
],
'passwords' => [
'forgot_password' => 'Password dimenticata?',
'reset_password_box_title' => 'Reset password',
'reset_password_button' => 'Reset password',
'send_password_reset_link_button' => 'Invia link per il reset della password',
],
'macros' => [
'country' => [
'alpha' => 'Codici di Paese alfabetici',
'alpha2' => 'Codici di Paese alfabetici 2',
'alpha3' => 'Codici di Paese alfabetici 3',
'numeric' => 'Codici di Paese numerici',
],
'macro_examples' => 'Esempi di macro',
'state' => [
'mexico' => 'Elenco di stati del Messico',
'us' => [
'us' => 'Stati degli USA',
'outlying' => 'Territori remoti degli USA',
'armed' => 'Forze armate USA',
],
],
'territories' => [
'canada' => 'Province e Territori del Canada',
],
'timezone' => 'Fuso orario',
],
'user' => [
'passwords' => [
'change' => 'Change Password',
],
'profile' => [
'avatar' => 'Avatar',
'created_at' => 'Data di creazione',
'edit_information' => 'Modifica informazioni',
'email' => 'E-mail',
'last_updated' => 'Ultimo aggiornamento',
'name' => 'Nome',
'update_information' => 'Aggiorna informazioni',
],
],
],
];