1 | <?php |
---|
2 | |
---|
3 | global $lang; |
---|
4 | |
---|
5 | // This file sets the messages that are displayed to the users: |
---|
6 | // error message when a user tries to create an account which already exists, |
---|
7 | // and tooltip messages displayed when the mouse hovers above username and |
---|
8 | // password fields. |
---|
9 | |
---|
10 | // You can create your own message for your personal table, having index 0: |
---|
11 | // $lang['LCAS_error'][0] = 'Your text here'; |
---|
12 | // Remove comment identifier ("//"), and replace the text "Your text here" by |
---|
13 | // the text you want. Don't forget to write the apostrophe (') with a |
---|
14 | // preceding "\": 'This ain\'t a good text without it!' |
---|
15 | |
---|
16 | |
---|
17 | // New account creation error messages |
---|
18 | $lang['LCAS_error'][1] = 'This username is already used.<br>Username is case insensitive (uppercase/lowercase; E = e ≠ É = é).'; |
---|
19 | |
---|
20 | $lang['LCAS_error'][2] = 'This username is already used.<br>Username is accents insensitive (e = é ≠ E = É).'; |
---|
21 | |
---|
22 | $lang['LCAS_error'][3] = 'This username is already used.<br>Username is case (uppercase/lowercase) and accents insensitive (E = e = É = é).'; |
---|
23 | |
---|
24 | |
---|
25 | // Tooltips in index page |
---|
26 | $lang['LCAS_tooltip_username_index'][1] = 'The username is case insensitive (uppercase/lowercase; E = e ≠ É = é)'; |
---|
27 | |
---|
28 | $lang['LCAS_tooltip_username_index'][2] = 'The username is accents insensitive (e = é ≠ E = É)'; |
---|
29 | |
---|
30 | $lang['LCAS_tooltip_username_index'][3] = 'The username is case (uppercase/lowercase) and accents insensitive (E = e = É = é)'; |
---|
31 | |
---|
32 | $lang['LCAS_tooltip_password_index'] = 'The password is always case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
---|
33 | |
---|
34 | |
---|
35 | // Tooltips in register page |
---|
36 | $lang['LCAS_tooltip_username_register'][1] = 'The username is case insensitive (uppercase/lowercase; E = e ≠ É = é)'; |
---|
37 | |
---|
38 | $lang['LCAS_tooltip_username_register'][2] = 'The username is accents insensitive (e = é ≠ E = É)'; |
---|
39 | |
---|
40 | $lang['LCAS_tooltip_username_register'][3] = 'The username is case (uppercase/lowercase) and accents insensitive (E = e = É = é)'; |
---|
41 | |
---|
42 | $lang['LCAS_tooltip_password_register'] = 'The password is always case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
---|
43 | |
---|
44 | ?> |
---|