Changeset 1718:5bbbd8bb73fb
- Timestamp:
- 09/04/13 14:28:18 (12 years ago)
- Branch:
- default
- Children:
- 1719:b8c48f380463, 1720:f23f530dfb4a
- Parents:
- 1717:9df047961e9c (diff), 1710:f6287a0366e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 37 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/index.php
r1708 r1718 63 63 $core->auth->user_prefs->dashboard->put('quickentry',false,'boolean'); 64 64 } 65 66 // Handle folded/unfolded sections in admin from user preferences 67 $ws = $core->auth->user_prefs->addWorkspace('toggles'); 68 if (!$core->auth->user_prefs->toggles->prefExists('unfolded_sections')) { 69 $core->auth->user_prefs->toggles->put('unfolded_sections','','string','Folded sections in admin',null,true); 70 } 71 65 72 66 73 # Dashboard icons … … 121 128 $__dashboard_items = new ArrayObject(array(new ArrayObject,new ArrayObject)); 122 129 123 # Documentation links124 130 $dashboardItem = 0; 125 if ($core->auth->user_prefs->dashboard->doclinks) {126 if (!empty($__resources['doc']))127 {128 $doc_links = '<h3>'.__('Documentation and support').'</h3><ul>';129 130 foreach ($__resources['doc'] as $k => $v) {131 $doc_links .= '<li><a href="'.$v.'" title="'.$k.' '.__('(external link)').'">'.$k.'</a></li>';132 }133 134 $doc_links .= '</ul>';135 $__dashboard_items[$dashboardItem][] = $doc_links;136 $dashboardItem++;137 }138 }139 131 140 132 if ($core->auth->user_prefs->dashboard->dcnews) { … … 180 172 } 181 173 174 # Documentation links 175 if ($core->auth->user_prefs->dashboard->doclinks) { 176 if (!empty($__resources['doc'])) 177 { 178 $doc_links = '<h3>'.__('Documentation and support').'</h3><ul>'; 179 180 foreach ($__resources['doc'] as $k => $v) { 181 $doc_links .= '<li><a href="'.$v.'" title="'.$k.' '.__('(external link)').'">'.$k.'</a></li>'; 182 } 183 184 $doc_links .= '</ul>'; 185 $__dashboard_items[$dashboardItem][] = $doc_links; 186 $dashboardItem++; 187 } 188 } 189 182 190 $core->callBehavior('adminDashboardItems', $core, $__dashboard_items); 183 191 … … 193 201 dcPage::jsLoad('js/_index.js'). 194 202 # --BEHAVIOR-- adminDashboardHeaders 195 $core->callBehavior('adminDashboardHeaders') 203 $core->callBehavior('adminDashboardHeaders'), 204 dcPage::breadcrumb( 205 array( 206 '<span class="page-title">'.__('Dashboard').' : '.html::escapeHTML($core->blog->name).'</span>' => '' 207 ), 208 false) 196 209 ); 197 210 198 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Dashboard').'</span></h2>'; 211 # Dotclear updates notifications 212 if ($core->auth->isSuperAdmin() && is_readable(DC_DIGESTS)) 213 { 214 $updater = new dcUpdate(DC_UPDATE_URL,'dotclear',DC_UPDATE_VERSION,DC_TPL_CACHE.'/versions'); 215 $new_v = $updater->check(DC_VERSION); 216 $version_info = $new_v ? $updater->getInfoURL() : ''; 217 218 if ($updater->getNotify() && $new_v) { 219 echo 220 '<div class="dc-update"><h3>'.sprintf(__('Dotclear %s is available!'),$new_v).'</h3> '. 221 '<p><a class="button submit" href="update.php">'.sprintf(__('Upgrade now'),$new_v).'</a> '. 222 '<a href="update.php?hide_msg=1">'.__('Remind me later').'</a>'. 223 ($version_info ? ' </p>'. 224 '<p><a href="'.$version_info.'" class="info">'.__('information about this version').'</a>' : '').'</p>'. 225 '</div>'; 226 } 227 } 199 228 200 229 if ($core->auth->getInfo('user_default_blog') != $core->blog->id && $core->auth->blog_count > 1) { … … 204 233 205 234 if ($core->blog->status == 0) { 206 echo '<p class="static-msg">'.__('This blog is offline').' </p>';235 echo '<p class="static-msg">'.__('This blog is offline').'.</p>'; 207 236 } elseif ($core->blog->status == -1) { 208 echo '<p class="static-msg">'.__('This blog is removed').' </p>';237 echo '<p class="static-msg">'.__('This blog is removed').'.</p>'; 209 238 } 210 239 … … 313 342 if ($i->count() > 0) 314 343 { 315 $dashboardItems .= '<div >';344 $dashboardItems .= '<div class="db-item">'; 316 345 foreach ($i as $v) { 317 346 $dashboardItems .= $v; … … 347 376 } 348 377 } catch (Exception $e) { } 349 378 350 379 echo 351 380 '<div id="quick">'. 352 381 '<h3>'.__('Quick entry').'</h3>'. 353 '<form id="quick-entry" action="post.php" method="post" >'.354 '< fieldset><legend>'.__('New entry').'</legend>'.355 '<p class="col"><label for="post_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:'). 382 '<form id="quick-entry" action="post.php" method="post" class="fieldset">'. 383 '<h4>'.__('New entry').'</h4>'. 384 '<p class="col"><label for="post_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 356 385 form::field('post_title',20,255,'','maximal'). 357 '</ label></p>'.386 '</p>'. 358 387 '<p class="area"><label class="required" '. 359 388 'for="post_content"><abbr title="'.__('Required field').'">*</abbr> '.__('Content:').'</label> '. 360 389 form::textarea('post_content',50,7). 361 390 '</p>'. 362 '<p><label for="cat_id" class="classic">'.__('Category:').' '.363 form::combo('cat_id',$categories_combo).'</ label></p>'.391 '<p><label for="cat_id" class="classic">'.__('Category:').'</label> '. 392 form::combo('cat_id',$categories_combo).'</p>'. 364 393 ($core->auth->check('categories', $core->blog->id) 365 394 ? '<div>'. 366 '<p id="new_cat">'.__('Add a new category').'</p>'. 395 '<p id="new_cat" class="q-cat">'.__('Add a new category').'</p>'. 396 '<p class="q-cat"><label for="new_cat_title">'.__('Title:').'</label> '. 397 form::field('new_cat_title',30,255,'','').'</p>'. 398 '<p class="q-cat"><label for="new_cat_parent">'.__('Parent:').'</label> '. 399 form::combo('new_cat_parent',$categories_combo,'',''). 400 '</p>'. 367 401 '<p class="form-note info clear">'.__('This category will be created when you will save your post.').'</p>'. 368 '<p><label for="new_cat_title">'.__('Title:').' '.369 form::field('new_cat_title',30,255,'','maximal').'</label></p>'.370 '<p><label for="new_cat_parent">'.__('Parent:').' '.371 form::combo('new_cat_parent',$categories_combo,'','maximal').372 '</label></p>'.373 402 '</div>' 374 403 : ''). … … 384 413 form::hidden('post_notes',''). 385 414 '</p>'. 386 '</fieldset>'.387 415 '</form>'. 388 416 '</div>'; -
admin/index.php
r1699 r1718 257 257 258 258 # Check cache directory 259 if (!is_dir(DC_TPL_CACHE)) { 260 $err[] = '<p>'.sprintf(__('Cache directory %s does not exist.'),DC_TPL_CACHE).'</p>'; 261 } else if (!is_writable(DC_TPL_CACHE)) { 262 $err[] = '<p>'.sprintf(__('Cache directory %s is not writable.'),DC_TPL_CACHE).'</p>'; 259 if ( $core->auth->isSuperAdmin() ) { 260 if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) { 261 $err[] = '<p>'.__("The cache directory does not exist or is not writable. You must create this directory with sufficient rights and affect this location to \"DC_TPL_CACHE\" in inc/config.php file.").'</p>'; 262 } 263 } else { 264 if (!is_dir(DC_TPL_CACHE) || !is_writable(DC_TPL_CACHE)) { 265 $err[] = '<p>'.__("The cache directory does not exist or is not writable. You should contact your administrator.").'</p>'; 266 } 263 267 } 264 268 265 269 # Check public directory 266 if (!is_dir($core->blog->public_path)) { 267 $err[] = '<p>'.sprintf(__('Directory %s does not exist.'),$core->blog->public_path).'</p>'; 268 } else if (!is_writable($core->blog->public_path)) { 269 $err[] = '<p>'.sprintf(__('Directory %s is not writable.'),$core->blog->public_path).'</p>'; 270 if ( $core->auth->isSuperAdmin() ) { 271 if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) { 272 $err[] = '<p>'.__("There is no writable directory /public/ at the location set in about:config \"public_path\". You must create this directory with sufficient rights (or change this setting).").'</p>'; 273 } 274 } else { 275 if (!is_dir($core->blog->public_path) || !is_writable($core->blog->public_path)) { 276 $err[] = '<p>'.__("There is no writable root directory for the media manager. You should contact your administrator.").'</p>'; 277 } 270 278 } 271 279 -
admin/js/jquery/jquery.pageTabs.js
r1280 r1718 16 16 this.createList(); 17 17 this.showDiv(index); 18 var pageTabs = this; 19 20 window.onhashchange = function (event) { 21 pageTabs.showDiv(document.location.hash.split('#').join('')); 22 } 18 23 }; 19 24 … … 39 44 li = document.createElement('li'); 40 45 a = document.createElement('a'); 41 a.appendChild(document.createTextNode(this.title));46 $(a).html(this.title); 42 47 this.title = ''; 43 a.href = '#';44 48 a.fn = This.showDiv; 45 49 a.index = this.id || i; 50 a.href = '#'+a.index; 51 li.id = "part-tabs-"+a.index; 46 52 a.obj = This; 47 jQuery(a).click(function() { this.fn.call(this.obj,this.index); return false; });48 53 li.appendChild(a); 49 54 This.list.appendChild(li); -
inc/admin/lib.dc.page.php
r1700 r1718 49 49 50 50 # Top of admin page 51 public static function open($title='', $head='')51 public static function open($title='',$head='',$breadcrumb='') 52 52 { 53 53 global $core; … … 73 73 } 74 74 $blog_box = 75 '<p><label for="switchblog" class="classic ">'.76 __('Blogs:').' '.75 '<p><label for="switchblog" class="classic nomobile">'. 76 __('Blogs:').'</label> '. 77 77 $core->formNonce(). 78 78 form::combo('switchblog',$blogs,$core->blog->id). 79 '</ label></p>'.79 '</p>'. 80 80 '<noscript><p><input type="submit" value="'.__('ok').'" /></p></noscript>'; 81 81 } … … 93 93 "<head>\n". 94 94 ' <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />'."\n". 95 ' <title>'.$title.' - '.html::escapeHTML($core->blog->name).' - '.html::escapeHTML(DC_VENDOR_NAME).' - '.DC_VERSION.'</title>'."\n".96 97 95 ' <meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" />'."\n". 98 96 ' <meta name="GOOGLEBOT" content="NOSNIPPET" />'."\n". 97 ' <meta name="viewport" content="width=device-width, initial-scale=1.0" />'."\n". 98 ' <title>'.$title.' - '.html::escapeHTML($core->blog->name).' - '.html::escapeHTML(DC_VENDOR_NAME).' - '.DC_VERSION.'</title>'."\n". 99 99 100 100 101 self::jsLoadIE7(). 101 ' 102 ' <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" />'."\n"; 102 103 if (l10n::getTextDirection($GLOBALS['_lang']) == 'rtl') { 103 104 echo 104 ' 105 ' <link rel="stylesheet" href="style/default-rtl.css" type="text/css" media="screen" />'."\n"; 105 106 } 106 107 … … 113 114 echo 114 115 self::jsCommon(). 116 self::jsToggles(). 115 117 $head; 116 118 … … 121 123 "</head>\n". 122 124 '<body id="dotclear-admin'. 123 ($safe_mode ? ' safe-mode' : ''). 124 '">'."\n". 125 ($safe_mode ? ' safe-mode' : '').'" class="no-js">'."\n". 125 126 126 127 '<div id="header">'. 127 '<ul id="prelude"><li><a href="#content">'.__('Go to the content').'</a></li><li><a href="#main-menu">'.__('Go to the menu').'</a></li></ul>'."\n". 128 '<ul id="prelude">'. 129 '<li><a href="#content">'.__('Go to the content').'</a></li>'. 130 '<li><a href="#main-menu">'.__('Go to the menu').'</a></li>'. 131 '<li><a href="#qx">'.__('Go to search').'</a></li>'. 132 '</ul>'."\n". 128 133 '<div id="top"><h1><a href="index.php">'.DC_VENDOR_NAME.'</a></h1></div>'."\n"; 129 134 … … 133 138 '<form action="index.php" method="post">'. 134 139 $blog_box. 135 '<p ><a href="'.$core->blog->url.'" onclick="window.open(this.href);return false;" title="'.__('Go to site').' ('.__('new window').')'.'">'.__('Go to site').'<img src="images/outgoing.png" alt="" /></a>'.140 '<p class="nomobile"><a href="'.$core->blog->url.'" onclick="window.open(this.href);return false;" title="'.__('Go to site').' ('.__('new window').')'.'">'.__('Go to site').'<img src="images/outgoing.png" alt="" /></a>'. 136 141 '</p></form>'. 137 142 '</div>'. 138 143 '<div id="info-box2">'. 139 '<a '.(preg_match('/index.php$/',$_SERVER['REQUEST_URI']) ? ' class="active"' : '').'href="index.php">'.__('My dashboard').'</a>'.140 '<span > | </span><a'.(preg_match('/preferences.php(\?.*)?$/',$_SERVER['REQUEST_URI']) ? ' class="active"' : '').'href="preferences.php">'.__('My preferences').'</a>'.141 '<span > | </span><a href="index.php?logout=1" class="logout">'.sprintf(__('Logout %s'),$core->auth->userID()).'<img src="images/logout.png" alt="" /></a>'.144 '<a class="smallscreen'.(preg_match('/index.php$/',$_SERVER['REQUEST_URI']) ? ' active' : '').'" href="index.php">'.__('My dashboard').'</a>'. 145 '<span class="smallscreen"> | </span><a class="smallscreen'.(preg_match('/preferences.php(\?.*)?$/',$_SERVER['REQUEST_URI']) ? ' active' : '').'" href="preferences.php">'.__('My preferences').'</a>'. 146 '<span class="smallscreen"> | </span><a href="index.php?logout=1" class="logout">'.sprintf(__('Logout %s'),$core->auth->userID()).'<img src="images/logout.png" alt="" /></a>'. 142 147 '</div>'. 143 148 '</div>'. … … 158 163 } 159 164 165 // Display breadcrumb (if given) before any error message 166 echo $breadcrumb; 167 160 168 if ($core->error->flag()) { 161 169 echo … … 176 184 "</div>\n". // End of #main 177 185 178 '<div id="main-menu">'."\n"; 186 '<div id="main-menu">'."\n". 187 188 '<form id="search-menu" action="search.php" method="get">'. 189 '<p><label for="qx" class="hidden">'.__('Search:').' </label>'.form::field('qx',30,255,''). 190 '<input type="submit" value="'.__('OK').'" /></p>'. 191 '</form>'; 179 192 180 193 foreach ($menu as $k => $v) { … … 193 206 echo 194 207 '</div>'."\n". // End of #main-menu 195 '<div id="footer"><a href="http://dotclear.org/" title="'.$text.'"><img src="style/dc_logo_footer.png" alt="'.$text.'" /></a></div>'."\n". 208 '<div id="footer"><a href="http://dotclear.org/" title="'.$text.'"><img src="style/dc_logos/w-dotclear90.png" alt="'.$text.'" /></a></div>'."\n". 209 '<!-- '."\n". 210 ' .'."\n". 211 ' ,;:\'`\'::'."\n". 212 ' __||'."\n". 213 ' _____/LLLL\_'."\n". 214 ' \__________"|'."\n". 215 ' ~^~^~^~^~^~^~^~^~^~'."\n". 216 ' -->'."\n". 196 217 "</div>\n"; // End of #wrapper 197 218 … … 204 225 } 205 226 206 public static function openPopup($title='', $head='')227 public static function openPopup($title='',$head='',$breadcrumb='') 207 228 { 208 229 global $core; … … 216 237 'xml:lang="'.$core->auth->getInfo('user_lang').'" '. 217 238 'lang="'.$core->auth->getInfo('user_lang').'">'."\n". 239 '<meta name="viewport" content="width=device-width, initial-scale=1.0" />'."\n". 218 240 "<head>\n". 219 241 ' <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />'."\n". … … 232 254 echo 233 255 self::jsCommon(). 256 self::jsToggles(). 234 257 $head; 235 258 … … 241 264 '<body id="dotclear-admin" class="popup">'."\n". 242 265 243 '<div id="top "><h1>'.DC_VENDOR_NAME.'</h1></div>'."\n";266 '<div id="top hidden"><h1>'.DC_VENDOR_NAME.'</h1></div>'."\n"; 244 267 245 268 echo … … 247 270 '<div id="main">'."\n". 248 271 '<div id="content">'."\n"; 272 273 // display breadcrumb if given 274 echo $breadcrumb; 249 275 250 276 if ($core->error->flag()) { … … 266 292 } 267 293 268 public static function message($msg,$timestamp=true,$div=false,$echo=true) 294 public static function breadcrumb($elements=null,$with_home_link=true,$echo=false) 295 { 296 // First item of array elements should be blog's name, System or Plugins 297 $res = '<h2>'.($with_home_link ? 298 '<a class="go_home" href="index.php"><img src="style/dashboard.png" alt="'.__('Go to dashboard').'" /></a>' : 299 '<img src="style/dashboard-alt.png" alt="" />'); 300 $index = 0; 301 foreach ($elements as $element => $url) { 302 $res .= ($with_home_link ? ($index == 1 ? ' : ' : ' › ') : ($index == 0 ? ' ' : ' › ')). 303 ($url ? '<a href="'.$url.'">' : '').$element.($url ? '</a>' : ''); 304 $index++; 305 } 306 $res .= '</h2>'; 307 if ($echo) { 308 echo $res; 309 } 310 return $res; 311 } 312 313 public static function message($msg,$timestamp=true,$div=false,$echo=true,$class='message') 269 314 { 270 315 global $core; … … 272 317 $res = ''; 273 318 if ($msg != '') { 274 $res = ($div ? '<div class=" message">' : '').'<p'.($div ? '' : ' class="message"').'>'.319 $res = ($div ? '<div class="'.$class.'">' : '').'<p'.($div ? '' : ' class="'.$class.'"').'>'. 275 320 ($timestamp ? dt::str(__('%H:%M:%S:'),null,$core->auth->getInfo('user_tz')).' ' : '').$msg. 276 321 '</p>'.($div ? '</div>' : ''); … … 280 325 } 281 326 return $res; 327 } 328 329 public static function success($msg,$timestamp=true,$div=false,$echo=true) 330 { 331 self::message($msg,$timestamp,$div,$echo,"success"); 282 332 } 283 333 … … 333 383 { 334 384 $args = func_get_args(); 385 386 $args = new ArrayObject($args); 387 388 # --BEHAVIOR-- adminPageHelpBlock 389 $GLOBALS['core']->callBehavior('adminPageHelpBlock',$args); 390 335 391 if (empty($args)) { 336 392 return; … … 371 427 372 428 echo 373 '<div id="help"><hr /><div class="help-content clear"><h 2>'.__('Help').'</h2>'.429 '<div id="help"><hr /><div class="help-content clear"><h3>'.__('Help about this page').'</h3>'. 374 430 $content. 375 431 '</div></div>'; … … 390 446 } 391 447 448 public static function jsToggles() 449 { 450 if($GLOBALS['core']->auth->user_prefs->toggles) { 451 $unfolded_sections = explode(',',$GLOBALS['core']->auth->user_prefs->toggles->unfolded_sections); 452 foreach ($unfolded_sections as $k=>&$v) { 453 if ($v == '') { 454 unset($unfolded_sections[$k]); 455 } else { 456 $v = "'".html::escapeJS($v)."':true"; 457 } 458 } 459 } else { 460 $unfolded_sections=array(); 461 } 462 return '<script type="text/javascript">'."\n". 463 "//<![CDATA[\n". 464 'dotclear.unfolded_sections = {'.join(",",$unfolded_sections)."};\n". 465 "\n//]]>\n". 466 "</script>\n"; 467 } 468 392 469 public static function jsCommon() 393 470 { … … 411 488 412 489 self::jsVar('dotclear.msg.help', 413 __('help')). 490 __('Help about this page')). 491 self::jsVar('dotclear.msg.help_hide', 492 __('Hide')). 493 self::jsVar('dotclear.msg.to_select', 494 __('Select:')). 414 495 self::jsVar('dotclear.msg.no_selection', 415 496 __('no selection')). … … 417 498 __('select all')). 418 499 self::jsVar('dotclear.msg.invert_sel', 419 __(' invert selection')).500 __('Invert selection')). 420 501 self::jsVar('dotclear.msg.website', 421 502 __('Web site:')). … … 434 515 self::jsVar('dotclear.msg.confirm_delete_posts', 435 516 __("Are you sure you want to delete selected entries (%s)?")). 517 self::jsVar('dotclear.msg.confirm_delete_categories', 518 __("Are you sure you want to delete selected categories (%s)?")). 436 519 self::jsVar('dotclear.msg.confirm_delete_post', 437 520 __("Are you sure you want to delete this entry?")). 521 self::jsVar('dotclear.msg.click_to_unlock', 522 __("Click here to unlock the field")). 438 523 self::jsVar('dotclear.msg.confirm_spam_delete', 439 524 __('Are you sure you want to delete all spams?')). … … 482 567 self::jsVar('dotclear.msg.load_enhanced_uploader', 483 568 __('Loading enhanced uploader, please wait.')). 484 "\n//]]>\n".569 "\n//]]>\n". 485 570 "</script>\n"; 486 571 } … … 489 574 { 490 575 return 491 '<!--[if lt IE 8]>'."\n".492 self::jsLoad('js/ie7/IE 8.js').576 '<!--[if lt IE 9]>'."\n". 577 self::jsLoad('js/ie7/IE9.js'). 493 578 '<link rel="stylesheet" type="text/css" href="style/iesucks.css" />'."\n". 494 579 '<![endif]-->'."\n"; … … 704 789 '<link rel="stylesheet" type="text/css" href="style/jsUpload/style.css" />'."\n". 705 790 706 '<script id="template-upload" type="text/x-tmpl">707 {% for (var i=0, file; file=o.files[i]; i++) { %}708 <div class="template-upload fade">709 <div class="upload-file">710 <div class="upload-fileinfo">711 <span class="upload-filename">{%=file.name%}</span>712 <span class="upload-filesize">({%=o.formatFileSize(file.size)%})</span>713 <span class="upload-filecancel cancel">'.__('Cancel').'</span>714 {% if (!o.files.error && !i && !o.options.autoUpload) { %}715 <input type="submit" class="button start" value="'.__('Send').'"/>716 {% } %}717 <span class="upload-filemsg"></span>718 </div>719 {% if (!o.files.error) { %}720 <div class="upload-progress progress progress-success progress-striped active"><div class="bar" style="width:0%;"></div></div>721 {% } %}722 </div>723 {% } %}724 </script>725 <!-- The template to display files available for download -->726 <script id="template-download" type="text/x-tmpl">727 {% for (var i=0, file; file=o.files[i]; i++) { %}728 <div class="template-download fade">729 <div class="upload-file">730 <div class="upload-fileinfo">731 <span class="upload-filename">{%=file.name%}</span>732 <span class="upload-filesize">({%=o.formatFileSize(file.size)%})</span>733 <span class="upload-filemsg{% if (file.error) { %} upload-error{% } %}">734 {% if (file.error) { %}735 '.__('Error:').' {%=file.error%}736 {% } else { %}737 '.__('File successfully uploaded.').'738 {% } %}739 </span>740 </div>741 <div class="upload-progress">742 {% if (!file.error) { %}743 <div class="bar" style="width:100%;">100%</div>744 {% } %}745 </div>746 </div>747 {% } %}748 </script>'.749 750 self::jsLoad('js/jsUpload/vendor/jquery.ui.widget.js').751 self::jsLoad('js/jsUpload/tmpl.js').752 self::jsLoad('js/jsUpload/load-image.js').753 self::jsLoad('js/jsUpload/jquery.iframe-transport.js').754 self::jsLoad('js/jsUpload/jquery.fileupload.js').755 self::jsLoad('js/jsUpload/jquery.fileupload-process.js').756 self::jsLoad('js/jsUpload/jquery.fileupload-resize.js').757 self::jsLoad('js/jsUpload/jquery.fileupload-ui.js').758 759 791 '<script type="text/javascript">'."\n". 760 792 "//<![CDATA[\n". … … 773 805 self::jsVar('dotclear.jsUpload.msg.clean',__('Clean')). 774 806 self::jsVar('dotclear.jsUpload.msg.upload',__('Upload')). 807 self::jsVar('dotclear.jsUpload.msg.send',__('Send')). 808 self::jsVar('dotclear.jsUpload.msg.file_successfully_uploaded',__('File successfully uploaded.')). 775 809 self::jsVar('dotclear.jsUpload.msg.no_file_in_queue',__('No file in queue.')). 776 810 self::jsVar('dotclear.jsUpload.msg.file_in_queue',__('1 file in queue.')). … … 779 813 self::jsVar('dotclear.jsUpload.base_url',$base_url). 780 814 "\n//]]>\n". 781 "</script>\n"; 815 "</script>\n". 816 817 self::jsLoad('js/jsUpload/vendor/jquery.ui.widget.js'). 818 self::jsLoad('js/jsUpload/tmpl.js'). 819 self::jsLoad('js/jsUpload/template-upload.js'). 820 self::jsLoad('js/jsUpload/template-download.js'). 821 self::jsLoad('js/jsUpload/load-image.js'). 822 self::jsLoad('js/jsUpload/jquery.iframe-transport.js'). 823 self::jsLoad('js/jsUpload/jquery.fileupload.js'). 824 self::jsLoad('js/jsUpload/jquery.fileupload-process.js'). 825 self::jsLoad('js/jsUpload/jquery.fileupload-resize.js'). 826 self::jsLoad('js/jsUpload/jquery.fileupload-ui.js'); 782 827 } 783 828 -
inc/admin/lib.dc.page.php
r1699 r1718 613 613 "//<![CDATA[\n". 614 614 "\$(function() {\n". 615 " \$.pageTabs(".$default.");\n".615 " pagetabs = \$.pageTabs(".$default.");\n". 616 616 "});\n". 617 617 "\n//]]>\n". 618 "</script>\n"; 618 "</script>\n". 619 "<!--[if lt IE 8]>\n". 620 self::jsLoad('js/ie7/ie7-hashchange.js'). 621 '<script type="text/javascript">'."\n". 622 "//<![CDATA[\n". 623 "\$(function() {". 624 "\$(window).hashchange( function(){". 625 "pagetabs.showDiv(document.location.hash.split('#').join(''));". 626 "});". 627 "});". 628 "\n//]]>\n". 629 "</script>\n". 630 "<![endif]-->\n"; 619 631 } 620 632 -
inc/core/class.dc.media.php
r1708 r1718 516 516 @param post_id <b>integer</b> Post ID 517 517 @param media_id <b>integer</b> Optionnal media ID 518 @param return_rs <b>boolean</b> Whether to return a resultset (true) or an array (false, default value). 519 @return <b>array</b> Array or ResultSet of fileItems 520 */ 521 public function getPostMedia($post_id,$media_id=null,$return_rs=false) 518 @return <b>array</b> Array of fileItems 519 */ 520 public function getPostMedia($post_id,$media_id=null) 522 521 { 523 522 $params = array( … … 535 534 $f = $this->fileRecord($rs); 536 535 if ($f !== null) { 537 $res[] = $ return_rs ? new ArrayObject($f) : $f;538 } 539 } 540 541 return $re turn_rs ? staticRecord::newFromArray($res) : $res;536 $res[] = $f; 537 } 538 } 539 540 return $res; 542 541 } 543 542 -
inc/core/class.dc.media.php
r1468 r1718 74 74 75 75 if (!is_dir($root)) { 76 throw new Exception(sprintf(__('Directory %s does not exist.'),$root)); 76 # Check public directory 77 if ( $core->auth->isSuperAdmin() ) { 78 throw new Exception(__("There is no writable directory /public/ at the location set in about:config \"public_path\". You must create this directory with sufficient rights (or change this setting).")); 79 } else { 80 throw new Exception(__("There is no writable root directory for the media manager. You should contact your administrator.")); 81 } 77 82 } 78 83 … … 299 304 $f->media_thumb = array(); 300 305 $p = path::info($f->relname); 306 301 307 $alpha = ($p['extension'] == 'png') || ($p['extension'] == 'PNG'); 308 302 309 $thumb = sprintf(($alpha ? $this->thumb_tp_alpha : $this->thumb_tp),$this->root.'/'.$p['dirname'],$p['base'],'%s'); 303 310 $thumb_url = sprintf(($alpha ? $this->thumb_tp_alpha : $this->thumb_tp),$this->root_url.$p['dirname'],$p['base'],'%s'); … … 306 313 $thumb_url = preg_replace('#\./#','/',$thumb_url); 307 314 $thumb_url = preg_replace('#(?<!:)/+#','/',$thumb_url); 315 316 if ($alpha) { 317 $thumb_alt = sprintf($this->thumb_tp,$this->root.'/'.$p['dirname'],$p['base'],'%s'); 318 $thumb_url_alt = sprintf($this->thumb_tp,$this->root_url.$p['dirname'],$p['base'],'%s'); 319 # Cleaner URLs 320 $thumb_url_alt = preg_replace('#\./#','/',$thumb_url_alt); 321 $thumb_url_alt = preg_replace('#(?<!:)/+#','/',$thumb_url_alt); 322 } 308 323 309 324 foreach ($this->thumb_sizes as $suffix => $s) { 310 325 if (file_exists(sprintf($thumb,$suffix))) { 311 326 $f->media_thumb[$suffix] = sprintf($thumb_url,$suffix); 327 } elseif ($alpha && file_exists(sprintf($thumb_alt,$suffix))) { 328 $f->media_thumb[$suffix] = sprintf($thumb_url_alt,$suffix); 312 329 } 313 330 } -
locales/_pot/main.pot
r1708 r1718 1091 1091 1092 1092 #: admin/comments.php:214 1093 msgid "You have one spam comment s."1093 msgid "You have one spam comment." 1094 1094 msgstr "" 1095 1095 -
locales/bn/main.po
r1708 r1718 215 215 216 216 #, fuzzy 217 msgid "Th at blog Id is already in use."217 msgid "This blog ID is already used." 218 218 msgstr "Dotclear ইতিমধ্যেই ইন্সটল করা আছে।" 219 219 … … 459 459 460 460 #, php-format 461 msgid "You are currently using \"%s\""461 msgid "You are currently using <strong>%s</strong>" 462 462 msgstr "আপনি বর্তমানে ব্যবহার করছেন \"%s\"" 463 463 … … 586 586 msgstr "ক্যাটাগরিটি সফলভাবে সরানো হয়েছে।" 587 587 588 msgid "No category yet."588 msgid "No category so far." 589 589 msgstr "কোনো ক্যাটাগরি নেই।" 590 590 … … 759 759 msgstr "মন্তব্যের লেখক:" 760 760 761 msgid "You have one spam comment s."761 msgid "You have one spam comment." 762 762 msgstr "আপনার একটি স্প্যাম মন্তব্য আছে।" 763 763 … … 1740 1740 msgstr "এধরণের কোনো ইউজার নেই" 1741 1741 1742 msgid "Change category for entries"1743 msgstr "" 1744 1745 msgid "Change author for entries"1742 msgid "Change category for this selection" 1743 msgstr "" 1744 1745 msgid "Change author for this selection" 1746 1746 msgstr "" 1747 1747 … … 2122 2122 msgstr "সব সিলেক্ট করুন" 2123 2123 2124 msgid " invert selection"2124 msgid "Invert selection" 2125 2125 msgstr "" 2126 2126 -
locales/ca/main.po
r1708 r1718 219 219 220 220 #, fuzzy 221 msgid "Th at blog Id is already in use."221 msgid "This blog ID is already used." 222 222 msgstr "DotClear esta instal·lat." 223 223 … … 468 468 469 469 #, php-format 470 msgid "You are currently using \"%s\""470 msgid "You are currently using <strong>%s</strong>" 471 471 msgstr "" 472 472 … … 601 601 602 602 #, fuzzy 603 msgid "No category yet."603 msgid "No category so far." 604 604 msgstr "Cap categoria." 605 605 … … 787 787 msgstr "Autor del comentari:" 788 788 789 msgid "You have one spam comment s."789 msgid "You have one spam comment." 790 790 msgstr "Te un comentari no desitjat." 791 791 … … 1809 1809 msgstr "Aquest usuari no existeix" 1810 1810 1811 msgid "Change category for entries"1811 msgid "Change category for this selection" 1812 1812 msgstr "Canviar la categoria per les entrades" 1813 1813 1814 msgid "Change author for entries"1814 msgid "Change author for this selection" 1815 1815 msgstr "Canviar l'autor per les entrades" 1816 1816 … … 2200 2200 msgstr "Seleccionar tot" 2201 2201 2202 msgid " invert selection"2202 msgid "Invert selection" 2203 2203 msgstr "invertir la selecció" 2204 2204 -
locales/cs/main.po
r1708 r1718 214 214 msgstr "Zakázat vyhledavacím enginům indexovat nebo archivovat obsah blogu." 215 215 216 msgid "Th at blog Id is already in use."216 msgid "This blog ID is already used." 217 217 msgstr "Blog ID je už použito." 218 218 … … 457 457 458 458 #, php-format 459 msgid "You are currently using \"%s\""459 msgid "You are currently using <strong>%s</strong>" 460 460 msgstr "Používáte \"%s\" vzhled" 461 461 … … 585 585 msgstr "Kategorie byla úspěšně přesunuta." 586 586 587 msgid "No category yet."587 msgid "No category so far." 588 588 msgstr "Zatím žádná kategorie." 589 589 … … 764 764 msgstr "Autor komentáře:" 765 765 766 msgid "You have one spam comment s."766 msgid "You have one spam comment." 767 767 msgstr "Máte jeden spam komentář." 768 768 … … 1741 1741 msgstr "Tento uživatel neexistuje" 1742 1742 1743 msgid "Change category for entries"1743 msgid "Change category for this selection" 1744 1744 msgstr "Změnit kategorii pro články" 1745 1745 1746 msgid "Change author for entries"1746 msgid "Change author for this selection" 1747 1747 msgstr "Změnit autora pro články" 1748 1748 … … 2126 2126 msgstr "vybrat vše" 2127 2127 2128 msgid " invert selection"2128 msgid "Invert selection" 2129 2129 msgstr "obrátit výběr" 2130 2130 -
locales/da/main.po
r1708 r1718 215 215 216 216 #, fuzzy 217 msgid "Th at blog Id is already in use."217 msgid "This blog ID is already used." 218 218 msgstr "Dotclear er allerede installeret." 219 219 … … 459 459 460 460 #, php-format 461 msgid "You are currently using \"%s\""461 msgid "You are currently using <strong>%s</strong>" 462 462 msgstr "Du bruger lige nu \"%s\"" 463 463 … … 587 587 msgstr "Kategorien er flyttet." 588 588 589 msgid "No category yet."589 msgid "No category so far." 590 590 msgstr "Ingen kategori endnu." 591 591 … … 765 765 msgstr "Kommentar ejer:" 766 766 767 msgid "You have one spam comment s."767 msgid "You have one spam comment." 768 768 msgstr "Du har en spam kommentar." 769 769 … … 1752 1752 msgstr "" 1753 1753 1754 msgid "Change category for entries"1755 msgstr "" 1756 1757 msgid "Change author for entries"1754 msgid "Change category for this selection" 1755 msgstr "" 1756 1757 msgid "Change author for this selection" 1758 1758 msgstr "" 1759 1759 … … 2134 2134 msgstr "" 2135 2135 2136 msgid " invert selection"2136 msgid "Invert selection" 2137 2137 msgstr "" 2138 2138 -
locales/de/main.po
r1708 r1718 212 212 msgstr "Erlaube Suchmaschinen weder das Durchsuchen und Archivieren des Inhaltes noch des Archivs dieses Blogs." 213 213 214 msgid "Th at blog Id is already in use."214 msgid "This blog ID is already used." 215 215 msgstr "Diese Blog-ID wird schon verwendet." 216 216 … … 457 457 458 458 #, php-format 459 msgid "You are currently using \"%s\""459 msgid "You are currently using <strong>%s</strong>" 460 460 msgstr "Du verwendest gerade \"%s\"" 461 461 … … 584 584 msgstr "Die Kategorie wurde erfolgreich verschoben." 585 585 586 msgid "No category yet."586 msgid "No category so far." 587 587 msgstr "Keine Kategorie angelegt." 588 588 … … 763 763 msgstr "Autor des Kommentars" 764 764 765 msgid "You have one spam comment s."765 msgid "You have one spam comment." 766 766 msgstr "Du hast Spam in deinen Kommentaren." 767 767 … … 1740 1740 msgstr "Dieser Benutzer existiert nicht." 1741 1741 1742 msgid "Change category for entries"1742 msgid "Change category for this selection" 1743 1743 msgstr "Kategorie für die Einträge ändern" 1744 1744 1745 msgid "Change author for entries"1745 msgid "Change author for this selection" 1746 1746 msgstr "Autor für die Einträge ändern" 1747 1747 … … 2126 2126 msgstr "alles markieren" 2127 2127 2128 msgid " invert selection"2128 msgid "Invert selection" 2129 2129 msgstr "Auswahl entfernen" 2130 2130 -
locales/en/main.po
r1708 r1718 211 211 msgstr "" 212 212 213 msgid "Th at blog Id is already in use."213 msgid "This blog ID is already used." 214 214 msgstr "" 215 215 … … 453 453 454 454 #, php-format 455 msgid "You are currently using \"%s\""455 msgid "You are currently using <strong>%s</strong>" 456 456 msgstr "" 457 457 … … 547 547 548 548 msgid "Entries (all types)" 549 msgstr "Entries & pages"549 msgstr "Entries" 550 550 551 551 msgid "Status" … … 581 581 msgstr "" 582 582 583 msgid "No category yet."583 msgid "No category so far." 584 584 msgstr "" 585 585 … … 753 753 msgstr "" 754 754 755 msgid "You have one spam comment s."755 msgid "You have one spam comment." 756 756 msgstr "" 757 757 … … 1712 1712 msgstr "" 1713 1713 1714 msgid "Change category for entries"1715 msgstr "" 1716 1717 msgid "Change author for entries"1714 msgid "Change category for this selection" 1715 msgstr "" 1716 1717 msgid "Change author for this selection" 1718 1718 msgstr "" 1719 1719 … … 2074 2074 msgstr "" 2075 2075 2076 msgid "Select:" 2077 msgstr "" 2078 2076 2079 msgid "no selection" 2077 2080 msgstr "" … … 2080 2083 msgstr "" 2081 2084 2082 msgid " invert selection"2085 msgid "Invert selection" 2083 2086 msgstr "" 2084 2087 … … 2159 2162 2160 2163 msgid "You have unsaved changes. Switch post format will loose these changes. Proceed anyway?" 2161 msgstr ""2162 2163 msgid "Warning: post format change will not convert existing content. You will need to apply new format by yourself. Proceed anyway?"2164 2164 msgstr "" 2165 2165 -
locales/eo/main.po
r1708 r1718 211 211 msgstr "" 212 212 213 msgid "Th at blog Id is already in use."213 msgid "This blog ID is already used." 214 214 msgstr "" 215 215 … … 453 453 454 454 #, php-format 455 msgid "You are currently using \"%s\""455 msgid "You are currently using <strong>%s</strong>" 456 456 msgstr "" 457 457 … … 578 578 msgstr "" 579 579 580 msgid "No category yet."580 msgid "No category so far." 581 581 msgstr "" 582 582 … … 750 750 msgstr "" 751 751 752 msgid "You have one spam comment s."752 msgid "You have one spam comment." 753 753 msgstr "" 754 754 … … 1708 1708 msgstr "" 1709 1709 1710 msgid "Change category for entries"1711 msgstr "" 1712 1713 msgid "Change author for entries"1710 msgid "Change category for this selection" 1711 msgstr "" 1712 1713 msgid "Change author for this selection" 1714 1714 msgstr "" 1715 1715 … … 2073 2073 msgstr "" 2074 2074 2075 msgid " invert selection"2075 msgid "Invert selection" 2076 2076 msgstr "" 2077 2077 -
locales/es-ar/main.po
r1708 r1718 217 217 218 218 #, fuzzy 219 msgid "Th at blog Id is already in use."219 msgid "This blog ID is already used." 220 220 msgstr "Dotclear ya está instalado." 221 221 … … 460 460 461 461 #, php-format 462 msgid "You are currently using \"%s\""462 msgid "You are currently using <strong>%s</strong>" 463 463 msgstr "Actualmente usas \"%s\"" 464 464 … … 588 588 msgstr "La categoría se ha movido con éxito." 589 589 590 msgid "No category yet."590 msgid "No category so far." 591 591 msgstr "No hay categorías aún." 592 592 … … 767 767 msgstr "Autor del comentario:" 768 768 769 msgid "You have one spam comment s."769 msgid "You have one spam comment." 770 770 msgstr "Tiene un comentario no deseado." 771 771 … … 1756 1756 msgstr "Este usuario no existe" 1757 1757 1758 msgid "Change category for entries"1758 msgid "Change category for this selection" 1759 1759 msgstr "Cambiar la categoría para las entradas" 1760 1760 1761 msgid "Change author for entries"1761 msgid "Change author for this selection" 1762 1762 msgstr "Cambiar el autor de las entradas" 1763 1763 … … 2141 2141 msgstr "seleccionar todo" 2142 2142 2143 msgid " invert selection"2143 msgid "Invert selection" 2144 2144 msgstr "invertir la selección" 2145 2145 -
locales/es/main.po
r1708 r1718 218 218 219 219 #, fuzzy 220 msgid "Th at blog Id is already in use."220 msgid "This blog ID is already used." 221 221 msgstr "Dotclear ya está instalado." 222 222 … … 462 462 463 463 #, php-format 464 msgid "You are currently using \"%s\""464 msgid "You are currently using <strong>%s</strong>" 465 465 msgstr "Actualmente está usando «%s»" 466 466 … … 590 590 msgstr "La categoría se ha movido con éxito." 591 591 592 msgid "No category yet."592 msgid "No category so far." 593 593 msgstr "Ninguna categoría todavía." 594 594 … … 769 769 msgstr "Autor del comentario:" 770 770 771 msgid "You have one spam comment s."771 msgid "You have one spam comment." 772 772 msgstr "Tiene un comentario no deseado." 773 773 … … 1750 1750 msgstr "Este usuario no existe" 1751 1751 1752 msgid "Change category for entries"1752 msgid "Change category for this selection" 1753 1753 msgstr "Cambiar la categoría de las entradas" 1754 1754 1755 msgid "Change author for entries"1755 msgid "Change author for this selection" 1756 1756 msgstr "Cambiar el autor de las entradas" 1757 1757 … … 2139 2139 msgstr "Seleccionar todo" 2140 2140 2141 msgid " invert selection"2141 msgid "Invert selection" 2142 2142 msgstr "Invertir la selección" 2143 2143 -
locales/eu/main.po
r1708 r1718 211 211 msgstr "" 212 212 213 msgid "Th at blog Id is already in use."213 msgid "This blog ID is already used." 214 214 msgstr "" 215 215 … … 453 453 454 454 #, php-format 455 msgid "You are currently using \"%s\""455 msgid "You are currently using <strong>%s</strong>" 456 456 msgstr "" 457 457 … … 578 578 msgstr "" 579 579 580 msgid "No category yet."580 msgid "No category so far." 581 581 msgstr "" 582 582 … … 750 750 msgstr "" 751 751 752 msgid "You have one spam comment s."752 msgid "You have one spam comment." 753 753 msgstr "" 754 754 … … 1708 1708 msgstr "" 1709 1709 1710 msgid "Change category for entries"1711 msgstr "" 1712 1713 msgid "Change author for entries"1710 msgid "Change category for this selection" 1711 msgstr "" 1712 1713 msgid "Change author for this selection" 1714 1714 msgstr "" 1715 1715 … … 2073 2073 msgstr "" 2074 2074 2075 msgid " invert selection"2075 msgid "Invert selection" 2076 2076 msgstr "" 2077 2077 -
locales/fr/main.po
r1708 r1718 82 82 msgstr "Changer votre mot de passe" 83 83 84 msgid "Change my password" 85 msgstr "Changer mon mot de passe" 86 84 87 msgid "New password:" 85 88 msgstr "Nouveau mot de passe :" 86 89 87 90 msgid "Confirm password:" 88 msgstr "Confirme zle mot de passe :"91 msgstr "Confirmer le mot de passe :" 89 92 90 93 msgid "change" … … 95 98 96 99 msgid "This mode allows you to login without activating any of your plugins. This may be useful to solve compatibility problems" 97 msgstr " \"Ce mode vous permet de vous connecter sans activer de plugins. Il peut être utile pour résoudre un problème de compatibilité"100 msgstr "Ce mode vous permet de vous connecter sans activer de plugins. Il peut être utile pour résoudre un problème de compatibilité" 98 101 99 102 msgid "Disable or delete any plugin suspected to cause trouble, then log out and log back in normally." … … 168 171 #, php-format 169 172 msgid "You are about to delete the blog %s. Every entry, comment and category will be deleted." 170 msgstr "Vous êtes sur le point de supprimer le blog %s. Tous ses billets, commentaires et catégories seront supprimés."173 msgstr "Vous êtes sur le point de supprimer le blog %s. Tous ses billets, pages, commentaires et catégories seront supprimés." 171 174 172 175 msgid "Please give your password to confirm the blog deletion." … … 227 230 msgstr "Je souhaite que mon blog ne soit ni indexé ni archivé par les moteurs de recherche et archiveurs." 228 231 229 msgid "Th at blog Id is already in use."232 msgid "This blog ID is already used." 230 233 msgstr "Cet identifiant est déjà utilisé." 231 234 … … 335 338 336 339 msgid "Display smilies on entries and comments" 337 msgstr "Afficher des émoticônes dans les billets et commentaires"340 msgstr "Afficher des émoticônes dans les billets, pages et commentaires" 338 341 339 342 #, php-format … … 371 374 372 375 msgid "This defines image tag title when you insert it in a post from the media manager. It is retrieved from the picture's metadata." 373 msgstr "Ceci définit le titre de la balise d'une image insérée depuis l e gestionnaire de media. Les informations sont obtenues depuis les métadonnées de l'image."376 msgstr "Ceci définit le titre de la balise d'une image insérée depuis la médiathèque. Les informations sont obtenues depuis les métadonnées de l'image." 374 377 375 378 msgid "Use original media date if possible" … … 481 484 482 485 #, php-format 483 msgid "You are currently using \"%s\""484 msgstr "Vous utilisez actuellement \"%s\""486 msgid "You are currently using <strong>%s</strong>" 487 msgstr "Vous utilisez actuellement <strong>%s</strong>" 485 488 486 489 msgid "Use selected theme" … … 575 578 576 579 msgid "Entries (all types)" 577 msgstr " Billets & pages"580 msgstr "Entrées" 578 581 579 582 msgid "Status" … … 601 604 602 605 msgid "The category has been successfully removed." 603 msgstr "Catégorie supprimée avec succès." 606 msgid_plural "The categories have been successfully removed." 607 msgstr[0] "Catégorie supprimée avec succès." 608 msgstr[1] "Catégories supprimées avec succès." 604 609 605 610 msgid "Categories have been successfully reordered." … … 609 614 msgstr "Catégorie déplacée avec succès." 610 615 611 msgid "No category yet."612 msgstr "Pas encore de catégorie."613 614 msgid " Categories list"615 msgstr "Liste des catégories "616 msgid "No category so far." 617 msgstr "Pas de catégorie pour le moment." 618 619 msgid "List of blog\'s categories" 620 msgstr "Liste des catégories du blog" 616 621 617 622 #, php-format … … 647 652 msgstr "Choisissez une catégorie à supprimer :" 648 653 649 msgid "And choose the category which will receive its entries:" 650 msgstr "Et sélectionnez la catégorie qui recevra ses (éventuels) billets :" 654 msgid "Categories order" 655 msgstr "Ordonnancement des catégories" 656 657 msgid "Save categories order" 658 msgstr "Enregistrer l'ordre des catégories" 659 660 msgid "Choose the category which will receive its entries:" 661 msgstr "Sélectionnez la catégorie qui recevra ses éventuels billets :" 651 662 652 663 msgid "The entries cannot be moved to the category you choose to delete." … … 656 667 msgstr "Supprimer" 657 668 658 msgid "Reorder categories"659 msgstr "R éordonner les catégories"669 msgid "Reorder all categories on the top level" 670 msgstr "Replacer toutes les catégories au premier niveau" 660 671 661 672 msgid "This will relocate all categories on the top level" 662 673 msgstr "Ceci va déplacer toutes les catégories au premier niveau" 674 675 msgid "To rearrange categories order, move items by drag and drop, then click on “Save categories order” button." 676 msgstr "Pour modifier l\'ordre des catégories, déplacez les items par glisser-déposer puis cliquez sur le bouton \"Enregistrer l\'ordre des catégories\"." 663 677 664 678 msgid "Reorder" … … 767 781 768 782 msgid "Entry title" 769 msgstr "Titre d u billet"783 msgstr "Titre de l'entrée" 770 784 771 785 msgid "Author" … … 793 807 msgstr "Auteur du commentaire :" 794 808 795 msgid "You have one spam comment s."809 msgid "You have one spam comment." 796 810 msgstr "Vous avez un commentaire indésirable." 797 811 798 812 msgid "Show it." 799 msgstr "L'afficher "813 msgstr "L'afficher." 800 814 801 815 #, php-format … … 860 874 861 875 msgid "Following plugins have been installed:" 862 msgstr "Les extensions suivantes ont été installées :"876 msgstr "Les plugins suivants ont été installés :" 863 877 864 878 msgid "Following plugins have not been installed:" 865 msgstr "Les extensions suivantes n'ont pas été installées :"879 msgstr "Les plugins suivants n'ont pas été installés :" 866 880 867 881 #, php-format … … 880 894 881 895 msgid "Some plugins are installed twice:" 882 msgstr "Ces extensions sont installées en double :"896 msgstr "Ces plugins sont installés en double :" 883 897 884 898 msgid "Quick entry" … … 1039 1053 #, fuzzy, php-format 1040 1054 msgid "Path <strong>%s</strong> is not writable." 1041 msgstr "Le répertoire <strong>%s</strong> n'est pas accessible en écriture."1055 msgstr "Le répertoire de cache <strong>%s</strong> n'est pas accessible en écriture." 1042 1056 1043 1057 #, fuzzy … … 1124 1138 #, php-format 1125 1139 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>." 1126 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>."1140 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>." 1127 1141 1128 1142 msgid "Installed languages" … … 1192 1206 1193 1207 msgid "Media manager" 1194 msgstr " Gestionnaire de médias"1208 msgstr "Médiathèque" 1195 1209 1196 1210 msgid "Go to %s folder" … … 1264 1278 msgstr "Taille maximale %s" 1265 1279 1280 msgid "maximum size %s" 1281 msgstr "taille maximale %s" 1282 1266 1283 msgid "Private" 1267 1284 msgstr "Privé" … … 1379 1396 1380 1397 msgid "Show entries containing this media" 1381 msgstr "Afficher les billets contenant ce média"1398 msgstr "Afficher les entrées contenant ce média" 1382 1399 1383 1400 msgid "Entries containing this media" 1384 msgstr " Billets contenant ce média"1401 msgstr "Entrées contenant ce média" 1385 1402 1386 1403 msgid "No entry seems contain this media." 1387 msgstr "Aucun billetne semble contenir ce média."1404 msgstr "Aucune entrée ne semble contenir ce média." 1388 1405 1389 1406 msgid "Image details" … … 1445 1462 1446 1463 msgid "No content found on this plugin." 1447 msgstr "Aucun contenu pour ce tte extension."1464 msgstr "Aucun contenu pour ce plugin." 1448 1465 1449 1466 msgid "Plugin not found" 1450 msgstr " Extension introuvable"1467 msgstr "Plugin introuvable" 1451 1468 1452 1469 msgid "The plugin you reached does not exist or does not have an admin page." 1453 msgstr "L 'extension que vous essayez d'atteindre n'existe pas ou n'a pas de page d'administration."1470 msgstr "Le plugin que vous essayez d'atteindre n'existe pas ou n'a pas de page d'administration." 1454 1471 1455 1472 msgid "No such plugin." 1456 msgstr " Extension inexistante."1473 msgstr "Plugin inexistant." 1457 1474 1458 1475 msgid "You don't have permissions to delete this plugin." 1459 msgstr "Vous n'avez pas les permissions pour effacer cette extension."1476 msgstr "Vous n'avez pas les permissions pour supprimer ce plugin." 1460 1477 1461 1478 msgid "You don't have permissions to deactivate this plugin." 1462 msgstr "Vous n'avez pas les permissions pour désactiver ce tte extension."1479 msgstr "Vous n'avez pas les permissions pour désactiver ce plugin." 1463 1480 1464 1481 msgid "Plugins management" 1465 msgstr "Gestion des extensions"1482 msgstr "Gestion des plugins" 1466 1483 1467 1484 msgid "Plugin has been successfully deleted." 1468 msgstr " Extension suppriméeavec succès."1485 msgstr "Plugin supprimé avec succès." 1469 1486 1470 1487 msgid "Plugin has been successfully installed." 1471 msgstr " Extension installéeavec succès."1488 msgstr "Plugin installé avec succès." 1472 1489 1473 1490 msgid "Plugin has been successfully upgraded" 1474 msgstr " Extension miseà jour avec succès."1491 msgstr "Plugin mis à jour avec succès." 1475 1492 1476 1493 msgid "Plugins add new functionalities to Dotclear. Here you can activate or deactivate installed plugins." 1477 msgstr "Les extensions ajoutent de nouvelles fonctionnalités à Dotclear. Ici, vous pouvez activer ou désactiver les extensions installées."1494 msgstr "Les plugins ajoutent de nouvelles fonctionnalités à Dotclear. Ici, vous pouvez activer ou désactiver les plugins installés." 1478 1495 1479 1496 #, php-format 1480 1497 msgid "You can find additional plugins for your blog on %s." 1481 msgstr "Vous pouvez trouver d e nouvelles extensions pour votre blog sur %s."1498 msgstr "Vous pouvez trouver d'autres plugins pour votre blog sur %s." 1482 1499 1483 1500 msgid "You can find additional plugins for your blog on %s or using the %s." 1484 msgstr "Vous pouvez trouver d e nouvelles extensions pour votre blog sur %s ou en utilisant l'%s."1501 msgstr "Vous pouvez trouver d'autres plugins pour votre blog sur %s ou en utilisant l'%s." 1485 1502 1486 1503 msgid "To install or upgrade a plugin you generally just need to upload it in \"Install or upgrade a plugin\" section." 1487 msgstr " Tout ce que vous avez à faire pour installer ou mettre à jour une extension est généralement de la déposer dans la section \"Installer ou mettre à jour une extension\"."1504 msgstr "Pour installer ou mettre à jour un plugin il suffit de le déposer grâce au formulaire de la section \"Installer ou mettre à jour un plugin\"." 1488 1505 1489 1506 msgid "To install or upgrade a plugin you just need to extract it in your plugins directory." 1490 msgstr " Tout ce que vous avez à faire pour installer une extension est de l'extraire dans votre répertoire d'extensions."1507 msgstr "Pour installer un plugin il suffit de l'extraire dans votre répertoire de plugins." 1491 1508 1492 1509 msgid "Plugins" 1493 msgstr " Extensions"1510 msgstr "Plugins" 1494 1511 1495 1512 msgid "Activated plugins" 1496 msgstr " Extensions activées"1513 msgstr "Plugins activés" 1497 1514 1498 1515 msgid "Plugin" 1499 msgstr " Extension"1516 msgstr "Plugin" 1500 1517 1501 1518 msgid "Version" … … 1509 1526 1510 1527 msgid "Deactivated plugins" 1511 msgstr " Extensions désactivées"1528 msgstr "Plugins désactivés" 1512 1529 1513 1530 msgid "Activate" … … 1515 1532 1516 1533 msgid "Install or upgrade a plugin" 1517 msgstr "Installer ou mettre à jour un e extension"1534 msgstr "Installer ou mettre à jour un plugin" 1518 1535 1519 1536 msgid "You can install plugins by uploading or downloading zip files." 1520 msgstr "Vous pouvez installer des extensions en déposant ou téléchargeant des fichiers zip."1537 msgstr "Vous pouvez installer des plugins en déposant ou téléchargeant des fichiers zip." 1521 1538 1522 1539 msgid "Plugin zip file:" 1523 msgstr "Fichier zip de l'extension:"1540 msgstr "Fichier zip de du plugin :" 1524 1541 1525 1542 msgid "Upload plugin" 1526 msgstr "Déposer l 'extension"1543 msgstr "Déposer le plugin" 1527 1544 1528 1545 msgid "Plugin zip file URL:" 1529 msgstr "URL du fichier zip d e l'extension:"1546 msgstr "URL du fichier zip du plugin :" 1530 1547 1531 1548 msgid "Download plugin" 1532 msgstr "Télécharger l 'extension"1549 msgstr "Télécharger le plugin" 1533 1550 1534 1551 msgid "To enable this function, please give write access to your plugins directory." 1535 msgstr "Pour activer cette fonction, donnez un accès en écriture à votre répertoire d 'extensions."1552 msgstr "Pour activer cette fonction, donnez un accès en écriture à votre répertoire de plugins." 1536 1553 1537 1554 msgid "Plugin from official distribution" 1538 msgstr " Extension de la distribution officielle"1555 msgstr "Plugin de la distribution officielle" 1539 1556 1540 1557 msgid "Add a link" … … 1569 1586 1570 1587 msgid "Search" 1571 msgstr "Recherche "1588 msgstr "Rechercher" 1572 1589 1573 1590 msgid "cancel" … … 1629 1646 1630 1647 msgid "Text formating:" 1631 msgstr " Format du texte :"1648 msgstr "Syntaxe de saisie :" 1632 1649 1633 1650 msgid "Convert to XHTML" … … 1638 1655 1639 1656 msgid "Warning: Comments are not accepted on this blog." 1640 msgstr " Attention : les commentaires ne sont pas acceptés sur ce blog."1657 msgstr "Les commentaires sont fermés sur ce blog pour le moment." 1641 1658 1642 1659 msgid "Warning: Trackbacks are not more accepted for this entry." 1643 1660 msgstr "Attention : les rétroliens ne sont plus acceptés pour ce billet." 1644 1661 1645 msgid " Warning: Trackbacks are not accepted on this blog."1646 msgstr " Attention : les rétroliens ne sont pas acceptés sur ce blog."1662 msgid "Trackbacks are not accepted on this blog so far." 1663 msgstr "Les rétroliens sont fermés sur ce blog pour le moment." 1647 1664 1648 1665 msgid "Selected entry" … … 1662 1679 1663 1680 msgid "Ping blogs" 1664 msgstr " Fairedes rétroliens"1681 msgstr "Envoyer des rétroliens" 1665 1682 1666 1683 msgid "Trackbacks" … … 1775 1792 msgstr "Cet utilisateur n'existe pas" 1776 1793 1777 msgid "Change category for entries"1778 msgstr "Changer la catégorie de s billets"1779 1780 msgid "Change language for entries"1781 msgstr "Changer la langue de s billets"1782 1783 msgid "Change author for entries"1784 msgstr "Changer l'auteur de s billets"1794 msgid "Change category for this selection" 1795 msgstr "Changer la catégorie de cette sélection" 1796 1797 msgid "Change language for this selection" 1798 msgstr "Changer la langue de cette sélection" 1799 1800 msgid "Change author for this selection" 1801 msgstr "Changer l'auteur de cette sélection" 1785 1802 1786 1803 msgid "Author ID:" … … 1790 1807 msgstr "Défaut" 1791 1808 1792 msgid "If you want to change your email or password you must provide your current password."1793 msgstr "Si vous voulez changer votre adresse email ou votre mot de passe, vous devez indiquer votre mot de passe."1809 msgid "If you have changed your email or password you must provide your current password to save these modifications." 1810 msgstr "Si vous avez modifié votre adresse email ou votre mot de passe, vous devez indiquer votre mot de passe actuel pour enregistrer ces modifications." 1794 1811 1795 1812 msgid "No favorite selected" … … 1823 1840 msgstr "Langue de l'utilisateur :" 1824 1841 1842 msgid "Language for my interface:" 1843 msgstr "Langue de mon interface :" 1844 1825 1845 msgid "User timezone:" 1826 1846 msgstr "Fuseau horaire de l'utilisateur :" 1827 1847 1848 msgid "My timezone:" 1849 msgstr "Mon fuseau horaire :" 1850 1828 1851 msgid "If you have changed this user email or password you must provide your current password to save these modifications." 1829 msgstr "Si vous voulez changer votre adresse email ou votre mot de passe, vous devez indiquer votre mot de passe ."1852 msgstr "Si vous voulez changer votre adresse email ou votre mot de passe, vous devez indiquer votre mot de passe actuel pour enregistrer ces modifications." 1830 1853 1831 1854 msgid "My options" … … 1845 1868 1846 1869 msgid "Activate enhanced uploader in media manager" 1847 msgstr "Activer l'interface avancée d u gestionnaire de médias"1870 msgstr "Activer l'interface avancée de la médiathèque" 1848 1871 1849 1872 #, fuzzy … … 1855 1878 1856 1879 msgid "Do not use standard favicon" 1857 msgstr "Ne pas utiliser le favicon standard "1880 msgstr "Ne pas utiliser le favicon standard de Dotclear" 1858 1881 1859 1882 msgid "This will be applied for all users" 1860 msgstr "Ce choix sera a ctifpour tous les utilisateurs"1883 msgstr "Ce choix sera appliqué pour tous les utilisateurs" 1861 1884 1862 1885 msgid "Accessibility options" … … 1864 1887 1865 1888 msgid "Disable javascript powered drag and drop for ordering items" 1866 msgstr "Désactiver le drag and drop javascriptpour ordonnancer les éléments"1889 msgstr "Désactiver le glisser-déposer pour ordonnancer les éléments" 1867 1890 1868 1891 msgid "Numeric fields will allow to type the elements' ordering number." … … 1894 1917 msgstr "Retirer les favoris sélectionnés" 1895 1918 1919 msgid "Your current password:" 1920 msgstr "Votre mot de passe actuel :" 1921 1922 msgid "Update my profile" 1923 msgstr "Mettre à jour mon profil" 1924 1896 1925 msgid "Are you sure you want to remove selected favorites?" 1897 1926 msgstr "Êtes-vous sûr de vouloir retirer les favoris sélectionnés ?" … … 1924 1953 msgstr "Requête :" 1925 1954 1926 msgid "Search entries"1927 msgstr "Rechercher d es billets"1928 1929 msgid "Search comments"1930 msgstr "Rechercher d es commentaires"1955 msgid "Search in entries" 1956 msgstr "Rechercher dans les billets" 1957 1958 msgid "Search in comments" 1959 msgstr "Rechercher dans les commentaires" 1931 1960 1932 1961 msgid "schedule" … … 2068 2097 2069 2098 msgid "Mandatory for password recovering procedure." 2070 msgstr " Obligatoire pour la procédure de récupération de mot de passe."2099 msgstr "Indispensable pour la procédure de récupération de mot de passe." 2071 2100 2072 2101 msgid "Password change required to connect" 2073 msgstr "Changement de mot de passe requis pour laconnexion"2102 msgstr "Changement de mot de passe requis à la prochaine connexion" 2074 2103 2075 2104 msgid "Save and create another" … … 2098 2127 2099 2128 msgid "Number of entries" 2100 msgstr "Nombre d e billets"2129 msgstr "Nombre d'entrées" 2101 2130 2102 2131 msgid "Set permissions" … … 2155 2184 msgstr "Aller au menu" 2156 2185 2186 msgid "Go to search" 2187 msgstr "Aller à la recherche" 2188 2157 2189 msgid "Go to site" 2158 2190 msgstr "Aller sur le site" … … 2178 2210 msgstr "Aide" 2179 2211 2212 msgid "Help about this page" 2213 msgstr "Aide pour cette page" 2214 2180 2215 msgid "uncover" 2181 2216 msgstr "dévoiler" … … 2187 2222 msgstr "aide" 2188 2223 2224 msgid "Select:" 2225 msgstr "Sélectionner :" 2226 2189 2227 msgid "no selection" 2190 msgstr "aucun e sélection"2228 msgstr "aucun" 2191 2229 2192 2230 msgid "select all" 2193 msgstr "tou t sélectionner"2194 2195 msgid " invert selection"2196 msgstr " inverser la sélection"2231 msgstr "tous" 2232 2233 msgid "Invert selection" 2234 msgstr "Inverser la sélection" 2197 2235 2198 2236 msgid "view entry" … … 2214 2252 2215 2253 msgid "Users with posts cannot be deleted." 2216 msgstr "Les utilisateurs ayant écrit des billets ne peuvent être supprimés."2254 msgstr "Les utilisateurs ayant écrit des entrées ne peuvent être supprimés." 2217 2255 2218 2256 #, php-format … … 2224 2262 msgstr "Êtes-vous certain de vouloir supprimer la catégorie \"%s\" ?" 2225 2263 2264 #, php-format 2265 msgid "Are you sure you want to delete selected categories (%s)?" 2266 msgstr "Êtes-vous certain de vouloir supprimer les categories sélectionnées (%s) ?" 2267 2226 2268 msgid "Are you sure you want to reorder all categories?" 2227 2269 msgstr "Êtes-vous certain de vouloir réinitialiser l'ordre des catégories ?" … … 2244 2286 #, php-format 2245 2287 msgid "Are you sure you want to delete \"%s\" plugin?" 2246 msgstr "Êtes-vous certain de vouloir supprimer l 'extension \"%s\" ?"2288 msgstr "Êtes-vous certain de vouloir supprimer le plugin \"%s\" ?" 2247 2289 2248 2290 msgid "Use this theme" … … 2263 2305 2264 2306 msgid "XHTML markup validator" 2265 msgstr "V alidationXHTML"2307 msgstr "Vérifier la validité XHTML" 2266 2308 2267 2309 msgid "XHTML content is valid." … … 2428 2470 msgstr "Erreur de file d'attente :" 2429 2471 2430 msgid "« prev."2431 msgstr "« préc."2432 2433 msgid "next »"2434 msgstr "suiv. »"2472 msgid "« prev." 2473 msgstr "« préc." 2474 2475 msgid "next »" 2476 msgstr "suiv. »" 2435 2477 2436 2478 msgid "No entry" … … 2691 2733 2692 2734 msgid "Cannot deactivate plugin." 2693 msgstr "L 'extension ne peut pas être désactivée."2735 msgstr "Le plugin ne peut pas être désactivé." 2694 2736 2695 2737 msgid "Cannot activate plugin." 2696 msgstr "L 'extension ne peut pas être activée."2738 msgstr "Le plugin ne peut pas être activé." 2697 2739 2698 2740 #, php-format … … 2948 2990 msgstr "Date de publication invalide" 2949 2991 2992 msgid "System settings" 2993 msgstr "Réglages système" 2994 2995 msgid "Additional plugins" 2996 msgstr "Modules complémentaires" 2997 2998 msgid "Personal notes:" 2999 msgstr "Notes personnelles :" 3000 3001 msgid "New user" 3002 msgstr "Nouvel utilisateur" 3003 3004 msgid "Published" 3005 msgstr "Publié" 3006 3007 msgid "Unpublished" 3008 msgstr "Non publié" 3009 3010 msgid "Pending" 3011 msgstr "En attente" 3012 3013 msgid "Junk" 3014 msgstr "Indésirable" 3015 3016 msgid "Scheduled" 3017 msgstr "Programmé" 3018 3019 msgid "Protected" 3020 msgstr "Protégé" 3021 3022 msgid "Publish" 3023 msgstr "Publier" 3024 3025 msgid "Unpublish" 3026 msgstr "Mettre hors ligne" 3027 3028 msgid "Mark as pending" 3029 msgstr "Mettre en attente" 3030 3031 msgid "Mark as junk" 3032 msgstr "Mettre en indésirable" 3033 3034 msgid "Next entry" 3035 msgstr "Billet suivant" 3036 3037 msgid "Previous entry" 3038 msgstr "Billet précédent" 3039 3040 msgid "Introduction to the post." 3041 msgstr "Introduction au billet." 3042 3043 msgid "Unpublished notes." 3044 msgstr "Notes non publiées." 3045 3046 msgid "Edit basename:" 3047 msgstr "Modifier l'URL spécifique :" 3048 3049 msgid "Protect with password" 3050 msgstr "Protéger par un mot de passe" 3051 3052 msgid "Information collected" 3053 msgstr "Informations recueillies" 3054 3055 msgid "Comment submitted" 3056 msgstr "Commentaire déposé" 3057 3058 msgid "Entry status" 3059 msgstr "État du billet" 3060 3061 msgid "Publication date and hour" 3062 msgstr "Date et heure de publication" 3063 3064 msgid "Text formating" 3065 msgstr "Syntaxe de saisie" 3066 3067 msgid "Entry lang" 3068 msgstr "Langue du billet" 3069 3070 msgid "Password" 3071 msgstr "Mot de passe" 3072 3073 msgid "Edit basename" 3074 msgstr "URL spécifique" 3075 3076 msgid "Ordering" 3077 msgstr "Classement" 3078 3079 msgid "Filter posts list" 3080 msgstr "Filtrer la liste des billets" 3081 3082 msgid "entries per page" 3083 msgstr "billets par page" 3084 3085 msgid "Show" 3086 msgstr "Afficher" 3087 3088 msgid "Filter blogs list" 3089 msgstr "Filtrer la liste des blogs" 3090 3091 msgid "blogs per page" 3092 msgstr "blogs par page" 3093 3094 msgid "Filter comments and trackbacks list" 3095 msgstr "Filtrer la liste des commentaires et rétroliens" 3096 3097 msgid "comments per page" 3098 msgstr "commentaires par page" 3099 3100 msgid "Filter users list" 3101 msgstr "Filtrer la liste des utilisateurs" 3102 3103 msgid "users per page" 3104 msgstr "utilisateurs par page" 3105 3106 msgid "Available themes in your installation" 3107 msgstr "Thèmes disponibles sur votre installation" 3108 3109 msgid "You can also install themes by uploading or downloading zip files." 3110 msgstr "Vous pouvez aussi installer des thèmes en déposant ou en téléchargeant des fichiers zip." 3111 3112 msgid "Add themes to your installation" 3113 msgstr "Ajouter des thèmes sur votre installation" 3114 3115 msgid "Select this comment" 3116 msgstr "Sélectionner ce commentaire" 3117 3118 msgid "Next page" 3119 msgstr "Page suivante" 3120 3121 msgid "Previous page" 3122 msgstr "Page précédente" 3123 3124 msgid "Add an introduction to the page." 3125 msgstr "Ajoute une introduction à la page." 3126 2950 3127 msgid "(No cat)" 2951 3128 msgstr "(aucune)" … … 2969 3146 msgstr "très fort" 2970 3147 3148 msgid "Confirm new password:" 3149 msgstr "Confirmer le nouveau mot de passe :" 3150 3151 msgid "Not selected" 3152 msgstr "Non sélectionné" 3153 3154 msgid "Back to comments list" 3155 msgstr "Retour à la liste des commentaires" 3156 3157 msgid "The current blog cannot be deleted." 3158 msgstr "Le blog courant ne peut être détruit." 3159 3160 msgid "Only superadmin can delete a blog." 3161 msgstr "Seul un superadministrateur peut supprimer un blog." 3162 3163 msgid "Invalid publication date" 3164 msgstr "Date de publication invalide." 3165 3166 msgid "Image alignment:" 3167 msgstr "Alignement de l'image :" 3168 3169 msgid "Finish the update" 3170 msgstr "Finir la mise à jour" 3171 3172 msgid "Information about this version" 3173 msgstr "Informations sur cette version" 3174 3175 msgid "Updates and modifications" 3176 msgstr "Mises à jour et modifications" 3177 3178 msgid "Back to user profile" 3179 msgstr "Retour au profil utilisateur" 3180 3181 msgid "Back to Blog appearance" 3182 msgstr "Retour à Apparence du blog" 3183 3184 msgid "Edit" 3185 msgstr "Modifier" 3186 3187 msgid "Display options" 3188 msgstr "Options d\'affichage" 3189 3190 msgid "Apply filters and display options" 3191 msgstr "Appliquer les filtres et options d\'affichage" 3192 3193 msgid "Back to entries list" 3194 msgstr "Retour à la liste des billets" 3195 3196 msgid "New author (author ID):" 3197 msgstr "Nouvel auteur (identifiant utilisateur) :" 3198 3199 msgid "Hidden" 3200 msgstr "Masqué" 3201 3202 msgid "Create a new category for the post(s)" 3203 msgstr "Créer une nouvelle catégorie pour ce(s) billet(s)" 3204 2971 3205 msgid "This category will be created when you will save your post." 2972 3206 msgstr "Cette catégorie sera créée lorsque vous enregistrerez votre billet." 2973 3207 3208 msgid "Category which will receive entries of deleted categories:" 3209 msgstr "Catégorie d'accueil pour les billets des catégories supprimées :" 3210 3211 msgid "Delete selected categories" 3212 msgstr "Supprimer les catégories sélectionnées" 3213 3214 msgid "To rearrange categories order, change position number and click on “Save categories order”." 3215 msgstr "Pour changer l'ordre des catégories, modifier leur numéro de position et cliquez sur “Enregistrer l'ordre des catégories”." 3216 3217 msgid "Reorder all categories on the top level and delete selected categories" 3218 msgstr "Replacer toutes les catégories au premier niveau et supprimer les catégories sélectionnées" 3219 3220 #test tableau commentaires 3221 3222 msgid "trackback from" 3223 msgstr "rétrolien de" 3224 3225 msgid "comment from" 3226 msgstr "commentaire de" 3227 3228 msgid "Type and author" 3229 msgstr "Type et auteur" 3230 3231 msgid "Edit" 3232 msgstr "Modifier" 3233 3234 msgid "Select" 3235 msgstr "Sélectionner" 3236 3237 msgid "Click here to unlock the field" 3238 msgstr "Cliquez ici pour déverrouiller ce champ" 3239 3240 msgid "User profile" 3241 msgstr "Profil utilisateur" 3242 3243 msgid "User ID:" 3244 msgstr "Identifiant (login) :" 3245 3246 msgid "%s is super admin (all rights on all blogs)." 3247 msgstr "%s est super administrateur (tous les droits sur tous les blogs)." 3248 3249 msgid "Interface" 3250 msgstr "Interface" 3251 3252 msgid "Edition" 3253 msgstr "Édition" 3254 3255 msgid "Other options" 3256 msgstr "Autres options" 3257 3258 msgid "No permissions so far." 3259 msgstr "Aucune permission pour le moment." 3260 3261 msgid "Accessibility" 3262 msgstr "Accessibilité" 3263 3264 msgid "Dashboard and menu" 3265 msgstr "Tableau de bord et menu" 3266 3267 msgid "Dashboard modules" 3268 msgstr "Modules du tableau de bord" 3269 3270 msgid "If checked, numeric fields will allow to type the elements' ordering number." 3271 msgstr "Si cette option est cochée, des champs numérique permettront l'ordonnancement des éléments." 3272 3273 msgid "Save my options" 3274 msgstr "Enregistrer mes options" 3275 3276 msgid "Blog id" 3277 msgstr "Identifiant" 3278 3279 msgid "Edit blog settings for %s" 3280 msgstr "Modifier les paramètres de %s" 3281 3282 msgid "Edit blog settings" 3283 msgstr "Modifier les paramètres du blog" 3284 3285 msgid "Edit the %1$s from %2$s" 3286 msgstr "Modifier le %1$s de %2$s" 3287 3288 msgid "Backup content" 3289 msgstr "Sauvegarder le contenu" 3290 3291 msgid "Create new directory" 3292 msgstr "Créer un répertoire" 3293 3294 msgid "In %s:" 3295 msgstr "Dans %s :" 3296 3297 msgid "Download" 3298 msgstr "Télécharger" 3299 3300 msgid "Compress this directory with its content as a zip file and download it." 3301 msgstr "Compressez ce dossier et son contenu dans un fichier zip et téléchargez-le." 3302 3303 msgid "Permissions:" 3304 msgstr "Permissions :" 3305 3306 msgid "Publications on this blog:" 3307 msgstr "Publications sur ce blog :" 3308 3309 msgid "Posts" 3310 msgstr "Billets" 3311 3312 msgid "%1$s: %2$s" 3313 msgstr "%1$s : %2$s" 3314 2974 3315 msgid "The cache directory does not exist or is not writable. You must create this directory with sufficient rights and affect this location to \"DC_TPL_CACHE\" in inc/config.php file." 2975 3316 msgstr "Le répertoire de cache n'existe pas ou n'est pas accessible en écriture. Vous devez créer ce répertoire avec les droits suffisants et affecter celui-ci à \"DC_TPL_CACHE\" dans le fichier inc/config.php." -
locales/fr/main.po
r1697 r1718 3312 3312 msgid "%1$s: %2$s" 3313 3313 msgstr "%1$s : %2$s" 3314 3315 msgid "The cache directory does not exist or is not writable. You must create this directory with sufficient rights and affect this location to \"DC_TPL_CACHE\" in inc/config.php file." 3316 msgstr "Le répertoire de cache n'existe pas ou n'est pas accessible en écriture. Vous devez créer ce répertoire avec les droits suffisants et affecter celui-ci à \"DC_TPL_CACHE\" dans le fichier inc/config.php." 3317 3318 msgid "The cache directory does not exist or is not writable. You should contact your administrator." 3319 msgstr "Le répertoire de cache n'existe pas ou n'est pas accessible en écriture. Vous devriez contacter votre administrateur." 3320 3321 msgid "There is no writable directory /public/ at the location set in about:config \"public_path\". You must create this directory with sufficient rights (or change this setting)." 3322 msgstr "Il n'existe pas de répertoire /public/ à l'endroit spécifié pour le réglage \"public_path\" dans about:config. Vous devez créer ce répertoire avec les droits suffisants (ou changer ce réglage)." 3323 3324 msgid "There is no writable root directory for the media manager. You should contact your administrator." 3325 msgstr "Il n'existe pas de répertoire principal accessible en écriture pour la médiathèque. Vous devriez contacter votre administrateur." -
locales/hu/main.po
r1708 r1718 219 219 220 220 #, fuzzy 221 msgid "Th at blog Id is already in use."221 msgid "This blog ID is already used." 222 222 msgstr "A DotClear már telepítve van." 223 223 … … 465 465 466 466 #, php-format 467 msgid "You are currently using \"%s\""467 msgid "You are currently using <strong>%s</strong>" 468 468 msgstr "A \"%s\"-t használod" 469 469 … … 598 598 599 599 #, fuzzy 600 msgid "No category yet."600 msgid "No category so far." 601 601 msgstr "Kategória létrehozása" 602 602 … … 787 787 msgstr "Megjegyzés szerzője:" 788 788 789 msgid "You have one spam comment s."789 msgid "You have one spam comment." 790 790 msgstr "Van egy spam megjegyzésed." 791 791 … … 1790 1790 msgstr "" 1791 1791 1792 msgid "Change category for entries"1792 msgid "Change category for this selection" 1793 1793 msgstr "A bejegyzések kategóriája nem létezik" 1794 1794 1795 msgid "Change author for entries"1795 msgid "Change author for this selection" 1796 1796 msgstr "A szerző megváltoztatása" 1797 1797 … … 2181 2181 msgstr "mindet" 2182 2182 2183 msgid " invert selection"2183 msgid "Invert selection" 2184 2184 msgstr "ellenkezőket" 2185 2185 -
locales/it/main.po
r1708 r1718 212 212 msgstr "Impedisci ai motori di ricerca e ai sistemi di archiviazione di indicizzare o salvare il contenuto del blog." 213 213 214 msgid "Th at blog Id is already in use."214 msgid "This blog ID is already used." 215 215 msgstr "L'ID del blog è già in uso." 216 216 … … 456 456 457 457 #, php-format 458 msgid "You are currently using \"%s\""458 msgid "You are currently using <strong>%s</strong>" 459 459 msgstr "Attualmente è in uso \"%s\"" 460 460 … … 584 584 msgstr "La categoria è stata spostata correttamente." 585 585 586 msgid "No category yet."586 msgid "No category so far." 587 587 msgstr "Nessuna categoria." 588 588 … … 763 763 msgstr "Autore del commento:" 764 764 765 msgid "You have one spam comment s."765 msgid "You have one spam comment." 766 766 msgstr "È presente un commento di spam." 767 767 … … 1740 1740 msgstr "Questo utente non esiste." 1741 1741 1742 msgid "Change category for entries"1742 msgid "Change category for this selection" 1743 1743 msgstr "Cambia categoria degli articoli" 1744 1744 1745 msgid "Change author for entries"1745 msgid "Change author for this selection" 1746 1746 msgstr "Cambia autore degli articoli" 1747 1747 … … 2125 2125 msgstr "seleziona tutto" 2126 2126 2127 msgid " invert selection"2127 msgid "Invert selection" 2128 2128 msgstr "inverti selezione" 2129 2129 -
locales/ja/main.po
r1708 r1718 222 222 223 223 #, fuzzy 224 msgid "Th at blog Id is already in use."224 msgid "This blog ID is already used." 225 225 msgstr "Dotclear はすでにインストールされています。" 226 226 … … 465 465 466 466 #, php-format 467 msgid "You are currently using \"%s\""467 msgid "You are currently using <strong>%s</strong>" 468 468 msgstr "現在使用中のテーマ: %s" 469 469 … … 593 593 msgstr "カテゴリは正常に移動されました。" 594 594 595 msgid "No category yet."595 msgid "No category so far." 596 596 msgstr "カテゴリはまだありません。" 597 597 … … 772 772 msgstr "コメントの投稿者:" 773 773 774 msgid "You have one spam comment s."774 msgid "You have one spam comment." 775 775 msgstr "1 のスパムコメントがあります。" 776 776 … … 1765 1765 msgstr "このユーザは存在しません" 1766 1766 1767 msgid "Change category for entries"1767 msgid "Change category for this selection" 1768 1768 msgstr "エントリのカテゴリを変更" 1769 1769 1770 msgid "Change author for entries"1770 msgid "Change author for this selection" 1771 1771 msgstr "エントリの投稿者を変更" 1772 1772 … … 2154 2154 msgstr "すべてを選択" 2155 2155 2156 msgid " invert selection"2156 msgid "Invert selection" 2157 2157 msgstr "選択を反転" 2158 2158 -
locales/ko/main.po
r1708 r1718 220 220 221 221 #, fuzzy 222 msgid "Th at blog Id is already in use."222 msgid "This blog ID is already used." 223 223 msgstr "Dotclear가 이미 설치되어 있습니다." 224 224 … … 464 464 465 465 #, php-format 466 msgid "You are currently using \"%s\""466 msgid "You are currently using <strong>%s</strong>" 467 467 msgstr "현재 사용 중인 테마 : \"%s\"" 468 468 … … 592 592 msgstr "분류 이동 완료." 593 593 594 msgid "No category yet."594 msgid "No category so far." 595 595 msgstr "분류가 아직 없습니다." 596 596 … … 771 771 msgstr "댓글 글쓴이 :" 772 772 773 msgid "You have one spam comment s."773 msgid "You have one spam comment." 774 774 msgstr "스팸댓글이 하나 있습니다." 775 775 … … 1765 1765 msgstr "이 사용자는 존재하지 않습니다." 1766 1766 1767 msgid "Change category for entries"1767 msgid "Change category for this selection" 1768 1768 msgstr "글꼭지들의 분류 변경" 1769 1769 1770 msgid "Change author for entries"1770 msgid "Change author for this selection" 1771 1771 msgstr "글꼭지들의 글쓴이 변경" 1772 1772 … … 2154 2154 msgstr "모두 선택하기" 2155 2155 2156 msgid " invert selection"2156 msgid "Invert selection" 2157 2157 msgstr "선택사항 뒤집기" 2158 2158 -
locales/lt/main.po
r1708 r1718 193 193 msgstr "Nenoriu, kad paieškos sistemos ir archyvatoriai indeksuotų ir archyvuotų mano blogo turinio." 194 194 195 msgid "Th at blog Id is already in use."195 msgid "This blog ID is already used." 196 196 msgstr "Šito blogo ID jau yra naudojamas." 197 197 … … 432 432 433 433 #, php-format 434 msgid "You are currently using \"%s\""434 msgid "You are currently using <strong>%s</strong>" 435 435 msgstr "Šiuo metu jūs naudojate \"%s\"" 436 436 … … 554 554 msgstr "Kategorija sėkmingai perkelta." 555 555 556 msgid "No category yet."556 msgid "No category so far." 557 557 msgstr "Kategorijos kolkas nėra." 558 558 … … 742 742 msgstr "Komentaro autorius:" 743 743 744 msgid "You have one spam comment s."744 msgid "You have one spam comment." 745 745 msgstr "Turite vieną spamo komentarą." 746 746 … … 1681 1681 msgstr "Šis dalyvis neegzistuoja" 1682 1682 1683 msgid "Change category for entries"1683 msgid "Change category for this selection" 1684 1684 msgstr "Keisti įrašų kategoriją" 1685 1685 1686 msgid "Change author for entries"1686 msgid "Change author for this selection" 1687 1687 msgstr "Keisti įrašų autorių" 1688 1688 … … 1935 1935 msgstr "pasirinkti viską" 1936 1936 1937 msgid " invert selection"1937 msgid "Invert selection" 1938 1938 msgstr "atvirkščias pasirinkimas" 1939 1939 -
locales/nl/main.po
r1708 r1718 211 211 msgstr "Zoekmachines mogen mijn blog niet indexeren en archiveren." 212 212 213 msgid "Th at blog Id is already in use."213 msgid "This blog ID is already used." 214 214 msgstr "" 215 215 … … 454 454 455 455 #, php-format 456 msgid "You are currently using \"%s\""456 msgid "You are currently using <strong>%s</strong>" 457 457 msgstr "Je gebruikt nu \"%s\"" 458 458 … … 581 581 msgstr "" 582 582 583 msgid "No category yet."583 msgid "No category so far." 584 584 msgstr "" 585 585 … … 753 753 msgstr "" 754 754 755 msgid "You have one spam comment s."755 msgid "You have one spam comment." 756 756 msgstr "" 757 757 … … 1715 1715 msgstr "" 1716 1716 1717 msgid "Change category for entries"1718 msgstr "" 1719 1720 msgid "Change author for entries"1717 msgid "Change category for this selection" 1718 msgstr "" 1719 1720 msgid "Change author for this selection" 1721 1721 msgstr "" 1722 1722 … … 2087 2087 msgstr "" 2088 2088 2089 msgid " invert selection"2089 msgid "Invert selection" 2090 2090 msgstr "" 2091 2091 -
locales/oc/main.po
r1708 r1718 212 212 msgstr "" 213 213 214 msgid "Th at blog Id is already in use."214 msgid "This blog ID is already used." 215 215 msgstr "" 216 216 … … 455 455 456 456 #, php-format 457 msgid "You are currently using \"%s\""457 msgid "You are currently using <strong>%s</strong>" 458 458 msgstr "" 459 459 … … 580 580 msgstr "" 581 581 582 msgid "No category yet."582 msgid "No category so far." 583 583 msgstr "" 584 584 … … 757 757 msgstr "" 758 758 759 msgid "You have one spam comment s."759 msgid "You have one spam comment." 760 760 msgstr "" 761 761 … … 1735 1735 msgstr "" 1736 1736 1737 msgid "Change category for entries"1738 msgstr "" 1739 1740 msgid "Change author for entries"1737 msgid "Change category for this selection" 1738 msgstr "" 1739 1740 msgid "Change author for this selection" 1741 1741 msgstr "" 1742 1742 … … 2106 2106 msgstr "" 2107 2107 2108 msgid " invert selection"2108 msgid "Invert selection" 2109 2109 msgstr "" 2110 2110 -
locales/pl/main.po
r1708 r1718 212 212 msgstr "Chcę, aby wyszukiwarki i archiwizery nie indeksowały i nie archiwizowały zawartości mojego bloga." 213 213 214 msgid "Th at blog Id is already in use."214 msgid "This blog ID is already used." 215 215 msgstr "Ten identyfikator bloga jest już używany." 216 216 … … 455 455 456 456 #, php-format 457 msgid "You are currently using \"%s\""457 msgid "You are currently using <strong>%s</strong>" 458 458 msgstr "Aktualnie używasz \"%s\"" 459 459 … … 582 582 msgstr "Kategoria została przeniesiona." 583 583 584 msgid "No category yet."584 msgid "No category so far." 585 585 msgstr "Brak kategorii." 586 586 … … 760 760 msgstr "Autor komentarza:" 761 761 762 msgid "You have one spam comment s."762 msgid "You have one spam comment." 763 763 msgstr "Masz jeden komentarz oznaczony jako spam." 764 764 … … 1729 1729 msgstr "Ten użytkownik nie istnieje" 1730 1730 1731 msgid "Change category for entries"1731 msgid "Change category for this selection" 1732 1732 msgstr "Zmień kategorię dla wpisów" 1733 1733 1734 msgid "Change author for entries"1734 msgid "Change author for this selection" 1735 1735 msgstr "Zmień autora dla wpisów" 1736 1736 … … 2099 2099 msgstr "zaznacz wszystkie" 2100 2100 2101 msgid " invert selection"2101 msgid "Invert selection" 2102 2102 msgstr "odwróć zaznaczenie" 2103 2103 -
locales/pt-br/main.po
r1708 r1718 219 219 220 220 #, fuzzy 221 msgid "Th at blog Id is already in use."221 msgid "This blog ID is already used." 222 222 msgstr "DotClear já está instalado." 223 223 … … 470 470 471 471 #, php-format 472 msgid "You are currently using \"%s\""472 msgid "You are currently using <strong>%s</strong>" 473 473 msgstr "" 474 474 … … 603 603 604 604 #, fuzzy 605 msgid "No category yet."605 msgid "No category so far." 606 606 msgstr "Nenhum categoria." 607 607 … … 790 790 msgstr "Autor do comentário:" 791 791 792 msgid "You have one spam comment s."792 msgid "You have one spam comment." 793 793 msgstr "Você tem um comentário indesejável." 794 794 … … 1824 1824 msgstr "Este usuário não existe" 1825 1825 1826 msgid "Change category for entries"1826 msgid "Change category for this selection" 1827 1827 msgstr "Mudar a categoria para os posts" 1828 1828 1829 msgid "Change author for entries"1829 msgid "Change author for this selection" 1830 1830 msgstr "Mudar o autor para os posts" 1831 1831 … … 2218 2218 msgstr "selecionar tudo" 2219 2219 2220 msgid " invert selection"2220 msgid "Invert selection" 2221 2221 msgstr "inverter a seleção" 2222 2222 -
locales/pt/main.po
r1708 r1718 218 218 219 219 #, fuzzy 220 msgid "Th at blog Id is already in use."220 msgid "This blog ID is already used." 221 221 msgstr "Dotclear já está instalado." 222 222 … … 461 461 462 462 #, php-format 463 msgid "You are currently using \"%s\""463 msgid "You are currently using <strong>%s</strong>" 464 464 msgstr "Você está a usar \"%s\"" 465 465 … … 589 589 msgstr "A categoria foi movida com sucesso." 590 590 591 msgid "No category yet."591 msgid "No category so far." 592 592 msgstr "Nenhuma categoria ainda." 593 593 … … 768 768 msgstr "Autor do comentário:" 769 769 770 msgid "You have one spam comment s."770 msgid "You have one spam comment." 771 771 msgstr "Tem um comentário de \"spam\"" 772 772 … … 1748 1748 msgstr "Este utilizador não existe" 1749 1749 1750 msgid "Change category for entries"1750 msgid "Change category for this selection" 1751 1751 msgstr "Alterar a categoria das entradas" 1752 1752 1753 msgid "Change author for entries"1753 msgid "Change author for this selection" 1754 1754 msgstr "Alterar o autor das entradas" 1755 1755 … … 2133 2133 msgstr "seleccionar tudo" 2134 2134 2135 msgid " invert selection"2135 msgid "Invert selection" 2136 2136 msgstr "inverter selecção" 2137 2137 -
locales/ro/main.po
r1708 r1718 213 213 msgstr "" 214 214 215 msgid "Th at blog Id is already in use."215 msgid "This blog ID is already used." 216 216 msgstr "" 217 217 … … 455 455 456 456 #, php-format 457 msgid "You are currently using \"%s\""457 msgid "You are currently using <strong>%s</strong>" 458 458 msgstr "" 459 459 … … 580 580 msgstr "" 581 581 582 msgid "No category yet."582 msgid "No category so far." 583 583 msgstr "" 584 584 … … 752 752 msgstr "" 753 753 754 msgid "You have one spam comment s."754 msgid "You have one spam comment." 755 755 msgstr "" 756 756 … … 1710 1710 msgstr "" 1711 1711 1712 msgid "Change category for entries"1713 msgstr "" 1714 1715 msgid "Change author for entries"1712 msgid "Change category for this selection" 1713 msgstr "" 1714 1715 msgid "Change author for this selection" 1716 1716 msgstr "" 1717 1717 … … 2084 2084 msgstr "" 2085 2085 2086 msgid " invert selection"2086 msgid "Invert selection" 2087 2087 msgstr "" 2088 2088 -
locales/ru/main.po
r1708 r1718 216 216 msgstr "Я не хочу, чтобы мой блог индексировался и архивировался поисковыми машинами." 217 217 218 msgid "Th at blog Id is already in use."218 msgid "This blog ID is already used." 219 219 msgstr "Dotclear уже установлен." 220 220 … … 460 460 461 461 #, php-format 462 msgid "You are currently using \"%s\""462 msgid "You are currently using <strong>%s</strong>" 463 463 msgstr "В данный момент вы используете \"%s\"" 464 464 … … 588 588 msgstr "Категория была успешно перенесена." 589 589 590 msgid "No category yet."590 msgid "No category so far." 591 591 msgstr "Нет категории." 592 592 … … 767 767 msgstr "Автор комментария:" 768 768 769 msgid "You have one spam comment s."769 msgid "You have one spam comment." 770 770 msgstr "У вас один спам комментарий." 771 771 … … 1742 1742 msgstr "Этот пользователь не существует" 1743 1743 1744 msgid "Change category for entries"1744 msgid "Change category for this selection" 1745 1745 msgstr "Изменить категорию для записей" 1746 1746 1747 msgid "Change author for entries"1747 msgid "Change author for this selection" 1748 1748 msgstr "Изменить автора записей" 1749 1749 … … 2126 2126 msgstr "выбрать все" 2127 2127 2128 msgid " invert selection"2128 msgid "Invert selection" 2129 2129 msgstr "инвертировать выбор" 2130 2130 -
locales/sr/main.po
r1708 r1718 217 217 218 218 #, fuzzy 219 msgid "Th at blog Id is already in use."219 msgid "This blog ID is already used." 220 220 msgstr "Dotclear est déjà installé." 221 221 … … 460 460 461 461 #, php-format 462 msgid "You are currently using \"%s\""462 msgid "You are currently using <strong>%s</strong>" 463 463 msgstr "Vous utilisez actuellement \"%s\"" 464 464 … … 592 592 593 593 #, fuzzy 594 msgid "No category yet."594 msgid "No category so far." 595 595 msgstr "Pas de catégorie." 596 596 … … 778 778 msgstr "Auteur du commentaire :" 779 779 780 msgid "You have one spam comment s."780 msgid "You have one spam comment." 781 781 msgstr "Vous avez un commentaire indésirable." 782 782 … … 1172 1172 1173 1173 msgid "Media manager" 1174 msgstr " Gestionnaire de médias"1174 msgstr "Médiathèque" 1175 1175 1176 1176 msgid "confirm removal" … … 1654 1654 1655 1655 msgid "Ping blogs" 1656 msgstr " Fairedes rétroliens"1656 msgstr "Envoyer des rétroliens" 1657 1657 1658 1658 msgid "Trackbacks" … … 1772 1772 msgstr "Cet utilisateur n'existe pas" 1773 1773 1774 msgid "Change category for entries"1774 msgid "Change category for this selection" 1775 1775 msgstr "Changer de catégorie pour les billets" 1776 1776 1777 msgid "Change author for entries"1777 msgid "Change author for this selection" 1778 1778 msgstr "Changer l'auteur des billets" 1779 1779 … … 2167 2167 msgstr "tout sélectionner" 2168 2168 2169 msgid " invert selection"2169 msgid "Invert selection" 2170 2170 msgstr "inverser la sélection" 2171 2171 -
locales/sv/main.po
r1708 r1718 211 211 msgstr "" 212 212 213 msgid "Th at blog Id is already in use."213 msgid "This blog ID is already used." 214 214 msgstr "" 215 215 … … 453 453 454 454 #, php-format 455 msgid "You are currently using \"%s\""455 msgid "You are currently using <strong>%s</strong>" 456 456 msgstr "" 457 457 … … 578 578 msgstr "" 579 579 580 msgid "No category yet."580 msgid "No category so far." 581 581 msgstr "" 582 582 … … 750 750 msgstr "" 751 751 752 msgid "You have one spam comment s."752 msgid "You have one spam comment." 753 753 msgstr "" 754 754 … … 1708 1708 msgstr "" 1709 1709 1710 msgid "Change category for entries"1711 msgstr "" 1712 1713 msgid "Change author for entries"1710 msgid "Change category for this selection" 1711 msgstr "" 1712 1713 msgid "Change author for this selection" 1714 1714 msgstr "" 1715 1715 … … 2073 2073 msgstr "" 2074 2074 2075 msgid " invert selection"2075 msgid "Invert selection" 2076 2076 msgstr "" 2077 2077 -
locales/te/main.po
r1708 r1718 215 215 216 216 #, fuzzy 217 msgid "Th at blog Id is already in use."217 msgid "This blog ID is already used." 218 218 msgstr "డాట్క్లియర్ ఇప్పటికే స్థాపితమైవుంది." 219 219 … … 458 458 459 459 #, php-format 460 msgid "You are currently using \"%s\""460 msgid "You are currently using <strong>%s</strong>" 461 461 msgstr "మీరు ప్రస్తుతం \"%s\" ని వాడుతున్నారు" 462 462 … … 591 591 592 592 #, fuzzy 593 msgid "No category yet."593 msgid "No category so far." 594 594 msgstr "వర్గాలు లేవు." 595 595 … … 775 775 msgstr "వ్యాఖ్యాత:" 776 776 777 msgid "You have one spam comment s."777 msgid "You have one spam comment." 778 778 msgstr "ఒక చెత్త వ్యాఖ్య ఉంది." 779 779 … … 1763 1763 msgstr "ఈ వాడుకరి లేనే లేరు" 1764 1764 1765 msgid "Change category for entries"1766 msgstr "" 1767 1768 msgid "Change author for entries"1765 msgid "Change category for this selection" 1766 msgstr "" 1767 1768 msgid "Change author for this selection" 1769 1769 msgstr "టపాలకి రచయితని మార్చండి" 1770 1770 … … 2151 2151 msgstr "అన్నీ ఎంచుకోండి" 2152 2152 2153 msgid " invert selection"2153 msgid "Invert selection" 2154 2154 msgstr "" 2155 2155 -
locales/tr/main.po
r1708 r1718 217 217 218 218 #, fuzzy 219 msgid "Th at blog Id is already in use."219 msgid "This blog ID is already used." 220 220 msgstr "Dotclear evvelce kurulmuş." 221 221 … … 460 460 461 461 #, php-format 462 msgid "You are currently using \"%s\""462 msgid "You are currently using <strong>%s</strong>" 463 463 msgstr "Şimdi \"%s\" kullanıyorsunuz." 464 464 … … 588 588 msgstr "Kategori silinimi başarılı." 589 589 590 msgid "No category yet."590 msgid "No category so far." 591 591 msgstr "Henüz kategori yok" 592 592 … … 761 761 msgstr "Ahkamı yazan:" 762 762 763 msgid "You have one spam comment s."763 msgid "You have one spam comment." 764 764 msgstr "" 765 765 … … 1746 1746 msgstr "Bu kullanıcı mevcut değil" 1747 1747 1748 msgid "Change category for entries"1748 msgid "Change category for this selection" 1749 1749 msgstr "Yazıların kategorisini değiştir" 1750 1750 1751 msgid "Change author for entries"1751 msgid "Change author for this selection" 1752 1752 msgstr "Yazıların yazarını değiştir" 1753 1753 … … 2129 2129 msgstr "hepsini seç" 2130 2130 2131 msgid " invert selection"2131 msgid "Invert selection" 2132 2132 msgstr "seçimi evir" 2133 2133 -
locales/zh-cn/main.po
r1708 r1718 215 215 216 216 #, fuzzy 217 msgid "Th at blog Id is already in use."217 msgid "This blog ID is already used." 218 218 msgstr "Dotclear 已被安装。" 219 219 … … 458 458 459 459 #, php-format 460 msgid "You are currently using \"%s\""460 msgid "You are currently using <strong>%s</strong>" 461 461 msgstr "您正在使用“%s”" 462 462 … … 586 586 msgstr "成功移动分类目录。" 587 587 588 msgid "No category yet."588 msgid "No category so far." 589 589 msgstr "还没有分类目录。" 590 590 … … 765 765 msgstr "评论作者:" 766 766 767 msgid "You have one spam comment s."767 msgid "You have one spam comment." 768 768 msgstr "您有一个垃圾评论。" 769 769 … … 1745 1745 msgstr "用户不存在" 1746 1746 1747 msgid "Change category for entries"1747 msgid "Change category for this selection" 1748 1748 msgstr "改变文章的分类目录" 1749 1749 1750 msgid "Change author for entries"1750 msgid "Change author for this selection" 1751 1751 msgstr "改变文章的作者" 1752 1752 … … 2131 2131 msgstr "选择全部" 2132 2132 2133 msgid " invert selection"2133 msgid "Invert selection" 2134 2134 msgstr "反选" 2135 2135
Note: See TracChangeset
for help on using the changeset viewer.