This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
lang.php
244 lines (218 loc) · 16.5 KB
/
lang.php
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<?php
// ---------------------------
// Auth Class Language File
// Current Languages : en / fr
// ---------------------------
// en (English) :
$lang['en']['auth']['login_lockedout'] = "You have been temporarily locked out !";
$lang['en']['auth']['login_wait30'] = "Please wait 30 minutes.";
$lang['en']['auth']['login_username_empty'] = "Username / Password is invalid !";
$lang['en']['auth']['login_username_short'] = "Username / Password is invalid !";
$lang['en']['auth']['login_username_long'] = "Username / Password is invalid !";
$lang['en']['auth']['login_password_empty'] = "Username / Password is invalid !";
$lang['en']['auth']['login_password_short'] = "Username / Password is invalid !";
$lang['en']['auth']['login_password_long'] = "Username / Password is invalid !";
$lang['en']['auth']['login_incorrect'] = "Username / Password is incorrect !";
$lang['en']['auth']['login_attempts_remaining'] = "%d attempts remaining !";
$lang['en']['auth']['login_account_inactive'] = "Account is not activated !";
$lang['en']['auth']['login_success'] = "You are now logged in !";
$lang['en']['auth']['login_already'] = "You are already logged in !";
$lang['en']['auth']['register_username_empty'] = "Username field is empty !";
$lang['en']['auth']['register_username_short'] = "Username is too short !";
$lang['en']['auth']['register_username_long'] = "Username is too long !";
$lang['en']['auth']['register_password_empty'] = "Password field is empty !";
$lang['en']['auth']['register_password_short'] = "Password is too short !";
$lang['en']['auth']['register_password_long'] = "Password is too long !";
$lang['en']['auth']['register_password_nomatch'] = "Passwords don't match !";
$lang['en']['auth']['register_password_username'] = "Password cannot contain the username !";
$lang['en']['auth']['register_email_empty'] = "Email field is empty !";
$lang['en']['auth']['register_email_short'] = "Email is too short !";
$lang['en']['auth']['register_email_long'] = "Email is too long !";
$lang['en']['auth']['register_email_invalid'] = "Email is invalid !";
$lang['en']['auth']['register_username_exist'] = "Username is already in use !";
$lang['en']['auth']['register_email_exist'] = "Email is already in use !";
$lang['en']['auth']['register_success'] = "New Account Created ! Activation email sent to your email address.";
$lang['en']['auth']['register_email_loggedin'] = "You are currently logged in !";
$lang['en']['auth']['deletesession_invalid'] = "Invalid Session Hash !";
$lang['en']['auth']['sessioninfo_invalid'] = "Invalid Session Hash !";
$lang['en']['auth']['activate_username_empty'] = "Invalid URL !";
$lang['en']['auth']['activate_username_short'] = "Invalid URL !";
$lang['en']['auth']['activate_username_long'] = "Invalid URL !";
$lang['en']['auth']['activate_key_empty'] = "Invalid URL !";
$lang['en']['auth']['activate_key_short'] = "Invalid URL !";
$lang['en']['auth']['activate_key_long'] = "Invalid URL !";
$lang['en']['auth']['activate_username_incorrect'] = "Username is incorrect !";
$lang['en']['auth']['activate_account_activated'] = "Account is already activated !";
$lang['en']['auth']['activate_success'] = "Account successfully activated !";
$lang['en']['auth']['activate_key_incorrect'] = "Activation key is incorrect !";
$lang['en']['auth']['changepass_username_empty'] = "Error encountered !";
$lang['en']['auth']['changepass_username_short'] = "Error encountered !";
$lang['en']['auth']['changepass_username_long'] = "Error encountered !";
$lang['en']['auth']['changepass_currpass_empty'] = "Current Password field is empty !";
$lang['en']['auth']['changepass_currpass_short'] = "Current Password is too short !";
$lang['en']['auth']['changepass_currpass_long'] = "Current Password is too long !";
$lang['en']['auth']['changepass_newpass_empty'] = "New Password field is empty !";
$lang['en']['auth']['changepass_newpass_short'] = "New Password is too short !";
$lang['en']['auth']['changepass_newpass_long'] = "New Password is too long !";
$lang['en']['auth']['changepass_password_username'] = "Password cannot contain the username !";
$lang['en']['auth']['changepass_password_nomatch'] = "Passwords don't match !";
$lang['en']['auth']['changepass_username_incorrect'] = "Error encountered !";
$lang['en']['auth']['changepass_success'] = "Password successfully changed !";
$lang['en']['auth']['changepass_currpass_incorrect'] = "Current Password is incorrect !";
$lang['en']['auth']['changeemail_username_empty'] = "Error encountered !";
$lang['en']['auth']['changeemail_username_short'] = "Error encountered !";
$lang['en']['auth']['changeemail_username_long'] = "Error encountered !";
$lang['en']['auth']['changeemail_email_empty'] = "Email field is empty !";
$lang['en']['auth']['changeemail_email_short'] = "Email is too short !";
$lang['en']['auth']['changeemail_email_long'] = "Email is too long !";
$lang['en']['auth']['changeemail_email_invalid'] = "Email is invalid !";
$lang['en']['auth']['changeemail_username_incorrect'] = "Error encountered !";
$lang['en']['auth']['changeemail_email_match'] = "New email address matches the existing one !";
$lang['en']['auth']['changeemail_success'] = "Email address successfully changed !";
$lang['en']['auth']['resetpass_lockedout'] = "You have been temporarily locked out !";
$lang['en']['auth']['resetpass_wait30'] = "Please wait 30 mins.";
$lang['en']['auth']['resetpass_email_empty'] = "Email field is empty !";
$lang['en']['auth']['resetpass_email_short'] = "Email is too short !";
$lang['en']['auth']['resetpass_email_long'] = "Email is too long !";
$lang['en']['auth']['resetpass_email_invalid'] = "Email is invalid !";
$lang['en']['auth']['resetpass_email_incorrect'] = "Email is incorrect !";
$lang['en']['auth']['resetpass_attempts_remaining'] = "%d attempts remaining !";
$lang['en']['auth']['resetpass_email_sent'] = "Password Reset Request sent to your email address !";
$lang['en']['auth']['resetpass_key_empty'] = "Reset Key field is empty !";
$lang['en']['auth']['resetpass_key_short'] = "Reset Key is too short !";
$lang['en']['auth']['resetpass_key_long'] = "Reset Key is too long !";
$lang['en']['auth']['resetpass_newpass_empty'] = "New Password field is empty !";
$lang['en']['auth']['resetpass_newpass_short'] = "New Password is too short !";
$lang['en']['auth']['resetpass_newpass_long'] = "New Password is too long !";
$lang['en']['auth']['resetpass_newpass_username'] = "New Password cannot contain username !";
$lang['en']['auth']['resetpass_newpass_nomatch'] = "Passwords don't match !";
$lang['en']['auth']['resetpass_username_incorrect'] = "Error encountered !";
$lang['en']['auth']['resetpass_success'] = "Password successfully changed !";
$lang['en']['auth']['resetpass_key_incorrect'] = "Reset Key is incorrect !";
$lang['en']['auth']['checkresetkey_username_incorrect'] = "Username is incorrect !";
$lang['en']['auth']['checkresetkey_key_incorrect'] = "Reset Key is incorrect !";
$lang['en']['auth']['checkresetkey_lockedout'] = "You have been temporarily locked out !";
$lang['en']['auth']['checkresetkey_wait30'] = "Please wait 30 mins.";
$lang['en']['auth']['checkresetkey_attempts_remaining'] = "%d attempts remaining !";
$lang['en']['auth']['deleteaccount_username_empty'] = "Error encountered !";
$lang['en']['auth']['deleteaccount_username_short'] = "Error encountered !";
$lang['en']['auth']['deleteaccount_username_long'] = "Error encountered !";
$lang['en']['auth']['deleteaccount_password_empty'] = "Password field is empty !";
$lang['en']['auth']['deleteaccount_password_short'] = "Password is too short !";
$lang['en']['auth']['deleteaccount_password_long'] = "Password is too long !";
$lang['en']['auth']['deleteaccount_username_incorrect'] = "Error encountered !";
$lang['en']['auth']['deleteaccount_success'] = "Account deleted successfully !";
$lang['en']['auth']['deleteaccount_password_incorrect'] = "Password is incorrect !";
$lang['en']['auth']['logactivity_username_short'] = "Error encountered !";
$lang['en']['auth']['logactivity_username_long'] = "Error encountered !";
$lang['en']['auth']['logactivity_action_empty'] = "Error encountered !";
$lang['en']['auth']['logactivity_action_short'] = "Error encountered !";
$lang['en']['auth']['logactivity_action_long'] = "Error encountered !";
$lang['en']['auth']['logactivity_addinfo_long'] = "Error encountered !";
// fr (French) :
$lang['fr']['auth']['login_lockedout'] = "Vous avez été temporairement bloqué !";
$lang['fr']['auth']['login_wait30'] = "Veuillez attendre 30 minutes.";
$lang['fr']['auth']['login_username_empty'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_username_short'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_username_long'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_password_empty'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_password_short'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_password_long'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_incorrect'] = "Nom d'utilisateur / Mot de passe invalide !";
$lang['fr']['auth']['login_attempts_remaining'] = "%d tentatives restantes !";
$lang['fr']['auth']['login_account_inactive'] = "Compte non activé !";
$lang['fr']['auth']['login_success'] = "Vous etes maintenant connecté !";
$lang['fr']['auth']['login_already'] = "Vous etes deja connecté !";
$lang['fr']['auth']['register_username_empty'] = "Champ Nom d'utilisateur vide !";
$lang['fr']['auth']['register_username_short'] = "Nom d'utilisateur trop court !";
$lang['fr']['auth']['register_username_long'] = "Nom d'utilisateur trop long !";
$lang['fr']['auth']['register_password_empty'] = "Champ Mot de pass vide !";
$lang['fr']['auth']['register_password_short'] = "Mot de passe trop court !";
$lang['fr']['auth']['register_password_long'] = "Mot de passe trop court !";
$lang['fr']['auth']['register_password_nomatch'] = "Les Mots de passe ne correspondent pas !";
$lang['fr']['auth']['register_password_username'] = "Le Mot de passe ne peut pas contenir le Nom d'utilisateur !";
$lang['fr']['auth']['register_email_empty'] = "Champ email vide !";
$lang['fr']['auth']['register_email_short'] = "Email trop court !";
$lang['fr']['auth']['register_email_long'] = "Email trop long !";
$lang['fr']['auth']['register_email_invalid'] = "Email invalide !";
$lang['fr']['auth']['register_username_exist'] = "Le nom d'utilisateur est deja pris !";
$lang['fr']['auth']['register_email_exist'] = "Email deja utilisé !";
$lang['fr']['auth']['register_success'] = "Nouveau compte crée ! Un email d'activation a été envoyé.";
$lang['fr']['auth']['register_email_loggedin'] = "Vous avez deja un compte !";
$lang['fr']['auth']['deletesession_invalid'] = "Erreur rencontrée !";
$lang['fr']['auth']['sessioninfo_invalid'] = "Erreur rencontrée !";
$lang['fr']['auth']['activate_username_empty'] = "URL Invalide !";
$lang['fr']['auth']['activate_username_short'] = "URL Invalide !";
$lang['fr']['auth']['activate_username_long'] = "URL Invalide !";
$lang['fr']['auth']['activate_key_empty'] = "URL Invalide !";
$lang['fr']['auth']['activate_key_short'] = "URL Invalide !";
$lang['fr']['auth']['activate_key_long'] = "URL Invalide !";
$lang['fr']['auth']['activate_username_incorrect'] = "Nom d'utilisateur incorrecte !";
$lang['fr']['auth']['activate_account_activated'] = "Compte deja activé !";
$lang['fr']['auth']['activate_success'] = "Compte activé !";
$lang['fr']['auth']['activate_key_incorrect'] = "Clé d'activation incorrecte !";
$lang['fr']['auth']['changepass_username_empty'] = "Erreur rencontrée !";
$lang['fr']['auth']['changepass_username_short'] = "Erreur rencontrée !";
$lang['fr']['auth']['changepass_username_long'] = "Erreur rencontrée !";
$lang['fr']['auth']['changepass_currpass_empty'] = "Champ Mot de passe actuel vide !";
$lang['fr']['auth']['changepass_currpass_short'] = "Mot de passe actuel trop court !";
$lang['fr']['auth']['changepass_currpass_long'] = "Mot de passe actuel trop long !";
$lang['fr']['auth']['changepass_newpass_empty'] = "Champ Nouveau mot de passe vide !";
$lang['fr']['auth']['changepass_newpass_short'] = "Nouveau mot de passe trop court !";
$lang['fr']['auth']['changepass_newpass_long'] = "Nouveau mot de passe trop long !";
$lang['fr']['auth']['changepass_password_username'] = "Le Mot de passe ne peut pas contenir le nom d'utilisateur !";
$lang['fr']['auth']['changepass_password_nomatch'] = "Les Mots de passe ne correspondent pas !";
$lang['fr']['auth']['changepass_username_incorrect'] = "Erreur rencontrée !";
$lang['fr']['auth']['changepass_success'] = "Mot de passe changé !";
$lang['fr']['auth']['changepass_currpass_incorrect'] = "Mot de passe actuel incorrect !";
$lang['fr']['auth']['changeemail_username_empty'] = "Erreur rencontrée !";
$lang['fr']['auth']['changeemail_username_short'] = "Erreur rencontrée !";
$lang['fr']['auth']['changeemail_username_long'] = "Erreur rencontrée !";
$lang['fr']['auth']['changeemail_email_empty'] = "Champ Email vide !";
$lang['fr']['auth']['changeemail_email_short'] = "Email trop court !";
$lang['fr']['auth']['changeemail_email_long'] = "Email trop long !";
$lang['fr']['auth']['changeemail_email_invalid'] = "Email invalide !";
$lang['fr']['auth']['changeemail_username_incorrect'] = "Erreur rencontrée !";
$lang['fr']['auth']['changeemail_email_match'] = "Le nouveau adresse email est le meme que l'adresse email existant !";
$lang['fr']['auth']['changeemail_success'] = "Adresse Email changé !";
$lang['fr']['auth']['resetpass_lockedout'] = "Vous avez été temporairement bloqué !";
$lang['fr']['auth']['resetpass_wait30'] = "Veuillez attendre 30 minutes.";
$lang['fr']['auth']['resetpass_email_empty'] = "Champ Email vide !";
$lang['fr']['auth']['resetpass_email_short'] = "Email trop court !";
$lang['fr']['auth']['resetpass_email_long'] = "Email trop long !";
$lang['fr']['auth']['resetpass_email_invalid'] = "Email invalide !";
$lang['fr']['auth']['resetpass_email_incorrect'] = "Email incorrect !";
$lang['fr']['auth']['resetpass_attempts_remaining'] = "%d tentatives restantes !";
$lang['fr']['auth']['resetpass_email_sent'] = "Demande de réinitialisation de mot de passe envoyé a votre adresse email !";
$lang['fr']['auth']['resetpass_key_empty'] = "Champ Clé de réinitialisation vide !";
$lang['fr']['auth']['resetpass_key_short'] = "Clé de réinitialisation trop court !";
$lang['fr']['auth']['resetpass_key_long'] = "Clé de réinitialisation trop long !";
$lang['fr']['auth']['resetpass_newpass_empty'] = "Champ Nouveau mot de passe vide !";
$lang['fr']['auth']['resetpass_newpass_short'] = "Nouveau mot de passe trop court !";
$lang['fr']['auth']['resetpass_newpass_long'] = "Nouveau mot de passe trop court !";
$lang['fr']['auth']['resetpass_newpass_username'] = "Le Nouveau mot de passe ne peut pas contenir le nom d'utilisateur !";
$lang['fr']['auth']['resetpass_newpass_nomatch'] = "Les Mots de passe ne correspondent pas !";
$lang['fr']['auth']['resetpass_username_incorrect'] = "Erreur rencontrée !";
$lang['fr']['auth']['resetpass_success'] = "Mot de passe changé !";
$lang['fr']['auth']['resetpass_key_incorrect'] = "Clé de réinitialisation incorrecte !";
$lang['fr']['auth']['checkresetkey_username_incorrect'] = "Nom d'utilisateur incorrect !";
$lang['fr']['auth']['checkresetkey_key_incorrect'] = "Clé de réinitialisation incorrecte !";
$lang['fr']['auth']['checkresetkey_lockedout'] = "Vous avez été temporairement bloqué !";
$lang['fr']['auth']['checkresetkey_wait30'] = "Veuillez attendre 30 minutes.";
$lang['fr']['auth']['checkresetkey_attempts_remaining'] = "%d tentatives restantes !";
$lang['fr']['auth']['deleteaccount_username_empty'] = "Erreur rencontrée !";
$lang['fr']['auth']['deleteaccount_username_short'] = "Erreur rencontrée !";
$lang['fr']['auth']['deleteaccount_username_long'] = "Erreur rencontrée !";
$lang['fr']['auth']['deleteaccount_password_empty'] = "Champ Mot de passe vide !";
$lang['fr']['auth']['deleteaccount_password_short'] = "Mot de passe trop court !";
$lang['fr']['auth']['deleteaccount_password_long'] = "Mot de passe trop long !";
$lang['fr']['auth']['deleteaccount_username_incorrect'] = "Erreur rencontrée !";
$lang['fr']['auth']['deleteaccount_success'] = "Compte supprimé !";
$lang['fr']['auth']['deleteaccount_password_incorrect'] = "Mot de passe incorrect !";
$lang['fr']['auth']['logactivity_username_short'] = "Erreur rencontrée !";
$lang['fr']['auth']['logactivity_username_long'] = "Erreur rencontrée !";
$lang['fr']['auth']['logactivity_action_empty'] = "Erreur rencontrée !";
$lang['fr']['auth']['logactivity_action_short'] = "Erreur rencontrée !";
$lang['fr']['auth']['logactivity_action_long'] = "Erreur rencontrée !";
$lang['fr']['auth']['logactivity_addinfo_long'] = "Erreur rencontrée !";
?>