Changeset 1609:51d77265fb5a
- Timestamp:
- 08/28/13 19:15:41 (10 years ago)
- Branch:
- default
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/preferences.php
r1607 r1609 393 393 394 394 echo 395 '<h3 class="hidden-if-js">'.__('My profile').'</h3>'. 395 396 '<form action="preferences.php" method="post" id="user-form">'. 396 '<fieldset><legend>'.__('My profile').'</legend>'. 397 '<div class="two-cols">'. 398 '<div class="col">'. 397 399 398 '<p><label for="user_name">'.__('Last Name:').'</label>'. 400 399 form::field('user_name',20,255,html::escapeHTML($user_name)).'</p>'. … … 410 409 411 410 '<p><label for="user_url">'.__('URL:').'</label>'. 412 form::field('user_url',30,255,html::escapeHTML($user_url)).'</p>'. 413 414 '</div>'. 415 416 '<div class="col">'. 417 418 '<p><label for="user_lang">'.__('Language for my interface:').'</label>'. 419 form::combo('user_lang',$lang_combo,$user_lang,'l10n').'</p>'. 420 421 '<p><label for="user_tz">'.__('My timezone:').'</label>'. 422 form::combo('user_tz',dt::getZones(true,true),$user_tz).'</p>'. 423 424 '</div>'. 425 '</div>'. 426 '</fieldset>'; 411 form::field('user_url',30,255,html::escapeHTML($user_url)).'</p>'; 427 412 428 413 if ($core->auth->allowPassChange()) 429 414 { 430 415 echo 431 '<fieldset>'. 432 '<legend>'.__('Change my password').'</legend>'. 416 '<h4 class="vertical-separator">'.__('Change my password').'</h4>'. 433 417 434 418 '<div class="pw-table">'. … … 443 427 '<p><label for="new_pwd_c">'.__('Confirm new password:').'</label>'. 444 428 form::password('new_pwd_c',20,255).'</p>'. 445 '</fieldset>'.446 429 447 '<div class="fieldset">'. 448 '<p class="form-note warn">'.__('If you have changed your email or password you must provide your current password to save these modifications.').'</p>'. 449 '<p><label for="cur_pwd">'.__('Your password:').'</label>'. 430 '<p><label for="cur_pwd">'.__('Your current password:').'</label>'. 450 431 form::password('cur_pwd',20,255).'</p>'. 451 '</div>'; 452 } 453 454 echo 455 '<p class="clear">'. 432 '<p class="form-note warn">'. 433 __('If you have changed your email or password you must provide your current password to save these modifications.'). 434 '</p>'; 435 } 436 437 echo 438 '<p class="clear vertical-separator">'. 456 439 $core->formNonce(). 457 '<input type="submit" accesskey="s" value="'.__(' Save').'" /></p>'.458 '</form>' ;459 460 echo'</div>';440 '<input type="submit" accesskey="s" value="'.__('Update my profile').'" /></p>'. 441 '</form>'. 442 443 '</div>'; 461 444 462 445 # User options : some from actual user profile, dashboard modules, ... … … 465 448 echo 466 449 '<form action="preferences.php" method="post" id="opts-forms">'. 467 '<fieldset><legend>'.__('My options').'</legend>'. 468 469 '<p><label class="ib" for="user_post_format">'.__('Preferred format:').'</label>'. 470 form::combo('user_post_format',$formaters_combo,$user_options['post_format']).'</p>'. 471 472 '<p><label class="ib" for="user_post_status">'.__('Default entry status:').'</label>'. 473 form::combo('user_post_status',$status_combo,$user_post_status).'</p>'. 474 475 '<p><label class="ib" for="user_edit_size">'.__('Entry edit field height:').'</label>'. 476 form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).'</p>'. 477 478 '<p><label for="user_wysiwyg" class="classic">'. 479 form::checkbox('user_wysiwyg',1,$user_options['enable_wysiwyg']).' '. 480 __('Enable WYSIWYG mode').'</label></p>'. 450 '<h3 class="hidden-if-js">'.__('My options').'</h3>'; 451 452 echo 453 '<div class="two-cols">'. 454 455 '<div class="col">'. 456 '<h4>'.__('Interface').'</h4>'. 457 458 '<p><label for="user_lang">'.__('Language for my interface:').'</label>'. 459 form::combo('user_lang',$lang_combo,$user_lang,'l10n').'</p>'. 460 461 '<p><label for="user_tz">'.__('My timezone:').'</label>'. 462 form::combo('user_tz',dt::getZones(true,true),$user_tz).'</p>'. 481 463 482 464 '<p><label for="user_ui_enhanceduploader" class="classic">'. 483 465 form::checkbox('user_ui_enhanceduploader',1,$user_ui_enhanceduploader).' '. 484 __('Activate enhanced uploader in media manager').'</label></p>'. 485 486 '<p><label for="user_ui_nofavmenu" class="classic">'. 487 form::checkbox('user_ui_nofavmenu',1,$user_ui_nofavmenu).' '. 488 __('Hide My favorites menu').'</label></p>'; 489 490 if (count($iconsets_combo) > 1) { 491 echo 492 '<p><label class="ib" for="user_ui_iconset">'.__('Iconset:').'</label>'. 493 form::combo('user_ui_iconset',$iconsets_combo,$user_ui_iconset).'</p>'; 494 } else { 495 form::hidden('user_ui_iconset',''); 496 } 466 __('Activate enhanced uploader in media manager').'</label></p>'; 497 467 498 468 if ($core->auth->isSuperAdmin()) { … … 502 472 __('Do not use standard favicon').'</label></p>'. 503 473 '<p class="clear form-note warn">'.__('This will be applied for all users').'.'. 504 '<br class="clear" /></p>';//Opera sucks; 505 } 506 507 echo 508 '</fieldset>'; 509 510 echo 511 '<fieldset><legend>'.__('Accessibility options').'</legend>'. 474 '</p>';//Opera sucks; 475 } 476 477 echo 478 '<h5>'.__('Accessibility').'</h5>'. 512 479 513 480 '<p><label for="user_acc_nodragdrop" class="classic">'. … … 515 482 __('Disable javascript powered drag and drop for ordering items').'</label></p>'. 516 483 517 '<p class="clear form-note info">'.__('Numeric fields will allow to type the elements\' ordering number.').'</p>'. 518 '</fieldset>'; 519 520 echo 521 '<fieldset><legend>'.__('Dashboard modules').'</legend>'. 484 '<p class="clear form-note">'.__('If checked, numeric fields will allow to type the elements\' ordering number.').'</p>'; 485 486 echo 487 '<h4 class="border-top">'.__('Edition').'</h4>'. 488 489 '<p><label for="user_post_format">'.__('Preferred format:').'</label>'. 490 form::combo('user_post_format',$formaters_combo,$user_options['post_format']).'</p>'. 491 492 '<p><label for="user_post_status">'.__('Default entry status:').'</label>'. 493 form::combo('user_post_status',$status_combo,$user_post_status).'</p>'. 494 495 '<p><label for="user_edit_size">'.__('Entry edit field height:').'</label>'. 496 form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).'</p>'. 497 498 '<p><label for="user_wysiwyg" class="classic">'. 499 form::checkbox('user_wysiwyg',1,$user_options['enable_wysiwyg']).' '. 500 __('Enable WYSIWYG mode').'</label></p>'; 501 502 echo 503 '<h4 class="border-top">'.__('Other options').'</h4>'; 504 505 # --BEHAVIOR-- adminPreferencesForm 506 $core->callBehavior('adminPreferencesForm',$core); 507 508 echo 509 '</div>'. 510 511 '<div class="col">'. 512 '<h4>'.__('Dashboard and menu').'</h4>'. 513 514 '<p><label for="user_ui_nofavmenu" class="classic">'. 515 form::checkbox('user_ui_nofavmenu',1,$user_ui_nofavmenu).' '. 516 __('Hide My favorites menu').'</label></p>'; 517 518 if (count($iconsets_combo) > 1) { 519 echo 520 '<p><label for="user_ui_iconset" class="classic">'.__('Iconset:').'</label> '. 521 form::combo('user_ui_iconset',$iconsets_combo,$user_ui_iconset).'</p>'; 522 } else { 523 form::hidden('user_ui_iconset',''); 524 } 525 526 echo 527 '<h5>'.('Dashboard modules').'</h5>'. 522 528 523 529 '<p><label for="user_dm_doclinks" class="classic">'. … … 532 538 form::checkbox('user_dm_quickentry',1,$user_dm_quickentry).' '. 533 539 __('Display quick entry form').'</label><br class="clear" />'. //Opera sucks 534 '</p>'. 535 536 '</fieldset>'; 537 538 # --BEHAVIOR-- adminPreferencesForm 539 $core->callBehavior('adminPreferencesForm',$core); 540 541 echo 542 '<p class="clear">'. 540 '</p>'; 541 542 echo 543 '</div>'. 544 '</div>'; 545 546 echo 547 '<p class="clear border-top">'. 543 548 $core->formNonce(). 544 '<input type="submit" accesskey="s" value="'.__('Save ').'" /></p>'.549 '<input type="submit" accesskey="s" value="'.__('Save my options').'" /></p>'. 545 550 '</form>'; 546 551 … … 552 557 echo '<form action="preferences.php" method="post" id="favs-form">'; 553 558 echo '<div class="two-cols">'; 559 554 560 echo '<div class="col70">'; 555 561 echo '<div id="my-favs" class="fieldset"><h3>'.__('My favorites').'</h3>'; … … 600 606 601 607 echo '<div id="default-favs"><h3>'.__('Default favorites').'</h3>'; 602 echo '<p class="form-note info clear">'.__('Those favorites are displayed when My Favorites list is empty.').'</p>';608 echo '<p>'.__('Those favorites are displayed when My Favorites list is empty.').'</p>'; 603 609 $count = 0; 604 610 foreach ($ws->dumpPrefs() as $k => $v) { … … 617 623 echo '</div>'; 618 624 echo '</div>'; 625 626 619 627 echo '<div class="col30 fieldset" id="available-favs">'; 620 628 # Available favorites … … 646 654 '<input type="submit" name="appendaction" value="'.__('Add to my favorites').'" /></p>'; 647 655 echo '</div>'; 656 657 648 658 echo '</div>'; # Two-cols 649 659 echo '</form>'; -
admin/style/default.css
r1608 r1609 782 782 /* ------------------------------------------------------------------ preferences */ 783 783 #my-favs { 784 border: 2px solid #A8DC26;784 border: 1px solid #A8DC26; 785 785 padding: 1em 2em 786 786 } … … 846 846 width: 14em; 847 847 padding-right: 1em; 848 } 849 .blog-perm { 850 margin-top: 2em; 851 font-weight: bold; 852 } 853 .ul-perm { 854 list-style-type: square; 855 margin-left: 0; 856 padding-left: 3.5em; 857 margin-bottom: 0 858 } 859 .add-perm { 860 padding-top: .5em; 861 padding-left: 2.5em; 862 margin-left: 0; 848 863 } 849 864 /* -------------------------------------------------------------------- Themes */ … … 1153 1168 .no-margin, #entry-content label.no-margin { 1154 1169 margin: 0; 1170 } 1171 .vertical-separator { 1172 margin-top: 2em; 1155 1173 } 1156 1174 .border-top { -
admin/user.php
r1605 r1609 192 192 } 193 193 194 echo 195 '<form action="user.php" method="post" id="user-form" class="fieldset">'. 196 '<div class="two-cols">'. 197 198 '<div class="col">'. 199 '<h3>'.__('User profile').'</h3>'. 200 201 '<p><label for="user_id" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('User ID:').'</label> '. 202 form::field('user_id',20,255,html::escapeHTML($user_id)). 203 '</p>'. 204 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p>'; 205 194 206 if ($user_id == $core->auth->userID()) { 195 207 echo … … 199 211 200 212 echo 201 '<form action="user.php" method="post" id="user-form">'.202 '<fieldset><legend>'.__('User information').'</legend>'.203 '<div class="two-cols">'.204 '<div class="col">'.205 '<p><label for="user_id" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('User ID:').'</label> '.206 form::field('user_id',20,255,html::escapeHTML($user_id)).207 '</p>'.208 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p>'.209 210 213 '<p><label for="new_pwd" '.($user_id != '' ? '' : 'class="required"').'>'. 211 214 ($user_id != '' ? '' : '<abbr title="'.__('Required field').'">*</abbr> '). … … 218 221 ($user_id != '' ? '' : '<abbr title="'.__('Required field').'">*</abbr> ').__('Confirm password:').'</label> '. 219 222 form::password('new_pwd_c',20,255). 220 '</p>'.221 222 '<p><label for="user_name">'.__('Last Name:').'</label> '.223 form::field('user_name',20,255,html::escapeHTML($user_name)).224 '</p>'.225 226 '<p><label for="user_firstname">'.__('First Name:').'</label> '.227 form::field('user_firstname',20,255,html::escapeHTML($user_firstname)).228 '</p>'.229 230 '<p><label for="user_displayname">'.__('Display name:').'</label> '.231 form::field('user_displayname',20,255,html::escapeHTML($user_displayname)).232 '</p>'.233 234 '<p><label for="user_email">'.__('Email:').'</label> '.235 form::field('user_email',20,255,html::escapeHTML($user_email)).236 '</p>'.237 '<p class="form-note">'.__('Mandatory for password recovering procedure.').'</p>'.238 '</div>'.239 240 '<div class="col">'.241 '<p><label for="user_url">'.__('URL:').'</label> '.242 form::field('user_url',30,255,html::escapeHTML($user_url)).243 '</p>'.244 '<p><label for="user_post_format">'.__('Preferred format:').'</label> '.245 form::combo('user_post_format',$formaters_combo,$user_options['post_format']).246 '</p>'.247 248 '<p><label for="user_post_status">'.__('Default entry status:').'</label> '.249 form::combo('user_post_status',$status_combo,$user_post_status).250 '</p>'.251 252 '<p><label for="user_edit_size">'.__('Entry edit field height:').'</label> '.253 form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).254 '</p>'.255 256 '<p><label for="user_lang">'.__('User language:').'</label> '.257 form::combo('user_lang',$lang_combo,$user_lang,'l10n').258 '</p>'.259 260 '<p><label for="user_tz">'.__('User timezone:').'</label> '.261 form::combo('user_tz',dt::getZones(true,true),$user_tz).262 223 '</p>'; 263 224 … … 270 231 271 232 $super_disabled = $user_super && $user_id == $core->auth->userID(); 272 273 233 echo 274 234 '<p><label for="user_super" class="classic">'.form::checkbox('user_super','1',$user_super,'','',$super_disabled).' '. 275 235 __('Super administrator').'</label></p>'. 236 237 '<p><label for="user_name">'.__('Last Name:').'</label> '. 238 form::field('user_name',20,255,html::escapeHTML($user_name)). 239 '</p>'. 240 241 '<p><label for="user_firstname">'.__('First Name:').'</label> '. 242 form::field('user_firstname',20,255,html::escapeHTML($user_firstname)). 243 '</p>'. 244 245 '<p><label for="user_displayname">'.__('Display name:').'</label> '. 246 form::field('user_displayname',20,255,html::escapeHTML($user_displayname)). 247 '</p>'. 248 249 '<p><label for="user_email">'.__('Email:').'</label> '. 250 form::field('user_email',20,255,html::escapeHTML($user_email)). 251 '</p>'. 252 '<p class="form-note">'.__('Mandatory for password recovering procedure.').'</p>'. 253 254 '<p><label for="user_url">'.__('URL:').'</label> '. 255 form::field('user_url',30,255,html::escapeHTML($user_url)). 256 '</p>'. 276 257 '</div>'. 277 '</div>'. 278 '</fieldset>'; 258 259 '<div class="col">'. 260 '<h3>'.__('Options').'</h3>'. 261 '<h4>'.__('Interface').'</h4>'. 262 '<p><label for="user_lang">'.__('Language:').'</label> '. 263 form::combo('user_lang',$lang_combo,$user_lang,'l10n'). 264 '</p>'. 265 266 '<p><label for="user_tz">'.__('Timezone:').'</label> '. 267 form::combo('user_tz',dt::getZones(true,true),$user_tz). 268 '</p>'. 269 270 '<h4>'.__('Edition').'</h4>'. 271 '<p><label for="user_post_format">'.__('Preferred format:').'</label> '. 272 form::combo('user_post_format',$formaters_combo,$user_options['post_format']). 273 '</p>'. 274 275 '<p><label for="user_post_status">'.__('Default entry status:').'</label> '. 276 form::combo('user_post_status',$status_combo,$user_post_status). 277 '</p>'. 278 279 '<p><label for="user_edit_size">'.__('Entry edit field height:').'</label> '. 280 form::field('user_edit_size',5,4,(integer) $user_options['edit_size']). 281 '</p>'; 279 282 280 283 # --BEHAVIOR-- adminUserForm 281 284 $core->callBehavior('adminUserForm',isset($rs) ? $rs : null); 282 285 286 echo 287 '</div>'. 288 '</div>'; 289 290 283 291 echo 284 '<p ><label for="your_pwd" '.($user_id != '' ? '' : 'class="required"').'>'.285 ($user_id != '' ? '' : '<abbr title="'.__('Required field').'">*</abbr> ').__('Your password:').'</label>'.292 '<p class="clear border-top"><label for="your_pwd" class="required">'. 293 '<abbr title="'.__('Required field').'">*</abbr> '.__('Your password:').'</label>'. 286 294 form::password('your_pwd',20,255).'</p>'. 287 295 '<p class="clear"><input type="submit" name="save" accesskey="s" value="'.__('Save').'" />'. … … 295 303 if ($user_id) 296 304 { 297 echo '<div class="clear fieldset"><h3>'.__('Permissions').'</h3>'. 298 '<form action="users_actions.php" method="post">'. 299 '<p><input type="submit" value="'.__('Add new permissions').'" />'. 300 form::hidden(array('redir'),'user.php?id='.$user_id). 301 form::hidden(array('action'),'blogs'). 302 form::hidden(array('users[]'),$user_id). 303 $core->formNonce(). 304 '</p>'. 305 '</form>'; 306 307 $permissions = $core->getUserPermissions($user_id); 308 $perm_types = $core->auth->getPermissionsTypes(); 309 310 if (count($permissions) == 0) 305 echo '<div class="clear fieldset">'. 306 '<h3>'.__('Permissions').'</h3>'; 307 308 if (!$user_super) 311 309 { 312 echo '<p>'.__('No permissions.').'</p>'; 313 } 314 else 315 { 316 foreach ($permissions as $k => $v) 310 echo 311 '<form action="users_actions.php" method="post">'. 312 '<p><input type="submit" value="'.__('Add new permissions').'" />'. 313 form::hidden(array('redir'),'user.php?id='.$user_id). 314 form::hidden(array('action'),'blogs'). 315 form::hidden(array('users[]'),$user_id). 316 $core->formNonce(). 317 '</p>'. 318 '</form>'; 319 320 $permissions = $core->getUserPermissions($user_id); 321 $perm_types = $core->auth->getPermissionsTypes(); 322 323 if (count($permissions) == 0) 317 324 { 318 if (count($v['p']) > 0) 325 echo '<p>'.__('No permissions so far.').'</p>'; 326 } 327 else 328 { 329 foreach ($permissions as $k => $v) 319 330 { 320 echo 321 '<form action="users_actions.php" method="post">'. 322 '<h4><a href="blog.php?id='.html::escapeHTML($k).'">'. 323 html::escapeHTML($v['name']).'</a> ('.html::escapeHTML($k).')</h4>'; 324 325 echo '<ul>'; 326 foreach ($v['p'] as $p => $V) { 327 if (isset($perm_types[$p])) { 328 echo '<li>'.__($perm_types[$p]).'</li>'; 331 if (count($v['p']) > 0) 332 { 333 echo 334 '<form action="users_actions.php" method="post">'. 335 '<p class="blog-perm">'.__('Blog:').' <a href="blog.php?id='.html::escapeHTML($k).'">'. 336 html::escapeHTML($v['name']).'</a> ('.html::escapeHTML($k).')</p>'; 337 338 echo '<ul class="ul-perm">'; 339 foreach ($v['p'] as $p => $V) { 340 if (isset($perm_types[$p])) { 341 echo '<li>'.__($perm_types[$p]).'</li>'; 342 } 329 343 } 344 echo 345 '</ul>'. 346 '<p class="add-perm"><input type="submit" class="reset" value="'.__('Change permissions').'" />'. 347 form::hidden(array('redir'),'user.php?id='.$user_id). 348 form::hidden(array('action'),'perms'). 349 form::hidden(array('users[]'),$user_id). 350 form::hidden(array('blogs[]'),$k). 351 $core->formNonce(). 352 '</p>'. 353 '</form>'; 330 354 } 331 echo '</ul>'. 332 '<p><input type="submit" value="'.__('Change permissions').'" />'. 333 form::hidden(array('redir'),'user.php?id='.$user_id). 334 form::hidden(array('action'),'perms'). 335 form::hidden(array('users[]'),$user_id). 336 form::hidden(array('blogs[]'),$k). 337 $core->formNonce(). 338 '</p>'. 339 '</form>'; 340 } 341 } 342 } 343 355 } 356 } 357 358 } 359 else { 360 echo '<p>'.sprintf(__('User %s is super admin.'),$user_id).'</p>'; 361 } 344 362 echo '</div>'; 345 363 } -
admin/users.php
r1514 r1609 112 112 113 113 echo 114 '<p class="top-add"><strong><a class="button add" href="user.php">'.__(' Create a new user').'</a></strong></p>';114 '<p class="top-add"><strong><a class="button add" href="user.php">'.__('New user').'</a></strong></p>'; 115 115 116 116 if (!$show_filters) { -
locales/fr/help/core_user.html
r1605 r1609 58 58 <dd>Ce choix déterminera l'affichage de l'heure de publication des billets.</dd> 59 59 60 <dt>Changement de mot de passe requis pour laconnexion</dt>60 <dt>Changement de mot de passe requis à la prochaine connexion</dt> 61 61 <dd>Cocher cette case permettra au nouvel utilisateur de choisir par lui-même son mot de passe à sa première connexion.</dd> 62 62 -
locales/fr/main.po
r1607 r1609 89 89 90 90 msgid "Confirm password:" 91 msgstr "Confirme zle mot de passe :"91 msgstr "Confirmer le mot de passe :" 92 92 93 93 msgid "change" … … 1886 1886 1887 1887 msgid "Disable javascript powered drag and drop for ordering items" 1888 msgstr "Désactiver le drag and drop javascriptpour ordonnancer les éléments"1888 msgstr "Désactiver le glisser-déposer pour ordonnancer les éléments" 1889 1889 1890 1890 msgid "Numeric fields will allow to type the elements' ordering number." … … 1916 1916 msgstr "Retirer les favoris sélectionnés" 1917 1917 1918 msgid "Your current password:" 1919 msgstr "Votre mot de passe actuel :" 1920 1921 msgid "Update my profile" 1922 msgstr "Mettre à jour mon profil" 1923 1918 1924 msgid "Are you sure you want to remove selected favorites?" 1919 1925 msgstr "Êtes-vous sûr de vouloir retirer les favoris sélectionnés ?" … … 2093 2099 2094 2100 msgid "Password change required to connect" 2095 msgstr "Changement de mot de passe requis pour laconnexion"2101 msgstr "Changement de mot de passe requis à la prochaine connexion" 2096 2102 2097 2103 msgid "Save and create another" … … 3231 3237 msgstr "Cliquez ici pour déverrouiller ce champ" 3232 3238 3233 msgid "User ID" 3234 msgstr "Identifiant (login)" 3239 msgid "User profile" 3240 msgstr "Profil utilisateur" 3241 3242 msgid "User ID:" 3243 msgstr "Identifiant (login) :" 3244 3245 msgid "Interface" 3246 msgstr "Interface" 3247 3248 msgid "Edition" 3249 msgstr "Édition" 3250 3251 msgid "Other options" 3252 msgstr "Autres options" 3253 3254 msgid "No permissions so far." 3255 msgstr "Aucune permission pour le moment." 3256 3257 msgid "Accessibility" 3258 msgstr "Accessibilité" 3259 3260 msgid "Dashboard and menu" 3261 msgstr "Tableau de bord et menu" 3262 3263 msgid "Dashboard modules" 3264 msgstr "Modules du tableau de bord" 3265 3266 msgid "If checked, numeric fields will allow to type the elements' ordering number." 3267 msgstr "Si cette option est cochée, des champs numérique permettront l'ordonnancement des éléments." 3268 3269 msgid "Save my options" 3270 msgstr "Enregistrer mes options" -
locales/fr/plugins.po
r1605 r1609 1975 1975 msgid "Are you sure you want to remove tag: “%s”?" 1976 1976 msgstr "Êtes-vous sûr de vouloir supprimer le mot-clé “%s” ?" 1977 1978 msgid "Syntax color for theme editor" 1979 msgstr "Coloration syntaxique de l'éditeur de thème" -
plugins/tags/_admin.php
r1518 r1609 321 321 322 322 echo 323 '<fieldset><legend>'.__('Tags').'</legend>'.324 323 '<p><label for="user_tag_list_format">'.__('Tags list format:').'</label> '. 325 324 form::combo('user_tag_list_format',$combo,$value). 326 '</p> </fieldset>';325 '</p>'; 327 326 } 328 327 -
plugins/themeEditor/_admin.php
r1454 r1609 50 50 $core->auth->user_prefs->addWorkspace('interface'); 51 51 52 echo 53 '<fieldset><legend>'.__('Theme Editor').'</legend>'. 54 52 echo 55 53 '<p><label for="colorsyntax" class="classic">'. 56 54 form::checkbox('colorsyntax',1,$core->auth->user_prefs->interface->colorsyntax).'</label>'. 57 __('Syntax color'). 58 '<br class="clear" />'. //Opera sucks 59 '</p>'. 60 '</fieldset>'; 55 __('Syntax color for theme editor'). 56 '</p>'; 61 57 } 62 58 }
Note: See TracChangeset
for help on using the changeset viewer.