1 | <?php |
---|
2 | |
---|
3 | global $lang; |
---|
4 | |
---|
5 | $lang['LCAS_Title_Tab'] = 'Login Case Accents Sensitivity'; |
---|
6 | $lang['LCAS_SubTitle_Global'] = 'Plugin configuration'; |
---|
7 | |
---|
8 | $lang['LCAS_Title_Global'] = 'Setting the sensitivity'; |
---|
9 | |
---|
10 | $lang['LCAS option'] = 'LCAS option:'; |
---|
11 | $lang['LCAS_Option0'] = 'No insensitivity (Piwigo\'s standard function)'; |
---|
12 | $lang['LCAS_Option1'] = 'Case insensitivity'; |
---|
13 | $lang['LCAS_Option2'] = 'Accent insensitivity'; |
---|
14 | $lang['LCAS_Option3'] = 'Casse and accent insensitivity'; |
---|
15 | $lang['LCAS_Option4'] = 'Personal table of contents'; |
---|
16 | $lang['Personalized not allowed explanation'] = ' (you must define an array $conf[\'LCAS_replacement_set\'][0] . See <a title = "To be defined">Standard arrays</a>)'; |
---|
17 | $lang['Personalized not allowed tooltip'] = 'No array $conf[\'LCAS_replacement_set\'][0] is defined'; |
---|
18 | |
---|
19 | $lang['LCAS_Support_txt'] = 'The official support on this plugin is only on these Piwigo\'s forum topics:<br> |
---|
20 | <a href="http://piwigo.org/forum/viewtopic.php?id=17437" onclick="window.open(this.href);return false;">English forum - http://piwigo.org/forum/viewtopic.php?id=17437</a><br><br> |
---|
21 | Also available, the project\'s bugtracker: <a href="http://piwigo.org/bugs/" onclick="window.open(this.href);return false;">http://piwigo.org/bugs/</a>'; |
---|
22 | |
---|
23 | $lang['LCAS_UserList_Title'] = 'Users requiring changes'; |
---|
24 | |
---|
25 | $lang['LCAS_Info_userlist_username_renamed'] = 'The user name has been updated.'; |
---|
26 | $lang['LCAS_Err_Userlist_Empty_New_Username'] = 'The user name can\'t be blank.'; |
---|
27 | $lang['LCAS_Err_Userlist_New_Username_Exists'] = 'The user name already exists.'; |
---|
28 | |
---|
29 | $lang['LCAS_Compare_value_h'] = 'Comparison'; |
---|
30 | $lang['LCAS_Update_h'] = 'Change'; |
---|
31 | |
---|
32 | $lang['LCAS_Update_User'] = 'Update'; |
---|
33 | |
---|
34 | $lang['LCAS_No_User'] = 'No problems found for current users'; |
---|
35 | |
---|
36 | $lang['LCAS_save_config'] = 'Settings saved<br>Please check any duplicate users in the following table.'; |
---|
37 | |
---|
38 | $lang['submit'] = 'Save settings'; |
---|
39 | |
---|
40 | $lang['LCAS_Mail'] = 'Notification by email'; |
---|
41 | $lang['LCAS_MailText'] = 'Customizing email notification'; |
---|
42 | |
---|
43 | $lang['LCAS_PluginSupport'] = 'Official plugin support'; |
---|
44 | |
---|
45 | $lang['LCAS_DisableOption'] = ' Disable (default value)'; |
---|
46 | $lang['LCAS_EnableOption'] = ' Enable'; |
---|
47 | |
---|
48 | /* Email subject */ |
---|
49 | $lang['Username_updated_for_%s'] = 'Username update for %s'; |
---|
50 | $lang['LCAS_NewUsername: %s'] = 'Your new username: %s'; |
---|
51 | $lang['LCAS_NewUser_Email: %s'] = 'Related to this email address: %s'; |
---|
52 | ?> |
---|