Changeset 1375:b9329a025ce9
- Timestamp:
- 08/14/13 18:09:45 (10 years ago)
- Branch:
- 2.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/preferences.php
r1368 r1375 348 348 "//<![CDATA[\n". 349 349 "\$(function() {\n". 350 " \$('#new_pwd').pwstrength({texts: ['".__('very weak')."', '".__('weak')."', '".__('mediocre')."', '".__('strong')."', '".__('very strong')."']});\n". 350 " \$('#new_pwd').pwstrength({texts: ['". 351 sprintf(__('Password strength: %s'),__('very weak'))."', '". 352 sprintf(__('Password strength: %s'),__('weak'))."', '". 353 sprintf(__('Password strength: %s'),__('mediocre'))."', '". 354 sprintf(__('Password strength: %s'),__('strong'))."', '". 355 sprintf(__('Password strength: %s'),__('very strong'))."']});\n". 351 356 "});\n". 352 357 "\n//]]>\n". … … 424 429 '<legend>'.__('Change your password').'</legend>'. 425 430 426 '<p><label for="new_pwd">'.__('New password:'). 427 form::password('new_pwd',20,255,'','','',false,' data-indicator="pwindicator" ').'</label></p>'. 431 '<div class="pw-table">'. 432 '<p class="pw-cell"><label for="new_pwd">'.__('New password:').'</label>'. 433 form::password('new_pwd',20,255,'','','',false,' data-indicator="pwindicator" ').'</p>'. 428 434 '<div id="pwindicator">'. 429 435 ' <div class="bar"></div>'. 430 ' <div class="label"></div>'. 436 ' <p class="label no-margin"></p>'. 437 '</div>'. 431 438 '</div>'. 432 439 433 '<p><label for="new_pwd_c">'.__('Confirm password:'). 434 form::password('new_pwd_c',20,255).'</ label></p>'.440 '<p><label for="new_pwd_c">'.__('Confirm password:').'</label>'. 441 form::password('new_pwd_c',20,255).'</p>'. 435 442 '</fieldset>'. 436 443 437 444 '<p>'.__('If you have changed this user email or password you must provide your current password to save these modifications.').'</p>'. 438 '<p><label for="cur_pwd">'.__('Your password:'). 439 form::password('cur_pwd',20,255).'</ label></p>';445 '<p><label for="cur_pwd">'.__('Your password:').'</label>'. 446 form::password('cur_pwd',20,255).'</p>'; 440 447 } 441 448 -
admin/style/default.css
r1369 r1375 901 901 margin: 0; 902 902 } 903 904 903 /* paragraphe pour bouton Nouveau bidule */ 905 904 p.top-add { … … 1386 1385 1387 1386 /* --------------------------------------------------------------- password indcator */ 1387 .pw-table { 1388 display: table; 1389 margin-bottom: 1em; 1390 } 1391 .pw-cell { 1392 display: table-cell; 1393 margin-bottom: 1em; 1394 } 1388 1395 #pwindicator { 1389 margin-top: 4px; 1396 display: table-cell; 1397 vertical-align: bottom; 1398 padding-left: 1.5em; 1399 height: 3.8em; 1400 } 1401 #pwindicator .bar { 1402 height: 6px; 1403 margin-bottom: 4px; 1404 } 1405 .pw-very-weak .bar { 1406 background: #900; 1407 width: 30px; 1408 } 1409 .pw-weak .bar { 1410 background: #c00; 1411 width: 60px; 1412 } 1413 .pw-mediocre .bar { 1414 background: #f60; 1415 width: 90px; 1416 } 1417 .pw-strong .bar { 1418 background: #060; 1419 width: 120px; 1420 } 1421 .pw-very-strong .bar { 1422 background: #0c0; 1390 1423 width: 150px; 1391 1424 } 1392 #pwindicator .bar {1393 height: 2px;1394 }1395 .pw-very-weak .bar {1396 background: #d00;1397 width: 30px;1398 }1399 .pw-very-weak .label {1400 color: #d00;1401 }1402 .pw-weak .bar {1403 background: #d00;1404 width: 60px;1405 }1406 .pw-weak .label {1407 color: #d00;1408 }1409 .pw-mediocre .bar {1410 background: #f3f01a;1411 width: 90px;1412 }1413 .pw-mediocre .label {1414 color: #f3f01a;1415 }1416 .pw-strong .bar {1417 background: #f3b31a;1418 width: 120px;1419 }1420 .pw-strong .label {1421 color: #f3b31a;1422 }1423 .pw-very-strong .bar {1424 background: #0d0;1425 width: 150px;1426 }1427 .pw-very-strong .label {1428 color: #0d0;1429 } -
locales/fr/main.po
r1374 r1375 2944 2944 msgstr "(aucune)" 2945 2945 2946 msgid "Password strength: %s" 2947 msgstr "Force du mot de passe : %s" 2948 2946 2949 msgid "very weak" 2947 2950 msgstr "très faible"
Note: See TracChangeset
for help on using the changeset viewer.