Changeset 1499:fc4bc1ece727
- Timestamp:
- 08/20/13 16:47:16 (12 years ago)
- Branch:
- default
- Files:
-
- 74 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_pref.php
r1474 r1499 303 303 304 304 echo 305 '< fieldset><legend>'.__('Blog details').'</legend>'.305 '<div class="fieldset"><h4>'.__('Blog details').'</h4>'. 306 306 $core->formNonce(); 307 307 … … 335 335 '<p class="area"><label for="blog_desc">'.__('Blog description:').'</label>'. 336 336 form::textarea('blog_desc',60,5,html::escapeHTML($blog_desc)).'</p>'. 337 '</ fieldset>';338 339 340 echo 341 '< fieldset><legend>'.__('Blog configuration').'</legend>'.337 '</div>'; 338 339 340 echo 341 '<div class="fieldset"><h4>'.__('Blog configuration').'</h4>'. 342 342 '<div class="two-cols">'. 343 343 '<div class="col">'. … … 393 393 '</div>'. 394 394 '<br class="clear" />'. //Opera sucks 395 '</fieldset>'; 396 397 echo 398 '<fieldset><legend>'.__('Comments and trackbacks').'</legend>'. 395 '</div>'; 396 397 echo 398 '<div class="fieldset"><h4>'.__('Comments and trackbacks').'</h4>'. 399 399 400 '<div class="two-cols">'. 401 400 402 '<div class="col">'. 401 403 '<p><label for="allow_comments" class="classic">'. 402 404 form::checkbox('allow_comments','1',$blog_settings->system->allow_comments). 403 __('Accept comments').'</label></p>'. 404 405 __('Accept comments').'</label></p>'. 405 406 '<p><label for="comments_pub" class="classic">'. 406 407 form::checkbox('comments_pub','1',!$blog_settings->system->comments_pub). 407 __('Moderate comments').'</label></p>'. 408 408 __('Moderate comments').'</label></p>'. 409 409 '<p><label for="comments_ttl" class="classic">'.sprintf(__('Leave comments open for %s days'), 410 410 form::field('comments_ttl',2,3,$blog_settings->system->comments_ttl)). 411 411 '</label></p>'. 412 '<p class="form-note">'.__('Leave blank to disable this feature.').'</p>'. 413 412 '<p class="form-note">'.__('Leave blank to disable this feature.').'</p>'. 414 413 '<p><label for="wiki_comments" class="classic">'. 415 414 form::checkbox('wiki_comments','1',$blog_settings->system->wiki_comments). … … 420 419 '<p><label for="allow_trackbacks" class="classic">'. 421 420 form::checkbox('allow_trackbacks','1',$blog_settings->system->allow_trackbacks). 422 __('Accept trackbacks').'</label></p>'. 423 421 __('Accept trackbacks').'</label></p>'. 424 422 '<p><label for="trackbacks_pub" class="classic">'. 425 423 form::checkbox('trackbacks_pub','1',!$blog_settings->system->trackbacks_pub). 426 __('Moderate trackbacks').'</label></p>'. 427 424 __('Moderate trackbacks').'</label></p>'. 428 425 '<p><label for="trackbacks_ttl" class="classic">'.sprintf(__('Leave trackbacks open for %s days'), 429 426 form::field('trackbacks_ttl',2,3,$blog_settings->system->trackbacks_ttl)).'</label></p>'. 430 '<p class="form-note">'.__('Leave blank to disable this feature.').'</p>'. 431 427 '<p class="form-note">'.__('Leave blank to disable this feature.').'</p>'. 432 428 '<p><label for="comments_nofollow" class="classic">'. 433 429 form::checkbox('comments_nofollow','1',$blog_settings->system->comments_nofollow). 434 430 __('Add "nofollow" relation on comments and trackbacks links').'</label></p>'. 435 431 '</div>'. 436 '</div>'.437 432 '<br class="clear" />'. //Opera sucks 438 '</fieldset>'; 439 440 echo 441 '<fieldset><legend>'.__('Blog presentation').'</legend>'. 433 434 '</div>'. 435 '<br class="clear" />'. //Opera sucks 436 '</div>'; 437 438 echo 439 '<div class="fieldset"><h4>'.__('Blog presentation').'</h4>'. 442 440 '<div class="two-cols">'. 443 441 '<div class="col">'. … … 474 472 '</div>'. 475 473 '<br class="clear" />'. //Opera sucks 476 '</ fieldset>';477 478 echo 479 '< fieldset><legend>'.__('Media and images').'</legend>'.474 '</div>'; 475 476 echo 477 '<div class="fieldset"><h4>'.__('Media and images').'</h4>'. 480 478 '<div class="two-cols">'. 481 479 '<div class="col">'. 482 '<h 4>'.__('Generated image sizes (in pixels)').'</h4>'.480 '<h5>'.__('Generated image sizes (in pixels)').'</h5>'. 483 481 '<p class="field"><label for="media_img_t_size">'.__('Thumbnails:').' '. 484 482 form::field('media_img_t_size',3,3,$blog_settings->system->media_img_t_size).'</label></p>'. … … 492 490 493 491 '<div class="col">'. 494 '<h 4><label for="media_img_title_pattern">'.__('Inserted image title').'</label></h4>'.492 '<h5><label for="media_img_title_pattern">'.__('Inserted image title').'</label></h5>'. 495 493 '<p>'.__('This defines image tag title when you insert it in a post from the media manager. It is retrieved from the picture\'s metadata.').'</p>'. 496 494 '<p>'.form::combo('media_img_title_pattern',$img_title_combo,html::escapeHTML($blog_settings->system->media_img_title_pattern)).'</p>'. … … 499 497 __('Use original media date if possible').'</label></p>'. 500 498 501 '<h 4>'.__('Default image insertion attributes').'</h4>'.499 '<h5>'.__('Default image insertion attributes').'</h5>'. 502 500 '<p><label for="media_img_default_size">'.__('Image size:').'</label>'. 503 501 form::combo('media_img_default_size',$img_default_size_combo, … … 512 510 '</div>'. 513 511 '</div>'. 514 515 '</fieldset>'; 516 517 echo 518 '<fieldset><legend>'.__('Search engines robots policy').'</legend>'; 512 '<br class="clear" />'. //Opera sucks 513 514 '</div>'; 515 516 echo 517 '<div class="fieldset"><h4>'.__('Search engines robots policy').'</h4>'; 519 518 520 519 $i = 0; … … 526 525 } 527 526 528 echo '</ fieldset>';527 echo '</div>'; 529 528 530 529 -
admin/blog_theme.php
r1428 r1499 250 250 $themes = $core->themes->getModules(); 251 251 if (isset($themes[$core->blog->settings->system->theme])) { 252 echo '<p>'.sprintf(__('You are currently using "%s"'),$themes[$core->blog->settings->system->theme]['name']).'.</p>';252 echo '<p>'.sprintf(__('You are currently using <strong>%s</strong>'),$themes[$core->blog->settings->system->theme]['name']).'.</p>'; 253 253 } 254 254 … … 299 299 # 'Upload theme' form 300 300 echo 301 '<form method="post" action="blog_theme.php" id="uploadpkg" enctype="multipart/form-data">'. 302 '<fieldset>'. 303 '<legend>'.__('Upload a zip file').'</legend>'. 301 '<form method="post" action="blog_theme.php" id="uploadpkg" enctype="multipart/form-data" class="fieldset">'. 302 '<h4>'.__('Upload a zip file').'</h4>'. 304 303 '<p class="field"><label for="pkg_file" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Theme zip file:').'</label> '. 305 304 '<input type="file" name="pkg_file" id="pkg_file" /></p>'. 306 305 '<p class="field"><label for="your_pwd1" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Your password:').'</label> '. 307 306 form::password(array('your_pwd','your_pwd1'),20,255).'</p>'. 308 '<input type="submit" name="upload_pkg" value="'.__('Upload theme').'" />'. 309 $core->formNonce(). 310 '</fieldset>'. 307 '<p><input type="submit" name="upload_pkg" value="'.__('Upload theme').'" />'. 308 $core->formNonce().'</p>'. 311 309 '</form>'; 312 310 313 311 # 'Fetch theme' form 314 312 echo 315 '<form method="post" action="blog_theme.php" id="fetchpkg">'. 316 '<fieldset>'. 317 '<legend>'.__('Download a zip file').'</legend>'. 313 '<form method="post" action="blog_theme.php" id="fetchpkg" class="fieldset">'. 314 '<h4>'.__('Download a zip file').'</h4>'. 318 315 '<p class="field"><label for="pkg_url" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Theme zip file URL:').'</label> '. 319 316 form::field(array('pkg_url','pkg_url'),40,255).'</p>'. 320 317 '<p class="field"><label for="your_pwd2" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Your password:').'</label> '. 321 318 form::password(array('your_pwd','your_pwd2'),20,255).'</p>'. 322 '<input type="submit" name="fetch_pkg" value="'.__('Download theme').'" />'. 323 $core->formNonce(). 324 '</fieldset>'. 319 '<p><input type="submit" name="fetch_pkg" value="'.__('Download theme').'" />'. 320 $core->formNonce().'</p>'. 325 321 '</form>'; 326 322 } -
admin/category.php
r1399 r1499 226 226 '<div class="col">'. 227 227 228 '<form action="category.php" method="post" >'.229 '< fieldset><legend>'.__('Category parent').'</legend>'.228 '<form action="category.php" method="post" class="fieldset">'. 229 '<h4>'.__('Category parent').'</h4>'. 230 230 '<p><label for="cat_parent" class="classic">'.__('Parent:').'</label> '. 231 231 form::combo('cat_parent',$allowed_parents,$cat_parent).'</p>'. 232 232 '<p><input type="submit" accesskey="s" value="'.__('Save').'" />'. 233 233 form::hidden(array('id'),$cat_id).$core->formNonce().'</p>'. 234 '</fieldset>'.235 234 '</form>'. 236 235 '</div>'; … … 239 238 echo 240 239 '<div class="col">'. 241 '<form action="category.php" method="post" >'.242 '< fieldset><legend>'.__('Category sibling').'</legend>'.240 '<form action="category.php" method="post" class="fieldset">'. 241 '<h4>'.__('Category sibling').'</h4>'. 243 242 '<p><label class="classic" for="cat_sibling">'.__('Move current category').'</label> '. 244 243 form::combo('cat_move',array(__('before')=>'before',__('after')=>'after'),'','','',false,'title="'.__('position: ').'"').' '. … … 246 245 '<p><input type="submit" accesskey="s" value="'.__('Save').'" />'. 247 246 form::hidden(array('id'),$cat_id).$core->formNonce().'</p>'. 248 '</fieldset>'.249 247 '</form>'. 250 248 '</div>'; -
admin/index.php
r1468 r1499 326 326 '<div id="quick">'. 327 327 '<h3>'.__('Quick entry').'</h3>'. 328 '<form id="quick-entry" action="post.php" method="post" >'.329 '< fieldset><legend>'.__('New entry').'</legend>'.328 '<form id="quick-entry" action="post.php" method="post" class="fieldset">'. 329 '<h4>'.__('New entry').'</h4>'. 330 330 '<p class="col"><label for="post_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 331 331 form::field('post_title',20,255,'','maximal'). … … 358 358 form::hidden('post_notes',''). 359 359 '</p>'. 360 '</fieldset>'.361 360 '</form>'. 362 361 '</div>'; -
admin/langs.php
r1399 r1499 222 222 223 223 echo 224 '<form method="post" action="langs.php" enctype="multipart/form-data">'. 225 '<fieldset>'. 226 '<legend>'.__('Available languages').'</legend>'. 224 '<form method="post" action="langs.php" enctype="multipart/form-data" class="fieldset">'. 225 '<h4>'.__('Available languages').'</h4>'. 227 226 '<p>'.sprintf(__('You can download and install a additional language directly from Dotclear.net. '. 228 227 'Proposed languages are based on your version: %s.'),'<strong>'.DC_VERSION.'</strong>').'</p>'. … … 233 232 '<p><input type="submit" value="'.__('Install language').'" />'. 234 233 $core->formNonce(). 235 '</p> </fieldset>'.234 '</p>'. 236 235 '</form>'; 237 236 } … … 241 240 # 'Upload language pack' form 242 241 echo 243 '<form method="post" action="langs.php" enctype="multipart/form-data">'. 244 '<fieldset>'. 245 '<legend>'.__('Upload a zip file').'</legend>'. 242 '<form method="post" action="langs.php" enctype="multipart/form-data" class="fieldset">'. 243 '<h4>'.__('Upload a zip file').'</h4>'. 246 244 '<p>'.__('You can install languages by uploading zip files.').'</p>'. 247 245 '<p class="field"><label for="pkg_file" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Language zip file:').'</label> '. … … 251 249 '<p><input type="submit" name="upload_pkg" value="'.__('Upload language').'" />'. 252 250 $core->formNonce(). 253 '</p> </fieldset>'.251 '</p>'. 254 252 '</form>'; 255 253 } -
admin/media.php
r1455 r1499 395 395 echo 396 396 '<div class="col">'. 397 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post">'.398 '< fieldsetid="new-dir-f">'.399 '< legend>'.__('New directory').'</legend>'.397 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post">'. 398 '<div id="new-dir-f">'. 399 '<h3>'.__('New directory').'</h3>'. 400 400 $core->formNonce(). 401 401 '<p><label for="newdir">'.__('Directory Name:').'</label>'. … … 403 403 '<p><input type="submit" value="'.__('Create').'" />'. 404 404 form::hidden(array('d'),html::escapeHTML($d)).'</p>'. 405 '</ fieldset>'.405 '</div>'. 406 406 '</form></div>'; 407 407 -
admin/media_item.php
r1454 r1499 489 489 echo '</div>'; 490 490 491 echo '<h3>'.__('Updates and modifications').'</h3>'; 492 491 493 if ($file->editable && $core_media_writable) 492 494 { … … 494 496 { 495 497 echo 496 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post">'.497 '< fieldset><legend>'.__('Update thumbnails').'</legend>'.498 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post">'. 499 '<h4>'.__('Update thumbnails').'</h4>'. 498 500 '<p>'.__('This will create or update thumbnails for this image.').'</p>'. 499 501 '<p><input type="submit" name="thumbs" value="'.__('Update thumbnails').'" />'. 500 502 form::hidden(array('id'),$id). 501 503 $core->formNonce().'</p>'. 502 '</f ieldset></form>';504 '</form>'; 503 505 } 504 506 … … 511 513 512 514 echo 513 '<form class="clear " id="file-unzip" action="'.html::escapeURL($page_url).'" method="post">'.514 '< fieldset><legend>'.__('Extract archive').'</legend>'.515 '<form class="clear fieldset" id="file-unzip" action="'.html::escapeURL($page_url).'" method="post">'. 516 '<h4>'.__('Extract archive').'</h4>'. 515 517 '<ul>'. 516 518 '<li><strong>'.__('Extract in a new directory').'</strong> : '. … … 524 526 form::hidden(array('id'),$id). 525 527 $core->formNonce().'</p>'. 526 '</f ieldset></form>';528 '</form>'; 527 529 } 528 530 529 531 echo 530 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post">'.531 '< fieldset><legend>'.__('Change media properties').'</legend>'.532 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post">'. 533 '<h4>'.__('Change media properties').'</h4>'. 532 534 '<p><label for="media_file">'.__('File name:').'</label>'. 533 535 form::field('media_file',30,255,html::escapeHTML($file->basename)).'</p>'. … … 543 545 form::hidden(array('id'),$id). 544 546 $core->formNonce().'</p>'. 545 '</f ieldset></form>';547 '</form>'; 546 548 547 549 echo 548 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data">'.549 '< fieldset><legend>'.__('Change file').'</legend>'.550 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data">'. 551 '<h4>'.__('Change file').'</h4>'. 550 552 '<div>'.form::hidden(array('MAX_FILE_SIZE'),DC_MAX_UPLOAD_SIZE).'</div>'. 551 553 '<p><label for="upfile">'.__('Choose a file:'). … … 556 558 form::hidden(array('id'),$id). 557 559 $core->formNonce().'</p>'. 558 '</f ieldset></form>';560 '</form>'; 559 561 560 562 if ($file->del) { -
admin/plugins.php
r1474 r1499 354 354 # 'Upload plugin' form 355 355 echo 356 '<form method="post" action="plugins.php" id="uploadpkg" enctype="multipart/form-data">'. 357 '<fieldset>'. 358 '<legend>'.__('Upload a zip file').'</legend>'. 356 '<form method="post" action="plugins.php" id="uploadpkg" enctype="multipart/form-data" class="fieldset">'. 357 '<h3>'.__('Upload a zip file').'</h3>'. 359 358 '<p class="field"><label for="pkg_file" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Plugin zip file:').'</label> '. 360 359 '<input type="file" id="pkg_file" name="pkg_file" /></p>'. … … 363 362 '<p><input type="submit" name="upload_pkg" value="'.__('Upload plugin').'" />'. 364 363 $core->formNonce(). 365 '</p> </fieldset>'.364 '</p>'. 366 365 '</form>'; 367 366 368 367 # 'Fetch plugin' form 369 368 echo 370 '<form method="post" action="plugins.php" id="fetchpkg">'. 371 '<fieldset>'. 372 '<legend>'.__('Download a zip file').'</legend>'. 369 '<form method="post" action="plugins.php" id="fetchpkg" class="fieldset">'. 370 '<h3>'.__('Download a zip file').'</h3>'. 373 371 '<p class="field"><label for="pkg_url" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Plugin zip file URL:').'</label> '. 374 372 form::field(array('pkg_url','pkg_url'),40,255).'</p>'. -
admin/style/default.css
r1484 r1499 814 814 display: table-cell; 815 815 vertical-align: top; 816 padding: 1rem0;816 padding: 0; 817 817 width: 312px; 818 background: #eef;819 818 border: 1px solid #ccc; 820 819 border-radius: 3px; 821 820 } 822 #theme-box div.theme-shot img { 823 display: block; 824 margin: 0 16px; 821 #theme-box .theme-shot, 822 #theme-box .theme-info, 823 #theme-box .theme-actions { 824 background: #eef; 825 padding: 1em 16px; 826 margin: 0; 827 } 828 #theme-box .theme-shot img { 829 display: block; 825 830 width: 280px; 826 831 height: 245px; 827 832 border: 1px solid #ccc; 828 833 } 829 #theme-box div.theme-info {830 margin: 1em 16px;831 }832 834 #theme-box h4 { 833 835 color: #000; 836 background: #eef; 834 837 } 835 838 #theme-box span.theme-version { … … 843 846 font-weight:bold; 844 847 } 845 #theme-box div.theme-actions {846 padding: 0 16px;847 } 848 #themes div.theme-details-js {848 #theme-box .theme-actions { 849 border-bottom: 1px solid #ccc; 850 } 851 #themes .theme-details-js { 849 852 float: left; 850 853 width: 120px; … … 858 861 border-radius: 4px; 859 862 } 860 #themes div.theme-details-js label {863 #themes .theme-details-js label { 861 864 cursor: pointer; 862 865 } 863 #themes div.theme-details-js.theme-selected {866 #themes .theme-details-js.theme-selected { 864 867 background: #ddd; 865 868 border: 1px solid #999; 866 869 } 867 #themes div.theme-details-js div.theme-shot img {870 #themes .theme-details-js .theme-shot img { 868 871 width: 120px; 869 872 height: 105px; -
admin/users_actions.php
r1477 r1499 179 179 } 180 180 181 echo '<p><a class="back" href="'.html::escapeURL($redir).'">'.__('Back to user profile').'</a></p>'; 182 181 183 # --BEHAVIOR-- adminUsersActionsContent 182 184 $core->callBehavior('adminUsersActionsContent',$core,$action,$hidden_fields); … … 263 265 foreach ($blogs as $b) 264 266 { 265 echo '<h3> <a href="blog.php?id='.html::escapeHTML($b).'">'.html::escapeHTML($b).'</a>'.267 echo '<h3>'.('Blog:').' <a href="blog.php?id='.html::escapeHTML($b).'">'.html::escapeHTML($b).'</a>'. 266 268 form::hidden(array('blogs[]'),$b).'</h3>'; 267 269 … … 283 285 284 286 echo 285 '<fieldset><legend>'.__('Validate permissions').'</legend>'. 287 '<div class="fieldset">'. 288 '<h3>'.__('Validate permissions').'</h3>'. 286 289 '<p><label for="your_pwd">'.__('Your password:').'</label>'. 287 290 form::password('your_pwd',20,255).'</p>'. 288 '</fieldset>'.289 291 '<p><input type="submit" accesskey="s" value="'.__('Save').'" />'. 290 292 $hidden_fields. 291 293 form::hidden(array('action'),'updateperm'). 292 294 $core->formNonce().'</p>'. 295 '</div>'. 293 296 '</form>'; 294 297 } 295 296 echo '<p><a class="back" href="'.html::escapeURL($redir).'">'.__('back').'</a></p>';297 298 298 299 dcPage::close(); -
locales/bn/main.po
r1425 r1499 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 -
locales/bn/plugins.po
r1354 r1499 838 838 839 839 #, php-format 840 msgid "This will import a single blog backup as new content in the current blog: %s."840 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 841 841 msgstr "" 842 842 -
locales/ca/main.po
r1425 r1499 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 -
locales/ca/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/cs/main.po
r1425 r1499 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 -
locales/cs/plugins.po
r1354 r1499 843 843 844 844 #, php-format 845 msgid "This will import a single blog backup as new content in the current blog: %s."845 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 846 846 msgstr "Tímto naimportujete zálohu jednoho blogu jako nový obsah tohoto blogu: %s." 847 847 -
locales/da/main.po
r1425 r1499 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 -
locales/da/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/de/main.po
r1425 r1499 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 -
locales/de/plugins.po
r1354 r1499 843 843 844 844 #, php-format 845 msgid "This will import a single blog backup as new content in the current blog: %s."845 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 846 846 msgstr "Dies wird einen einzelnen Blog als neuen Inhalt in den aktuellen Blog importieren: %s." 847 847 -
locales/en/main.po
r1468 r1499 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 -
locales/en/plugins.po
r1354 r1499 852 852 853 853 #, php-format 854 msgid "This will import a single blog backup as new content in the current blog: %s."854 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 855 855 msgstr "" 856 856 -
locales/eo/main.po
r1425 r1499 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 -
locales/eo/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/es-ar/main.po
r1425 r1499 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 -
locales/es-ar/plugins.po
r1354 r1499 844 844 845 845 #, php-format 846 msgid "This will import a single blog backup as new content in the current blog: %s."846 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 847 847 msgstr "Esto importará un archivo de resguardo de un blog individual como contenido nuevo del actual blog: %s." 848 848 -
locales/es/main.po
r1425 r1499 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 -
locales/es/plugins.po
r1354 r1499 849 849 850 850 #, php-format 851 msgid "This will import a single blog backup as new content in the current blog: %s."851 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 852 852 msgstr "Esto importará una copia de respaldo de un único blog como nuevo contenido del blog en uso: %s." 853 853 -
locales/eu/main.po
r1425 r1499 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 -
locales/eu/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/fr/main.po
r1484 r1499 481 481 482 482 #, php-format 483 msgid "You are currently using \"%s\""484 msgstr "Vous utilisez actuellement \"%s\""483 msgid "You are currently using <strong>%s</strong>" 484 msgstr "Vous utilisez actuellement <strong>%s</strong>" 485 485 486 486 msgid "Use selected theme" … … 3128 3128 3129 3129 msgid "Information about this version" 3130 psgstr "Informations sur cette version" 3130 msgstr "Informations sur cette version" 3131 3132 msgid "Updates and modifications" 3133 msgstr "Mises à jour et modifications" 3134 3135 msgid "Back to user profile" 3136 msgstr "Retour au profil utilisateur" 3137 3138 msgid "Back to Blog themes" 3139 msgstr "Retour à Apparence du blog" -
locales/fr/plugins.po
r1483 r1499 961 961 #, php-format 962 962 msgid "" 963 "This will import a single blog backup as new content in the current blog: %s."963 "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 964 964 msgstr "" 965 965 "Cela importera une sauvegarde d'un blog comme nouveau contenu du blog " 966 "courant : %s."966 "courant : <strong>%s</strong>." 967 967 968 968 msgid "Upload a backup file" -
locales/hu/main.po
r1425 r1499 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 -
locales/hu/plugins.po
r1354 r1499 845 845 846 846 #, php-format 847 msgid "This will import a single blog backup as new content in the current blog: %s."847 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 848 848 msgstr "Ezzel egy egyedüli blogot fogok importálni új tartalomként ide: %s" 849 849 -
locales/it/main.po
r1425 r1499 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 -
locales/it/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/ja/main.po
r1425 r1499 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 -
locales/ja/plugins.po
r1354 r1499 846 846 847 847 #, php-format 848 msgid "This will import a single blog backup as new content in the current blog: %s."848 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 849 849 msgstr "これは単独ブログのバックアップを、現在のブログ「%s」の新しいコンテンツとしてインポートします。" 850 850 -
locales/ko/main.po
r1425 r1499 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 -
locales/ko/plugins.po
r1354 r1499 846 846 847 847 #, php-format 848 msgid "This will import a single blog backup as new content in the current blog: %s."848 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 849 849 msgstr "이 과정은, 백업된 단일 블로그 내용을 현재 블로그 (%s) 의 새 내용으로 가져옵니다." 850 850 -
locales/lt/main.po
r1425 r1499 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 -
locales/lt/plugins.po
r1126 r1499 808 808 809 809 #, php-format 810 msgid "This will import a single blog backup as new content in the current blog: %s."810 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 811 811 msgstr "Importuojama viena blogo atsarginė kopija kaip naujas turinys jūsų bloge: %s." 812 812 -
locales/nl/main.po
r1425 r1499 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 -
locales/nl/plugins.po
r1354 r1499 836 836 837 837 #, php-format 838 msgid "This will import a single blog backup as new content in the current blog: %s."838 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 839 839 msgstr "" 840 840 -
locales/oc/main.po
r1425 r1499 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 -
locales/oc/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/pl/main.po
r1425 r1499 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 -
locales/pl/plugins.po
r1354 r1499 840 840 841 841 #, php-format 842 msgid "This will import a single blog backup as new content in the current blog: %s."842 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 843 843 msgstr "Zaimportuje kopię zapasową pojedynczego bloga jako nową zawartość w aktualnym blogu: %s." 844 844 -
locales/pt-br/main.po
r1425 r1499 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 -
locales/pt-br/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/pt/main.po
r1425 r1499 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 -
locales/pt/plugins.po
r1354 r1499 849 849 850 850 #, php-format 851 msgid "This will import a single blog backup as new content in the current blog: %s."851 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 852 852 msgstr "Isto irá importar uma copia de simples blog como novo conteúdo no blog actual: %s." 853 853 -
locales/ro/main.po
r1425 r1499 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 -
locales/ro/plugins.po
r1354 r1499 845 845 846 846 #, php-format 847 msgid "This will import a single blog backup as new content in the current blog: %s."847 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 848 848 msgstr "" 849 849 -
locales/ru/main.po
r1425 r1499 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 -
locales/ru/plugins.po
r1354 r1499 841 841 842 842 #, php-format 843 msgid "This will import a single blog backup as new content in the current blog: %s."843 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 844 844 msgstr "Это импортирует резервный файл одного блога как новое содержимое в текущий блог: %s." 845 845 -
locales/sr/main.po
r1425 r1499 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 -
locales/sr/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/sv/main.po
r1425 r1499 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 -
locales/sv/plugins.po
r1354 r1499 835 835 836 836 #, php-format 837 msgid "This will import a single blog backup as new content in the current blog: %s."837 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 838 838 msgstr "" 839 839 -
locales/te/main.po
r1425 r1499 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 -
locales/te/plugins.po
r1354 r1499 838 838 839 839 #, php-format 840 msgid "This will import a single blog backup as new content in the current blog: %s."840 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 841 841 msgstr "" 842 842 -
locales/tr/main.po
r1425 r1499 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 -
locales/tr/plugins.po
r1354 r1499 839 839 840 840 #, php-format 841 msgid "This will import a single blog backup as new content in the current blog: %s."841 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 842 842 msgstr "" 843 843 -
locales/zh-cn/main.po
r1425 r1499 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 -
locales/zh-cn/plugins.po
r1354 r1499 847 847 848 848 #, php-format 849 msgid "This will import a single blog backup as new content in the current blog: %s."849 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 850 850 msgstr "这将会把一个单一博客的备份作为新内容导入到当前博客:%s。" 851 851 -
plugins/antispam/_admin.php
r1474 r1499 68 68 $ttl = $settings->antispam->antispam_moderation_ttl; 69 69 echo 70 '< fieldset><legend>Antispam</legend>'.70 '<div class="fieldset"><h4>Antispam</h4>'. 71 71 '<p><label for="antispam_moderation_ttl" class="classic">'.__('Delete junk comments older than').' '. 72 72 form::field('antispam_moderation_ttl', 3, 3, $ttl). 73 73 ' '.__('days'). 74 74 '</label></p>'. 75 '</ fieldset>';75 '</div>'; 76 76 } 77 77 -
plugins/antispam/filters/class.dc.filter.iplookup.php
r1468 r1499 76 76 77 77 $res .= 78 '<form action="'.html::escapeURL($url).'" method="post" >'.79 '< fieldset><legend>' . __('IP Lookup servers') . '</legend>'.78 '<form action="'.html::escapeURL($url).'" method="post" class="fieldset">'. 79 '<h3>' . __('IP Lookup servers') . '</h3>'. 80 80 '<p><label for="bls">'.__('Add here a coma separated list of servers.').'</label>'. 81 81 form::textarea('bls',40,3,html::escapeHTML($bls),'maximal'). … … 83 83 '<p><input type="submit" value="'.__('Save').'" /></p>'. 84 84 $this->core->formNonce().'</p>'. 85 '</fieldset>'.86 85 '</form>'; 87 86 -
plugins/blowupConfig/config.js
r89 r1499 49 49 50 50 $('#theme_config').prepend(styles_combo); 51 $(styles_combo).wrap('< fieldset></fieldset>').before('<legend>' + dotclear.msg.predefined_styles + '</legend>').wrap('<p></p>');51 $(styles_combo).wrap('<div class="fieldset"></div>').before('<h3>' + dotclear.msg.predefined_styles + '</h3>').wrap('<p></p>'); 52 52 53 53 $(styles_combo).change(function() { … … 62 62 63 63 // Code import 64 var e = $('#bu_export ~ fieldset:first');64 var e = $('#bu_export_content'); 65 65 e.toggle(); 66 66 -
plugins/blowupConfig/index.php
r1454 r1499 235 235 236 236 echo 237 '<p><a class="back" href="blog_theme.php">'.__(' back').'</a></p>';237 '<p><a class="back" href="blog_theme.php">'.__('Back to Blog themes').'</a></p>'; 238 238 239 239 … … 249 249 echo '<form id="theme_config" action="'.$p_url.'" method="post" enctype="multipart/form-data">'; 250 250 251 echo '<fieldset><legend>'.__('General').'</legend>'; 251 echo '<div class="fieldset"><h3>'.__('Customization').'</h3>'. 252 '<h4>'.__('General').'</h4>'; 252 253 253 254 if ($can_write_images) { … … 272 273 '<p class="field"><label for="body_line_height">'.__('Text line height:').'</label> '. 273 274 form::field('body_line_height',7,7,$blowup_user['body_line_height']).'</p>'. 274 '</fieldset>'. 275 276 '<fieldset><legend>'.__('Links').'</legend>'. 275 276 '<h4 class="border-top">'.__('Links').'</h4>'. 277 277 '<p class="field"><label for="body_link_c">'.__('Links color:').'</label> '. 278 278 form::field('body_link_c',7,7,$blowup_user['body_link_c'],'colorpicker').'</p>'. … … 283 283 '<p class="field"><label for="body_link_f_c">'.__('Focus links color:').'</label> '. 284 284 form::field('body_link_f_c',7,7,$blowup_user['body_link_f_c'],'colorpicker').'</p>'. 285 '</fieldset>'. 286 287 '<fieldset><legend>'.__('Page top').'</legend>'; 285 286 '<h4 class="border-top">'.__('Page top').'</h4>'; 288 287 289 288 if ($can_write_images) { … … 310 309 311 310 '<p class="field"><label for="blog_title_p">'.__('Main title position (x:y)').'</label> '. 312 form::field('blog_title_p',7,7,$blowup_user['blog_title_p']).'</p>'. 313 '</fieldset>'; 311 form::field('blog_title_p',7,7,$blowup_user['blog_title_p']).'</p>'; 314 312 315 313 if ($can_write_images) { … … 321 319 322 320 echo 323 '< fieldset><legend>'.__('Top image').'</legend>'.321 '<h4 class="border-top">'.__('Top image').'</h4>'. 324 322 '<p class="field"><label for="top_image">'.__('Top image').'</label> '. 325 323 form::combo('top_image',$top_images,($blowup_user['top_image'] ? $blowup_user['top_image'] : 'default')).'</p>'. … … 331 329 '</p>'. 332 330 333 '<h 3>'.__('Preview').'</h3>'.331 '<h5>'.__('Preview').'</h5>'. 334 332 '<div class="grid" style="width:800px;border:1px solid #ccc;">'. 335 333 '<img style="display:block;" src="'.$preview_image.'" alt="" id="image-preview" />'. 336 '</div>'. 337 '</fieldset>'; 338 } 339 340 echo 341 '<fieldset><legend>'.__('Sidebar').'</legend>'. 334 '</div>'; 335 } 336 337 echo 338 '<h4 class="border-top">'.__('Sidebar').'</h4>'. 342 339 '<p class="field"><label for="sidebar_position">'.__('Sidebar position:').'</label> '. 343 340 form::combo('sidebar_position',array(__('right')=>'right',__('left')=>'left'),$blowup_user['sidebar_position']).'</p>'. … … 383 380 '</fieldset>'. 384 381 385 '< fieldset><legend>'.__('Entries').'</legend>'.382 '<h4 class="border-top">'.__('Entries').'</h4>'. 386 383 '<p class="field"><label for="date_title_f">'.__('Date title font:').'</label> '. 387 384 form::combo('date_title_f',blowupConfig::fontsList(),$blowup_user['date_title_f']).'</p>'. … … 421 418 '<p class="field"><label for="post_commentmy_c">'.__('My comment text color:').'</label> '. 422 419 form::field('post_commentmy_c',7,7,$blowup_user['post_commentmy_c'],'colorpicker').'</p>'. 423 '</fieldset>'. 424 425 '<fieldset><legend>'.__('Footer').'</legend>'. 420 421 '<h4 class="border-top">'.__('Footer').'</h4>'. 426 422 '<p class="field"><label for="footer_f">'.__('Footer font:').'</label> '. 427 423 form::combo('footer_f',blowupConfig::fontsList(),$blowup_user['footer_f']).'</p>'. … … 437 433 438 434 '<p class="field"><label for="footer_bg_c">'.__('Footer background color:').'</label> '. 439 form::field('footer_bg_c',7,7,$blowup_user['footer_bg_c'],'colorpicker').'</p>'. 440 '</fieldset>'; 441 442 echo 443 '<fieldset><legend>'.__('Additional CSS').'</legend>'. 435 form::field('footer_bg_c',7,7,$blowup_user['footer_bg_c'],'colorpicker').'</p>'; 436 437 echo 438 '<h4 class="border-top">'.__('Additional CSS').'</h4>'. 444 439 '<p><label for="extra_css">'.__('Any additional CSS styles (must be written using the CSS syntax):').'</label> '. 445 440 form::textarea('extra_css',72,5,html::escapeHTML($blowup_user['extra_css']),'maximal','',false,'title="'.__('Additional CSS').'"'). 446 441 '</p>'. 447 '</ fieldset>';442 '</div>'; 448 443 449 444 … … 461 456 } 462 457 echo 463 '<h3 id="bu_export">'.__('Configuration import / export').'</h3><fieldset>'. 458 '<div class="fieldset">'. 459 '<h3 id="bu_export">'.__('Configuration import / export').'</h3>'. 460 '<div id="bu_export_content">'. 464 461 '<p>'.__('You can share your configuration using the following code. To apply a configuration, paste the code, click on "Apply code" and save.').'</p>'. 465 462 '<p>'.form::textarea('export_code',72,5,implode('; ',$tmp_array),'maximal','',false,'title="'.__('Copy this code:').'"').'</p>'. 466 '</fieldset>'; 463 '</div>'. 464 '</div>'; 467 465 468 466 echo -
plugins/daInstaller/index.php
r1454 r1499 298 298 '<!-- Search -->'. 299 299 '<div class="multi-part" id="search" title="'.__('Search').'">'. 300 '<fieldset><legend>'.__('Search options'). 301 '</legend>'. 302 '<form method="get" action="'.$p_url.'">'. 300 '<form method="get" action="'.$p_url.'" class="fieldset">'. 301 '<h3>'.__('Search').'</h3>'. 303 302 '<p>'.form::hidden('p','daInstaller'). 304 303 '<label for="q" class="classic">'.__('Query:').' </label> '. 305 form::field('q',30,255,html::escapeHTML($q)). 306 '< label for="mode" class="classic">'.304 form::field('q',30,255,html::escapeHTML($q)).'</p>'. 305 '<p><label for="mode" class="classic">'. 307 306 form::radio(array('mode','mode'),'plugins',$mode == 'plugins'). 308 307 ' '.__('Plugins').' </label> '. 309 308 '<label for="mode2" class="classic">'. 310 form::radio(array('mode','mode2'),'themes',$mode == 'themes') 311 .' '.__('Themes').' </label> '. 312 '<input type="submit" value="'.__('Search').'" /></p>'. 313 '</form>'. 314 '</fieldset>'; 309 form::radio(array('mode','mode2'),'themes',$mode == 'themes'). 310 ' '.__('Themes').' </label></p>'. 311 '<p><input type="submit" value="'.__('Search').'" /></p>'. 312 '</form>'; 315 313 if (!empty($q)) { 316 314 echo '<p><strong>'.sprintf(__('%u %s found'),$s_m_nb,__($mode)).'</strong></p>'; -
plugins/importExport/inc/class.dc.export.flat.php
r840 r1499 191 191 { 192 192 echo 193 '<form action="'.$this->getURL(true).'" method="post" >'.194 '< fieldset><legend>'.__('Single blog').'</legend>'.193 '<form action="'.$this->getURL(true).'" method="post" class="fieldset">'. 194 '<h3>'.__('Single blog').'</h3>'. 195 195 '<p>'.sprintf(__('This will create an export of your current blog: %s'),html::escapeHTML($this->core->blog->name)).'</p>'. 196 196 … … 211 211 $this->core->formNonce().'</p>'. 212 212 213 '</fieldset>'.214 213 '</form>'; 215 214 … … 217 216 { 218 217 echo 219 '<form action="'.$this->getURL(true).'" method="post" >'.220 '< fieldset><legend>'.__('Multiple blogs').'</legend>'.218 '<form action="'.$this->getURL(true).'" method="post" class="fieldset">'. 219 '<h3>'.__('Multiple blogs').'</h3>'. 221 220 '<p>'.__('This will create an export of all the content of your database.').'</p>'. 222 221 … … 234 233 $this->core->formNonce().'</p>'. 235 234 236 '</fieldset>'.237 235 '</form>'; 238 236 } -
plugins/importExport/inc/class.dc.import.flat.php
r1454 r1499 180 180 181 181 echo 182 '<form action="'.$this->getURL(true).'" method="post" enctype="multipart/form-data" >'.183 '< fieldset><legend>'.__('Single blog').'</legend>'.184 '<p>'.sprintf(__('This will import a single blog backup as new content in the current blog: %s.'),html::escapeHTML($this->core->blog->name)).'</p>'.182 '<form action="'.$this->getURL(true).'" method="post" enctype="multipart/form-data" class="fieldset">'. 183 '<h3>'.__('Single blog').'</h3>'. 184 '<p>'.sprintf(__('This will import a single blog backup as new content in the current blog: <strong>%s</strong>.'),html::escapeHTML($this->core->blog->name)).'</p>'. 185 185 186 186 '<p><label for="up_single_file" class="classic">'.__('Upload a backup file'). … … 203 203 '<input type="submit" value="'.__('Import').'" /></p>'. 204 204 205 '</fieldset>'.206 205 '</form>'; 207 206 … … 209 208 { 210 209 echo 211 '<form action="'.$this->getURL(true).'" method="post" enctype="multipart/form-data" id="formfull" >'.212 '< fieldset><legend>'.__('Multiple blogs').'</legend>'.210 '<form action="'.$this->getURL(true).'" method="post" enctype="multipart/form-data" id="formfull" class="fieldset">'. 211 '<h3>'.__('Multiple blogs').'</h3>'. 213 212 '<p class="warning">'.__('This will reset all the content of your database, except users.').'</p>'. 214 213 … … 235 234 '<input type="submit" value="'.__('Import').'" /></p>'. 236 235 237 '</fieldset>'.238 236 '</form>'; 239 237 } -
plugins/importExport/locales/fr/main.po
r841 r1499 223 223 224 224 #: inc/class.dc.import.flat.php:184 225 msgid "This will import a single blog backup as new content in the current blog: %s."225 msgid "This will import a single blog backup as new content in the current blog: <strong>%s</strong>." 226 226 msgstr "Ceci va charger une sauvegarde de blog comme un nouveau contenu dans le blog en cours : %s." 227 227
Note: See TracChangeset
for help on using the changeset viewer.