source: extensions/LCAS/branch/2.3/language/en_UK/messages.lang.php @ 27127

Last change on this file since 27127 was 27127, checked in by LucMorizur, 10 years ago

Add branch 2.3

  • Property svn:eol-style set to LF
File size: 3.5 KB
Line 
1<?php
2
3// This file sets the messages that are displayed to the users:
4// error message when a user tries to create an account which already exists,
5// and tooltip messages displayed when the mouse hovers above username and
6// password fields.
7
8// You can create your own message for your personal table, having index 0:
9// $lang['LCAS_error'][0] = 'Your text here';
10// Remove comment identifier ("//"), and replace the text "Your text here" by
11// the text you want. Don't forget to write the apostrophe (') with a
12// preceding "\": 'This ain\'t a good text without it!'
13
14
15// New account creation error messages
16$lang['LCAS_error'][1] = 'This username is already used.<br>Username is case insensitive (uppercase/lowercase; E = e ≠ É = é).';
17
18$lang['LCAS_error'][2] = 'This username is already used.<br>Username is accents insensitive (e = é ≠ E = É).';
19
20$lang['LCAS_error'][3] = 'This username is already used.<br>Username is case (uppercase/lowercase) and accents insensitive (E = e = É = é).';
21
22
23// Tooltips in index page
24$lang['LCAS_tooltip_username_index'][0] = 'The username is case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)';
25
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'][0] = 'The username is case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)';
37
38$lang['LCAS_tooltip_username_register'][1] = 'The username is case insensitive (uppercase/lowercase; E = e ≠ É = é)';
39
40$lang['LCAS_tooltip_username_register'][2] = 'The username is accents insensitive (e = é ≠ E = É)';
41
42$lang['LCAS_tooltip_username_register'][3] = 'The username is case (uppercase/lowercase) and accents insensitive (E = e = É = é)';
43
44$lang['LCAS_tooltip_password_register'] = 'The password is always case (uppercase/lowercase) and accents sensitive (E ≠ e ≠ É ≠ é)';
45
46// Tooltips in admin user_list page
47$lang['LCAS_tooltip_username_admin'][0] = 'Case and accents sensitivity (E ≠ e ≠ É ≠ é)&nbsp;; joker (* or %) allowed as first or last character';
48
49$lang['LCAS_tooltip_username_admin'][1] = 'Case insensitivity (E = e ≠ É = é)&nbsp;; joker (* or %) allowed as first or last character';
50
51$lang['LCAS_tooltip_username_admin'][2] = 'Accents insensitivity (e = é ≠ E = É)&nbsp;; joker (* or %) allowed as first or last character';
52
53$lang['LCAS_tooltip_username_admin'][3] = 'Case and accents insensitivity (E = e = É = é)&nbsp;; joker (* or %) allowed as first or last character';
54
55$lang['LCAS_tooltip_username_admin']['0'] = 'Case and accents sensitivity (E ≠ e ≠ É ≠ é)&nbsp; joker (* or %) allowed as first or last character';
56$lang['LCAS_tooltip_username_admin']['1'] = 'Case insensitivity (E = e ≠ É = é)&nbsp; joker (* or %) allowed as first or last character';
57$lang['LCAS_tooltip_username_admin']['2'] = 'Accents insensitivity (e = é ≠ E = É)&nbsp; joker (* or %) allowed as first or last character';
58$lang['LCAS_tooltip_username_admin']['3'] = 'Case and accents insensitivity (E = e = É = é)&nbsp; joker (* or %) allowed as first or last character';
59?>
Note: See TracBrowser for help on using the repository browser.