Changeset 1518:03fef8e1ef34
- Timestamp:
- 08/21/13 17:45:30 (12 years ago)
- Branch:
- default
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_post.js
r1516 r1518 210 210 $(div).insertAfter(h); 211 211 $(div).backgroundFade({sColor:'#ffffff',eColor:'#FFBABA',steps:50},function() { 212 $(this).backgroundFade({sColor:'# FFBABA',eColor:'#ffffff'});212 $(this).backgroundFade({sColor:'#ffbaba',eColor:'#ffffff'}); 213 213 }); 214 214 } -
admin/posts_actions.php
r1476 r1518 500 500 '<form action="posts_actions.php" method="post">'. 501 501 $fields->getEntries(). 502 '<p><label for="new_auth_id" class="classic">'.__(' Author ID:').'</label> '.502 '<p><label for="new_auth_id" class="classic">'.__('New author (author ID):').'</label> '. 503 503 form::field('new_auth_id',20,255); 504 504 -
admin/preferences.php
r1474 r1518 499 499 form::checkbox('user_ui_hide_std_favicon',1,$user_ui_hide_std_favicon).' '. 500 500 __('Do not use standard favicon').'</label></p>'. 501 '<p class="clear form-note info">'.__('This will be applied for all users').501 '<p class="clear form-note warn">'.__('This will be applied for all users').'.'. 502 502 '<br class="clear" /></p>';//Opera sucks; 503 503 } -
admin/style/default.css
r1516 r1518 252 252 } 253 253 .two-cols .col { 254 width: 4 7%;254 width: 48%; 255 255 margin-left: 2%; 256 256 float: left; … … 1169 1169 border-collapse: collapse; 1170 1170 margin: 0 0 1em 0; 1171 } 1172 table.posts-list { 1173 min-width: 70%; 1171 1174 } 1172 1175 tr.line:hover { -
locales/fr/main.po
r1516 r1518 1123 1123 #, php-format 1124 1124 msgid "You can change your user language in your <a href=\"%1$s\">preferences</a> or change your blog's main language in your <a href=\"%2$s\">blog settings</a>." 1125 msgstr "Vous pouvez changer votre langue d'utilisateur dans vos <a href=\"%1$s\">préférences</a> ou changer la langue principale de votre blog dans vos <a href=\"%2$s\"> paramètres du blog</a>."1125 msgstr "Vous pouvez changer votre langue d'utilisateur dans vos <a href=\"%1$s\">préférences</a> ou changer la langue principale de votre blog dans vos <a href=\"%2$s\">Paramètres du blog</a>." 1126 1126 1127 1127 msgid "Installed languages" … … 3147 3147 msgid "Apply filters and display options" 3148 3148 msgstr "Appliquer les filtres et options d\'affichage" 3149 3150 msgid "Back to entries list" 3151 msgstr "Retour à la liste des billets" 3152 3153 msgid "New author (author ID):" 3154 msgstr "Nouvel auteur (identifiant utilisateur) :" 3155 3156 msgid "Hidden" 3157 msgstr "Masqué" -
locales/fr/plugins.po
r1501 r1518 1943 1943 msgid "Move widgets from this list to one of the sidebars." 1944 1944 msgstr "Déplacez des widgets de cette liste vers l'un des volets." 1945 1946 msgid "Short" 1947 msgstr "Court" 1948 1949 msgid "Extended" 1950 msgstr "Étendu" -
plugins/antispam/index.php
r1474 r1518 171 171 echo '<p>'.sprintf(__('All spam comments older than %s day(s) will be automatically deleted.'), $moderationTTL).' '. 172 172 sprintf(__('You can modify this duration in the %s'),'<a href="blog_pref.php#antispam_moderation_ttl"> '.__('Blog settings').'</a>'). 173 ' </p>';173 '.</p>'; 174 174 } 175 175 echo '</form>'; -
plugins/tags/_admin.php
r1471 r1518 315 315 316 316 $combo = array(); 317 $combo[__(' short')] = 'more';318 $combo[__(' extended')] = 'all';317 $combo[__('Short')] = 'more'; 318 $combo[__('Extended')] = 'all'; 319 319 320 320 $value = array_key_exists('tag_list_format',$opts) ? $opts['tag_list_format'] : 'more'; -
plugins/widgets/index.php
r1483 r1518 198 198 '<form id="listWidgets" action="'.$p_url.'" method="post" class="widgets">'. 199 199 '<h3>'.__('Available widgets').'</h3>'. 200 __('Move widgets from this list to one of the sidebars.').200 '<p>'.__('Move widgets from this list to one of the sidebars.').'</p>'. 201 201 '<div id="widgets">'; 202 202 -
plugins/widgets/style.css
r1483 r1518 1 1 #listWidgets { 2 2 float: left; 3 width: 4 5%;3 width: 46%; 4 4 background: #eee; 5 padding: 1.5em 1% ;5 padding: 1.5em 1% 0; 6 6 border: 1px solid #ccc; 7 margin -left: 1.5em;7 margin: 0 1% 0 0; 8 8 } 9 9 #widgets .widget-name { … … 17 17 #sidebarsWidgets { 18 18 float: left; 19 width: 4 5%;20 margin -left: 3%;19 width: 47%; 20 margin: 0 0 0 1%; 21 21 padding: 0 1%; 22 22 } … … 27 27 margin-bottom: 2em; 28 28 } 29 30 29 #widgets, #dndnav, #dndextra, #dndcustom { 31 30 padding: 1em 0;
Note: See TracChangeset
for help on using the changeset viewer.