| 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'][0] = 'The username is case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
|---|
| 27 | |
|---|
| 28 | $lang['LCAS_tooltip_username_index'][1] = 'The username is case insensitive (uppercase/lowercase; E = e ≠ É = é)'; |
|---|
| 29 | |
|---|
| 30 | $lang['LCAS_tooltip_username_index'][2] = 'The username is accents insensitive (e = é ≠ E = É)'; |
|---|
| 31 | |
|---|
| 32 | $lang['LCAS_tooltip_username_index'][3] = 'The username is case (uppercase/lowercase) and accents insensitive (E = e = É = é)'; |
|---|
| 33 | |
|---|
| 34 | $lang['LCAS_tooltip_password_index'] = 'The password is always case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | // Tooltips in register page |
|---|
| 38 | $lang['LCAS_tooltip_username_register'][0] = 'The username is case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
|---|
| 39 | |
|---|
| 40 | $lang['LCAS_tooltip_username_register'][1] = 'The username is case insensitive (uppercase/lowercase; E = e ≠ É = é)'; |
|---|
| 41 | |
|---|
| 42 | $lang['LCAS_tooltip_username_register'][2] = 'The username is accents insensitive (e = é ≠ E = É)'; |
|---|
| 43 | |
|---|
| 44 | $lang['LCAS_tooltip_username_register'][3] = 'The username is case (uppercase/lowercase) and accents insensitive (E = e = É = é)'; |
|---|
| 45 | |
|---|
| 46 | $lang['LCAS_tooltip_password_register'] = 'The password is always case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)'; |
|---|
| 47 | |
|---|
| 48 | // Tooltips in admin user_list page |
|---|
| 49 | $lang['LCAS_tooltip_username_admin'][0] = 'Case and accents sensitivity (E ≠ e ≠ É ≠ é) ; joker (* or %) allowed as first or last character'; |
|---|
| 50 | |
|---|
| 51 | $lang['LCAS_tooltip_username_admin'][1] = 'Case insensitivity (E = e ≠ É = é) ; joker (* or %) allowed as first or last character'; |
|---|
| 52 | |
|---|
| 53 | $lang['LCAS_tooltip_username_admin'][2] = 'Accents insensitivity (e = é ≠ E = É) ; joker (* or %) allowed as first or last character'; |
|---|
| 54 | |
|---|
| 55 | $lang['LCAS_tooltip_username_admin'][3] = 'Case and accents insensitivity (E = e = É = é) ; joker (* or %) allowed as first or last character'; |
|---|
| 56 | |
|---|
| 57 | ?> |
|---|