Changeset 9384
- Timestamp:
- Feb 26, 2011, 5:18:58 PM (14 years ago)
- Location:
- extensions/LCAS/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/LCAS/trunk/admin/LCAS_admin.php
r9326 r9384 104 104 } 105 105 else { 106 // User is empty106 // Username is empty 107 107 array_push($page['errors'], l10n('LCAS_Err_Userlist_Empty_New_Username')); 108 108 } -
extensions/LCAS/trunk/admin/template/global.tpl
r9229 r9384 75 75 </label> 76 76 <br><br> 77 <label for = "LCAS_id_Option0" id ="LCAS_id_Opt0"> 78 <input type="radio" value="0" {if $LCAS_Option == '0'}checked="checked"{/if} id="LCAS_id_Option0" name="LCAS_Option"> 79 {'LCAS_Option0'|@translate}<br> 80 </label> 77 81 <label for = "LCAS_id_Option1" id ="LCAS_id_Opt1"> 78 82 <input type="radio" value="1" {if $LCAS_Option == '1'}checked="checked"{/if} id="LCAS_id_Option1" name="LCAS_Option"> … … 88 92 </label> 89 93 {* <!-- Shall be implemented later 90 <label for = "LCAS_id_Option 0" id ="LCAS_id_Opt0">91 <input type="radio" value=" 0" {if $LCAS_Option == '0'}checked="checked"{/if} id="LCAS_id_Option0" name="LCAS_Option">92 {'LCAS_Option 0'|@translate}<br>{if $Personalized_not_allowed}{'Personalized not allowed explanation'|@translate}{/if}<br>94 <label for = "LCAS_id_Option4" id ="LCAS_id_Opt4"> 95 <input type="radio" value="4" {if $LCAS_Option == '4'}checked="checked"{/if} id="LCAS_id_Option4" name="LCAS_Option"> 96 {'LCAS_Option4'|@translate}<br>{if $Personalized_not_allowed}{'Personalized not allowed explanation'|@translate}{/if}<br> 93 97 </label> 94 98 --> *} -
extensions/LCAS/trunk/language/en_UK/plugin.lang.php
r9232 r9384 11 11 12 12 $lang['LCAS option'] = 'LCAS option:'; 13 $lang['LCAS_Option0'] = 'No insensitivity (Piwigo\'s standard function)'; 14 $lang['LCAS_Option1'] = 'Case insensitivity'; 15 $lang['LCAS_Option2'] = 'Accent insensitivity'; 16 $lang['LCAS_Option3'] = 'Casse and accent insensitivity'; 17 $lang['LCAS_Option4'] = 'Personal table of contents'; 18 $lang['Personalized not allowed explanation'] = ' (you must define an array $conf[\'LCAS_replacement_set\'][0] . See <a title = "To be defined">Standard arrays</a>)'; 19 $lang['Personalized not allowed tooltip'] = 'No array $conf[\'LCAS_replacement_set\'][0] is defined'; 13 20 14 21 $lang['LCAS_Accent_Sensitive'] = 'Accents insensivity:'; -
extensions/LCAS/trunk/language/fr_FR/messages.lang.php
r9232 r9384 42 42 // Tooltips in index page 43 43 // Info-bulles sur la page index 44 $lang['LCAS_tooltip_username_index'][0] = 'Le nom d\'utilisateur est sensible à la casse et aux accents (majuscules/minuscules) et aux accents (E ≠ e ≠ É ≠ é)'; 45 44 46 $lang['LCAS_tooltip_username_index'][1] = 'Le nom d\'utilisateur est insensible à la casse (majuscules/minuscules ; E = e ≠ É = é)'; 45 47 … … 53 55 // Tooltips in register page 54 56 // Info-bulles sur la page register 57 $lang['LCAS_tooltip_username_register'][0] = 'Le nom d\'utilisateur est sensible à la casse et aux accents (majuscules/minuscules) et aux accents (E ≠ e ≠ É ≠ é)'; 58 55 59 $lang['LCAS_tooltip_username_register'][1] = 'Le nom d\'utilisateur est insensible à la casse (majuscules/minuscules ; E = e ≠ É = é)'; 56 60 -
extensions/LCAS/trunk/language/fr_FR/plugin.lang.php
r9232 r9384 11 11 12 12 $lang['LCAS option'] = 'Option LCAS :'; 13 $lang['LCAS_Option0'] = 'Pas d\'insensibilité (fonctionnement normal de Piwigo)'; 13 14 $lang['LCAS_Option1'] = 'Insensibilité à la casse'; 14 15 $lang['LCAS_Option2'] = 'Insensibilité aux accents'; 15 16 $lang['LCAS_Option3'] = 'Insensibilité à la casse et aux accents'; 16 $lang['LCAS_Option 0'] = 'Tableau personnel';17 $lang['LCAS_Option4'] = 'Tableau personnel'; 17 18 $lang['Personalized not allowed explanation'] = ' (vous devez définir un tableau $conf[\'LCAS_replacement_set\'][0] . Voir <a title = "To be defined">les tableaux d\'origine</a>)'; 18 19 $lang['Personalized not allowed tooltip'] = 'Pas de tableau $conf[\'LCAS_replacement_set\'][0] de défini'; -
extensions/LCAS/trunk/maintain.inc.php
r9326 r9384 18 18 global $conf; 19 19 20 $default = array(' ','false','Example customized content of the notification email');20 $default = array('0','false','Example customized content of the notification email'); 21 21 22 22 $q = '
Note: See TracChangeset
for help on using the changeset viewer.