Changeset 530481
- Timestamp:
- 04/13/2012 12:16:47 AM (14 years ago)
- Location:
- catablog/trunk
- Files:
-
- 23 edited
-
catablog.php (modified) (1 diff)
-
css/catablog-admin.css (modified) (2 diffs)
-
js/catablog-admin.js (modified) (1 diff)
-
js/catablog.handlers.js (modified) (1 diff)
-
lib/CataBlog.class.php (modified) (10 diffs)
-
lib/CataBlogGallery.class.php (modified) (1 diff)
-
lib/CataBlogItem.class.php (modified) (4 diffs)
-
lib/CataBlogWidget.class.php (modified) (1 diff)
-
lib/catablog.upload.php (modified) (1 diff)
-
localization/catablog-de_DE.mo (modified) (previous)
-
localization/catablog-de_DE.po (modified) (12 diffs)
-
localization/catablog-es_ES.mo (modified) (previous)
-
localization/catablog-es_ES.po (modified) (13 diffs)
-
localization/catablog-fr_FR.mo (modified) (previous)
-
localization/catablog-fr_FR.po (modified) (13 diffs)
-
localization/catablog-sv_SE.mo (modified) (previous)
-
localization/catablog-sv_SE.po (modified) (12 diffs)
-
localization/catablog.mo (modified) (previous)
-
localization/catablog.po (modified) (11 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/admin-library.php (modified) (1 diff)
-
templates/admin-new.php (modified) (5 diffs)
-
templates/admin-screen-options-add-new.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
catablog/trunk/catablog.php
r524478 r530481 4 4 Plugin URI: http://catablog.illproductions.com/ 5 5 Description: CataBlog is a comprehensive and effortless tool that helps you create, organize and share catalogs, stores, galleries and portfolios on your blog. 6 Version: 1.6 6 Version: 1.6.1 7 7 Author: Zachary Segal 8 8 Author URI: http://catablog.illproductions.com/about/ -
catablog/trunk/css/catablog-admin.css
r524478 r530481 517 517 518 518 #new-items-editor li .text-elements { 519 position: relative; 519 520 margin-left: 112px; 520 521 min-height: 100px; … … 539 540 540 541 541 542 543 542 .catablog-micro-save-field-table { 543 width: 100%; 544 } 545 .catablog-micro-save-field-table th { 546 font-weight: bold; 547 text-align: right; 548 vertical-align: top; 549 width: 8em; 550 line-height: 2; 551 } 552 .catablog-micro-save-field-table td { 553 position: relative; 554 } 555 .catablog-micro-save-field-table td input.catablog-micro-editor-field { 556 display: block; 557 width: 100%; 558 } 559 .catablog-micro-save-field-table td input.catablog-micro-editor-field.error { 560 border: 1px #c00 solid; 561 background-color: #FFEBE8; 562 padding: 3px; 563 } 544 564 545 565 -
catablog/trunk/js/catablog-admin.js
r519651 r530481 53 53 function is_integer(s) { 54 54 return (s.toString().search(/^[0-9]+$/) == 0); 55 } 56 57 function is_float(s) { 58 return (s.toString().search(/^[0-9\.]+$/) == 0); 55 59 } 56 60 -
catablog/trunk/js/catablog.handlers.js
r393930 r530481 66 66 67 67 jQuery('#new-items-editor').append(serverData); 68 jQuery('#new-items-editor li:last input.title').bind('keypress', catablog_micro_save); 69 jQuery('#new-items-editor li:last input.button-primary').bind('click', catablog_micro_save); 70 jQuery('#new-items-editor li:last').show(800); 68 var new_item = jQuery('#new-items-editor li:last'); 69 70 new_item.find('input').bind('keypress', catablog_micro_save); 71 72 new_item.find('input.title').bind('keyup', catablog_verify_title); 73 new_item.find('input.price').bind('keyup', catablog_verify_price); 74 new_item.find('input.order').bind('keyup', catablog_verify_order); 75 76 new_item.find('input.button-primary').unbind('keypress').bind('click', catablog_micro_save); 77 78 new_item.show(800); 71 79 72 80 } catch(error) { -
catablog/trunk/lib/CataBlog.class.php
r524478 r530481 5 5 * This file contains the core class for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6 7 * @version 1.6.1 8 8 * @package catablog 9 9 */ … … 19 19 20 20 // plugin version number and blog url 21 private $version = "1.6 ";21 private $version = "1.6.1"; 22 22 private $blog_url = 'http://catablog.illproductions.com/'; 23 23 private $debug = false; … … 28 28 private $custom_tax_name = "catablog-terms"; 29 29 private $custom_user_meta_name = "catablog_screen_settings"; 30 private $pagination_query_label = "catablog-page"; 30 31 31 32 // wordpress database options … … 1817 1818 1818 1819 if ($item !== NULL) { 1819 $title = $_REQUEST['title']; 1820 $description = $_REQUEST['description']; 1820 $title = $_REQUEST['title']; 1821 $description = $_REQUEST['description']; 1822 $link = $_REQUEST['link']; 1823 $price = $_REQUEST['price']; 1824 $product_code = $_REQUEST['product_code'];; 1825 $order = $_REQUEST['order']; 1821 1826 1822 1827 $item->setTitle($title); 1823 1828 $item->setDescription($description); 1829 $item->setLink($link); 1830 $item->setProductCode($product_code); 1831 1832 if (is_numeric($price) && $price > 0) { 1833 $item->setPrice($price); 1834 } 1835 1836 if (is_numeric($order) && $order > 0) { 1837 $item->setOrder($order); 1838 } 1839 1824 1840 $validate = $item->validate(); 1825 1841 if ($validate === true) { … … 1866 1882 1867 1883 break; 1868 case 'add_new': 1869 1870 // do nothing currently 1884 case 'add-new': 1885 1886 $fields = array('description', 'link', 'price', 'product_code', 'order'); 1887 1888 $hide_array = array(); 1889 if (isset($_REQUEST['hide'])) { 1890 $hide_array = $_REQUEST['hide']; 1891 } 1892 1893 $page_settings['hide-columns'] = array(); 1894 foreach ($fields as $field) { 1895 if (!in_array($field, $hide_array)) { 1896 $page_settings['hide-columns'][] = $field; 1897 } 1898 } 1871 1899 1872 1900 break; … … 2260 2288 $navigation = (in_array(strtolower($navigation), $turn_off_nav_words))? false : true; 2261 2289 2262 $paged = 0; 2263 if (isset($_REQUEST['catablog-paged'])) { 2264 $paged = (is_numeric($_REQUEST['catablog-paged']))? intval($_REQUEST['catablog-paged']) : 0; 2265 } 2266 $offset = $paged * $limit; 2290 // initialize pagination variables 2291 $paged = 1; 2292 $total = 0; 2293 2294 if (isset($_REQUEST[$this->pagination_query_label])) { 2295 $paged = (is_numeric($_REQUEST[$this->pagination_query_label]))? intval($_REQUEST[$this->pagination_query_label]) : 1; 2296 } 2297 $offset = ($paged-1) * $limit; 2267 2298 2268 2299 // get items from cache and start the output buffer … … 2361 2392 $navigation = (in_array(strtolower($navigation), $turn_off_nav_words))? false : true; 2362 2393 2363 $paged = 0; 2364 if (isset($_REQUEST['catablog-paged'])) { 2365 $paged = (is_numeric($_REQUEST['catablog-paged']))? intval($_REQUEST['catablog-paged']) : 0; 2366 } 2367 $offset = $paged * $limit; 2394 // initialize pagination variables 2395 $paged = 1; 2396 $total = 0; 2397 2398 if (isset($_REQUEST[$this->pagination_query_label])) { 2399 $paged = (is_numeric($_REQUEST[$this->pagination_query_label]))? intval($_REQUEST[$this->pagination_query_label]) : 1; 2400 } 2401 $offset = ($paged-1) * $limit; 2368 2402 2369 2403 // !! NOTE: Eventually $offset and $limit should be used here for better db performance … … 2375 2409 $gallery_item_ids = $gallery->getItemIds(); 2376 2410 $gallery_items = $gallery->getCataBlogItems(); 2411 2412 foreach ($gallery_item_ids as $key => $item_id) { 2413 if (!isset($gallery_items[$item_id])) { 2414 unset($gallery_item_ids[$key]); 2415 } 2416 } 2417 2377 2418 $total = count($gallery_item_ids); 2378 2419 … … 2407 2448 2408 2449 private function frontend_build_navigation($paged, $limit, $total) { 2409 // $total = floor($total / $limit); 2410 2411 // $unlikely_integar = 9999999999999; 2412 // $base = str_replace($unlikely_integar, '%#%', get_pagenum_link($unlikely_integar)); 2413 2414 // $args = array('format'=>'?catablog-paged=%#%', 'total'=>$total, 'current'=>max(1, $paged), 'mid_size'=>2, 'end_size'=>2); 2415 // echo paginate_links($args); 2416 2417 if ($limit > 0) { 2418 2419 $next_params = $_GET; 2420 $prev_params = $_GET; 2421 2422 $next_params['catablog-paged'] = $paged + 1; 2423 $prev_params['catablog-paged'] = $paged - 1; 2424 2425 if ($prev_params['catablog-paged'] < 1) { 2426 unset($prev_params['catablog-paged']); 2427 } 2428 2429 $next_http_query = http_build_query($next_params, '&'); 2430 $prev_http_query = http_build_query($prev_params, '&'); 2431 2432 if ($paged < 1) { 2433 $prev_link = "<span class='catablog-navigation-link catablog-previous-link catablog-disabled'>".$this->options['nav-prev-label']."</span>"; 2434 } 2435 else { 2436 $prev_link = "<a href='?$prev_http_query' class='catablog-navigation-link catablog-previous-link'>".$this->options['nav-prev-label']."</a>"; 2437 } 2438 2439 if ((($paged * $limit) + $limit) >= $total) { 2440 $next_link = "<span class='catablog-navigation-link catablog-next-link catablog-disabled'>".$this->options['nav-next-label']."</span>"; 2441 } 2442 else { 2443 $next_link = "<a href='?$next_http_query' class='catablog-navigation-link catablog-next-link'>".$this->options['nav-next-label']."</a>"; 2444 } 2445 2446 $first_item = (($paged * $limit)); 2447 $first_item = ($total > 0)? $first_item + 1 : $first_item; 2448 $last_item = $first_item + ($limit - 1); 2449 $last_item = ($last_item > $total)? $total : $last_item; 2450 $meta_spacer = "<span class='catablog-navigation-meta-spacer'> - </span>"; 2451 $page_meta = ""; 2452 2453 if ($this->options['nav-show-meta'] === true) { 2454 $page_meta = $meta_spacer; 2455 $page_meta .= "<span class='catablog-navigation-meta'>" . sprintf(__("%s to %s of %s", "catablog"), $first_item, $last_item, $total) . "</span>"; 2456 } 2457 2458 echo "<p class='catablog-navigation'>{$prev_link}{$meta_spacer}{$next_link}{$page_meta}</p>"; 2459 } 2450 $total = ceil($total / $limit); 2451 2452 $query_vars = $_GET; 2453 unset($query_vars[$this->pagination_query_label]); 2454 2455 $prev_label = (isset($this->options['nav-prev-label']))? $this->options['nav-prev-label'] : __("Previous", "catablog"); 2456 $next_label = (isset($this->options['nav-next-label']))? $this->options['nav-next-label'] : __("Next", "catablog"); 2457 2458 $args = array( 2459 'base' => get_permalink() . "%_%", 2460 'add_args' => $query_vars, 2461 'format' => "?" . $this->pagination_query_label . "=%#%", 2462 'total' => $total, 2463 'current' => max(1, $paged), 2464 'mid_size' => 2, 2465 'end_size' => 1, 2466 'prev_text' => $prev_label, 2467 'next_text' => $next_label, 2468 ); 2469 2470 echo "<div class='catablog-navigation'>"; 2471 2472 if ($paged < 2) { 2473 echo "<span class='catablog-navigation-link catablog-first-page-link catablog-disabled'>".$this->options['nav-prev-label']."</span> "; 2474 } 2475 2476 echo paginate_links($args); 2477 2478 if ($paged == $total) { 2479 echo " <span class='catablog-navigation-link catablog-first-page-link catablog-disabled'>".$this->options['nav-next-label']."</span>"; 2480 } 2481 2482 echo "</div>"; 2460 2483 } 2461 2484 … … 3483 3506 } 3484 3507 3508 public function get_custom_user_meta_name() { 3509 return $this->custom_user_meta_name; 3510 } 3511 3485 3512 public function get_terms($reload=false) { 3486 3513 if ($this->terms == NULL || $reload) { -
catablog/trunk/lib/CataBlogGallery.class.php
r524478 r530481 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6 7 * @version 1.6.1 8 8 * @package catablog 9 9 */ -
catablog/trunk/lib/CataBlogItem.class.php
r524478 r530481 5 5 * This file contains the class for each CataBlog Item that is fetched from the database. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6 7 * @version 1.6.1 8 8 * @package catablog 9 9 */ … … 497 497 // save the new image's title to the post meta 498 498 $this->updatePostMeta(); 499 500 // TODO REMOVE THIS NO LONGER NEEDED 501 // remove the old files associated with this item 502 // foreach ($this->_old_images as $old_image) { 503 // foreach (array('originals', 'thumbnails', 'fullsize') as $folder) { 504 // $path = $this->_wp_upload_dir."/catablog/$folder/$old_image"; 505 // if (is_file($path)) { 506 // unlink($path); 507 // } 508 // } 509 // } 510 499 511 500 // generate a thumbnail for the new image 512 501 $this->makeThumbnail(); … … 692 681 } 693 682 683 // copy the image upload onto the canvas 694 684 imagecopyresampled($canvas, $upload, 0, 0, 0, 0, $new_width, $new_height, $width, $height); 685 686 // remove the upload image from memory 687 if(is_resource($upload)) @imagedestroy($upload); 695 688 696 689 // rotate the final canvas to match the original files orientation 697 690 $canvas = $this->rotateImage($canvas, $original); 698 691 692 // save the canvas 699 693 imagejpeg($canvas, $fullsize, $quality); 700 694 701 imagedestroy($canvas); 695 // remove the canvas from memory 696 if(is_resource($canvas)) @imagedestroy($canvas); 697 702 698 703 699 return true; … … 771 767 } 772 768 769 // copy the upload image onto the canvas 773 770 imagecopyresampled($canvas, $upload, $params['left'], $params['top'], 0, 0, $params['width'], $params['height'], $width, $height); 771 772 // remove the upload from memory 773 if(is_resource($upload)) @imagedestroy($upload); 774 775 // save the canvas 774 776 imagejpeg($canvas, $thumb, $quality); 775 imagedestroy($canvas); 777 778 // remove the canvas from memory 779 if(is_resource($canvas)) @imagedestroy($canvas); 776 780 777 781 return true; -
catablog/trunk/lib/CataBlogWidget.class.php
r524478 r530481 5 5 * This file contains the widget classes for the CataBlog WordPress Plugin. 6 6 * @author Zachary Segal <zac@illproductions.com> 7 * @version 1.6 7 * @version 1.6.1 8 8 * @package catablog 9 9 */ -
catablog/trunk/lib/catablog.upload.php
r492787 r530481 100 100 $new_item->save(); 101 101 102 // load the user settings for which fields to display in the quick edit form. 103 $user = wp_get_current_user(); 104 $user_settings = get_user_meta($user->ID, $wp_plugin_catablog_class->get_custom_user_meta_name(), true); 105 if ($user_settings === "") { 106 $user_settings = $wp_plugin_catablog_class->getDefaultUserSettings(); 107 update_user_meta($user->ID, $wp_plugin_catablog_class->custom_user_meta_name, $user_settings); 108 } 109 $hide_fields = $user_settings['add-new']['hide-columns']; 110 102 111 $html = "<li>"; 103 112 104 113 $html .= "<div class='button-elements'>"; 105 114 $html .= "<img src='".$wp_plugin_catablog_class->urls['thumbnails'] . '/' . $new_item->getImage()."' />"; 106 115 $html .= "</div>"; 116 117 $html .= "<div class='text-elements'>"; 107 118 108 $html .= "<div class='text-elements'>"; 109 $html .= "<input type='text' name='title' class='title' value='".$new_item->getTitle()."' />"; 119 $html .= "<table class='catablog-micro-save-field-table'>"; 120 $html .= "<tr><th>".__("Title", "catablog")."</th>"; 121 $html .= "<td>"; 122 $html .= "<input type='text' name='title' class='title catablog-micro-editor-field' maxlength='200' value='".$new_item->getTitle()."' />"; 123 $html .= "<span class='error hide'>".__("An item must have a title of at least one alphanumeric character.", "catablog")."</span>"; 124 $html .= "</td></tr>\n"; 125 126 if (!in_array('description', $hide_fields)) { 127 $html .= "<tr><th>".__("Description", "catablog")."</th>"; 128 $html .= "<td><textarea name='description' class='description catablog-micro-editor-field'>".$new_item->getDescription()."</textarea></td></tr>\n"; 129 } 130 131 $fields = array('link', 'price', 'product_code', 'order'); 132 foreach ($fields as $field) { 133 if (!in_array($field, $hide_fields)) { 134 $readable_name = ucwords(str_replace('_', ' ', $field)); 135 $function_name = 'get' . str_replace(' ', '', $readable_name); 136 137 $html .= "<tr><th>$readable_name</th>"; 138 $html .= "<td>"; 139 $html .= "<input type='text' name='$field' class='$field catablog-micro-editor-field' value='".$new_item->$function_name()."' />"; 140 switch ($field) { 141 case 'price': 142 $html .= "<span class='error hide'>".__("An item's price must be a positive number.", "catablog")."</span>"; 143 break; 144 case 'order': 145 $html .= "<span class='error hide'>".__("An item's order value must be a positive integer.", "catablog")."</span>"; 146 break; 147 } 148 $html .= "</td></tr>\n"; 149 } 150 } 151 152 $html .= "<tr><th> </th>"; 153 $html .= "<td>"; 154 $html .= "<input type='button' class='button-primary' name='submit' value='".__('Save Changes', 'catablog')."' />"; 110 155 $html .= "<input type='hidden' name='id' class='id' value='".$new_item->getId()."' />"; 111 $html .= "<textarea name='description' class='description'>".$new_item->getDescription()."</textarea>"; 112 $html .= "<input type='button' class='button-primary' name='submit' value='".__('Save Changes', 'catablog')."' />"; 156 $html .= "</td></tr>"; 157 158 $html .= "</table>"; 159 160 113 161 $html .= "</div>"; 114 162 115 163 $html .= "</li>"; 116 164 117 165 die($html); 118 166 } -
catablog/trunk/localization/catablog-de_DE.po
r524478 r530481 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-0 3-27 14:25-0800\n"8 "PO-Revision-Date: 2012-0 3-27 14:25-0800\n"7 "POT-Creation-Date: 2012-04-12 16:58-0800\n" 8 "PO-Revision-Date: 2012-04-12 16:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 34 34 msgstr "<strong>CataBlog</ strong> konnte das Upload-Verzeichnis nicht finden. Bitte überprüfe, ob Apache und PHP über Schreibrechte im Upload-Verzeichnis verfügen. Bitte kontaktiere Hosting-Anbieter oder IT-Abteilung für weitere Informationen. Danke." 35 35 36 #: ../lib/CataBlog.class.php:21 036 #: ../lib/CataBlog.class.php:211 37 37 msgid "Uncategorized" 38 38 msgstr "Ohne Kategorie" 39 39 40 #: ../lib/CataBlog.class.php:23 140 #: ../lib/CataBlog.class.php:232 41 41 msgid "CataBlog Item" 42 42 msgstr "CataBlog-Eintrag" 43 43 44 #: ../lib/CataBlog.class.php:23 644 #: ../lib/CataBlog.class.php:237 45 45 msgid "A Catalog Item, generated by CataBlog." 46 46 msgstr "Ein von CataBlog generierter Eintrag." 47 47 48 #: ../lib/CataBlog.class.php:24 748 #: ../lib/CataBlog.class.php:248 49 49 msgid "CataBlog Category" 50 50 msgstr "CataBlog-Kategorie" 51 51 52 #: ../lib/CataBlog.class.php:25 852 #: ../lib/CataBlog.class.php:259 53 53 #, fuzzy 54 54 msgid "CataBlog Gallery" 55 55 msgstr "CataBlog-Kategorie" 56 56 57 #: ../lib/CataBlog.class.php:26 357 #: ../lib/CataBlog.class.php:264 58 58 #, fuzzy 59 59 msgid "A Catalog Gallery, generated by CataBlog." 60 60 msgstr "Ein von CataBlog generierter Eintrag." 61 61 62 #: ../lib/CataBlog.class.php:3 8962 #: ../lib/CataBlog.class.php:390 63 63 #: ../templates/admin-404.php:11 64 64 msgid "CataBlog Library" 65 65 msgstr "CataBlog-Einträge" 66 66 67 #: ../lib/CataBlog.class.php:3 8968 #: ../lib/CataBlog.class.php:47 667 #: ../lib/CataBlog.class.php:390 68 #: ../lib/CataBlog.class.php:477 69 69 msgid "Library" 70 70 msgstr "Einträge" 71 71 72 #: ../lib/CataBlog.class.php:39 072 #: ../lib/CataBlog.class.php:391 73 73 msgid "Add New CataBlog Entry" 74 74 msgstr "Neuen CataBlog-Eintrag hinzufügen" 75 75 76 #: ../lib/CataBlog.class.php:39 077 #: ../lib/CataBlog.class.php:47 776 #: ../lib/CataBlog.class.php:391 77 #: ../lib/CataBlog.class.php:478 78 78 msgid "Add New" 79 79 msgstr "Eintrag hinzufügen" 80 80 81 #: ../lib/CataBlog.class.php:39 181 #: ../lib/CataBlog.class.php:392 82 82 #: ../templates/admin-galleries.php:5 83 83 #, fuzzy … … 85 85 msgstr "CataBlog-Kategorie" 86 86 87 #: ../lib/CataBlog.class.php:39 188 #: ../lib/CataBlog.class.php:47 887 #: ../lib/CataBlog.class.php:392 88 #: ../lib/CataBlog.class.php:479 89 89 #, fuzzy 90 90 msgid "Galleries" 91 91 msgstr "Kategorien" 92 92 93 #: ../lib/CataBlog.class.php:39 293 #: ../lib/CataBlog.class.php:393 94 94 #, fuzzy 95 95 msgid "CataBlog Templates" 96 96 msgstr "CataBlog entfernen" 97 97 98 #: ../lib/CataBlog.class.php:39 299 #: ../lib/CataBlog.class.php:4 7998 #: ../lib/CataBlog.class.php:393 99 #: ../lib/CataBlog.class.php:480 100 100 #, fuzzy 101 101 msgid "Templates" 102 102 msgstr "Vorlage" 103 103 104 #: ../lib/CataBlog.class.php:39 3104 #: ../lib/CataBlog.class.php:394 105 105 msgid "CataBlog Options" 106 106 msgstr "CataBlog-Einstellungen" 107 107 108 #: ../lib/CataBlog.class.php:39 3109 #: ../lib/CataBlog.class.php:48 0108 #: ../lib/CataBlog.class.php:394 109 #: ../lib/CataBlog.class.php:481 110 110 msgid "Options" 111 111 msgstr "Einstellungen" 112 112 113 #: ../lib/CataBlog.class.php:39 4113 #: ../lib/CataBlog.class.php:395 114 114 #: ../templates/admin-about.php:4 115 115 msgid "About CataBlog" 116 116 msgstr "Über CataBlog" 117 117 118 #: ../lib/CataBlog.class.php:39 4119 #: ../lib/CataBlog.class.php:48 1118 #: ../lib/CataBlog.class.php:395 119 #: ../lib/CataBlog.class.php:482 120 120 msgid "About" 121 121 msgstr "Über" 122 122 123 #: ../lib/CataBlog.class.php:46 1123 #: ../lib/CataBlog.class.php:462 124 124 #: ../templates/admin-edit.php:4 125 125 msgid "Edit CataBlog Entry" 126 126 msgstr "CataBlog-Eintrag bearbeiten" 127 127 128 #: ../lib/CataBlog.class.php:47 5128 #: ../lib/CataBlog.class.php:476 129 129 #: ../templates/admin-discfull.php:22 130 130 msgid "CataBlog" 131 131 msgstr "CataBlog" 132 132 133 #: ../lib/CataBlog.class.php:48 4133 #: ../lib/CataBlog.class.php:485 134 134 msgid "CataBlog Entry" 135 135 msgstr "CataBlog-Eintrag" 136 136 137 #: ../lib/CataBlog.class.php:66 4138 #: ../lib/CataBlog.class.php:70 7139 #: ../lib/CataBlog.class.php:117 4137 #: ../lib/CataBlog.class.php:665 138 #: ../lib/CataBlog.class.php:708 139 #: ../lib/CataBlog.class.php:1175 140 140 msgid "Changes Saved Successfully." 141 141 msgstr "Änderungen übernommen." 142 142 143 #: ../lib/CataBlog.class.php:66 7143 #: ../lib/CataBlog.class.php:668 144 144 msgid "Catalog Item Deleted Successfully." 145 145 msgstr "Eintrag entfernt." 146 146 147 #: ../lib/CataBlog.class.php:67 0147 #: ../lib/CataBlog.class.php:671 148 148 msgid "Could Not Delete Item Because ID was non existent." 149 149 msgstr "Eintrag konnte nicht entfernt werden, da ID nicht existiert." 150 150 151 #: ../lib/CataBlog.class.php:67 3151 #: ../lib/CataBlog.class.php:674 152 152 msgid "Could not verify bulk edit action nonce, please refresh page and try again." 153 153 msgstr "Aktion konnte nicht ausgeführt werden. Bitte lade die Seite neu und versuche es erneut." 154 154 155 #: ../lib/CataBlog.class.php:67 6155 #: ../lib/CataBlog.class.php:677 156 156 msgid "Bulk categories edit performed successfully." 157 157 msgstr "Kategorien geändert." 158 158 159 #: ../lib/CataBlog.class.php:6 79159 #: ../lib/CataBlog.class.php:680 160 160 msgid "Bulk delete performed successfully." 161 161 msgstr "Einträge entfernt." 162 162 163 #: ../lib/CataBlog.class.php:68 2163 #: ../lib/CataBlog.class.php:683 164 164 msgid "Reset all data successfully." 165 165 msgstr "Zürucksetzen erfolgreich." 166 166 167 #: ../lib/CataBlog.class.php:68 5167 #: ../lib/CataBlog.class.php:686 168 168 #, fuzzy 169 169 msgid "Catalog items added to Gallery successfully." 170 170 msgstr "Eintrag entfernt." 171 171 172 #: ../lib/CataBlog.class.php:68 8172 #: ../lib/CataBlog.class.php:689 173 173 msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again." 174 174 msgstr "" 175 175 176 #: ../lib/CataBlog.class.php:69 1176 #: ../lib/CataBlog.class.php:692 177 177 #, fuzzy 178 178 msgid "Could not validate the gallery, please modify the gallery and try again." 179 179 msgstr "Aktion konnte nicht ausgeführt werden. Bitte lade die Seite neu und versuche es erneut." 180 180 181 #: ../lib/CataBlog.class.php:71 1181 #: ../lib/CataBlog.class.php:712 182 182 msgid "View Now" 183 183 msgstr "Ansicht" 184 184 185 #: ../lib/CataBlog.class.php:77 4185 #: ../lib/CataBlog.class.php:775 186 186 #, fuzzy 187 187 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 188 188 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 189 189 190 #: ../lib/CataBlog.class.php:78 2190 #: ../lib/CataBlog.class.php:783 191 191 msgid "CataBlog Options Saved" 192 192 msgstr "CataBlog-Einstellungen gespeichert" 193 193 194 #: ../lib/CataBlog.class.php:83 5194 #: ../lib/CataBlog.class.php:836 195 195 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 196 196 msgstr "Bitte warte bis die Bildverarbeitung abgeschlossen ist, bevor du diese Seite verlässt." 197 197 198 #: ../lib/CataBlog.class.php:85 3199 #: ../lib/CataBlog.class.php:90 4200 #: ../lib/CataBlog.class.php:90 7201 #: ../lib/CataBlog.class.php:112 5202 #: ../lib/CataBlog.class.php:118 0198 #: ../lib/CataBlog.class.php:854 199 #: ../lib/CataBlog.class.php:905 200 #: ../lib/CataBlog.class.php:908 201 #: ../lib/CataBlog.class.php:1126 202 #: ../lib/CataBlog.class.php:1181 203 203 msgid "Form Validation Error. Please reload the page and try again." 204 204 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 205 205 206 #: ../lib/CataBlog.class.php:89 8206 #: ../lib/CataBlog.class.php:899 207 207 #, fuzzy 208 208 msgid "Template Changes Saved Successfully." 209 209 msgstr "Änderungen übernommen." 210 210 211 #: ../lib/CataBlog.class.php:90 1211 #: ../lib/CataBlog.class.php:902 212 212 #, fuzzy 213 213 msgid "Template Created Successfully." 214 214 msgstr "Löschen erfolgreich." 215 215 216 #: ../lib/CataBlog.class.php:91 0216 #: ../lib/CataBlog.class.php:911 217 217 #, php-format 218 218 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 219 219 msgstr "" 220 220 221 #: ../lib/CataBlog.class.php:91 3221 #: ../lib/CataBlog.class.php:914 222 222 msgid "File Creation Error. A template already exists with that name." 223 223 msgstr "" 224 224 225 #: ../lib/CataBlog.class.php:91 6225 #: ../lib/CataBlog.class.php:917 226 226 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 227 227 msgstr "" 228 228 229 #: ../lib/CataBlog.class.php:998230 229 #: ../lib/CataBlog.class.php:999 231 230 #: ../lib/CataBlog.class.php:1000 231 #: ../lib/CataBlog.class.php:1001 232 232 msgid "not present" 233 233 msgstr "nicht vorhanden" 234 234 235 #: ../lib/CataBlog.class.php:11 19235 #: ../lib/CataBlog.class.php:1120 236 236 #, fuzzy 237 237 msgid "Gallery Created Successfully." 238 238 msgstr "Löschen erfolgreich." 239 239 240 #: ../lib/CataBlog.class.php:112 2240 #: ../lib/CataBlog.class.php:1123 241 241 #, fuzzy 242 242 msgid "Form Validation Error. Please check your gallery title and try again." 243 243 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 244 244 245 #: ../lib/CataBlog.class.php:112 8245 #: ../lib/CataBlog.class.php:1129 246 246 #, fuzzy 247 247 msgid "Gallery Deleted Successfully." 248 248 msgstr "Eintrag entfernt." 249 249 250 #: ../lib/CataBlog.class.php:113 1250 #: ../lib/CataBlog.class.php:1132 251 251 #, fuzzy 252 252 msgid "Could Not Delete Gallery Because ID was non existent." 253 253 msgstr "Eintrag konnte nicht entfernt werden, da ID nicht existiert." 254 254 255 #: ../lib/CataBlog.class.php:113 4255 #: ../lib/CataBlog.class.php:1135 256 256 #, fuzzy 257 257 msgid "Multiple Galleries Deleted Successfully." 258 258 msgstr "Eintrag entfernt." 259 259 260 #: ../lib/CataBlog.class.php:117 7260 #: ../lib/CataBlog.class.php:1178 261 261 #, fuzzy 262 262 msgid "Form Validation Error: Please make sure your title is at least one character." 263 263 msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut." 264 264 265 #: ../lib/CataBlog.class.php:131 5265 #: ../lib/CataBlog.class.php:1316 266 266 msgid "The file you selected was to large or you didn't select anything at all, please try again." 267 267 msgstr "Die gewählte Datei ist zu groß oder es wurde nichts ausgewählt. Bitte versuche es erneut." 268 268 269 #: ../lib/CataBlog.class.php:13 19270 #: ../lib/CataBlog.class.php:137 3271 #: ../lib/CataBlog.class.php:142 5272 #: ../lib/CataBlog.class.php:146 3273 #: ../lib/CataBlog.class.php:159 6269 #: ../lib/CataBlog.class.php:1320 270 #: ../lib/CataBlog.class.php:1374 271 #: ../lib/CataBlog.class.php:1426 272 #: ../lib/CataBlog.class.php:1464 273 #: ../lib/CataBlog.class.php:1597 274 274 msgid "WordPress Nonce Error, please reload the form and try again." 275 275 msgstr "WordPress-Fehler. Bitte lade die Seite neu und versuche es erneut." 276 276 277 #: ../lib/CataBlog.class.php:137 7277 #: ../lib/CataBlog.class.php:1378 278 278 msgid "full form was not submitted, please try again." 279 279 msgstr "Formular unvollständig. Bitte versuche es erneut." 280 280 281 #: ../lib/CataBlog.class.php:142 1282 #: ../lib/CataBlog.class.php:14 59281 #: ../lib/CataBlog.class.php:1422 282 #: ../lib/CataBlog.class.php:1460 283 283 msgid "You didn't select anything to upload, please try again." 284 284 msgstr "Nichts ausgewählt. Bitte versuche es erneut." 285 285 286 #: ../lib/CataBlog.class.php:14 29287 #: ../lib/CataBlog.class.php:146 7286 #: ../lib/CataBlog.class.php:1430 287 #: ../lib/CataBlog.class.php:1468 288 288 msgid "No item ID posted, press back arrow and try again." 289 289 msgstr "Keine ID gewählt. Bitte versuche es erneut." 290 290 291 #: ../lib/CataBlog.class.php:151 0291 #: ../lib/CataBlog.class.php:1511 292 292 msgid "Please make your selection by checking the boxes in the list below." 293 293 msgstr "Bitte wähle aus der folgenden Liste." 294 294 295 #: ../lib/CataBlog.class.php:155 6295 #: ../lib/CataBlog.class.php:1557 296 296 #, php-format 297 297 msgid "Error during set category, could not load item with id %s." 298 298 msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden." 299 299 300 #: ../lib/CataBlog.class.php:157 4300 #: ../lib/CataBlog.class.php:1575 301 301 #, php-format 302 302 msgid "Error during bulk delete, could not load item with id %s." 303 303 msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden." 304 304 305 #: ../lib/CataBlog.class.php:160 5305 #: ../lib/CataBlog.class.php:1606 306 306 msgid "No file was selected for upload, please try again." 307 307 msgstr "Nichts ausgewählt. Bitte versuche es erneut." 308 308 309 #: ../lib/CataBlog.class.php:161 4309 #: ../lib/CataBlog.class.php:1615 310 310 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 311 311 msgstr "XML-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist." 312 312 313 #: ../lib/CataBlog.class.php:162 4313 #: ../lib/CataBlog.class.php:1625 314 314 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 315 315 msgstr "Dateiformat unbekannt. Bitte überprüfe, ob die Dateiendung .xml oder .csv lautet." 316 316 317 #: ../lib/CataBlog.class.php:169 5317 #: ../lib/CataBlog.class.php:1696 318 318 msgid "The CataBlog upload directories have been unlocked." 319 319 msgstr "Die CataBlog-Upload-Verzeichnisse sind freigegeben." 320 320 321 #: ../lib/CataBlog.class.php:169 8322 #: ../lib/CataBlog.class.php:171 1321 #: ../lib/CataBlog.class.php:1699 322 #: ../lib/CataBlog.class.php:1712 323 323 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 324 324 msgstr "Verzeichnis konnte nicht gesperrt/freigegeben werden. Bist du sicher, dass ein UNIX-Server eingesetzt wird?" 325 325 326 #: ../lib/CataBlog.class.php:170 8326 #: ../lib/CataBlog.class.php:1709 327 327 msgid "The CataBlog upload directories have been locked." 328 328 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 329 329 330 #: ../lib/CataBlog.class.php:18 27330 #: ../lib/CataBlog.class.php:1843 331 331 msgid "micro save successful" 332 332 msgstr "" 333 333 334 #: ../lib/CataBlog.class.php:18 35334 #: ../lib/CataBlog.class.php:1851 335 335 msgid "Cannot save changes because the item id could not be found in the database." 336 336 msgstr "" 337 337 338 #: ../lib/CataBlog.class.php:1 896338 #: ../lib/CataBlog.class.php:1924 339 339 msgid "Screen Options updated successfully." 340 340 msgstr "Anzeigeeinstellungen erfolgreich aktualisiert." 341 341 342 #: ../lib/CataBlog.class.php:19 10342 #: ../lib/CataBlog.class.php:1938 343 343 #: ../templates/admin-edit.php:277 344 344 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 345 345 msgstr "Kategoriename enthält ungültige Zeichen." 346 346 347 #: ../lib/CataBlog.class.php:19 16347 #: ../lib/CataBlog.class.php:1944 348 348 msgid "Please be a little more specific with your category name." 349 349 msgstr "Bitte sei etwas eindeutiger mit dem Kategorienamen." 350 350 351 #: ../lib/CataBlog.class.php:19 29351 #: ../lib/CataBlog.class.php:1957 352 352 msgid "There already is a category with that name." 353 353 msgstr "Dieser Kategoriename existiert bereits." 354 354 355 #: ../lib/CataBlog.class.php:19 66355 #: ../lib/CataBlog.class.php:1994 356 356 #, fuzzy 357 357 msgid "Term Edited Successfully" 358 358 msgstr "Löschen erfolgreich." 359 359 360 #: ../lib/CataBlog.class.php:19 69361 #: ../lib/CataBlog.class.php: 1985360 #: ../lib/CataBlog.class.php:1997 361 #: ../lib/CataBlog.class.php:2013 362 362 msgid "Term did not exist, please refresh page and try again." 363 363 msgstr "Bezeichnung existiert nicht. Bitte lade die Seite neu und versuche es erneut." 364 364 365 #: ../lib/CataBlog.class.php: 1982365 #: ../lib/CataBlog.class.php:2010 366 366 msgid "Term Removed Successfully." 367 367 msgstr "Löschen erfolgreich." 368 368 369 #: ../lib/CataBlog.class.php:20 36369 #: ../lib/CataBlog.class.php:2064 370 370 msgid "unsupported image size type" 371 371 msgstr "Bildgröße nicht unterstützt." 372 372 373 #: ../lib/CataBlog.class.php:20 46373 #: ../lib/CataBlog.class.php:2074 374 374 #, php-format 375 375 msgid "Rendering... %s of %s" 376 376 msgstr "Bildverarbeitung... %s von %s" 377 377 378 #: ../lib/CataBlog.class.php:20 48378 #: ../lib/CataBlog.class.php:2076 379 379 msgid "Image rendering is now complete." 380 380 msgstr "Bildverarbeitung abgeschlossen." 381 381 382 #: ../lib/CataBlog.class.php:2 089382 #: ../lib/CataBlog.class.php:2117 383 383 msgid "error" 384 384 msgstr "Fehler" 385 385 386 #: ../lib/CataBlog.class.php:2 092386 #: ../lib/CataBlog.class.php:2120 387 387 msgid "sub image deleted successfully" 388 388 msgstr "Löschen erfolgreich." 389 389 390 #: ../lib/CataBlog.class.php:21 27390 #: ../lib/CataBlog.class.php:2155 391 391 #, php-format 392 392 msgid "%s library items deleted successfully." 393 393 msgstr "%s Einträge entfernt." 394 394 395 #: ../lib/CataBlog.class.php:21 30395 #: ../lib/CataBlog.class.php:2158 396 396 msgid "CataBlog Library Cleared Successfully." 397 397 msgstr "CataBlog-Einträge entfernt." 398 398 399 #: ../lib/CataBlog.class.php:21 43399 #: ../lib/CataBlog.class.php:2171 400 400 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 401 401 msgstr "CataBlog-Einstellungen, Verzeichnisse und Bezeichnungen entfernt." 402 402 403 #: ../lib/CataBlog.class.php:21 44403 #: ../lib/CataBlog.class.php:2172 404 404 msgid "You may now go deactivate CataBlog and nothing will be left behind." 405 405 msgstr "Du kannst nun CataBlog deaktivieren. Es bleibt nichts zurück." 406 406 407 #: ../lib/CataBlog.class.php:21 45407 #: ../lib/CataBlog.class.php:2173 408 408 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 409 409 msgstr "Wenn du CataBlog wieder nutzen möchtest, installiere alles Nötige erneut." 410 410 411 #: ../lib/CataBlog.class.php:22 06411 #: ../lib/CataBlog.class.php:2234 412 412 #, php-format 413 413 msgid "CataBlog %s LightBox Styles | %s" 414 414 msgstr "CataBlog %s LightBox Styles | %s" 415 415 416 #: ../lib/CataBlog.class.php:22 28416 #: ../lib/CataBlog.class.php:2256 417 417 msgid "You may also press "P" or the left arrow on your keyboard" 418 418 msgstr "Die linke Pfeiltaste oder "P" kann auch genutzt werden." 419 419 420 #: ../lib/CataBlog.class.php:22 29420 #: ../lib/CataBlog.class.php:2257 421 421 msgid "You may also press "N" or the right arrow on your keyboard" 422 422 msgstr "Die rechte Pfeiltaste oder "N" kann auch genutzt werden." 423 423 424 #: ../lib/CataBlog.class.php:22 30424 #: ../lib/CataBlog.class.php:2258 425 425 msgid "Close LightBox Now" 426 426 msgstr "LightBox schließen" 427 427 428 #: ../lib/CataBlog.class.php:22 31428 #: ../lib/CataBlog.class.php:2259 429 429 msgid "PREV" 430 430 msgstr "zurück" 431 431 432 #: ../lib/CataBlog.class.php:22 32432 #: ../lib/CataBlog.class.php:2260 433 433 msgid "NEXT" 434 434 msgstr "weiter" 435 435 436 #: ../lib/CataBlog.class.php:22 33436 #: ../lib/CataBlog.class.php:2261 437 437 msgid "CLOSE" 438 438 msgstr "schließen" 439 439 440 #: ../lib/CataBlog.class.php:22 37440 #: ../lib/CataBlog.class.php:2265 441 441 #, php-format 442 442 msgid "CataBlog %s LightBox JavaScript | %s" 443 443 msgstr "CataBlog %s LightBox JavaScript | %s" 444 444 445 #: ../lib/CataBlog.class.php:22 39445 #: ../lib/CataBlog.class.php:2267 446 446 msgid "End CataBlog LightBox JavaScript" 447 447 msgstr "Beende CataBlog LightBox JavaScript" 448 448 449 #: ../lib/CataBlog.class.php:23 55449 #: ../lib/CataBlog.class.php:2386 450 450 msgid "You must use the id attribute in the catablog_gallery Shortcode" 451 451 msgstr "" 452 452 453 #: ../lib/CataBlog.class.php:2 372453 #: ../lib/CataBlog.class.php:2406 454 454 #, php-format 455 455 msgid "Could not find a CataBlog Gallery with id %s" … … 457 457 458 458 #: ../lib/CataBlog.class.php:2455 459 #, php-format 460 msgid "%s to %s of %s" 461 msgstr "" 462 463 #: ../lib/CataBlog.class.php:2591 459 #: ../lib/CataBlog.class.php:2841 460 #: ../lib/CataBlog.class.php:3016 461 msgid "Previous" 462 msgstr "" 463 464 #: ../lib/CataBlog.class.php:2456 465 #: ../lib/CataBlog.class.php:2842 466 #: ../lib/CataBlog.class.php:3017 467 msgid "Next" 468 msgstr "" 469 470 #: ../lib/CataBlog.class.php:2614 464 471 #, fuzzy, php-format 465 472 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 466 473 msgstr "CataBlog-ShortCode-Parameter-Fehler: Das Vorlagenattribut dieses ShortCodes zeigt auf eine Datei, die nicht existiert. Bitte überprüfe, ob sich eine Datei namens '%s.htm' im Verzeichnis befindet." 467 474 468 #: ../lib/CataBlog.class.php:26 14475 #: ../lib/CataBlog.class.php:2637 469 476 #, php-format 470 477 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 471 478 msgstr "CataBlog-ShortCode-Parameter-Fehler: Das Vorlagenattribut dieses ShortCodes zeigt auf eine Datei, die nicht existiert. Bitte überprüfe, ob sich eine Datei namens '%s.htm' im Verzeichnis befindet." 472 479 473 #: ../lib/CataBlog.class.php:26 15480 #: ../lib/CataBlog.class.php:2638 474 481 msgid "Learn More" 475 482 msgstr "Erfahre mehr" 476 483 477 #: ../lib/CataBlog.class.php:26 67484 #: ../lib/CataBlog.class.php:2690 478 485 #, fuzzy 479 486 msgid "CataBlog Error:" 480 487 msgstr "CataBlog-Eintrag" 481 488 482 #: ../lib/CataBlog.class.php:26 69489 #: ../lib/CataBlog.class.php:2692 483 490 #, php-format 484 491 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 485 492 msgstr "" 486 493 487 #: ../lib/CataBlog.class.php:2 689494 #: ../lib/CataBlog.class.php:2712 488 495 #, fuzzy 489 496 msgid "Select Category" 490 497 msgstr "Wähle eine Farbe" 491 498 492 #: ../lib/CataBlog.class.php:2 783499 #: ../lib/CataBlog.class.php:2806 493 500 #, fuzzy 494 501 msgid "The CataBlog Upload Directory cannot be written. " 495 502 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 496 503 497 #: ../lib/CataBlog.class.php:2 783498 #: ../lib/CataBlog.class.php:2 788499 #: ../lib/CataBlog.class.php: 2988504 #: ../lib/CataBlog.class.php:2806 505 #: ../lib/CataBlog.class.php:2811 506 #: ../lib/CataBlog.class.php:3011 500 507 msgid "Please check your server file permissions and apache configuration." 501 508 msgstr "" 502 509 503 #: ../lib/CataBlog.class.php:2 788510 #: ../lib/CataBlog.class.php:2811 504 511 #, fuzzy 505 512 msgid "The CataBlog Templates Directory cannot be written. " 506 513 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 507 514 508 #: ../lib/CataBlog.class.php:2 794515 #: ../lib/CataBlog.class.php:2817 509 516 #, php-format 510 517 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 511 518 msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden eingespielt. Bitte %sneu laden%s" 512 519 513 #: ../lib/CataBlog.class.php:2818 514 #: ../lib/CataBlog.class.php:2993 515 msgid "Previous" 516 msgstr "" 517 518 #: ../lib/CataBlog.class.php:2819 519 #: ../lib/CataBlog.class.php:2994 520 msgid "Next" 521 msgstr "" 522 523 #: ../lib/CataBlog.class.php:2875 520 #: ../lib/CataBlog.class.php:2898 524 521 #, php-format 525 522 msgid "There was an error creating the default term: %s" 526 523 msgstr "Fehler beim Erstellen der Standardbezeichnung: %s" 527 524 528 #: ../lib/CataBlog.class.php:29 10525 #: ../lib/CataBlog.class.php:2933 529 526 msgid "CataBlog options and directories have been successfully upgraded." 530 527 msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden aktualisiert." 531 528 532 #: ../lib/CataBlog.class.php: 2988529 #: ../lib/CataBlog.class.php:3011 533 530 #, fuzzy 534 531 msgid "The New CataBlog Templates cannot be written. " 535 532 msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt." 536 533 537 #: ../lib/CataBlog.class.php:31 75534 #: ../lib/CataBlog.class.php:3198 538 535 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 539 536 msgstr "CSV-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist." 540 537 541 #: ../lib/CataBlog.class.php:32 16538 #: ../lib/CataBlog.class.php:3239 542 539 #, fuzzy, php-format 543 540 msgid "There was an error parsing your CSV file on lines: %s." 544 541 msgstr "Fehler beim Erstellen der Standardbezeichnung: %s" 545 542 546 #: ../lib/CataBlog.class.php:32 63547 #: ../lib/CataBlog.class.php:33 06548 #: ../lib/CataBlog.class.php:33 10549 #: ../lib/CataBlog.class.php:33 13543 #: ../lib/CataBlog.class.php:3286 544 #: ../lib/CataBlog.class.php:3329 545 #: ../lib/CataBlog.class.php:3333 546 #: ../lib/CataBlog.class.php:3336 550 547 msgid "Error:" 551 548 msgstr "Fehler:" 552 549 553 #: ../lib/CataBlog.class.php:3 277550 #: ../lib/CataBlog.class.php:3300 554 551 msgid "Success:" 555 552 msgstr "Erfolg:" 556 553 557 #: ../lib/CataBlog.class.php:3 277554 #: ../lib/CataBlog.class.php:3300 558 555 #, php-format 559 556 msgid " %s inserted into catalog categories." 560 557 msgstr "%s in Kategorien eingefügt." 561 558 562 #: ../lib/CataBlog.class.php:3 285559 #: ../lib/CataBlog.class.php:3308 563 560 msgid "All New Categories Created" 564 561 msgstr "Alle neuen Kategorien erstellt" 565 562 566 #: ../lib/CataBlog.class.php:3 289563 #: ../lib/CataBlog.class.php:3312 567 564 msgid "No New Categories Created" 568 565 msgstr "Keine neuen Kategorien erstellt" 569 566 570 #: ../lib/CataBlog.class.php:33 04571 #: ../lib/CataBlog.class.php:33 58567 #: ../lib/CataBlog.class.php:3327 568 #: ../lib/CataBlog.class.php:3381 572 569 msgid "Insert:" 573 570 msgstr "Einfügen:" 574 571 575 #: ../lib/CataBlog.class.php:33 04576 #: ../lib/CataBlog.class.php:33 58572 #: ../lib/CataBlog.class.php:3327 573 #: ../lib/CataBlog.class.php:3381 577 574 #, php-format 578 575 msgid " %s inserted into the database." 579 576 msgstr "%s in Datenbank eingefügt." 580 577 581 #: ../lib/CataBlog.class.php:33 06578 #: ../lib/CataBlog.class.php:3329 582 579 #, php-format 583 580 msgid " %s was not inserted into the database." 584 581 msgstr "%s wurde nicht in die Datenbank eingefügt." 585 582 586 #: ../lib/CataBlog.class.php:33 10583 #: ../lib/CataBlog.class.php:3333 587 584 msgid "Item had no title and could not be made." 588 585 msgstr "Eintrag hat keinen Titel und konnte nicht erstellt werden." 589 586 590 #: ../lib/CataBlog.class.php:33 13587 #: ../lib/CataBlog.class.php:3336 591 588 msgid "Item had no primary image name and could not be made." 592 589 msgstr "Eintrag hat kein Bild und konnte nicht erstellt werden." 593 590 594 #: ../lib/CataBlog.class.php:33 55591 #: ../lib/CataBlog.class.php:3378 595 592 msgid "Update:" 596 593 msgstr "Aktualisierung:" 597 594 598 #: ../lib/CataBlog.class.php:33 55595 #: ../lib/CataBlog.class.php:3378 599 596 #, php-format 600 597 msgid " %s updated in database." 601 598 msgstr "%s in Datenbank aktualisiert." 602 599 603 #: ../lib/CataBlog.class.php:3 384600 #: ../lib/CataBlog.class.php:3407 604 601 #, fuzzy, php-format 605 602 msgid "%s Catalog Items Inserted" 606 603 msgstr "Alle Einträge verarbeitet" 607 604 608 #: ../lib/CataBlog.class.php:34 49605 #: ../lib/CataBlog.class.php:3472 609 606 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 610 607 msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die PHP zulässt." 611 608 612 #: ../lib/CataBlog.class.php:34 52609 #: ../lib/CataBlog.class.php:3475 613 610 msgid "Upload File Exceeded The HTML Form's Max File Size." 614 611 msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die das Formular zulässt." 615 612 616 #: ../lib/CataBlog.class.php:34 55613 #: ../lib/CataBlog.class.php:3478 617 614 msgid "File Only Partially Uploaded, Please Try Again." 618 615 msgstr "Datei nur teilweise hochgeladen. Bitte versuche es erneut." 619 616 620 #: ../lib/CataBlog.class.php:34 58617 #: ../lib/CataBlog.class.php:3481 621 618 msgid "No File Selected For Upload. Please Resubmit The Form." 622 619 msgstr "Keine Datei gewählt. Bitte versuche es erneut." 623 620 624 #: ../lib/CataBlog.class.php:34 61621 #: ../lib/CataBlog.class.php:3484 625 622 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 626 623 msgstr "In der PHP-Konfiguration ist kein temporäres Verzeichnis für Uploads. Bitte kontaktiere den Systemadministrator." 627 624 628 #: ../lib/CataBlog.class.php:34 64625 #: ../lib/CataBlog.class.php:3487 629 626 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 630 627 msgstr "In der PHP-Konfiguration ist das Schreiben auf die Festplatte deaktiviert. Bitte kontaktiere den Systemadministrator." 631 628 632 #: ../lib/CataBlog.class.php:34 67629 #: ../lib/CataBlog.class.php:3490 633 630 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 634 631 msgstr "Eine PHP-Erweiterung blockiert PHP-Aktualisierungen. Bitte kontaktiere den Systemadministrator." 635 632 636 #: ../lib/CataBlog.class.php:34 70633 #: ../lib/CataBlog.class.php:3493 637 634 msgid "An Unknown Upload Error Has Occurred" 638 635 msgstr "Ein unbekannter Fehler ist bein Upload aufgetreten" … … 651 648 msgstr "Kategorien konnten nicht gewählt werden. Bitte versuche es erneut." 652 649 653 #: ../lib/catablog.upload.php:112 654 #: ../templates/admin-edit.php:77 655 #: ../templates/admin-gallery-edit.php:39 656 msgid "Save Changes" 657 msgstr "Änderungen speichern" 658 659 #: ../lib/CataBlogDirectory.class.php:12 660 #: ../lib/CataBlogDirectory.class.php:109 661 msgid "Could not open directory." 662 msgstr "Verzeichnis kann nicht geöffnet werden." 663 664 #: ../lib/CataBlogGallery.class.php:187 665 #, fuzzy 666 msgid "A gallery must have a title of at least one alphanumeric character." 667 msgstr "Ein Eintrag muss einen Titel, bestehend aus mindestens einem alphanumerischen Zeichen, besitzen." 668 669 #: ../lib/CataBlogGallery.class.php:192 670 #, fuzzy 671 msgid "A gallery title can not be more then 200 characters long." 672 msgstr "Der Titel kann maximal 200 Zeichen umfassen." 673 674 #: ../lib/CataBlogItem.class.php:354 675 msgid "An item must have an image associated with it." 676 msgstr "Einem Eintrag muss ein Bild besitzen." 677 678 #: ../lib/CataBlogItem.class.php:360 679 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 680 msgstr "Hochgeladenes Bild konnte nicht gespeichert werden. Bitte überprüfe, ob in das CataBlog-Verzeichnis im WordPress-Verzeichnis geschrieben werden kann." 681 682 #: ../lib/CataBlogItem.class.php:365 683 msgid "An item must have a title of at least one alphanumeric character." 684 msgstr "Ein Eintrag muss einen Titel, bestehend aus mindestens einem alphanumerischen Zeichen, besitzen." 685 686 #: ../lib/CataBlogItem.class.php:370 687 msgid "An item's title can not be more then 200 characters long." 688 msgstr "Der Titel kann maximal 200 Zeichen umfassen." 689 690 #: ../lib/CataBlogItem.class.php:375 691 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 692 msgstr "Das Datum eines Eintrags muss im MySQL-Datumsformat vorliegen, YYYY-MM-DD HH:MM:SS" 693 694 #: ../lib/CataBlogItem.class.php:383 695 msgid "An item's date must be an actual day on the gregorian calendar." 696 msgstr "Das Datum eines Eintrags muss einem tatsächlichem Tag im Gregorianischen Kalender entsprechen." 697 698 #: ../lib/CataBlogItem.class.php:388 699 msgid "An item's date hour must be below twenty-four." 700 msgstr "Die Stundenangabe muss unter 24 liegen." 701 702 #: ../lib/CataBlogItem.class.php:393 703 msgid "An item's order value must be a positive integer." 704 msgstr "Der Sortierwert muss ganzzahlig und positiv sein." 705 706 #: ../lib/CataBlogItem.class.php:400 707 msgid "An item's price must be a positive number." 708 msgstr "Der Preis muss positiv sein." 709 710 #: ../lib/CataBlogItem.class.php:423 711 #: ../lib/CataBlogItem.class.php:611 712 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 713 msgstr "Das Bild besitzt ein nicht unterstütztes Format. JPEG, GIF und PNG sind möglich." 714 715 #: ../lib/CataBlogItem.class.php:436 716 #: ../lib/CataBlogItem.class.php:598 717 msgid "Can not write uploaded image to server, your storage space is exhausted." 718 msgstr "Bild konnte nicht gespeichert werden. Es steht kein Speicherplatz zur Verfügung." 719 720 #: ../lib/CataBlogItem.class.php:437 721 #: ../lib/CataBlogItem.class.php:599 722 msgid "Please delete some media files to free up space and try again." 723 msgstr "Bitte lösch ein paar Dateien um Platz zu schaffen und versuche es erneut." 724 725 #: ../lib/CataBlogItem.class.php:438 726 #: ../lib/CataBlogItem.class.php:600 727 #, php-format 728 msgid "You have %sMB of available space on your server and your image is %sMB." 729 msgstr "Du hast %sMB Speicherplatz zur Verfügung. Das Bild ist %sMB groß." 730 731 #: ../lib/CataBlogItem.class.php:528 732 msgid "Could not set categories, please try again." 733 msgstr "Kategorien konnten nicht gewählt werden. Bitte versuche es erneut." 734 735 #: ../lib/CataBlogItem.class.php:655 736 #: ../lib/CataBlogItem.class.php:716 737 #, php-format 738 msgid "Original image file missing, could not be located at %s" 739 msgstr "Original Bilddatei fehlt. Sie konnte nicht in %s gefunden werden" 740 741 #: ../lib/CataBlogItem.class.php:662 742 #: ../lib/CataBlogItem.class.php:724 743 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 744 msgstr "Die Abmessungen des Originalbildes betragen weniger als 1 px. Wahrscheinlich besitzt PHP keine Leseberechtigung." 745 746 #: ../lib/CataBlogItem.class.php:691 747 #: ../lib/CataBlogItem.class.php:738 748 msgid "Original image could not be loaded because it is an unsupported format." 749 msgstr "Originalbild konnte nicht geladen werden, da es ein nicht unterstütztes Format besitzt." 750 751 #: ../lib/CataBlogWidget.class.php:14 752 #, fuzzy 753 msgid "Entries from your CataBlog Library" 754 msgstr "CataBlog-Einträge" 755 756 #: ../lib/CataBlogWidget.class.php:15 757 #, fuzzy 758 msgid "CataBlog Catalog" 759 msgstr "CataBlog-Kategorie" 760 761 #: ../lib/CataBlogWidget.class.php:50 762 #: ../templates/admin-galleries.php:70 763 #: ../templates/admin-galleries.php:84 764 msgid "Date" 765 msgstr "Datum" 766 767 #: ../lib/CataBlogWidget.class.php:51 768 msgid "Order" 769 msgstr "Reihenfolge" 770 650 #: ../lib/catablog.upload.php:120 771 651 #: ../lib/CataBlogWidget.class.php:52 772 652 #: ../templates/admin-edit.php:57 … … 777 657 msgstr "Titel" 778 658 659 #: ../lib/catablog.upload.php:123 660 #: ../lib/CataBlogItem.class.php:365 661 msgid "An item must have a title of at least one alphanumeric character." 662 msgstr "Ein Eintrag muss einen Titel, bestehend aus mindestens einem alphanumerischen Zeichen, besitzen." 663 664 #: ../lib/catablog.upload.php:127 665 #: ../templates/admin-galleries.php:61 666 #: ../templates/admin-galleries.php:81 667 #: ../templates/admin-gallery-edit.php:17 668 msgid "Description" 669 msgstr "Beschreibung" 670 671 #: ../lib/catablog.upload.php:142 672 #: ../lib/CataBlogItem.class.php:400 673 msgid "An item's price must be a positive number." 674 msgstr "Der Preis muss positiv sein." 675 676 #: ../lib/catablog.upload.php:145 677 #: ../lib/CataBlogItem.class.php:393 678 msgid "An item's order value must be a positive integer." 679 msgstr "Der Sortierwert muss ganzzahlig und positiv sein." 680 681 #: ../lib/catablog.upload.php:154 682 #: ../templates/admin-edit.php:77 683 #: ../templates/admin-gallery-edit.php:39 684 msgid "Save Changes" 685 msgstr "Änderungen speichern" 686 687 #: ../lib/CataBlogDirectory.class.php:12 688 #: ../lib/CataBlogDirectory.class.php:109 689 msgid "Could not open directory." 690 msgstr "Verzeichnis kann nicht geöffnet werden." 691 692 #: ../lib/CataBlogGallery.class.php:187 693 #, fuzzy 694 msgid "A gallery must have a title of at least one alphanumeric character." 695 msgstr "Ein Eintrag muss einen Titel, bestehend aus mindestens einem alphanumerischen Zeichen, besitzen." 696 697 #: ../lib/CataBlogGallery.class.php:192 698 #, fuzzy 699 msgid "A gallery title can not be more then 200 characters long." 700 msgstr "Der Titel kann maximal 200 Zeichen umfassen." 701 702 #: ../lib/CataBlogItem.class.php:354 703 msgid "An item must have an image associated with it." 704 msgstr "Einem Eintrag muss ein Bild besitzen." 705 706 #: ../lib/CataBlogItem.class.php:360 707 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 708 msgstr "Hochgeladenes Bild konnte nicht gespeichert werden. Bitte überprüfe, ob in das CataBlog-Verzeichnis im WordPress-Verzeichnis geschrieben werden kann." 709 710 #: ../lib/CataBlogItem.class.php:370 711 msgid "An item's title can not be more then 200 characters long." 712 msgstr "Der Titel kann maximal 200 Zeichen umfassen." 713 714 #: ../lib/CataBlogItem.class.php:375 715 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 716 msgstr "Das Datum eines Eintrags muss im MySQL-Datumsformat vorliegen, YYYY-MM-DD HH:MM:SS" 717 718 #: ../lib/CataBlogItem.class.php:383 719 msgid "An item's date must be an actual day on the gregorian calendar." 720 msgstr "Das Datum eines Eintrags muss einem tatsächlichem Tag im Gregorianischen Kalender entsprechen." 721 722 #: ../lib/CataBlogItem.class.php:388 723 msgid "An item's date hour must be below twenty-four." 724 msgstr "Die Stundenangabe muss unter 24 liegen." 725 726 #: ../lib/CataBlogItem.class.php:423 727 #: ../lib/CataBlogItem.class.php:600 728 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 729 msgstr "Das Bild besitzt ein nicht unterstütztes Format. JPEG, GIF und PNG sind möglich." 730 731 #: ../lib/CataBlogItem.class.php:436 732 #: ../lib/CataBlogItem.class.php:587 733 msgid "Can not write uploaded image to server, your storage space is exhausted." 734 msgstr "Bild konnte nicht gespeichert werden. Es steht kein Speicherplatz zur Verfügung." 735 736 #: ../lib/CataBlogItem.class.php:437 737 #: ../lib/CataBlogItem.class.php:588 738 msgid "Please delete some media files to free up space and try again." 739 msgstr "Bitte lösch ein paar Dateien um Platz zu schaffen und versuche es erneut." 740 741 #: ../lib/CataBlogItem.class.php:438 742 #: ../lib/CataBlogItem.class.php:589 743 #, php-format 744 msgid "You have %sMB of available space on your server and your image is %sMB." 745 msgstr "Du hast %sMB Speicherplatz zur Verfügung. Das Bild ist %sMB groß." 746 747 #: ../lib/CataBlogItem.class.php:517 748 msgid "Could not set categories, please try again." 749 msgstr "Kategorien konnten nicht gewählt werden. Bitte versuche es erneut." 750 751 #: ../lib/CataBlogItem.class.php:644 752 #: ../lib/CataBlogItem.class.php:712 753 #, php-format 754 msgid "Original image file missing, could not be located at %s" 755 msgstr "Original Bilddatei fehlt. Sie konnte nicht in %s gefunden werden" 756 757 #: ../lib/CataBlogItem.class.php:651 758 #: ../lib/CataBlogItem.class.php:720 759 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 760 msgstr "Die Abmessungen des Originalbildes betragen weniger als 1 px. Wahrscheinlich besitzt PHP keine Leseberechtigung." 761 762 #: ../lib/CataBlogItem.class.php:680 763 #: ../lib/CataBlogItem.class.php:734 764 msgid "Original image could not be loaded because it is an unsupported format." 765 msgstr "Originalbild konnte nicht geladen werden, da es ein nicht unterstütztes Format besitzt." 766 767 #: ../lib/CataBlogWidget.class.php:14 768 #, fuzzy 769 msgid "Entries from your CataBlog Library" 770 msgstr "CataBlog-Einträge" 771 772 #: ../lib/CataBlogWidget.class.php:15 773 #, fuzzy 774 msgid "CataBlog Catalog" 775 msgstr "CataBlog-Kategorie" 776 777 #: ../lib/CataBlogWidget.class.php:50 778 #: ../templates/admin-galleries.php:70 779 #: ../templates/admin-galleries.php:84 780 msgid "Date" 781 msgstr "Datum" 782 783 #: ../lib/CataBlogWidget.class.php:51 784 msgid "Order" 785 msgstr "Reihenfolge" 786 779 787 #: ../lib/CataBlogWidget.class.php:53 780 788 msgid "Random" … … 1356 1364 msgstr "Zur letzten Seite" 1357 1365 1358 #: ../templates/admin-galleries.php:611359 #: ../templates/admin-galleries.php:811360 #: ../templates/admin-gallery-edit.php:171361 msgid "Description"1362 msgstr "Beschreibung"1363 1364 1366 #: ../templates/admin-galleries.php:62 1365 1367 #: ../templates/admin-galleries.php:82 … … 1479 1481 1480 1482 #: ../templates/admin-library.php:40 1483 #: ../templates/admin-screen-options-add-new.php:49 1481 1484 #: ../templates/admin-screen-options-galleries.php:56 1482 1485 #: ../templates/admin-screen-options-library.php:56 … … 1564 1567 msgstr "Bitte wähle zunächst mindestens einen Eintrag aus." 1565 1568 1566 #: ../templates/admin-library.php:28 71569 #: ../templates/admin-library.php:289 1567 1570 msgid "Are you sure you want to delete multiple items?" 1568 1571 msgstr "Bist du dir sicher, dass du mehrere Einträge löschen möchtest?" 1569 1572 1570 #: ../templates/admin-library.php:31 61573 #: ../templates/admin-library.php:318 1571 1574 msgid "Are you sure you want to permanently delete this catalog items?" 1572 1575 msgstr "Bist du sicher, dass du diese Einträge löschen möchtest?" … … 1637 1640 msgid "Select Images" 1638 1641 msgstr "Bilder neu verarbeiten" 1642 1643 #: ../templates/admin-new.php:261 1644 #: ../templates/admin-options.php:601 1645 msgid "There are errors, please correct them before saving." 1646 msgstr "" 1639 1647 1640 1648 #: ../templates/admin-options.php:8 … … 2086 2094 msgstr "oder %saktuelle Änderungen rückgängig machen%s" 2087 2095 2088 #: ../templates/admin-options.php:6012089 msgid "There are errors, please correct them before saving."2090 msgstr ""2091 2092 2096 #: ../templates/admin-options.php:720 2093 2097 #: ../templates/admin-regenerate.php:43 … … 2159 2163 msgstr "Neues Bild gefunden. Erstelle Eintrag %s" 2160 2164 2165 #: ../templates/admin-screen-options-add-new.php:40 2161 2166 #: ../templates/admin-screen-options-galleries.php:41 2162 2167 #: ../templates/admin-screen-options-galleries.php:50 -
catablog/trunk/localization/catablog-es_ES.po
r524478 r530481 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-0 3-27 14:25-0800\n"8 "PO-Revision-Date: 2012-0 3-27 14:25-0800\n"7 "POT-Creation-Date: 2012-04-12 16:58-0800\n" 8 "PO-Revision-Date: 2012-04-12 16:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 34 34 msgstr "<strong> CataBlog </ strong> no pudo detectar el directorio de carga o no se puede escribir en PHP. Por favor, asegúrese de que Apache y PHP tiene permisos de escritura para la carpeta configurada carga. Póngase en contacto con su empresa de alojamiento o departamento de IT para obtener más información. Gracias." 35 35 36 #: ../lib/CataBlog.class.php:21 036 #: ../lib/CataBlog.class.php:211 37 37 msgid "Uncategorized" 38 38 msgstr "sin categoría" 39 39 40 #: ../lib/CataBlog.class.php:23 140 #: ../lib/CataBlog.class.php:232 41 41 msgid "CataBlog Item" 42 42 msgstr "CataBlog Artículo" 43 43 44 #: ../lib/CataBlog.class.php:23 644 #: ../lib/CataBlog.class.php:237 45 45 msgid "A Catalog Item, generated by CataBlog." 46 46 msgstr "Un artículo de catálogo, generado por CataBlog." 47 47 48 #: ../lib/CataBlog.class.php:24 748 #: ../lib/CataBlog.class.php:248 49 49 msgid "CataBlog Category" 50 50 msgstr "CataBlog Categoría" 51 51 52 #: ../lib/CataBlog.class.php:25 852 #: ../lib/CataBlog.class.php:259 53 53 #, fuzzy 54 54 msgid "CataBlog Gallery" 55 55 msgstr "CataBlog Categoría" 56 56 57 #: ../lib/CataBlog.class.php:26 357 #: ../lib/CataBlog.class.php:264 58 58 #, fuzzy 59 59 msgid "A Catalog Gallery, generated by CataBlog." 60 60 msgstr "Un artículo de catálogo, generado por CataBlog." 61 61 62 #: ../lib/CataBlog.class.php:3 8962 #: ../lib/CataBlog.class.php:390 63 63 #: ../templates/admin-404.php:11 64 64 msgid "CataBlog Library" 65 65 msgstr "CataBlog Colección" 66 66 67 #: ../lib/CataBlog.class.php:3 8968 #: ../lib/CataBlog.class.php:47 667 #: ../lib/CataBlog.class.php:390 68 #: ../lib/CataBlog.class.php:477 69 69 msgid "Library" 70 70 msgstr "Colección" 71 71 72 #: ../lib/CataBlog.class.php:39 072 #: ../lib/CataBlog.class.php:391 73 73 msgid "Add New CataBlog Entry" 74 74 msgstr "Añadir entrada CataBlog Nueva" 75 75 76 #: ../lib/CataBlog.class.php:39 077 #: ../lib/CataBlog.class.php:47 776 #: ../lib/CataBlog.class.php:391 77 #: ../lib/CataBlog.class.php:478 78 78 msgid "Add New" 79 79 msgstr "Añadir nuevo" 80 80 81 #: ../lib/CataBlog.class.php:39 181 #: ../lib/CataBlog.class.php:392 82 82 #: ../templates/admin-galleries.php:5 83 83 #, fuzzy … … 85 85 msgstr "CataBlog Categorías" 86 86 87 #: ../lib/CataBlog.class.php:39 188 #: ../lib/CataBlog.class.php:47 887 #: ../lib/CataBlog.class.php:392 88 #: ../lib/CataBlog.class.php:479 89 89 #, fuzzy 90 90 msgid "Galleries" 91 91 msgstr "Categorías" 92 92 93 #: ../lib/CataBlog.class.php:39 293 #: ../lib/CataBlog.class.php:393 94 94 msgid "CataBlog Templates" 95 95 msgstr "Plantillas CataBlog" 96 96 97 #: ../lib/CataBlog.class.php:39 298 #: ../lib/CataBlog.class.php:4 7997 #: ../lib/CataBlog.class.php:393 98 #: ../lib/CataBlog.class.php:480 99 99 msgid "Templates" 100 100 msgstr "Plantillas" 101 101 102 #: ../lib/CataBlog.class.php:39 3102 #: ../lib/CataBlog.class.php:394 103 103 msgid "CataBlog Options" 104 104 msgstr "CataBlog Opciones" 105 105 106 #: ../lib/CataBlog.class.php:39 3107 #: ../lib/CataBlog.class.php:48 0106 #: ../lib/CataBlog.class.php:394 107 #: ../lib/CataBlog.class.php:481 108 108 msgid "Options" 109 109 msgstr "Opciones" 110 110 111 #: ../lib/CataBlog.class.php:39 4111 #: ../lib/CataBlog.class.php:395 112 112 #: ../templates/admin-about.php:4 113 113 msgid "About CataBlog" 114 114 msgstr "Acerca de CataBlog" 115 115 116 #: ../lib/CataBlog.class.php:39 4117 #: ../lib/CataBlog.class.php:48 1116 #: ../lib/CataBlog.class.php:395 117 #: ../lib/CataBlog.class.php:482 118 118 msgid "About" 119 119 msgstr "Acerca" 120 120 121 #: ../lib/CataBlog.class.php:46 1121 #: ../lib/CataBlog.class.php:462 122 122 #: ../templates/admin-edit.php:4 123 123 msgid "Edit CataBlog Entry" 124 124 msgstr "Editar entrada CataBlog" 125 125 126 #: ../lib/CataBlog.class.php:47 5126 #: ../lib/CataBlog.class.php:476 127 127 #: ../templates/admin-discfull.php:22 128 128 msgid "CataBlog" 129 129 msgstr "CataBlog" 130 130 131 #: ../lib/CataBlog.class.php:48 4131 #: ../lib/CataBlog.class.php:485 132 132 msgid "CataBlog Entry" 133 133 msgstr "CataBlog Entrada" 134 134 135 #: ../lib/CataBlog.class.php:66 4136 #: ../lib/CataBlog.class.php:70 7137 #: ../lib/CataBlog.class.php:117 4135 #: ../lib/CataBlog.class.php:665 136 #: ../lib/CataBlog.class.php:708 137 #: ../lib/CataBlog.class.php:1175 138 138 msgid "Changes Saved Successfully." 139 139 msgstr "Cambios guardados con éxito." 140 140 141 #: ../lib/CataBlog.class.php:66 7141 #: ../lib/CataBlog.class.php:668 142 142 msgid "Catalog Item Deleted Successfully." 143 143 msgstr "Catálogo del artículo suprimido con éxito." 144 144 145 #: ../lib/CataBlog.class.php:67 0145 #: ../lib/CataBlog.class.php:671 146 146 msgid "Could Not Delete Item Because ID was non existent." 147 147 msgstr "No se pudo artículo Eliminar Porque ID fue inexistente." 148 148 149 #: ../lib/CataBlog.class.php:67 3149 #: ../lib/CataBlog.class.php:674 150 150 msgid "Could not verify bulk edit action nonce, please refresh page and try again." 151 151 msgstr "No se pudo verificar edición masiva nonce acción, puede volver a cargar la página e inténtalo de nuevo." 152 152 153 #: ../lib/CataBlog.class.php:67 6153 #: ../lib/CataBlog.class.php:677 154 154 msgid "Bulk categories edit performed successfully." 155 155 msgstr "Categorías de Edición masiva a cabo con éxito." 156 156 157 #: ../lib/CataBlog.class.php:6 79157 #: ../lib/CataBlog.class.php:680 158 158 msgid "Bulk delete performed successfully." 159 159 msgstr "A granel eliminar a cabo con éxito." 160 160 161 #: ../lib/CataBlog.class.php:68 2161 #: ../lib/CataBlog.class.php:683 162 162 msgid "Reset all data successfully." 163 163 msgstr "Restablecer todos los datos correctamente." 164 164 165 #: ../lib/CataBlog.class.php:68 5165 #: ../lib/CataBlog.class.php:686 166 166 #, fuzzy 167 167 msgid "Catalog items added to Gallery successfully." 168 168 msgstr "Catálogo del artículo suprimido con éxito." 169 169 170 #: ../lib/CataBlog.class.php:68 8170 #: ../lib/CataBlog.class.php:689 171 171 msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again." 172 172 msgstr "" 173 173 174 #: ../lib/CataBlog.class.php:69 1174 #: ../lib/CataBlog.class.php:692 175 175 #, fuzzy 176 176 msgid "Could not validate the gallery, please modify the gallery and try again." 177 177 msgstr "No se pudo verificar edición masiva nonce acción, puede volver a cargar la página e inténtalo de nuevo." 178 178 179 #: ../lib/CataBlog.class.php:71 1179 #: ../lib/CataBlog.class.php:712 180 180 msgid "View Now" 181 181 msgstr "Ver ahora" 182 182 183 #: ../lib/CataBlog.class.php:77 4183 #: ../lib/CataBlog.class.php:775 184 184 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 185 185 msgstr "Formulario de error de validación. Por favor, asegúrese de que las balas individuales y la categoría de públicos de página no son idénticos." 186 186 187 #: ../lib/CataBlog.class.php:78 2187 #: ../lib/CataBlog.class.php:783 188 188 msgid "CataBlog Options Saved" 189 189 msgstr "Opciones CataBlog guardados" 190 190 191 #: ../lib/CataBlog.class.php:83 5191 #: ../lib/CataBlog.class.php:836 192 192 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 193 193 msgstr "Por favor, Deja que la Prestación continuación completa antes de salir de esta página" 194 194 195 #: ../lib/CataBlog.class.php:85 3196 #: ../lib/CataBlog.class.php:90 4197 #: ../lib/CataBlog.class.php:90 7198 #: ../lib/CataBlog.class.php:112 5199 #: ../lib/CataBlog.class.php:118 0195 #: ../lib/CataBlog.class.php:854 196 #: ../lib/CataBlog.class.php:905 197 #: ../lib/CataBlog.class.php:908 198 #: ../lib/CataBlog.class.php:1126 199 #: ../lib/CataBlog.class.php:1181 200 200 msgid "Form Validation Error. Please reload the page and try again." 201 201 msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo." 202 202 203 #: ../lib/CataBlog.class.php:89 8203 #: ../lib/CataBlog.class.php:899 204 204 msgid "Template Changes Saved Successfully." 205 205 msgstr "Cambios en las plantillas guardado correctamente." 206 206 207 #: ../lib/CataBlog.class.php:90 1207 #: ../lib/CataBlog.class.php:902 208 208 msgid "Template Created Successfully." 209 209 msgstr "Plantilla creado correctamente." 210 210 211 #: ../lib/CataBlog.class.php:91 0211 #: ../lib/CataBlog.class.php:911 212 212 #, php-format 213 213 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 214 214 msgstr "Error de creación del archivo. Por favor, asegúrese de que WordPress se puede escribir en este directorio:<br /><code>%s</code>" 215 215 216 #: ../lib/CataBlog.class.php:91 3216 #: ../lib/CataBlog.class.php:914 217 217 msgid "File Creation Error. A template already exists with that name." 218 218 msgstr "Error de creación del archivo. Una plantilla que ya existe con ese nombre." 219 219 220 #: ../lib/CataBlog.class.php:91 6220 #: ../lib/CataBlog.class.php:917 221 221 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 222 222 msgstr "Error de creación del archivo. A nombre de la plantilla sólo puede consistir en guiones bajos, guiones y caracteres alfanuméricos." 223 223 224 #: ../lib/CataBlog.class.php:998225 224 #: ../lib/CataBlog.class.php:999 226 225 #: ../lib/CataBlog.class.php:1000 226 #: ../lib/CataBlog.class.php:1001 227 227 msgid "not present" 228 228 msgstr "no está presente" 229 229 230 #: ../lib/CataBlog.class.php:11 19230 #: ../lib/CataBlog.class.php:1120 231 231 #, fuzzy 232 232 msgid "Gallery Created Successfully." 233 233 msgstr "Plantilla creado correctamente." 234 234 235 #: ../lib/CataBlog.class.php:112 2235 #: ../lib/CataBlog.class.php:1123 236 236 #, fuzzy 237 237 msgid "Form Validation Error. Please check your gallery title and try again." 238 238 msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo." 239 239 240 #: ../lib/CataBlog.class.php:112 8240 #: ../lib/CataBlog.class.php:1129 241 241 #, fuzzy 242 242 msgid "Gallery Deleted Successfully." 243 243 msgstr "Catálogo del artículo suprimido con éxito." 244 244 245 #: ../lib/CataBlog.class.php:113 1245 #: ../lib/CataBlog.class.php:1132 246 246 #, fuzzy 247 247 msgid "Could Not Delete Gallery Because ID was non existent." 248 248 msgstr "No se pudo artículo Eliminar Porque ID fue inexistente." 249 249 250 #: ../lib/CataBlog.class.php:113 4250 #: ../lib/CataBlog.class.php:1135 251 251 #, fuzzy 252 252 msgid "Multiple Galleries Deleted Successfully." 253 253 msgstr "Catálogo del artículo suprimido con éxito." 254 254 255 #: ../lib/CataBlog.class.php:117 7255 #: ../lib/CataBlog.class.php:1178 256 256 #, fuzzy 257 257 msgid "Form Validation Error: Please make sure your title is at least one character." 258 258 msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo." 259 259 260 #: ../lib/CataBlog.class.php:131 5260 #: ../lib/CataBlog.class.php:1316 261 261 msgid "The file you selected was to large or you didn't select anything at all, please try again." 262 262 msgstr "El archivo que se seleccionó a los grandes o si no ha seleccionado nada en absoluto, por favor, inténtelo de nuevo." 263 263 264 #: ../lib/CataBlog.class.php:13 19265 #: ../lib/CataBlog.class.php:137 3266 #: ../lib/CataBlog.class.php:142 5267 #: ../lib/CataBlog.class.php:146 3268 #: ../lib/CataBlog.class.php:159 6264 #: ../lib/CataBlog.class.php:1320 265 #: ../lib/CataBlog.class.php:1374 266 #: ../lib/CataBlog.class.php:1426 267 #: ../lib/CataBlog.class.php:1464 268 #: ../lib/CataBlog.class.php:1597 269 269 msgid "WordPress Nonce Error, please reload the form and try again." 270 270 msgstr "WordPress Nonce Error: por favor, vuelva a cargar el formulario y vuelva a intentarlo." 271 271 272 #: ../lib/CataBlog.class.php:137 7272 #: ../lib/CataBlog.class.php:1378 273 273 msgid "full form was not submitted, please try again." 274 274 msgstr "forma completa, no se presentó, por favor, inténtelo de nuevo." 275 275 276 #: ../lib/CataBlog.class.php:142 1277 #: ../lib/CataBlog.class.php:14 59276 #: ../lib/CataBlog.class.php:1422 277 #: ../lib/CataBlog.class.php:1460 278 278 msgid "You didn't select anything to upload, please try again." 279 279 msgstr "Usted no ha seleccionado nada para subir, por favor, inténtelo de nuevo." 280 280 281 #: ../lib/CataBlog.class.php:14 29282 #: ../lib/CataBlog.class.php:146 7281 #: ../lib/CataBlog.class.php:1430 282 #: ../lib/CataBlog.class.php:1468 283 283 msgid "No item ID posted, press back arrow and try again." 284 284 msgstr "Sin ID elemento publicado, pulse la flecha de nuevo y vuelve a intentarlo." 285 285 286 #: ../lib/CataBlog.class.php:151 0286 #: ../lib/CataBlog.class.php:1511 287 287 msgid "Please make your selection by checking the boxes in the list below." 288 288 msgstr "Por favor haga su selección marcando las casillas de la lista a continuación." 289 289 290 #: ../lib/CataBlog.class.php:155 6290 #: ../lib/CataBlog.class.php:1557 291 291 #, php-format 292 292 msgid "Error during set category, could not load item with id %s." 293 293 msgstr "Error durante la categoría de conjunto, no se puede cargar el elemento con id %s." 294 294 295 #: ../lib/CataBlog.class.php:157 4295 #: ../lib/CataBlog.class.php:1575 296 296 #, php-format 297 297 msgid "Error during bulk delete, could not load item with id %s." 298 298 msgstr "Error durante la eliminación masiva, no se puede cargar el elemento con id %s." 299 299 300 #: ../lib/CataBlog.class.php:160 5300 #: ../lib/CataBlog.class.php:1606 301 301 msgid "No file was selected for upload, please try again." 302 302 msgstr "No existe el fichero ha sido seleccionada para la subida, por favor, inténtelo de nuevo." 303 303 304 #: ../lib/CataBlog.class.php:161 4304 #: ../lib/CataBlog.class.php:1615 305 305 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 306 306 msgstr "Archivo Subido XML No se pudieron analizar, Compruebe que el contenido del archivo XML es válido." 307 307 308 #: ../lib/CataBlog.class.php:162 4308 #: ../lib/CataBlog.class.php:1625 309 309 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 310 310 msgstr "El archivo subido no era de formato correcto, por favor asegúrese de que el nombre de archivo tiene un xml o csv." 311 311 312 #: ../lib/CataBlog.class.php:169 5312 #: ../lib/CataBlog.class.php:1696 313 313 msgid "The CataBlog upload directories have been unlocked." 314 314 msgstr "El CataBlog subir directorios han sido desbloqueados." 315 315 316 #: ../lib/CataBlog.class.php:169 8317 #: ../lib/CataBlog.class.php:171 1316 #: ../lib/CataBlog.class.php:1699 317 #: ../lib/CataBlog.class.php:1712 318 318 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 319 319 msgstr "No se pudo bloquear / desbloquear el directorio. ¿Está utilizando un servidor basado en Unix?" 320 320 321 #: ../lib/CataBlog.class.php:170 8321 #: ../lib/CataBlog.class.php:1709 322 322 msgid "The CataBlog upload directories have been locked." 323 323 msgstr "El CataBlog subir directorios se han bloqueado." 324 324 325 #: ../lib/CataBlog.class.php:18 27325 #: ../lib/CataBlog.class.php:1843 326 326 msgid "micro save successful" 327 327 msgstr "micro guardar con éxito" 328 328 329 #: ../lib/CataBlog.class.php:18 35329 #: ../lib/CataBlog.class.php:1851 330 330 msgid "Cannot save changes because the item id could not be found in the database." 331 331 msgstr "" 332 332 333 #: ../lib/CataBlog.class.php:1 896333 #: ../lib/CataBlog.class.php:1924 334 334 msgid "Screen Options updated successfully." 335 335 msgstr "Opciones de la pantalla actualizado correctamente." 336 336 337 #: ../lib/CataBlog.class.php:19 10337 #: ../lib/CataBlog.class.php:1938 338 338 #: ../templates/admin-edit.php:277 339 339 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 340 340 msgstr "Las comas, Tubos y reservados caracteres HTML no están permitidos en los nombres de categoría." 341 341 342 #: ../lib/CataBlog.class.php:19 16342 #: ../lib/CataBlog.class.php:1944 343 343 msgid "Please be a little more specific with your category name." 344 344 msgstr "Por favor, un poco más específico con su nombre de la categoría." 345 345 346 #: ../lib/CataBlog.class.php:19 29346 #: ../lib/CataBlog.class.php:1957 347 347 msgid "There already is a category with that name." 348 348 msgstr "Ya existe una categoría con ese nombre." 349 349 350 #: ../lib/CataBlog.class.php:19 66350 #: ../lib/CataBlog.class.php:1994 351 351 #, fuzzy 352 352 msgid "Term Edited Successfully" 353 353 msgstr "Plazo eliminado con éxito." 354 354 355 #: ../lib/CataBlog.class.php:19 69356 #: ../lib/CataBlog.class.php: 1985355 #: ../lib/CataBlog.class.php:1997 356 #: ../lib/CataBlog.class.php:2013 357 357 msgid "Term did not exist, please refresh page and try again." 358 358 msgstr "Término no existía, por favor, volver a cargar la página e inténtalo de nuevo." 359 359 360 #: ../lib/CataBlog.class.php: 1982360 #: ../lib/CataBlog.class.php:2010 361 361 msgid "Term Removed Successfully." 362 362 msgstr "Plazo eliminado con éxito." 363 363 364 #: ../lib/CataBlog.class.php:20 36364 #: ../lib/CataBlog.class.php:2064 365 365 msgid "unsupported image size type" 366 366 msgstr "imagen sin soporte en papel del tamaño" 367 367 368 #: ../lib/CataBlog.class.php:20 46368 #: ../lib/CataBlog.class.php:2074 369 369 #, php-format 370 370 msgid "Rendering... %s of %s" 371 371 msgstr "Representación... %s de %s" 372 372 373 #: ../lib/CataBlog.class.php:20 48373 #: ../lib/CataBlog.class.php:2076 374 374 msgid "Image rendering is now complete." 375 375 msgstr "De representación en imágenes se ha completado." 376 376 377 #: ../lib/CataBlog.class.php:2 089377 #: ../lib/CataBlog.class.php:2117 378 378 msgid "error" 379 379 msgstr "error" 380 380 381 #: ../lib/CataBlog.class.php:2 092381 #: ../lib/CataBlog.class.php:2120 382 382 msgid "sub image deleted successfully" 383 383 msgstr "sub imagen eliminado con éxito" 384 384 385 #: ../lib/CataBlog.class.php:21 27385 #: ../lib/CataBlog.class.php:2155 386 386 #, php-format 387 387 msgid "%s library items deleted successfully." 388 388 msgstr "%s elementos de la biblioteca eliminado con éxito." 389 389 390 #: ../lib/CataBlog.class.php:21 30390 #: ../lib/CataBlog.class.php:2158 391 391 msgid "CataBlog Library Cleared Successfully." 392 392 msgstr "Colección CataBlog aclarados con éxito." 393 393 394 #: ../lib/CataBlog.class.php:21 43394 #: ../lib/CataBlog.class.php:2171 395 395 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 396 396 msgstr "Opciones CataBlog, Directorios y Condiciones eliminados con éxito." 397 397 398 #: ../lib/CataBlog.class.php:21 44398 #: ../lib/CataBlog.class.php:2172 399 399 msgid "You may now go deactivate CataBlog and nothing will be left behind." 400 400 msgstr "Ahora puede ir a desactivar CataBlog y nada se quedará atrás." 401 401 402 #: ../lib/CataBlog.class.php:21 45402 #: ../lib/CataBlog.class.php:2173 403 403 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 404 404 msgstr "Si desea seguir utilizando CataBlog, ir a la biblioteca para volver a instalar los ajustes necesarios." 405 405 406 #: ../lib/CataBlog.class.php:22 06406 #: ../lib/CataBlog.class.php:2234 407 407 #, php-format 408 408 msgid "CataBlog %s LightBox Styles | %s" 409 409 msgstr "CataBlog %s LightBox Styles | %s" 410 410 411 #: ../lib/CataBlog.class.php:22 28411 #: ../lib/CataBlog.class.php:2256 412 412 msgid "You may also press "P" or the left arrow on your keyboard" 413 413 msgstr "También puede pulsar "A" o la flecha izquierda del teclado" 414 414 415 #: ../lib/CataBlog.class.php:22 29415 #: ../lib/CataBlog.class.php:2257 416 416 msgid "You may also press "N" or the right arrow on your keyboard" 417 417 msgstr "También puede presionar "S" o la flecha derecha del teclado" 418 418 419 #: ../lib/CataBlog.class.php:22 30419 #: ../lib/CataBlog.class.php:2258 420 420 msgid "Close LightBox Now" 421 421 msgstr "Cerca LightBox Ahora" 422 422 423 #: ../lib/CataBlog.class.php:22 31423 #: ../lib/CataBlog.class.php:2259 424 424 msgid "PREV" 425 425 msgstr "ANTERIOR" 426 426 427 #: ../lib/CataBlog.class.php:22 32427 #: ../lib/CataBlog.class.php:2260 428 428 msgid "NEXT" 429 429 msgstr "SIGUIENTE" 430 430 431 #: ../lib/CataBlog.class.php:22 33431 #: ../lib/CataBlog.class.php:2261 432 432 msgid "CLOSE" 433 433 msgstr "CERRAR" 434 434 435 #: ../lib/CataBlog.class.php:22 37435 #: ../lib/CataBlog.class.php:2265 436 436 #, php-format 437 437 msgid "CataBlog %s LightBox JavaScript | %s" 438 438 msgstr "CataBlog %s LightBox JavaScript | %s" 439 439 440 #: ../lib/CataBlog.class.php:22 39440 #: ../lib/CataBlog.class.php:2267 441 441 msgid "End CataBlog LightBox JavaScript" 442 442 msgstr "Fin CataBlog LightBox JavaScript" 443 443 444 #: ../lib/CataBlog.class.php:23 55444 #: ../lib/CataBlog.class.php:2386 445 445 msgid "You must use the id attribute in the catablog_gallery Shortcode" 446 446 msgstr "" 447 447 448 #: ../lib/CataBlog.class.php:2 372448 #: ../lib/CataBlog.class.php:2406 449 449 #, php-format 450 450 msgid "Could not find a CataBlog Gallery with id %s" … … 452 452 453 453 #: ../lib/CataBlog.class.php:2455 454 #, php-format 455 msgid "%s to %s of %s" 456 msgstr "%s a %s de %s" 457 458 #: ../lib/CataBlog.class.php:2591 454 #: ../lib/CataBlog.class.php:2841 455 #: ../lib/CataBlog.class.php:3016 456 msgid "Previous" 457 msgstr "anterior" 458 459 #: ../lib/CataBlog.class.php:2456 460 #: ../lib/CataBlog.class.php:2842 461 #: ../lib/CataBlog.class.php:3017 462 msgid "Next" 463 msgstr "próximo" 464 465 #: ../lib/CataBlog.class.php:2614 459 466 #, php-format 460 467 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 461 468 msgstr "CataBlog error de plantilla: La plantilla de la tienda no existe. Por favor, asegúrese de que su es un archivo con extensión '%s.htm' en el directorio <code>wp-content/uploads/catablog/templates</code>." 462 469 463 #: ../lib/CataBlog.class.php:26 14470 #: ../lib/CataBlog.class.php:2637 464 471 #, php-format 465 472 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 466 473 msgstr "CataBlog abreviado de parámetros de error: El atributo de plantilla de este código abreviado puntos a un archivo que no existe. Por favor, asegúrese de que su es un archivo con '%s.htm' el nombre en el directorio de puntos de 'view'." 467 474 468 #: ../lib/CataBlog.class.php:26 15475 #: ../lib/CataBlog.class.php:2638 469 476 msgid "Learn More" 470 477 msgstr "Más información" 471 478 472 #: ../lib/CataBlog.class.php:26 67479 #: ../lib/CataBlog.class.php:2690 473 480 msgid "CataBlog Error:" 474 481 msgstr "CataBlog de error:" 475 482 476 #: ../lib/CataBlog.class.php:26 69483 #: ../lib/CataBlog.class.php:2692 477 484 #, php-format 478 485 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 479 486 msgstr "Categorías CataBlog requieren para activar %sla opción pública CataBlog%s." 480 487 481 #: ../lib/CataBlog.class.php:2 689488 #: ../lib/CataBlog.class.php:2712 482 489 msgid "Select Category" 483 490 msgstr "Seleccione una categoría" 484 491 485 #: ../lib/CataBlog.class.php:2 783492 #: ../lib/CataBlog.class.php:2806 486 493 msgid "The CataBlog Upload Directory cannot be written. " 487 494 msgstr "El Directorio de CataBlog Subir no se puede escribir." 488 495 489 #: ../lib/CataBlog.class.php:2 783490 #: ../lib/CataBlog.class.php:2 788491 #: ../lib/CataBlog.class.php: 2988496 #: ../lib/CataBlog.class.php:2806 497 #: ../lib/CataBlog.class.php:2811 498 #: ../lib/CataBlog.class.php:3011 492 499 msgid "Please check your server file permissions and apache configuration." 493 500 msgstr "Compruebe sus permisos de servidor de archivos y la configuración de apache." 494 501 495 #: ../lib/CataBlog.class.php:2 788502 #: ../lib/CataBlog.class.php:2811 496 503 msgid "The CataBlog Templates Directory cannot be written. " 497 504 msgstr "El Directorio de CataBlog Las plantillas no se puede escribir." 498 505 499 #: ../lib/CataBlog.class.php:2 794506 #: ../lib/CataBlog.class.php:2817 500 507 #, php-format 501 508 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 502 509 msgstr "Opciones CataBlog y directorios se han instalado con éxito. Por favor, %sactualice ahora%s" 503 510 504 #: ../lib/CataBlog.class.php:2818 505 #: ../lib/CataBlog.class.php:2993 506 msgid "Previous" 507 msgstr "anterior" 508 509 #: ../lib/CataBlog.class.php:2819 510 #: ../lib/CataBlog.class.php:2994 511 msgid "Next" 512 msgstr "próximo" 513 514 #: ../lib/CataBlog.class.php:2875 511 #: ../lib/CataBlog.class.php:2898 515 512 #, php-format 516 513 msgid "There was an error creating the default term: %s" 517 514 msgstr "Se ha producido un error al crear el término por defecto: %s" 518 515 519 #: ../lib/CataBlog.class.php:29 10516 #: ../lib/CataBlog.class.php:2933 520 517 msgid "CataBlog options and directories have been successfully upgraded." 521 518 msgstr "Opciones CataBlog y directorios se han actualizado correctamente." 522 519 523 #: ../lib/CataBlog.class.php: 2988520 #: ../lib/CataBlog.class.php:3011 524 521 msgid "The New CataBlog Templates cannot be written. " 525 522 msgstr "Las nuevas plantillas CataBlog no se puede escribir." 526 523 527 #: ../lib/CataBlog.class.php:31 75524 #: ../lib/CataBlog.class.php:3198 528 525 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 529 526 msgstr "Archivo Subido CSV no se pudo analizar, Compruebe que el formato del archivo es válido." 530 527 531 #: ../lib/CataBlog.class.php:32 16528 #: ../lib/CataBlog.class.php:3239 532 529 #, php-format 533 530 msgid "There was an error parsing your CSV file on lines: %s." 534 531 msgstr "Hubo un error al analizar el archivo CSV en las líneas: %s" 535 532 536 #: ../lib/CataBlog.class.php:32 63537 #: ../lib/CataBlog.class.php:33 06538 #: ../lib/CataBlog.class.php:33 10539 #: ../lib/CataBlog.class.php:33 13533 #: ../lib/CataBlog.class.php:3286 534 #: ../lib/CataBlog.class.php:3329 535 #: ../lib/CataBlog.class.php:3333 536 #: ../lib/CataBlog.class.php:3336 540 537 msgid "Error:" 541 538 msgstr "Error:" 542 539 543 #: ../lib/CataBlog.class.php:3 277540 #: ../lib/CataBlog.class.php:3300 544 541 msgid "Success:" 545 542 msgstr "Éxito:" 546 543 547 #: ../lib/CataBlog.class.php:3 277544 #: ../lib/CataBlog.class.php:3300 548 545 #, php-format 549 546 msgid " %s inserted into catalog categories." 550 547 msgstr "%s inserta en categorías catálogo." 551 548 552 #: ../lib/CataBlog.class.php:3 285549 #: ../lib/CataBlog.class.php:3308 553 550 msgid "All New Categories Created" 554 551 msgstr "Todas las categorías Nueva creación" 555 552 556 #: ../lib/CataBlog.class.php:3 289553 #: ../lib/CataBlog.class.php:3312 557 554 msgid "No New Categories Created" 558 555 msgstr "No hay nuevas categorías creadas" 559 556 560 #: ../lib/CataBlog.class.php:33 04561 #: ../lib/CataBlog.class.php:33 58557 #: ../lib/CataBlog.class.php:3327 558 #: ../lib/CataBlog.class.php:3381 562 559 msgid "Insert:" 563 560 msgstr "Insertar:" 564 561 565 #: ../lib/CataBlog.class.php:33 04566 #: ../lib/CataBlog.class.php:33 58562 #: ../lib/CataBlog.class.php:3327 563 #: ../lib/CataBlog.class.php:3381 567 564 #, php-format 568 565 msgid " %s inserted into the database." 569 566 msgstr "%s inserta en la base de datos." 570 567 571 #: ../lib/CataBlog.class.php:33 06568 #: ../lib/CataBlog.class.php:3329 572 569 #, php-format 573 570 msgid " %s was not inserted into the database." 574 571 msgstr "%s no fue insertado en la base de datos." 575 572 576 #: ../lib/CataBlog.class.php:33 10573 #: ../lib/CataBlog.class.php:3333 577 574 msgid "Item had no title and could not be made." 578 575 msgstr "Artículo no tiene título y no pudo realizar." 579 576 580 #: ../lib/CataBlog.class.php:33 13577 #: ../lib/CataBlog.class.php:3336 581 578 msgid "Item had no primary image name and could not be made." 582 579 msgstr "Artículo no tiene nombre de la imagen principal y no pudo realizar." 583 580 584 #: ../lib/CataBlog.class.php:33 55581 #: ../lib/CataBlog.class.php:3378 585 582 msgid "Update:" 586 583 msgstr "Actualización:" 587 584 588 #: ../lib/CataBlog.class.php:33 55585 #: ../lib/CataBlog.class.php:3378 589 586 #, php-format 590 587 msgid " %s updated in database." 591 588 msgstr "%s actualizada la base de datos." 592 589 593 #: ../lib/CataBlog.class.php:3 384590 #: ../lib/CataBlog.class.php:3407 594 591 #, php-format 595 592 msgid "%s Catalog Items Inserted" 596 593 msgstr "%s artículos de catálogo insertada" 597 594 598 #: ../lib/CataBlog.class.php:34 49595 #: ../lib/CataBlog.class.php:3472 599 596 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 600 597 msgstr "El archivo subido excede el máximo de configuraciones de PHP Tamaño del archivo." 601 598 602 #: ../lib/CataBlog.class.php:34 52599 #: ../lib/CataBlog.class.php:3475 603 600 msgid "Upload File Exceeded The HTML Form's Max File Size." 604 601 msgstr "Carga de archivos ha superado el máximo de formulario HTML Tamaño del archivo." 605 602 606 #: ../lib/CataBlog.class.php:34 55603 #: ../lib/CataBlog.class.php:3478 607 604 msgid "File Only Partially Uploaded, Please Try Again." 608 605 msgstr "El archivo sólo parcialmente cargado, por favor intente de nuevo." 609 606 610 #: ../lib/CataBlog.class.php:34 58607 #: ../lib/CataBlog.class.php:3481 611 608 msgid "No File Selected For Upload. Please Resubmit The Form." 612 609 msgstr "No hay archivos seleccionados para subir. Por favor, vuelva a enviar el formulario." 613 610 614 #: ../lib/CataBlog.class.php:34 61611 #: ../lib/CataBlog.class.php:3484 615 612 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 616 613 msgstr "Configuración de su servidor PHP no tiene una carpeta temporal de Cargas, Póngase en contacto con el administrador del sistema." 617 614 618 #: ../lib/CataBlog.class.php:34 64615 #: ../lib/CataBlog.class.php:3487 619 616 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 620 617 msgstr "Configuración de su servidor PHP no se puede escribir en el disco, Por favor contacte al administrador del sistema." 621 618 622 #: ../lib/CataBlog.class.php:34 67619 #: ../lib/CataBlog.class.php:3490 623 620 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 624 621 msgstr "Una extensión de PHP está bloqueando PHP De Cargas aceptar, Póngase en contacto con el administrador del sistema." 625 622 626 #: ../lib/CataBlog.class.php:34 70623 #: ../lib/CataBlog.class.php:3493 627 624 msgid "An Unknown Upload Error Has Occurred" 628 625 msgstr "Un desconocido Subir error ha ocurrido" … … 640 637 msgstr "La imagen no puede ser cargado en el servidor, por favor, inténtelo de nuevo." 641 638 642 #: ../lib/catablog.upload.php:112 643 #: ../templates/admin-edit.php:77 644 #: ../templates/admin-gallery-edit.php:39 645 msgid "Save Changes" 646 msgstr "Guardar Cambios" 647 648 #: ../lib/CataBlogDirectory.class.php:12 649 #: ../lib/CataBlogDirectory.class.php:109 650 msgid "Could not open directory." 651 msgstr "No se pudo abrir el directorio." 652 653 #: ../lib/CataBlogGallery.class.php:187 654 #, fuzzy 655 msgid "A gallery must have a title of at least one alphanumeric character." 656 msgstr "Un elemento debe tener un título de al menos un carácter alfanumérico." 657 658 #: ../lib/CataBlogGallery.class.php:192 659 #, fuzzy 660 msgid "A gallery title can not be more then 200 characters long." 661 msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud." 662 663 #: ../lib/CataBlogItem.class.php:354 664 msgid "An item must have an image associated with it." 665 msgstr "Un elemento debe tener una imagen." 666 667 #: ../lib/CataBlogItem.class.php:360 668 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 669 msgstr "No se puede escribir la imagen subido al servidor, por favor asegúrese de que el directorio catablog en ti WordPress carpeta de archivos se puede escribir." 670 671 #: ../lib/CataBlogItem.class.php:365 672 msgid "An item must have a title of at least one alphanumeric character." 673 msgstr "Un elemento debe tener un título de al menos un carácter alfanumérico." 674 675 #: ../lib/CataBlogItem.class.php:370 676 msgid "An item's title can not be more then 200 characters long." 677 msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud." 678 679 #: ../lib/CataBlogItem.class.php:375 680 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 681 msgstr "Fecha de un artículo debe coincidir exactamente con el formato de fecha de MySQL, YYYY-MM-DD HH:MM:SS" 682 683 #: ../lib/CataBlogItem.class.php:383 684 msgid "An item's date must be an actual day on the gregorian calendar." 685 msgstr "Fecha de un artículo debe ser una fecha exacta del calendario gregoriano." 686 687 #: ../lib/CataBlogItem.class.php:388 688 msgid "An item's date hour must be below twenty-four." 689 msgstr "Una hora elemento fecha debe ser inferior a veinticuatro." 690 691 #: ../lib/CataBlogItem.class.php:393 692 msgid "An item's order value must be a positive integer." 693 msgstr "El valor de un elemento de orden debe ser un entero positivo." 694 695 #: ../lib/CataBlogItem.class.php:400 696 msgid "An item's price must be a positive number." 697 msgstr "Precio de un artículo debe ser un número positivo." 698 699 #: ../lib/CataBlogItem.class.php:423 700 #: ../lib/CataBlogItem.class.php:611 701 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 702 msgstr "La imagen no pudo ser utilizado debido a que es un formato no compatible. JPEG, GIF y PNG solamente." 703 704 #: ../lib/CataBlogItem.class.php:436 705 #: ../lib/CataBlogItem.class.php:598 706 msgid "Can not write uploaded image to server, your storage space is exhausted." 707 msgstr "No se puede escribir la imagen subido al servidor, el espacio de almacenamiento se ha agotado." 708 709 #: ../lib/CataBlogItem.class.php:437 710 #: ../lib/CataBlogItem.class.php:599 711 msgid "Please delete some media files to free up space and try again." 712 msgstr "Por favor, elimine algunos archivos para liberar espacio y vuelve a intentarlo." 713 714 #: ../lib/CataBlogItem.class.php:438 715 #: ../lib/CataBlogItem.class.php:600 716 #, php-format 717 msgid "You have %sMB of available space on your server and your image is %sMB." 718 msgstr "Tiene %sMB del espacio disponible en el servidor y su imagen es %sMB." 719 720 #: ../lib/CataBlogItem.class.php:528 721 msgid "Could not set categories, please try again." 722 msgstr "No se pudo establecer categorías, por favor, inténtelo de nuevo." 723 724 #: ../lib/CataBlogItem.class.php:655 725 #: ../lib/CataBlogItem.class.php:716 726 #, php-format 727 msgid "Original image file missing, could not be located at %s" 728 msgstr "Archivo original de la imagen que falta, no se encuentra en %s" 729 730 #: ../lib/CataBlogItem.class.php:662 731 #: ../lib/CataBlogItem.class.php:724 732 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 733 msgstr "Imagen original dimensiones son inferiores a 1 píxel. Más probable es que PHP no tiene permiso para leer el archivo original." 734 735 #: ../lib/CataBlogItem.class.php:691 736 #: ../lib/CataBlogItem.class.php:738 737 msgid "Original image could not be loaded because it is an unsupported format." 738 msgstr "Imagen original no se pudo cargar porque es un formato no compatible." 739 740 #: ../lib/CataBlogWidget.class.php:14 741 msgid "Entries from your CataBlog Library" 742 msgstr "Las entradas de la biblioteca de CataBlog" 743 744 #: ../lib/CataBlogWidget.class.php:15 745 msgid "CataBlog Catalog" 746 msgstr "CataBlog Catálogo" 747 748 #: ../lib/CataBlogWidget.class.php:50 749 #: ../templates/admin-galleries.php:70 750 #: ../templates/admin-galleries.php:84 751 msgid "Date" 752 msgstr "Fecha" 753 754 #: ../lib/CataBlogWidget.class.php:51 755 msgid "Order" 756 msgstr "Orden" 757 639 #: ../lib/catablog.upload.php:120 758 640 #: ../lib/CataBlogWidget.class.php:52 759 641 #: ../templates/admin-edit.php:57 … … 764 646 msgstr "Título" 765 647 648 #: ../lib/catablog.upload.php:123 649 #: ../lib/CataBlogItem.class.php:365 650 msgid "An item must have a title of at least one alphanumeric character." 651 msgstr "Un elemento debe tener un título de al menos un carácter alfanumérico." 652 653 #: ../lib/catablog.upload.php:127 654 #: ../templates/admin-galleries.php:61 655 #: ../templates/admin-galleries.php:81 656 #: ../templates/admin-gallery-edit.php:17 657 msgid "Description" 658 msgstr "Descripción" 659 660 #: ../lib/catablog.upload.php:142 661 #: ../lib/CataBlogItem.class.php:400 662 msgid "An item's price must be a positive number." 663 msgstr "Precio de un artículo debe ser un número positivo." 664 665 #: ../lib/catablog.upload.php:145 666 #: ../lib/CataBlogItem.class.php:393 667 msgid "An item's order value must be a positive integer." 668 msgstr "El valor de un elemento de orden debe ser un entero positivo." 669 670 #: ../lib/catablog.upload.php:154 671 #: ../templates/admin-edit.php:77 672 #: ../templates/admin-gallery-edit.php:39 673 msgid "Save Changes" 674 msgstr "Guardar Cambios" 675 676 #: ../lib/CataBlogDirectory.class.php:12 677 #: ../lib/CataBlogDirectory.class.php:109 678 msgid "Could not open directory." 679 msgstr "No se pudo abrir el directorio." 680 681 #: ../lib/CataBlogGallery.class.php:187 682 #, fuzzy 683 msgid "A gallery must have a title of at least one alphanumeric character." 684 msgstr "Un elemento debe tener un título de al menos un carácter alfanumérico." 685 686 #: ../lib/CataBlogGallery.class.php:192 687 #, fuzzy 688 msgid "A gallery title can not be more then 200 characters long." 689 msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud." 690 691 #: ../lib/CataBlogItem.class.php:354 692 msgid "An item must have an image associated with it." 693 msgstr "Un elemento debe tener una imagen." 694 695 #: ../lib/CataBlogItem.class.php:360 696 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 697 msgstr "No se puede escribir la imagen subido al servidor, por favor asegúrese de que el directorio catablog en ti WordPress carpeta de archivos se puede escribir." 698 699 #: ../lib/CataBlogItem.class.php:370 700 msgid "An item's title can not be more then 200 characters long." 701 msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud." 702 703 #: ../lib/CataBlogItem.class.php:375 704 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 705 msgstr "Fecha de un artículo debe coincidir exactamente con el formato de fecha de MySQL, YYYY-MM-DD HH:MM:SS" 706 707 #: ../lib/CataBlogItem.class.php:383 708 msgid "An item's date must be an actual day on the gregorian calendar." 709 msgstr "Fecha de un artículo debe ser una fecha exacta del calendario gregoriano." 710 711 #: ../lib/CataBlogItem.class.php:388 712 msgid "An item's date hour must be below twenty-four." 713 msgstr "Una hora elemento fecha debe ser inferior a veinticuatro." 714 715 #: ../lib/CataBlogItem.class.php:423 716 #: ../lib/CataBlogItem.class.php:600 717 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 718 msgstr "La imagen no pudo ser utilizado debido a que es un formato no compatible. JPEG, GIF y PNG solamente." 719 720 #: ../lib/CataBlogItem.class.php:436 721 #: ../lib/CataBlogItem.class.php:587 722 msgid "Can not write uploaded image to server, your storage space is exhausted." 723 msgstr "No se puede escribir la imagen subido al servidor, el espacio de almacenamiento se ha agotado." 724 725 #: ../lib/CataBlogItem.class.php:437 726 #: ../lib/CataBlogItem.class.php:588 727 msgid "Please delete some media files to free up space and try again." 728 msgstr "Por favor, elimine algunos archivos para liberar espacio y vuelve a intentarlo." 729 730 #: ../lib/CataBlogItem.class.php:438 731 #: ../lib/CataBlogItem.class.php:589 732 #, php-format 733 msgid "You have %sMB of available space on your server and your image is %sMB." 734 msgstr "Tiene %sMB del espacio disponible en el servidor y su imagen es %sMB." 735 736 #: ../lib/CataBlogItem.class.php:517 737 msgid "Could not set categories, please try again." 738 msgstr "No se pudo establecer categorías, por favor, inténtelo de nuevo." 739 740 #: ../lib/CataBlogItem.class.php:644 741 #: ../lib/CataBlogItem.class.php:712 742 #, php-format 743 msgid "Original image file missing, could not be located at %s" 744 msgstr "Archivo original de la imagen que falta, no se encuentra en %s" 745 746 #: ../lib/CataBlogItem.class.php:651 747 #: ../lib/CataBlogItem.class.php:720 748 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 749 msgstr "Imagen original dimensiones son inferiores a 1 píxel. Más probable es que PHP no tiene permiso para leer el archivo original." 750 751 #: ../lib/CataBlogItem.class.php:680 752 #: ../lib/CataBlogItem.class.php:734 753 msgid "Original image could not be loaded because it is an unsupported format." 754 msgstr "Imagen original no se pudo cargar porque es un formato no compatible." 755 756 #: ../lib/CataBlogWidget.class.php:14 757 msgid "Entries from your CataBlog Library" 758 msgstr "Las entradas de la biblioteca de CataBlog" 759 760 #: ../lib/CataBlogWidget.class.php:15 761 msgid "CataBlog Catalog" 762 msgstr "CataBlog Catálogo" 763 764 #: ../lib/CataBlogWidget.class.php:50 765 #: ../templates/admin-galleries.php:70 766 #: ../templates/admin-galleries.php:84 767 msgid "Date" 768 msgstr "Fecha" 769 770 #: ../lib/CataBlogWidget.class.php:51 771 msgid "Order" 772 msgstr "Orden" 773 766 774 #: ../lib/CataBlogWidget.class.php:53 767 775 msgid "Random" … … 1331 1339 msgstr "Ir a la última página" 1332 1340 1333 #: ../templates/admin-galleries.php:611334 #: ../templates/admin-galleries.php:811335 #: ../templates/admin-gallery-edit.php:171336 msgid "Description"1337 msgstr "Descripción"1338 1339 1341 #: ../templates/admin-galleries.php:62 1340 1342 #: ../templates/admin-galleries.php:82 … … 1453 1455 1454 1456 #: ../templates/admin-library.php:40 1457 #: ../templates/admin-screen-options-add-new.php:49 1455 1458 #: ../templates/admin-screen-options-galleries.php:56 1456 1459 #: ../templates/admin-screen-options-library.php:56 … … 1538 1541 msgstr "Por favor, seleccione al menos un elemento de primer catálogo." 1539 1542 1540 #: ../templates/admin-library.php:28 71543 #: ../templates/admin-library.php:289 1541 1544 msgid "Are you sure you want to delete multiple items?" 1542 1545 msgstr "¿Está seguro que desea eliminar varios elementos?" 1543 1546 1544 #: ../templates/admin-library.php:31 61547 #: ../templates/admin-library.php:318 1545 1548 msgid "Are you sure you want to permanently delete this catalog items?" 1546 1549 msgstr "¿Está seguro que desea eliminar permanentemente esta artículos del catálogo?" … … 1605 1608 msgid "Select Images" 1606 1609 msgstr "Elegir archivos" 1610 1611 #: ../templates/admin-new.php:261 1612 #: ../templates/admin-options.php:601 1613 msgid "There are errors, please correct them before saving." 1614 msgstr "Hay errores, por favor corregirlos antes de guardar." 1607 1615 1608 1616 #: ../templates/admin-options.php:8 … … 2044 2052 msgstr "o %sdeshacer los cambios actuales%s" 2045 2053 2046 #: ../templates/admin-options.php:6012047 msgid "There are errors, please correct them before saving."2048 msgstr "Hay errores, por favor corregirlos antes de guardar."2049 2050 2054 #: ../templates/admin-options.php:720 2051 2055 #: ../templates/admin-regenerate.php:43 … … 2117 2121 msgstr "Nueva imagen que se encuentra, la creación de tema catálogo %s" 2118 2122 2123 #: ../templates/admin-screen-options-add-new.php:40 2119 2124 #: ../templates/admin-screen-options-galleries.php:41 2120 2125 #: ../templates/admin-screen-options-galleries.php:50 … … 2197 2202 msgid "Please only use underscores, hyphens and alphanumeric characters only." 2198 2203 msgstr "Por favor, sólo uso de guiones bajos, guiones y caracteres alfanuméricos." 2204 2205 #~ msgid "%s to %s of %s" 2206 #~ msgstr "%s a %s de %s" 2199 2207 2200 2208 #~ msgid "accepts html formatting" -
catablog/trunk/localization/catablog-fr_FR.po
r524478 r530481 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-0 3-27 14:31-0800\n"8 "PO-Revision-Date: 2012-0 3-27 14:31-0800\n"7 "POT-Creation-Date: 2012-04-12 16:58-0800\n" 8 "PO-Revision-Date: 2012-04-12 16:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: ezion <youpsee@gmail.com>\n" … … 34 34 msgstr "<strong>CataBlog</strong> ne peut trouver votre dossier d'upload ou ce dernier n'est pas accessible en écriture par PHP.Veuillez vous assurer qu'Apache et PHP disposent des permissions en écriture pour le dossier d'upload configuré. Veuillez contacter votre hébergeur ou votre service technique pour plus d'informations. Merci." 35 35 36 #: ../lib/CataBlog.class.php:21 036 #: ../lib/CataBlog.class.php:211 37 37 msgid "Uncategorized" 38 38 msgstr "Sans Catégorie" 39 39 40 #: ../lib/CataBlog.class.php:23 140 #: ../lib/CataBlog.class.php:232 41 41 msgid "CataBlog Item" 42 42 msgstr "Objet" 43 43 44 #: ../lib/CataBlog.class.php:23 644 #: ../lib/CataBlog.class.php:237 45 45 msgid "A Catalog Item, generated by CataBlog." 46 46 msgstr "Un objet généré par la Galerie." 47 47 48 #: ../lib/CataBlog.class.php:24 748 #: ../lib/CataBlog.class.php:248 49 49 msgid "CataBlog Category" 50 50 msgstr "Catégorie" 51 51 52 #: ../lib/CataBlog.class.php:25 852 #: ../lib/CataBlog.class.php:259 53 53 #, fuzzy 54 54 msgid "CataBlog Gallery" 55 55 msgstr "Catégorie" 56 56 57 #: ../lib/CataBlog.class.php:26 357 #: ../lib/CataBlog.class.php:264 58 58 #, fuzzy 59 59 msgid "A Catalog Gallery, generated by CataBlog." 60 60 msgstr "Un objet généré par la Galerie." 61 61 62 #: ../lib/CataBlog.class.php:3 8962 #: ../lib/CataBlog.class.php:390 63 63 #: ../templates/admin-404.php:11 64 64 msgid "CataBlog Library" 65 65 msgstr "Galerie" 66 66 67 #: ../lib/CataBlog.class.php:3 8968 #: ../lib/CataBlog.class.php:47 667 #: ../lib/CataBlog.class.php:390 68 #: ../lib/CataBlog.class.php:477 69 69 msgid "Library" 70 70 msgstr "Album" 71 71 72 #: ../lib/CataBlog.class.php:39 072 #: ../lib/CataBlog.class.php:391 73 73 msgid "Add New CataBlog Entry" 74 74 msgstr "Ajouter une Nouvelle Image" 75 75 76 #: ../lib/CataBlog.class.php:39 077 #: ../lib/CataBlog.class.php:47 776 #: ../lib/CataBlog.class.php:391 77 #: ../lib/CataBlog.class.php:478 78 78 msgid "Add New" 79 79 msgstr "Ajouter" 80 80 81 #: ../lib/CataBlog.class.php:39 181 #: ../lib/CataBlog.class.php:392 82 82 #: ../templates/admin-galleries.php:5 83 83 #, fuzzy … … 85 85 msgstr "Catégories CataBlog" 86 86 87 #: ../lib/CataBlog.class.php:39 188 #: ../lib/CataBlog.class.php:47 887 #: ../lib/CataBlog.class.php:392 88 #: ../lib/CataBlog.class.php:479 89 89 #, fuzzy 90 90 msgid "Galleries" 91 91 msgstr "Catégories" 92 92 93 #: ../lib/CataBlog.class.php:39 293 #: ../lib/CataBlog.class.php:393 94 94 msgid "CataBlog Templates" 95 95 msgstr "Thèmes CataBlog" 96 96 97 #: ../lib/CataBlog.class.php:39 298 #: ../lib/CataBlog.class.php:4 7997 #: ../lib/CataBlog.class.php:393 98 #: ../lib/CataBlog.class.php:480 99 99 msgid "Templates" 100 100 msgstr "Thèmes" 101 101 102 #: ../lib/CataBlog.class.php:39 3102 #: ../lib/CataBlog.class.php:394 103 103 msgid "CataBlog Options" 104 104 msgstr "Options de la Galerie" 105 105 106 #: ../lib/CataBlog.class.php:39 3107 #: ../lib/CataBlog.class.php:48 0106 #: ../lib/CataBlog.class.php:394 107 #: ../lib/CataBlog.class.php:481 108 108 msgid "Options" 109 109 msgstr "Options" 110 110 111 #: ../lib/CataBlog.class.php:39 4111 #: ../lib/CataBlog.class.php:395 112 112 #: ../templates/admin-about.php:4 113 113 msgid "About CataBlog" 114 114 msgstr "A propos de la Galerie" 115 115 116 #: ../lib/CataBlog.class.php:39 4117 #: ../lib/CataBlog.class.php:48 1116 #: ../lib/CataBlog.class.php:395 117 #: ../lib/CataBlog.class.php:482 118 118 msgid "About" 119 119 msgstr "A Propos" 120 120 121 #: ../lib/CataBlog.class.php:46 1121 #: ../lib/CataBlog.class.php:462 122 122 #: ../templates/admin-edit.php:4 123 123 msgid "Edit CataBlog Entry" 124 124 msgstr "Editer une Image" 125 125 126 #: ../lib/CataBlog.class.php:47 5126 #: ../lib/CataBlog.class.php:476 127 127 #: ../templates/admin-discfull.php:22 128 128 msgid "CataBlog" 129 129 msgstr "CataBlog" 130 130 131 #: ../lib/CataBlog.class.php:48 4131 #: ../lib/CataBlog.class.php:485 132 132 msgid "CataBlog Entry" 133 133 msgstr "Image" 134 134 135 #: ../lib/CataBlog.class.php:66 4136 #: ../lib/CataBlog.class.php:70 7137 #: ../lib/CataBlog.class.php:117 4135 #: ../lib/CataBlog.class.php:665 136 #: ../lib/CataBlog.class.php:708 137 #: ../lib/CataBlog.class.php:1175 138 138 msgid "Changes Saved Successfully." 139 139 msgstr "Modifications Enregistrées avec Succès." 140 140 141 #: ../lib/CataBlog.class.php:66 7141 #: ../lib/CataBlog.class.php:668 142 142 msgid "Catalog Item Deleted Successfully." 143 143 msgstr "Objet Supprimé avec Succès." 144 144 145 #: ../lib/CataBlog.class.php:67 0145 #: ../lib/CataBlog.class.php:671 146 146 msgid "Could Not Delete Item Because ID was non existent." 147 147 msgstr "Impossible de supprimer cet objet car son ID n'existe pas." 148 148 149 #: ../lib/CataBlog.class.php:67 3149 #: ../lib/CataBlog.class.php:674 150 150 msgid "Could not verify bulk edit action nonce, please refresh page and try again." 151 151 msgstr "Impossible de vérifier la possibilité d'édition en masse pour le moment, merci d'actualiser la page puis de réessayer." 152 152 153 #: ../lib/CataBlog.class.php:67 6153 #: ../lib/CataBlog.class.php:677 154 154 msgid "Bulk categories edit performed successfully." 155 155 msgstr "Edition des catégories en masse effectuée avec succès." 156 156 157 #: ../lib/CataBlog.class.php:6 79157 #: ../lib/CataBlog.class.php:680 158 158 msgid "Bulk delete performed successfully." 159 159 msgstr "Suppression en masse effectuée avec succès." 160 160 161 #: ../lib/CataBlog.class.php:68 2161 #: ../lib/CataBlog.class.php:683 162 162 msgid "Reset all data successfully." 163 163 msgstr "Réinitialisation des données effectuée avec succès." 164 164 165 #: ../lib/CataBlog.class.php:68 5165 #: ../lib/CataBlog.class.php:686 166 166 #, fuzzy 167 167 msgid "Catalog items added to Gallery successfully." 168 168 msgstr "Objet Supprimé avec Succès." 169 169 170 #: ../lib/CataBlog.class.php:68 8170 #: ../lib/CataBlog.class.php:689 171 171 msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again." 172 172 msgstr "" 173 173 174 #: ../lib/CataBlog.class.php:69 1174 #: ../lib/CataBlog.class.php:692 175 175 #, fuzzy 176 176 msgid "Could not validate the gallery, please modify the gallery and try again." 177 177 msgstr "Impossible de vérifier la possibilité d'édition en masse pour le moment, merci d'actualiser la page puis de réessayer." 178 178 179 #: ../lib/CataBlog.class.php:71 1179 #: ../lib/CataBlog.class.php:712 180 180 msgid "View Now" 181 181 msgstr "Voir Maintenant" 182 182 183 #: ../lib/CataBlog.class.php:77 4183 #: ../lib/CataBlog.class.php:775 184 184 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 185 185 msgstr "Erreur lors du contrôle de ce formulaire. Veuillez vous assurer que les mots clés des pages individuelles et des pages de catégories ne sont pas identiques." 186 186 187 #: ../lib/CataBlog.class.php:78 2187 #: ../lib/CataBlog.class.php:783 188 188 msgid "CataBlog Options Saved" 189 189 msgstr "Options Enregistrées" 190 190 191 #: ../lib/CataBlog.class.php:83 5191 #: ../lib/CataBlog.class.php:836 192 192 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 193 193 msgstr "Merci de bien vouloir compléter et envoyer le formulaire suivant avant de charger une nouvelle page." 194 194 195 #: ../lib/CataBlog.class.php:85 3196 #: ../lib/CataBlog.class.php:90 4197 #: ../lib/CataBlog.class.php:90 7198 #: ../lib/CataBlog.class.php:112 5199 #: ../lib/CataBlog.class.php:118 0195 #: ../lib/CataBlog.class.php:854 196 #: ../lib/CataBlog.class.php:905 197 #: ../lib/CataBlog.class.php:908 198 #: ../lib/CataBlog.class.php:1126 199 #: ../lib/CataBlog.class.php:1181 200 200 msgid "Form Validation Error. Please reload the page and try again." 201 201 msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer." 202 202 203 #: ../lib/CataBlog.class.php:89 8203 #: ../lib/CataBlog.class.php:899 204 204 msgid "Template Changes Saved Successfully." 205 205 msgstr "Modifications des Thèmes Enregistrées avec Succès." 206 206 207 #: ../lib/CataBlog.class.php:90 1207 #: ../lib/CataBlog.class.php:902 208 208 msgid "Template Created Successfully." 209 209 msgstr "Thème Créé avec succès." 210 210 211 #: ../lib/CataBlog.class.php:91 0211 #: ../lib/CataBlog.class.php:911 212 212 #, php-format 213 213 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 214 214 msgstr "Erreur lors de la création du fichier. Veuillez vous assurer que WordPress peut écrire dans ce répertoire : <br/><code>%s</code>" 215 215 216 #: ../lib/CataBlog.class.php:91 3216 #: ../lib/CataBlog.class.php:914 217 217 msgid "File Creation Error. A template already exists with that name." 218 218 msgstr "Erreur lors de la création du fichier. Un template portant le même nom existe déjà." 219 219 220 #: ../lib/CataBlog.class.php:91 6220 #: ../lib/CataBlog.class.php:917 221 221 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 222 222 msgstr "Erreur lors de la création du fichier. Le nom donné à un template ne peut contenir que des caractères alphanumériques ou des underscores." 223 223 224 #: ../lib/CataBlog.class.php:998225 224 #: ../lib/CataBlog.class.php:999 226 225 #: ../lib/CataBlog.class.php:1000 226 #: ../lib/CataBlog.class.php:1001 227 227 msgid "not present" 228 228 msgstr "absent" 229 229 230 #: ../lib/CataBlog.class.php:11 19230 #: ../lib/CataBlog.class.php:1120 231 231 #, fuzzy 232 232 msgid "Gallery Created Successfully." 233 233 msgstr "Thème Créé avec succès." 234 234 235 #: ../lib/CataBlog.class.php:112 2235 #: ../lib/CataBlog.class.php:1123 236 236 #, fuzzy 237 237 msgid "Form Validation Error. Please check your gallery title and try again." 238 238 msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer." 239 239 240 #: ../lib/CataBlog.class.php:112 8240 #: ../lib/CataBlog.class.php:1129 241 241 #, fuzzy 242 242 msgid "Gallery Deleted Successfully." 243 243 msgstr "Objet Supprimé avec Succès." 244 244 245 #: ../lib/CataBlog.class.php:113 1245 #: ../lib/CataBlog.class.php:1132 246 246 #, fuzzy 247 247 msgid "Could Not Delete Gallery Because ID was non existent." 248 248 msgstr "Impossible de supprimer cet objet car son ID n'existe pas." 249 249 250 #: ../lib/CataBlog.class.php:113 4250 #: ../lib/CataBlog.class.php:1135 251 251 #, fuzzy 252 252 msgid "Multiple Galleries Deleted Successfully." 253 253 msgstr "Objet Supprimé avec Succès." 254 254 255 #: ../lib/CataBlog.class.php:117 7255 #: ../lib/CataBlog.class.php:1178 256 256 #, fuzzy 257 257 msgid "Form Validation Error: Please make sure your title is at least one character." 258 258 msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer." 259 259 260 #: ../lib/CataBlog.class.php:131 5260 #: ../lib/CataBlog.class.php:1316 261 261 msgid "The file you selected was to large or you didn't select anything at all, please try again." 262 262 msgstr "Le fichier sélectionné est trop volumineux, ou vous n'avez pas sélectionné de fichier du tout. Veuillez réessayer." 263 263 264 #: ../lib/CataBlog.class.php:13 19265 #: ../lib/CataBlog.class.php:137 3266 #: ../lib/CataBlog.class.php:142 5267 #: ../lib/CataBlog.class.php:146 3268 #: ../lib/CataBlog.class.php:159 6264 #: ../lib/CataBlog.class.php:1320 265 #: ../lib/CataBlog.class.php:1374 266 #: ../lib/CataBlog.class.php:1426 267 #: ../lib/CataBlog.class.php:1464 268 #: ../lib/CataBlog.class.php:1597 269 269 msgid "WordPress Nonce Error, please reload the form and try again." 270 270 msgstr "Erreur de sécurité, veuillez actualiser la page et renseigner de nouveau le formulaire." 271 271 272 #: ../lib/CataBlog.class.php:137 7272 #: ../lib/CataBlog.class.php:1378 273 273 msgid "full form was not submitted, please try again." 274 274 msgstr "le formulaire n'a pas été envoyé dans son intégralité, veuillez essayer de nouveau." 275 275 276 #: ../lib/CataBlog.class.php:142 1277 #: ../lib/CataBlog.class.php:14 59276 #: ../lib/CataBlog.class.php:1422 277 #: ../lib/CataBlog.class.php:1460 278 278 msgid "You didn't select anything to upload, please try again." 279 279 msgstr "Vous n'avez sélectionné aucun fichier à envoyer, veuillez essayer de nouveau." 280 280 281 #: ../lib/CataBlog.class.php:14 29282 #: ../lib/CataBlog.class.php:146 7281 #: ../lib/CataBlog.class.php:1430 282 #: ../lib/CataBlog.class.php:1468 283 283 msgid "No item ID posted, press back arrow and try again." 284 284 msgstr "Aucun objet n'a été envoyé, retournez sur la page précédente afin d'essayer de nouveau." 285 285 286 #: ../lib/CataBlog.class.php:151 0286 #: ../lib/CataBlog.class.php:1511 287 287 msgid "Please make your selection by checking the boxes in the list below." 288 288 msgstr "Veuillez faire votre choix en sélectionnant l'une des cases de la liste suivante." 289 289 290 #: ../lib/CataBlog.class.php:155 6290 #: ../lib/CataBlog.class.php:1557 291 291 #, php-format 292 292 msgid "Error during set category, could not load item with id %s." 293 293 msgstr "Erreur lors du choix de la catégorie, impossible de charger l'objet sélectionné (%s)." 294 294 295 #: ../lib/CataBlog.class.php:157 4295 #: ../lib/CataBlog.class.php:1575 296 296 #, php-format 297 297 msgid "Error during bulk delete, could not load item with id %s." 298 298 msgstr "Erreur lors de la suppression des éléments, un des éléments n'a pu être chargé (%s)." 299 299 300 #: ../lib/CataBlog.class.php:160 5300 #: ../lib/CataBlog.class.php:1606 301 301 msgid "No file was selected for upload, please try again." 302 302 msgstr "Aucun fichier à envoyer n'a été sélectionné, veuillez essayer de nouveau." 303 303 304 #: ../lib/CataBlog.class.php:161 4304 #: ../lib/CataBlog.class.php:1615 305 305 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 306 306 msgstr "Le fichier XML envoyé n'a pu être analysé, veuillez vérifier que son contenu est conforme." 307 307 308 #: ../lib/CataBlog.class.php:162 4308 #: ../lib/CataBlog.class.php:1625 309 309 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 310 310 msgstr "Le fichier envoyé n'est pas conforme, vérifiez que le nom de ce dernier possède bien une extension XML ou CSV." 311 311 312 #: ../lib/CataBlog.class.php:169 5312 #: ../lib/CataBlog.class.php:1696 313 313 msgid "The CataBlog upload directories have been unlocked." 314 314 msgstr "L'envoi de dossiers a été débloqué avec succès." 315 315 316 #: ../lib/CataBlog.class.php:169 8317 #: ../lib/CataBlog.class.php:171 1316 #: ../lib/CataBlog.class.php:1699 317 #: ../lib/CataBlog.class.php:1712 318 318 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 319 319 msgstr "Impossible de vérouiller/dévérouiller le dossier. Utilisez-vous un serveur UNIX?" 320 320 321 #: ../lib/CataBlog.class.php:170 8321 #: ../lib/CataBlog.class.php:1709 322 322 msgid "The CataBlog upload directories have been locked." 323 323 msgstr "Les dossiers d'envoi de fichiers ont bien été vérouillés." 324 324 325 #: ../lib/CataBlog.class.php:18 27325 #: ../lib/CataBlog.class.php:1843 326 326 msgid "micro save successful" 327 327 msgstr "sauvegarde rapide réussie" 328 328 329 #: ../lib/CataBlog.class.php:18 35329 #: ../lib/CataBlog.class.php:1851 330 330 msgid "Cannot save changes because the item id could not be found in the database." 331 331 msgstr "" 332 332 333 #: ../lib/CataBlog.class.php:1 896333 #: ../lib/CataBlog.class.php:1924 334 334 msgid "Screen Options updated successfully." 335 335 msgstr "Options d'affichage mises à jour avec succès." 336 336 337 #: ../lib/CataBlog.class.php:19 10337 #: ../lib/CataBlog.class.php:1938 338 338 #: ../templates/admin-edit.php:277 339 339 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 340 340 msgstr "Virgules, crochets et autres caractères spéiaux ne sont pas autorisés pour les noms de catégories." 341 341 342 #: ../lib/CataBlog.class.php:19 16342 #: ../lib/CataBlog.class.php:1944 343 343 msgid "Please be a little more specific with your category name." 344 344 msgstr "Veuillez être un peu plus précis dans le choix de vos noms de catégories." 345 345 346 #: ../lib/CataBlog.class.php:19 29346 #: ../lib/CataBlog.class.php:1957 347 347 msgid "There already is a category with that name." 348 348 msgstr "Une catégorie du même nom existe déjà." 349 349 350 #: ../lib/CataBlog.class.php:19 66350 #: ../lib/CataBlog.class.php:1994 351 351 #, fuzzy 352 352 msgid "Term Edited Successfully" 353 353 msgstr "Description supprimée avec succès." 354 354 355 #: ../lib/CataBlog.class.php:19 69356 #: ../lib/CataBlog.class.php: 1985355 #: ../lib/CataBlog.class.php:1997 356 #: ../lib/CataBlog.class.php:2013 357 357 msgid "Term did not exist, please refresh page and try again." 358 358 msgstr "Description inexistante, veuillez actualisez le page pour essayer de nouveau." 359 359 360 #: ../lib/CataBlog.class.php: 1982360 #: ../lib/CataBlog.class.php:2010 361 361 msgid "Term Removed Successfully." 362 362 msgstr "Description supprimée avec succès." 363 363 364 #: ../lib/CataBlog.class.php:20 36364 #: ../lib/CataBlog.class.php:2064 365 365 msgid "unsupported image size type" 366 366 msgstr "La taille de l'image ne convient pas." 367 367 368 #: ../lib/CataBlog.class.php:20 46368 #: ../lib/CataBlog.class.php:2074 369 369 #, php-format 370 370 msgid "Rendering... %s of %s" 371 371 msgstr "Analyse... %s sur %s" 372 372 373 #: ../lib/CataBlog.class.php:20 48373 #: ../lib/CataBlog.class.php:2076 374 374 msgid "Image rendering is now complete." 375 375 msgstr "L'analyse de l'image est terminée." 376 376 377 #: ../lib/CataBlog.class.php:2 089377 #: ../lib/CataBlog.class.php:2117 378 378 msgid "error" 379 379 msgstr "erreur" 380 380 381 #: ../lib/CataBlog.class.php:2 092381 #: ../lib/CataBlog.class.php:2120 382 382 msgid "sub image deleted successfully" 383 383 msgstr "image secondaire supprimée avec succès" 384 384 385 #: ../lib/CataBlog.class.php:21 27385 #: ../lib/CataBlog.class.php:2155 386 386 #, php-format 387 387 msgid "%s library items deleted successfully." 388 388 msgstr "%s objets ont été supprimés de la galerie." 389 389 390 #: ../lib/CataBlog.class.php:21 30390 #: ../lib/CataBlog.class.php:2158 391 391 msgid "CataBlog Library Cleared Successfully." 392 392 msgstr "La galerie a été nettoyée avec succès." 393 393 394 #: ../lib/CataBlog.class.php:21 43394 #: ../lib/CataBlog.class.php:2171 395 395 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 396 396 msgstr "Options, dossiers et descriptions supprimés avec succès." 397 397 398 #: ../lib/CataBlog.class.php:21 44398 #: ../lib/CataBlog.class.php:2172 399 399 msgid "You may now go deactivate CataBlog and nothing will be left behind." 400 400 msgstr "Vous pouvez maintenant désactiver l'extension, rien ne sera laissé de côté." 401 401 402 #: ../lib/CataBlog.class.php:21 45402 #: ../lib/CataBlog.class.php:2173 403 403 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 404 404 msgstr "Si vous souhaitez continuer à utiliser l'extension, veuillez aller dans la galerie afin de mettre à jour les réglages nécessaires." 405 405 406 #: ../lib/CataBlog.class.php:22 06406 #: ../lib/CataBlog.class.php:2234 407 407 #, php-format 408 408 msgid "CataBlog %s LightBox Styles | %s" 409 409 msgstr "Fenêtre de styles %s de l'extension | %s" 410 410 411 #: ../lib/CataBlog.class.php:22 28411 #: ../lib/CataBlog.class.php:2256 412 412 msgid "You may also press "P" or the left arrow on your keyboard" 413 413 msgstr "Vous pouvez également appuyer sur "P" ou sur la flèche gauche de votre clavier" 414 414 415 #: ../lib/CataBlog.class.php:22 29415 #: ../lib/CataBlog.class.php:2257 416 416 msgid "You may also press "N" or the right arrow on your keyboard" 417 417 msgstr "Vous pouvez également appuyer sur "N" ou sur la flèche droite de votre clavier" 418 418 419 #: ../lib/CataBlog.class.php:22 30419 #: ../lib/CataBlog.class.php:2258 420 420 msgid "Close LightBox Now" 421 421 msgstr "Fermer la fenêtre maintenant" 422 422 423 #: ../lib/CataBlog.class.php:22 31423 #: ../lib/CataBlog.class.php:2259 424 424 msgid "PREV" 425 425 msgstr "Précédent" 426 426 427 #: ../lib/CataBlog.class.php:22 32427 #: ../lib/CataBlog.class.php:2260 428 428 msgid "NEXT" 429 429 msgstr "Suivant" 430 430 431 #: ../lib/CataBlog.class.php:22 33431 #: ../lib/CataBlog.class.php:2261 432 432 msgid "CLOSE" 433 433 msgstr "Fermer" 434 434 435 #: ../lib/CataBlog.class.php:22 37435 #: ../lib/CataBlog.class.php:2265 436 436 #, php-format 437 437 msgid "CataBlog %s LightBox JavaScript | %s" 438 438 msgstr "CataBlog %s la LightBox Javascript | %s" 439 439 440 #: ../lib/CataBlog.class.php:22 39440 #: ../lib/CataBlog.class.php:2267 441 441 msgid "End CataBlog LightBox JavaScript" 442 442 msgstr "Ferme la fenêtre Javascript de l'extension" 443 443 444 #: ../lib/CataBlog.class.php:23 55444 #: ../lib/CataBlog.class.php:2386 445 445 msgid "You must use the id attribute in the catablog_gallery Shortcode" 446 446 msgstr "" 447 447 448 #: ../lib/CataBlog.class.php:2 372448 #: ../lib/CataBlog.class.php:2406 449 449 #, php-format 450 450 msgid "Could not find a CataBlog Gallery with id %s" … … 452 452 453 453 #: ../lib/CataBlog.class.php:2455 454 #, php-format 455 msgid "%s to %s of %s" 456 msgstr "%s à %s sur %s" 457 458 #: ../lib/CataBlog.class.php:2591 454 #: ../lib/CataBlog.class.php:2841 455 #: ../lib/CataBlog.class.php:3016 456 msgid "Previous" 457 msgstr "Précédent" 458 459 #: ../lib/CataBlog.class.php:2456 460 #: ../lib/CataBlog.class.php:2842 461 #: ../lib/CataBlog.class.php:3017 462 msgid "Next" 463 msgstr "Suivant" 464 465 #: ../lib/CataBlog.class.php:2614 459 466 #, php-format 460 467 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 461 468 msgstr "Erreur du Thème CataBlog : Le thème de la boutique n'existe pas. Veuillez vous assurer qu'un fichier nommé '%s.htm' existe dans le dossier <code>wp-content/uploads/catablog/templates</code>." 462 469 463 #: ../lib/CataBlog.class.php:26 14470 #: ../lib/CataBlog.class.php:2637 464 471 #, php-format 465 472 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 466 473 msgstr "Erreur dans l'utilisation des balises de l'extension : l'attribut associé à cette balise pointe sur un fichier qui n'existe pas. Veuillez vérifier qu'un fichier nommé '%s.htm' existe dans les vues de ce dossier." 467 474 468 #: ../lib/CataBlog.class.php:26 15475 #: ../lib/CataBlog.class.php:2638 469 476 msgid "Learn More" 470 477 msgstr "En savoir plus" 471 478 472 #: ../lib/CataBlog.class.php:26 67479 #: ../lib/CataBlog.class.php:2690 473 480 msgid "CataBlog Error:" 474 481 msgstr "Erreur CataBlog :" 475 482 476 #: ../lib/CataBlog.class.php:26 69483 #: ../lib/CataBlog.class.php:2692 477 484 #, php-format 478 485 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 479 486 msgstr "L'utilisation des Catégories CataBlog requiert l'activation des %sOptions Publiques CataBlog%s" 480 487 481 #: ../lib/CataBlog.class.php:2 689488 #: ../lib/CataBlog.class.php:2712 482 489 msgid "Select Category" 483 490 msgstr "Sélectionnez une Catégorie" 484 491 485 #: ../lib/CataBlog.class.php:2 783492 #: ../lib/CataBlog.class.php:2806 486 493 msgid "The CataBlog Upload Directory cannot be written. " 487 494 msgstr "Les dossiers d'envoi de fichiers de CataBlog ne sont pas accessible en écriture." 488 495 489 #: ../lib/CataBlog.class.php:2 783490 #: ../lib/CataBlog.class.php:2 788491 #: ../lib/CataBlog.class.php: 2988496 #: ../lib/CataBlog.class.php:2806 497 #: ../lib/CataBlog.class.php:2811 498 #: ../lib/CataBlog.class.php:3011 492 499 msgid "Please check your server file permissions and apache configuration." 493 500 msgstr "Veuillez vérifier les permissions liés aux fichiers ainsi que la configuration de votre serveur apache." 494 501 495 #: ../lib/CataBlog.class.php:2 788502 #: ../lib/CataBlog.class.php:2811 496 503 msgid "The CataBlog Templates Directory cannot be written. " 497 504 msgstr "Les dossiers d'envoi de fichiers ne sont pas accessible en écriture." 498 505 499 #: ../lib/CataBlog.class.php:2 794506 #: ../lib/CataBlog.class.php:2817 500 507 #, php-format 501 508 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 502 509 msgstr "Les options et dossiers de l'extension ont été correctement mis à jour. Veuillez %sactualiser maintenant%s" 503 510 504 #: ../lib/CataBlog.class.php:2818 505 #: ../lib/CataBlog.class.php:2993 506 msgid "Previous" 507 msgstr "Précédent" 508 509 #: ../lib/CataBlog.class.php:2819 510 #: ../lib/CataBlog.class.php:2994 511 msgid "Next" 512 msgstr "Suivant" 513 514 #: ../lib/CataBlog.class.php:2875 511 #: ../lib/CataBlog.class.php:2898 515 512 #, php-format 516 513 msgid "There was an error creating the default term: %s" 517 514 msgstr "Erreur lors de la création du contrat par défaut : %s" 518 515 519 #: ../lib/CataBlog.class.php:29 10516 #: ../lib/CataBlog.class.php:2933 520 517 msgid "CataBlog options and directories have been successfully upgraded." 521 518 msgstr "Les options et dossiers de l'extension ont été correctement mis à jour." 522 519 523 #: ../lib/CataBlog.class.php: 2988520 #: ../lib/CataBlog.class.php:3011 524 521 msgid "The New CataBlog Templates cannot be written. " 525 522 msgstr "Le Nouveau Template CataBlog ne peut être créé." 526 523 527 #: ../lib/CataBlog.class.php:31 75524 #: ../lib/CataBlog.class.php:3198 528 525 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 529 526 msgstr "Le fichier CSV envoyé n'a pu être analysé, veuillez vérifier que son contenu est conforme." 530 527 531 #: ../lib/CataBlog.class.php:32 16528 #: ../lib/CataBlog.class.php:3239 532 529 #, php-format 533 530 msgid "There was an error parsing your CSV file on lines: %s." 534 531 msgstr "Une erreur a été rencontrée lors de la génération du fichier CSV aux ligne : %s." 535 532 536 #: ../lib/CataBlog.class.php:32 63537 #: ../lib/CataBlog.class.php:33 06538 #: ../lib/CataBlog.class.php:33 10539 #: ../lib/CataBlog.class.php:33 13533 #: ../lib/CataBlog.class.php:3286 534 #: ../lib/CataBlog.class.php:3329 535 #: ../lib/CataBlog.class.php:3333 536 #: ../lib/CataBlog.class.php:3336 540 537 msgid "Error:" 541 538 msgstr "Erreur :" 542 539 543 #: ../lib/CataBlog.class.php:3 277540 #: ../lib/CataBlog.class.php:3300 544 541 msgid "Success:" 545 542 msgstr "Succès :" 546 543 547 #: ../lib/CataBlog.class.php:3 277544 #: ../lib/CataBlog.class.php:3300 548 545 #, php-format 549 546 msgid " %s inserted into catalog categories." 550 547 msgstr "%s inséré dans l'ensemble des catégories." 551 548 552 #: ../lib/CataBlog.class.php:3 285549 #: ../lib/CataBlog.class.php:3308 553 550 msgid "All New Categories Created" 554 551 msgstr "Toutes les catégories ont été créées" 555 552 556 #: ../lib/CataBlog.class.php:3 289553 #: ../lib/CataBlog.class.php:3312 557 554 msgid "No New Categories Created" 558 555 msgstr "Pas de nouvelle catégorie créée" 559 556 560 #: ../lib/CataBlog.class.php:33 04561 #: ../lib/CataBlog.class.php:33 58557 #: ../lib/CataBlog.class.php:3327 558 #: ../lib/CataBlog.class.php:3381 562 559 msgid "Insert:" 563 560 msgstr "Insérer :" 564 561 565 #: ../lib/CataBlog.class.php:33 04566 #: ../lib/CataBlog.class.php:33 58562 #: ../lib/CataBlog.class.php:3327 563 #: ../lib/CataBlog.class.php:3381 567 564 #, php-format 568 565 msgid " %s inserted into the database." 569 566 msgstr "%s inséré dans la base de données." 570 567 571 #: ../lib/CataBlog.class.php:33 06568 #: ../lib/CataBlog.class.php:3329 572 569 #, php-format 573 570 msgid " %s was not inserted into the database." 574 571 msgstr "%s n'a pas été inséré dans la base de données." 575 572 576 #: ../lib/CataBlog.class.php:33 10573 #: ../lib/CataBlog.class.php:3333 577 574 msgid "Item had no title and could not be made." 578 575 msgstr "L'élément n'a pas de titre et ne peut donc être créé." 579 576 580 #: ../lib/CataBlog.class.php:33 13577 #: ../lib/CataBlog.class.php:3336 581 578 msgid "Item had no primary image name and could not be made." 582 579 msgstr "L'élément n'a pas d'image prencipale et ne peut donc être créé." 583 580 584 #: ../lib/CataBlog.class.php:33 55581 #: ../lib/CataBlog.class.php:3378 585 582 msgid "Update:" 586 583 msgstr "Mise à jour :" 587 584 588 #: ../lib/CataBlog.class.php:33 55585 #: ../lib/CataBlog.class.php:3378 589 586 #, php-format 590 587 msgid " %s updated in database." 591 588 msgstr "%s mis à jour dans la base de données." 592 589 593 #: ../lib/CataBlog.class.php:3 384590 #: ../lib/CataBlog.class.php:3407 594 591 #, php-format 595 592 msgid "%s Catalog Items Inserted" 596 593 msgstr "%s Objets Insérés dans le Catalogue." 597 594 598 #: ../lib/CataBlog.class.php:34 49595 #: ../lib/CataBlog.class.php:3472 599 596 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 600 597 msgstr "Le taille du fichier envoyé dépasse la taille maximum spécifiée dans la configuration de PHP." 601 598 602 #: ../lib/CataBlog.class.php:34 52599 #: ../lib/CataBlog.class.php:3475 603 600 msgid "Upload File Exceeded The HTML Form's Max File Size." 604 601 msgstr "La taille du fichier envoyé dépasse la taille maximum des formulaires HTML." 605 602 606 #: ../lib/CataBlog.class.php:34 55603 #: ../lib/CataBlog.class.php:3478 607 604 msgid "File Only Partially Uploaded, Please Try Again." 608 605 msgstr "Le fichier n'a pas été envoyé intégralement. Veuillez essayer de nouveau." 609 606 610 #: ../lib/CataBlog.class.php:34 58607 #: ../lib/CataBlog.class.php:3481 611 608 msgid "No File Selected For Upload. Please Resubmit The Form." 612 609 msgstr "Aucun fichier ç envoyer sélectionné. Veuillez envoyer de nouveau le formulaire." 613 610 614 #: ../lib/CataBlog.class.php:34 61611 #: ../lib/CataBlog.class.php:3484 615 612 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 616 613 msgstr "La configuration PHP de votre serveur ne possède pas de dossiers pour les fichiers temporaires, veuillez contacter l'administrateur." 617 614 618 #: ../lib/CataBlog.class.php:34 64615 #: ../lib/CataBlog.class.php:3487 619 616 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 620 617 msgstr "La configuration PHP de votre serveur ne permet pas l'écriture sur le disque dur. Veuillez contacter l'administrateur." 621 618 622 #: ../lib/CataBlog.class.php:34 67619 #: ../lib/CataBlog.class.php:3490 623 620 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 624 621 msgstr "Une extension PHP perturbe l'application des exceptions concernant l'envoi de fichiers. Veuillez contacter l'administrateur." 625 622 626 #: ../lib/CataBlog.class.php:34 70623 #: ../lib/CataBlog.class.php:3493 627 624 msgid "An Unknown Upload Error Has Occurred" 628 625 msgstr "Une erreur incinnue est apparue lors de l'envoi." … … 640 637 msgstr "L'image n'a pu être envoyée au serveur, veuilles actualiser la page." 641 638 642 #: ../lib/catablog.upload.php:112 643 #: ../templates/admin-edit.php:77 644 #: ../templates/admin-gallery-edit.php:39 645 msgid "Save Changes" 646 msgstr "Enregistrer les changements" 647 648 #: ../lib/CataBlogDirectory.class.php:12 649 #: ../lib/CataBlogDirectory.class.php:109 650 msgid "Could not open directory." 651 msgstr "Impossible d'ouvrir le dossier de destination." 652 653 #: ../lib/CataBlogGallery.class.php:187 654 #, fuzzy 655 msgid "A gallery must have a title of at least one alphanumeric character." 656 msgstr "Une image doit comporter un titre comprenant un caractère alphanumérique au minimum." 657 658 #: ../lib/CataBlogGallery.class.php:192 659 #, fuzzy 660 msgid "A gallery title can not be more then 200 characters long." 661 msgstr "Le titre d'une image ne peut dépasser 200 caractères." 662 663 #: ../lib/CataBlogItem.class.php:354 664 msgid "An item must have an image associated with it." 665 msgstr ".Un élément doit impérativement être associé à une image primaire" 666 667 #: ../lib/CataBlogItem.class.php:360 668 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 669 msgstr "Impossible de copier l'image sur le serveur, merci de bien vouloir vérifier que le dossier de destination est accéssible en écriture." 670 671 #: ../lib/CataBlogItem.class.php:365 672 msgid "An item must have a title of at least one alphanumeric character." 673 msgstr "Une image doit comporter un titre comprenant un caractère alphanumérique au minimum." 674 675 #: ../lib/CataBlogItem.class.php:370 676 msgid "An item's title can not be more then 200 characters long." 677 msgstr "Le titre d'une image ne peut dépasser 200 caractères." 678 679 #: ../lib/CataBlogItem.class.php:375 680 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 681 msgstr "La date associée à une image doit correspondre au format de date MySQL : YYYY-MM-DD HH:MM:SS" 682 683 #: ../lib/CataBlogItem.class.php:383 684 msgid "An item's date must be an actual day on the gregorian calendar." 685 msgstr "La date d'une image doit être un jour du calendrier grégorien." 686 687 #: ../lib/CataBlogItem.class.php:388 688 msgid "An item's date hour must be below twenty-four." 689 msgstr "L'heure associée à une image doit être inférieure à vingt quatre." 690 691 #: ../lib/CataBlogItem.class.php:393 692 msgid "An item's order value must be a positive integer." 693 msgstr "Le numéro associé à une image doit être un entier positif." 694 695 #: ../lib/CataBlogItem.class.php:400 696 msgid "An item's price must be a positive number." 697 msgstr "Le prix d'une image doit être un nombre positif." 698 699 #: ../lib/CataBlogItem.class.php:423 700 #: ../lib/CataBlogItem.class.php:611 701 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 702 msgstr "L'image ne peut être affichée car son format n'est pas supporté. Veuillez n'utiliser que les formats JPEG, GIF et PNG." 703 704 #: ../lib/CataBlogItem.class.php:436 705 #: ../lib/CataBlogItem.class.php:598 706 msgid "Can not write uploaded image to server, your storage space is exhausted." 707 msgstr "Impossible de copier l'image sur le serveur, l'espace disque est insuffisant." 708 709 #: ../lib/CataBlogItem.class.php:437 710 #: ../lib/CataBlogItem.class.php:599 711 msgid "Please delete some media files to free up space and try again." 712 msgstr "Merci de bien vouloir supprimer certaines images afin de libérer de l'espace puis de réessayer." 713 714 #: ../lib/CataBlogItem.class.php:438 715 #: ../lib/CataBlogItem.class.php:600 716 #, php-format 717 msgid "You have %sMB of available space on your server and your image is %sMB." 718 msgstr "Il vous reste %sMB d'espace disponible sur votre serveur et votre image fait %sMB." 719 720 #: ../lib/CataBlogItem.class.php:528 721 msgid "Could not set categories, please try again." 722 msgstr "Impossible de définir les catégories, veuillez réessayer." 723 724 #: ../lib/CataBlogItem.class.php:655 725 #: ../lib/CataBlogItem.class.php:716 726 #, php-format 727 msgid "Original image file missing, could not be located at %s" 728 msgstr "Fichier original manquant, l'image ne peut être chargée à l'emplacement %s" 729 730 #: ../lib/CataBlogItem.class.php:662 731 #: ../lib/CataBlogItem.class.php:724 732 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 733 msgstr "Les dimensions de l'image d'origine sont inférieures à 1px. PHP ne peut lire le fichier original." 734 735 #: ../lib/CataBlogItem.class.php:691 736 #: ../lib/CataBlogItem.class.php:738 737 msgid "Original image could not be loaded because it is an unsupported format." 738 msgstr "L'image ne peut être chargée car son format n'est pas supporté." 739 740 #: ../lib/CataBlogWidget.class.php:14 741 msgid "Entries from your CataBlog Library" 742 msgstr "Entrées provenant de votre Galerie CataBlog" 743 744 #: ../lib/CataBlogWidget.class.php:15 745 msgid "CataBlog Catalog" 746 msgstr "Catalogue CataBlog" 747 748 #: ../lib/CataBlogWidget.class.php:50 749 #: ../templates/admin-galleries.php:70 750 #: ../templates/admin-galleries.php:84 751 msgid "Date" 752 msgstr "Date" 753 754 #: ../lib/CataBlogWidget.class.php:51 755 msgid "Order" 756 msgstr "Commande" 757 639 #: ../lib/catablog.upload.php:120 758 640 #: ../lib/CataBlogWidget.class.php:52 759 641 #: ../templates/admin-edit.php:57 … … 764 646 msgstr "Titre" 765 647 648 #: ../lib/catablog.upload.php:123 649 #: ../lib/CataBlogItem.class.php:365 650 msgid "An item must have a title of at least one alphanumeric character." 651 msgstr "Une image doit comporter un titre comprenant un caractère alphanumérique au minimum." 652 653 #: ../lib/catablog.upload.php:127 654 #: ../templates/admin-galleries.php:61 655 #: ../templates/admin-galleries.php:81 656 #: ../templates/admin-gallery-edit.php:17 657 msgid "Description" 658 msgstr "Description" 659 660 #: ../lib/catablog.upload.php:142 661 #: ../lib/CataBlogItem.class.php:400 662 msgid "An item's price must be a positive number." 663 msgstr "Le prix d'une image doit être un nombre positif." 664 665 #: ../lib/catablog.upload.php:145 666 #: ../lib/CataBlogItem.class.php:393 667 msgid "An item's order value must be a positive integer." 668 msgstr "Le numéro associé à une image doit être un entier positif." 669 670 #: ../lib/catablog.upload.php:154 671 #: ../templates/admin-edit.php:77 672 #: ../templates/admin-gallery-edit.php:39 673 msgid "Save Changes" 674 msgstr "Enregistrer les changements" 675 676 #: ../lib/CataBlogDirectory.class.php:12 677 #: ../lib/CataBlogDirectory.class.php:109 678 msgid "Could not open directory." 679 msgstr "Impossible d'ouvrir le dossier de destination." 680 681 #: ../lib/CataBlogGallery.class.php:187 682 #, fuzzy 683 msgid "A gallery must have a title of at least one alphanumeric character." 684 msgstr "Une image doit comporter un titre comprenant un caractère alphanumérique au minimum." 685 686 #: ../lib/CataBlogGallery.class.php:192 687 #, fuzzy 688 msgid "A gallery title can not be more then 200 characters long." 689 msgstr "Le titre d'une image ne peut dépasser 200 caractères." 690 691 #: ../lib/CataBlogItem.class.php:354 692 msgid "An item must have an image associated with it." 693 msgstr ".Un élément doit impérativement être associé à une image primaire" 694 695 #: ../lib/CataBlogItem.class.php:360 696 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 697 msgstr "Impossible de copier l'image sur le serveur, merci de bien vouloir vérifier que le dossier de destination est accéssible en écriture." 698 699 #: ../lib/CataBlogItem.class.php:370 700 msgid "An item's title can not be more then 200 characters long." 701 msgstr "Le titre d'une image ne peut dépasser 200 caractères." 702 703 #: ../lib/CataBlogItem.class.php:375 704 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 705 msgstr "La date associée à une image doit correspondre au format de date MySQL : YYYY-MM-DD HH:MM:SS" 706 707 #: ../lib/CataBlogItem.class.php:383 708 msgid "An item's date must be an actual day on the gregorian calendar." 709 msgstr "La date d'une image doit être un jour du calendrier grégorien." 710 711 #: ../lib/CataBlogItem.class.php:388 712 msgid "An item's date hour must be below twenty-four." 713 msgstr "L'heure associée à une image doit être inférieure à vingt quatre." 714 715 #: ../lib/CataBlogItem.class.php:423 716 #: ../lib/CataBlogItem.class.php:600 717 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 718 msgstr "L'image ne peut être affichée car son format n'est pas supporté. Veuillez n'utiliser que les formats JPEG, GIF et PNG." 719 720 #: ../lib/CataBlogItem.class.php:436 721 #: ../lib/CataBlogItem.class.php:587 722 msgid "Can not write uploaded image to server, your storage space is exhausted." 723 msgstr "Impossible de copier l'image sur le serveur, l'espace disque est insuffisant." 724 725 #: ../lib/CataBlogItem.class.php:437 726 #: ../lib/CataBlogItem.class.php:588 727 msgid "Please delete some media files to free up space and try again." 728 msgstr "Merci de bien vouloir supprimer certaines images afin de libérer de l'espace puis de réessayer." 729 730 #: ../lib/CataBlogItem.class.php:438 731 #: ../lib/CataBlogItem.class.php:589 732 #, php-format 733 msgid "You have %sMB of available space on your server and your image is %sMB." 734 msgstr "Il vous reste %sMB d'espace disponible sur votre serveur et votre image fait %sMB." 735 736 #: ../lib/CataBlogItem.class.php:517 737 msgid "Could not set categories, please try again." 738 msgstr "Impossible de définir les catégories, veuillez réessayer." 739 740 #: ../lib/CataBlogItem.class.php:644 741 #: ../lib/CataBlogItem.class.php:712 742 #, php-format 743 msgid "Original image file missing, could not be located at %s" 744 msgstr "Fichier original manquant, l'image ne peut être chargée à l'emplacement %s" 745 746 #: ../lib/CataBlogItem.class.php:651 747 #: ../lib/CataBlogItem.class.php:720 748 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 749 msgstr "Les dimensions de l'image d'origine sont inférieures à 1px. PHP ne peut lire le fichier original." 750 751 #: ../lib/CataBlogItem.class.php:680 752 #: ../lib/CataBlogItem.class.php:734 753 msgid "Original image could not be loaded because it is an unsupported format." 754 msgstr "L'image ne peut être chargée car son format n'est pas supporté." 755 756 #: ../lib/CataBlogWidget.class.php:14 757 msgid "Entries from your CataBlog Library" 758 msgstr "Entrées provenant de votre Galerie CataBlog" 759 760 #: ../lib/CataBlogWidget.class.php:15 761 msgid "CataBlog Catalog" 762 msgstr "Catalogue CataBlog" 763 764 #: ../lib/CataBlogWidget.class.php:50 765 #: ../templates/admin-galleries.php:70 766 #: ../templates/admin-galleries.php:84 767 msgid "Date" 768 msgstr "Date" 769 770 #: ../lib/CataBlogWidget.class.php:51 771 msgid "Order" 772 msgstr "Commande" 773 766 774 #: ../lib/CataBlogWidget.class.php:53 767 775 msgid "Random" … … 1331 1339 msgstr "Dernière page" 1332 1340 1333 #: ../templates/admin-galleries.php:611334 #: ../templates/admin-galleries.php:811335 #: ../templates/admin-gallery-edit.php:171336 msgid "Description"1337 msgstr "Description"1338 1339 1341 #: ../templates/admin-galleries.php:62 1340 1342 #: ../templates/admin-galleries.php:82 … … 1453 1455 1454 1456 #: ../templates/admin-library.php:40 1457 #: ../templates/admin-screen-options-add-new.php:49 1455 1458 #: ../templates/admin-screen-options-galleries.php:56 1456 1459 #: ../templates/admin-screen-options-library.php:56 … … 1538 1541 msgstr "Veuillez tout d'abord sélectionner au moins un objet dans le catalogue." 1539 1542 1540 #: ../templates/admin-library.php:28 71543 #: ../templates/admin-library.php:289 1541 1544 msgid "Are you sure you want to delete multiple items?" 1542 1545 msgstr "Êtes-vous sûr de vouloir supprimer plusieurs éléements?" 1543 1546 1544 #: ../templates/admin-library.php:31 61547 #: ../templates/admin-library.php:318 1545 1548 msgid "Are you sure you want to permanently delete this catalog items?" 1546 1549 msgstr "Êtes-vous sûr de vouloir définitivement supprimer ces objets du catalogue?" … … 1605 1608 msgid "Select Images" 1606 1609 msgstr "Selectionnez des Images" 1610 1611 #: ../templates/admin-new.php:261 1612 #: ../templates/admin-options.php:601 1613 msgid "There are errors, please correct them before saving." 1614 msgstr "Des erreurs ont été trouvées, veuillez les corriger avant d'enregistrer." 1607 1615 1608 1616 #: ../templates/admin-options.php:8 … … 2044 2052 msgstr "ou %sundo les changements %s" 2045 2053 2046 #: ../templates/admin-options.php:6012047 msgid "There are errors, please correct them before saving."2048 msgstr "Des erreurs ont été trouvées, veuillez les corriger avant d'enregistrer."2049 2050 2054 #: ../templates/admin-options.php:720 2051 2055 #: ../templates/admin-regenerate.php:43 … … 2117 2121 msgstr "Nouvelle Image Trouvée, création des objets en cours %s" 2118 2122 2123 #: ../templates/admin-screen-options-add-new.php:40 2119 2124 #: ../templates/admin-screen-options-galleries.php:41 2120 2125 #: ../templates/admin-screen-options-galleries.php:50 … … 2198 2203 msgid "Please only use underscores, hyphens and alphanumeric characters only." 2199 2204 msgstr "Veuillez n'utilisez que des caractères alphanumériques, des traits d'union et underscores." 2205 2206 #~ msgid "%s to %s of %s" 2207 #~ msgstr "%s à %s sur %s" 2200 2208 2201 2209 #~ msgid "CataBlog Documentation - Making Custom Templates" -
catablog/trunk/localization/catablog-sv_SE.po
r524478 r530481 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-0 3-27 14:24-0800\n"8 "PO-Revision-Date: 2012-0 3-27 14:25-0800\n"7 "POT-Creation-Date: 2012-04-12 16:58-0800\n" 8 "PO-Revision-Date: 2012-04-12 16:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 34 34 msgstr "<strong>CataBlog</strong> kunde inte detektera uppladnings katalogen eller så är den inte skrivbar av PHP. Säkerställ att Apache och PHP har skrivrättigheter för uppladdningsmappen. Kontakta ditt webbhotell eller IT avdelning för mer information. Tack." 35 35 36 #: ../lib/CataBlog.class.php:21 036 #: ../lib/CataBlog.class.php:211 37 37 msgid "Uncategorized" 38 38 msgstr "Okatigoriserad" 39 39 40 #: ../lib/CataBlog.class.php:23 140 #: ../lib/CataBlog.class.php:232 41 41 msgid "CataBlog Item" 42 42 msgstr "CataBlog Artikel" 43 43 44 #: ../lib/CataBlog.class.php:23 644 #: ../lib/CataBlog.class.php:237 45 45 msgid "A Catalog Item, generated by CataBlog." 46 46 msgstr "En CataBlog artikel, skapad av CataBlog" 47 47 48 #: ../lib/CataBlog.class.php:24 748 #: ../lib/CataBlog.class.php:248 49 49 msgid "CataBlog Category" 50 50 msgstr "CataBlog Kategori" 51 51 52 #: ../lib/CataBlog.class.php:25 852 #: ../lib/CataBlog.class.php:259 53 53 #, fuzzy 54 54 msgid "CataBlog Gallery" 55 55 msgstr "CataBlog Kategori" 56 56 57 #: ../lib/CataBlog.class.php:26 357 #: ../lib/CataBlog.class.php:264 58 58 #, fuzzy 59 59 msgid "A Catalog Gallery, generated by CataBlog." 60 60 msgstr "En CataBlog artikel, skapad av CataBlog" 61 61 62 #: ../lib/CataBlog.class.php:3 8962 #: ../lib/CataBlog.class.php:390 63 63 #: ../templates/admin-404.php:11 64 64 msgid "CataBlog Library" 65 65 msgstr "CataBlog Bibliotek" 66 66 67 #: ../lib/CataBlog.class.php:3 8968 #: ../lib/CataBlog.class.php:47 667 #: ../lib/CataBlog.class.php:390 68 #: ../lib/CataBlog.class.php:477 69 69 msgid "Library" 70 70 msgstr "Bibliotek" 71 71 72 #: ../lib/CataBlog.class.php:39 072 #: ../lib/CataBlog.class.php:391 73 73 msgid "Add New CataBlog Entry" 74 74 msgstr "Skapa nytt CataBlog inlägg" 75 75 76 #: ../lib/CataBlog.class.php:39 077 #: ../lib/CataBlog.class.php:47 776 #: ../lib/CataBlog.class.php:391 77 #: ../lib/CataBlog.class.php:478 78 78 msgid "Add New" 79 79 msgstr "Skapa ny" 80 80 81 #: ../lib/CataBlog.class.php:39 181 #: ../lib/CataBlog.class.php:392 82 82 #: ../templates/admin-galleries.php:5 83 83 #, fuzzy … … 85 85 msgstr "CataBlog Kategori" 86 86 87 #: ../lib/CataBlog.class.php:39 188 #: ../lib/CataBlog.class.php:47 887 #: ../lib/CataBlog.class.php:392 88 #: ../lib/CataBlog.class.php:479 89 89 #, fuzzy 90 90 msgid "Galleries" 91 91 msgstr "Kategorier" 92 92 93 #: ../lib/CataBlog.class.php:39 293 #: ../lib/CataBlog.class.php:393 94 94 #, fuzzy 95 95 msgid "CataBlog Templates" 96 96 msgstr "Ta bort CataBlog" 97 97 98 #: ../lib/CataBlog.class.php:39 299 #: ../lib/CataBlog.class.php:4 7998 #: ../lib/CataBlog.class.php:393 99 #: ../lib/CataBlog.class.php:480 100 100 #, fuzzy 101 101 msgid "Templates" 102 102 msgstr "Mall" 103 103 104 #: ../lib/CataBlog.class.php:39 3104 #: ../lib/CataBlog.class.php:394 105 105 msgid "CataBlog Options" 106 106 msgstr "CataBlog alternativ" 107 107 108 #: ../lib/CataBlog.class.php:39 3109 #: ../lib/CataBlog.class.php:48 0108 #: ../lib/CataBlog.class.php:394 109 #: ../lib/CataBlog.class.php:481 110 110 msgid "Options" 111 111 msgstr "Alternativ" 112 112 113 #: ../lib/CataBlog.class.php:39 4113 #: ../lib/CataBlog.class.php:395 114 114 #: ../templates/admin-about.php:4 115 115 msgid "About CataBlog" 116 116 msgstr "Om CataBlog" 117 117 118 #: ../lib/CataBlog.class.php:39 4119 #: ../lib/CataBlog.class.php:48 1118 #: ../lib/CataBlog.class.php:395 119 #: ../lib/CataBlog.class.php:482 120 120 msgid "About" 121 121 msgstr "Om" 122 122 123 #: ../lib/CataBlog.class.php:46 1123 #: ../lib/CataBlog.class.php:462 124 124 #: ../templates/admin-edit.php:4 125 125 msgid "Edit CataBlog Entry" 126 126 msgstr "Ändra CataBlog inlägg" 127 127 128 #: ../lib/CataBlog.class.php:47 5128 #: ../lib/CataBlog.class.php:476 129 129 #: ../templates/admin-discfull.php:22 130 130 msgid "CataBlog" 131 131 msgstr "CataBlog" 132 132 133 #: ../lib/CataBlog.class.php:48 4133 #: ../lib/CataBlog.class.php:485 134 134 msgid "CataBlog Entry" 135 135 msgstr "CataBlog inlägg" 136 136 137 #: ../lib/CataBlog.class.php:66 4138 #: ../lib/CataBlog.class.php:70 7139 #: ../lib/CataBlog.class.php:117 4137 #: ../lib/CataBlog.class.php:665 138 #: ../lib/CataBlog.class.php:708 139 #: ../lib/CataBlog.class.php:1175 140 140 msgid "Changes Saved Successfully." 141 141 msgstr "Ändringar sparades." 142 142 143 #: ../lib/CataBlog.class.php:66 7143 #: ../lib/CataBlog.class.php:668 144 144 msgid "Catalog Item Deleted Successfully." 145 145 msgstr "Katalog artikel togs bort." 146 146 147 #: ../lib/CataBlog.class.php:67 0147 #: ../lib/CataBlog.class.php:671 148 148 msgid "Could Not Delete Item Because ID was non existent." 149 149 msgstr "Kunde inte ta bort artikel för att ID:et inte finns." 150 150 151 #: ../lib/CataBlog.class.php:67 3151 #: ../lib/CataBlog.class.php:674 152 152 msgid "Could not verify bulk edit action nonce, please refresh page and try again." 153 153 msgstr "Kunde inte verifiera gruppredigering för tillfället, var god och uppdatera sidan och försök igen." 154 154 155 #: ../lib/CataBlog.class.php:67 6155 #: ../lib/CataBlog.class.php:677 156 156 msgid "Bulk categories edit performed successfully." 157 157 msgstr "Grupp ändring av kategorier lyckades." 158 158 159 #: ../lib/CataBlog.class.php:6 79159 #: ../lib/CataBlog.class.php:680 160 160 msgid "Bulk delete performed successfully." 161 161 msgstr "Lyckades göra en gruppborttagning." 162 162 163 #: ../lib/CataBlog.class.php:68 2163 #: ../lib/CataBlog.class.php:683 164 164 msgid "Reset all data successfully." 165 165 msgstr "Återställt all data." 166 166 167 #: ../lib/CataBlog.class.php:68 5167 #: ../lib/CataBlog.class.php:686 168 168 #, fuzzy 169 169 msgid "Catalog items added to Gallery successfully." 170 170 msgstr "Katalog artikel togs bort." 171 171 172 #: ../lib/CataBlog.class.php:68 8172 #: ../lib/CataBlog.class.php:689 173 173 msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again." 174 174 msgstr "" 175 175 176 #: ../lib/CataBlog.class.php:69 1176 #: ../lib/CataBlog.class.php:692 177 177 #, fuzzy 178 178 msgid "Could not validate the gallery, please modify the gallery and try again." 179 179 msgstr "Kunde inte verifiera gruppredigering för tillfället, var god och uppdatera sidan och försök igen." 180 180 181 #: ../lib/CataBlog.class.php:71 1181 #: ../lib/CataBlog.class.php:712 182 182 msgid "View Now" 183 183 msgstr "Se nu" 184 184 185 #: ../lib/CataBlog.class.php:77 4185 #: ../lib/CataBlog.class.php:775 186 186 #, fuzzy 187 187 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 188 188 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 189 189 190 #: ../lib/CataBlog.class.php:78 2190 #: ../lib/CataBlog.class.php:783 191 191 msgid "CataBlog Options Saved" 192 192 msgstr "CataBlog alternativ sparade" 193 193 194 #: ../lib/CataBlog.class.php:83 5194 #: ../lib/CataBlog.class.php:836 195 195 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 196 196 msgstr "Var god låt renderingen nedan avslutas innan du navigerar dig ifrån sidan" 197 197 198 #: ../lib/CataBlog.class.php:85 3199 #: ../lib/CataBlog.class.php:90 4200 #: ../lib/CataBlog.class.php:90 7201 #: ../lib/CataBlog.class.php:112 5202 #: ../lib/CataBlog.class.php:118 0198 #: ../lib/CataBlog.class.php:854 199 #: ../lib/CataBlog.class.php:905 200 #: ../lib/CataBlog.class.php:908 201 #: ../lib/CataBlog.class.php:1126 202 #: ../lib/CataBlog.class.php:1181 203 203 msgid "Form Validation Error. Please reload the page and try again." 204 204 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 205 205 206 #: ../lib/CataBlog.class.php:89 8206 #: ../lib/CataBlog.class.php:899 207 207 #, fuzzy 208 208 msgid "Template Changes Saved Successfully." 209 209 msgstr "Ändringar sparades." 210 210 211 #: ../lib/CataBlog.class.php:90 1211 #: ../lib/CataBlog.class.php:902 212 212 #, fuzzy 213 213 msgid "Template Created Successfully." 214 214 msgstr "Termen borttagen." 215 215 216 #: ../lib/CataBlog.class.php:91 0216 #: ../lib/CataBlog.class.php:911 217 217 #, php-format 218 218 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 219 219 msgstr "" 220 220 221 #: ../lib/CataBlog.class.php:91 3221 #: ../lib/CataBlog.class.php:914 222 222 msgid "File Creation Error. A template already exists with that name." 223 223 msgstr "" 224 224 225 #: ../lib/CataBlog.class.php:91 6225 #: ../lib/CataBlog.class.php:917 226 226 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 227 227 msgstr "" 228 228 229 #: ../lib/CataBlog.class.php:998230 229 #: ../lib/CataBlog.class.php:999 231 230 #: ../lib/CataBlog.class.php:1000 231 #: ../lib/CataBlog.class.php:1001 232 232 msgid "not present" 233 233 msgstr "inte närvarande" 234 234 235 #: ../lib/CataBlog.class.php:11 19235 #: ../lib/CataBlog.class.php:1120 236 236 #, fuzzy 237 237 msgid "Gallery Created Successfully." 238 238 msgstr "Termen borttagen." 239 239 240 #: ../lib/CataBlog.class.php:112 2240 #: ../lib/CataBlog.class.php:1123 241 241 #, fuzzy 242 242 msgid "Form Validation Error. Please check your gallery title and try again." 243 243 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 244 244 245 #: ../lib/CataBlog.class.php:112 8245 #: ../lib/CataBlog.class.php:1129 246 246 #, fuzzy 247 247 msgid "Gallery Deleted Successfully." 248 248 msgstr "Katalog artikel togs bort." 249 249 250 #: ../lib/CataBlog.class.php:113 1250 #: ../lib/CataBlog.class.php:1132 251 251 #, fuzzy 252 252 msgid "Could Not Delete Gallery Because ID was non existent." 253 253 msgstr "Kunde inte ta bort artikel för att ID:et inte finns." 254 254 255 #: ../lib/CataBlog.class.php:113 4255 #: ../lib/CataBlog.class.php:1135 256 256 #, fuzzy 257 257 msgid "Multiple Galleries Deleted Successfully." 258 258 msgstr "Katalog artikel togs bort." 259 259 260 #: ../lib/CataBlog.class.php:117 7260 #: ../lib/CataBlog.class.php:1178 261 261 #, fuzzy 262 262 msgid "Form Validation Error: Please make sure your title is at least one character." 263 263 msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen." 264 264 265 #: ../lib/CataBlog.class.php:131 5265 #: ../lib/CataBlog.class.php:1316 266 266 msgid "The file you selected was to large or you didn't select anything at all, please try again." 267 267 msgstr "Filen som du valde var antingen för stor eller så valde du inget, var god prova igen." 268 268 269 #: ../lib/CataBlog.class.php:13 19270 #: ../lib/CataBlog.class.php:137 3271 #: ../lib/CataBlog.class.php:142 5272 #: ../lib/CataBlog.class.php:146 3273 #: ../lib/CataBlog.class.php:159 6269 #: ../lib/CataBlog.class.php:1320 270 #: ../lib/CataBlog.class.php:1374 271 #: ../lib/CataBlog.class.php:1426 272 #: ../lib/CataBlog.class.php:1464 273 #: ../lib/CataBlog.class.php:1597 274 274 msgid "WordPress Nonce Error, please reload the form and try again." 275 275 msgstr "Tillfälligt WordPress problem, var god ladda om sidan och prova igen." 276 276 277 #: ../lib/CataBlog.class.php:137 7277 #: ../lib/CataBlog.class.php:1378 278 278 msgid "full form was not submitted, please try again." 279 279 msgstr "hela formuläret skickades inte, var god prova igen." 280 280 281 #: ../lib/CataBlog.class.php:142 1282 #: ../lib/CataBlog.class.php:14 59281 #: ../lib/CataBlog.class.php:1422 282 #: ../lib/CataBlog.class.php:1460 283 283 msgid "You didn't select anything to upload, please try again." 284 284 msgstr "Du valde inget att ladda upp, var god prova igen." 285 285 286 #: ../lib/CataBlog.class.php:14 29287 #: ../lib/CataBlog.class.php:146 7286 #: ../lib/CataBlog.class.php:1430 287 #: ../lib/CataBlog.class.php:1468 288 288 msgid "No item ID posted, press back arrow and try again." 289 289 msgstr "Inget artikel ID sänt, klicka på tillbaka pilen och prova igen." 290 290 291 #: ../lib/CataBlog.class.php:151 0291 #: ../lib/CataBlog.class.php:1511 292 292 msgid "Please make your selection by checking the boxes in the list below." 293 293 msgstr "Var god gör dit val genom att markera i listan nedan." 294 294 295 #: ../lib/CataBlog.class.php:155 6295 #: ../lib/CataBlog.class.php:1557 296 296 #, php-format 297 297 msgid "Error during set category, could not load item with id %s." 298 298 msgstr "Problem under skapandet av kategorin, kunde inte ladda artiklar med id %s." 299 299 300 #: ../lib/CataBlog.class.php:157 4300 #: ../lib/CataBlog.class.php:1575 301 301 #, php-format 302 302 msgid "Error during bulk delete, could not load item with id %s." 303 303 msgstr "Fel under gruppbortagningen, kunde inte ladda artikel med ID %s." 304 304 305 #: ../lib/CataBlog.class.php:160 5305 #: ../lib/CataBlog.class.php:1606 306 306 msgid "No file was selected for upload, please try again." 307 307 msgstr "Ingen fil vald för att laddas upp, var god försök igen." 308 308 309 #: ../lib/CataBlog.class.php:161 4309 #: ../lib/CataBlog.class.php:1615 310 310 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 311 311 msgstr "Uppladdad XML fil kunde inte analyseras, kolla upp så att filens innehåll är korrekt XML." 312 312 313 #: ../lib/CataBlog.class.php:162 4313 #: ../lib/CataBlog.class.php:1625 314 314 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 315 315 msgstr "Uppladdad fil var inte i korrekt format, var god kolla upp så att filen har xml eller csv som filändelse." 316 316 317 #: ../lib/CataBlog.class.php:169 5317 #: ../lib/CataBlog.class.php:1696 318 318 msgid "The CataBlog upload directories have been unlocked." 319 319 msgstr "CataBlogs uppladdningskataloger är olåsta." 320 320 321 #: ../lib/CataBlog.class.php:169 8322 #: ../lib/CataBlog.class.php:171 1321 #: ../lib/CataBlog.class.php:1699 322 #: ../lib/CataBlog.class.php:1712 323 323 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 324 324 msgstr "Kunde inte låsa/låsa upp katalogen. Använder du en UNIX baserad server?" 325 325 326 #: ../lib/CataBlog.class.php:170 8326 #: ../lib/CataBlog.class.php:1709 327 327 msgid "The CataBlog upload directories have been locked." 328 328 msgstr "CataBlog uppladdningskataloger är låsta." 329 329 330 #: ../lib/CataBlog.class.php:18 27330 #: ../lib/CataBlog.class.php:1843 331 331 msgid "micro save successful" 332 332 msgstr "" 333 333 334 #: ../lib/CataBlog.class.php:18 35334 #: ../lib/CataBlog.class.php:1851 335 335 msgid "Cannot save changes because the item id could not be found in the database." 336 336 msgstr "" 337 337 338 #: ../lib/CataBlog.class.php:1 896338 #: ../lib/CataBlog.class.php:1924 339 339 msgid "Screen Options updated successfully." 340 340 msgstr "Skärmalternativ uppdaterades." 341 341 342 #: ../lib/CataBlog.class.php:19 10342 #: ../lib/CataBlog.class.php:1938 343 343 #: ../templates/admin-edit.php:277 344 344 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 345 345 msgstr "Komma, lodrätt streck och reserverade HTML tecken är inte tillåtet i kategorinamn." 346 346 347 #: ../lib/CataBlog.class.php:19 16347 #: ../lib/CataBlog.class.php:1944 348 348 msgid "Please be a little more specific with your category name." 349 349 msgstr "Var lite mer specifik med namnen på dina kategorier." 350 350 351 #: ../lib/CataBlog.class.php:19 29351 #: ../lib/CataBlog.class.php:1957 352 352 msgid "There already is a category with that name." 353 353 msgstr "Det finns redan en kategori med det namnet." 354 354 355 #: ../lib/CataBlog.class.php:19 66355 #: ../lib/CataBlog.class.php:1994 356 356 #, fuzzy 357 357 msgid "Term Edited Successfully" 358 358 msgstr "Termen borttagen." 359 359 360 #: ../lib/CataBlog.class.php:19 69361 #: ../lib/CataBlog.class.php: 1985360 #: ../lib/CataBlog.class.php:1997 361 #: ../lib/CataBlog.class.php:2013 362 362 msgid "Term did not exist, please refresh page and try again." 363 363 msgstr "Termen fanns inte, var god uppdatera sidan och prova igen." 364 364 365 #: ../lib/CataBlog.class.php: 1982365 #: ../lib/CataBlog.class.php:2010 366 366 msgid "Term Removed Successfully." 367 367 msgstr "Termen borttagen." 368 368 369 #: ../lib/CataBlog.class.php:20 36369 #: ../lib/CataBlog.class.php:2064 370 370 msgid "unsupported image size type" 371 371 msgstr "bildtypen stöds inte" 372 372 373 #: ../lib/CataBlog.class.php:20 46373 #: ../lib/CataBlog.class.php:2074 374 374 #, php-format 375 375 msgid "Rendering... %s of %s" 376 376 msgstr "Renderar... %s av %s" 377 377 378 #: ../lib/CataBlog.class.php:20 48378 #: ../lib/CataBlog.class.php:2076 379 379 msgid "Image rendering is now complete." 380 380 msgstr "Bildrendering är klar." 381 381 382 #: ../lib/CataBlog.class.php:2 089382 #: ../lib/CataBlog.class.php:2117 383 383 msgid "error" 384 384 msgstr "fel" 385 385 386 #: ../lib/CataBlog.class.php:2 092386 #: ../lib/CataBlog.class.php:2120 387 387 msgid "sub image deleted successfully" 388 388 msgstr "ersättningsbilden togs bort" 389 389 390 #: ../lib/CataBlog.class.php:21 27390 #: ../lib/CataBlog.class.php:2155 391 391 #, php-format 392 392 msgid "%s library items deleted successfully." 393 393 msgstr "%s biblioteks artiklar togs bort." 394 394 395 #: ../lib/CataBlog.class.php:21 30395 #: ../lib/CataBlog.class.php:2158 396 396 msgid "CataBlog Library Cleared Successfully." 397 397 msgstr "CataBlogs bibliotek rensades." 398 398 399 #: ../lib/CataBlog.class.php:21 43399 #: ../lib/CataBlog.class.php:2171 400 400 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 401 401 msgstr "CataBlogs inställningar, kataloger och villkor har tagits bort." 402 402 403 #: ../lib/CataBlog.class.php:21 44403 #: ../lib/CataBlog.class.php:2172 404 404 msgid "You may now go deactivate CataBlog and nothing will be left behind." 405 405 msgstr "Du kan nu avaktivera CataBlog och inget kommer att var kvar." 406 406 407 #: ../lib/CataBlog.class.php:21 45407 #: ../lib/CataBlog.class.php:2173 408 408 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 409 409 msgstr "Om du vill fortsätta och använda CataBlog måste du gå till biblioteket och ominstallera inställningarna." 410 410 411 #: ../lib/CataBlog.class.php:22 06411 #: ../lib/CataBlog.class.php:2234 412 412 #, php-format 413 413 msgid "CataBlog %s LightBox Styles | %s" 414 414 msgstr "CataBlog %s LightBox stilar | %sl" 415 415 416 #: ../lib/CataBlog.class.php:22 28416 #: ../lib/CataBlog.class.php:2256 417 417 msgid "You may also press "P" or the left arrow on your keyboard" 418 418 msgstr "Du kan också klicka på "P" eller på vänster pilknapp på tangentbordet" 419 419 420 #: ../lib/CataBlog.class.php:22 29420 #: ../lib/CataBlog.class.php:2257 421 421 msgid "You may also press "N" or the right arrow on your keyboard" 422 422 msgstr "Du kan också klicka på "N" eller på höger pilknapp på tangentbordet" 423 423 424 #: ../lib/CataBlog.class.php:22 30424 #: ../lib/CataBlog.class.php:2258 425 425 msgid "Close LightBox Now" 426 426 msgstr "Stäng LightBox nu" 427 427 428 #: ../lib/CataBlog.class.php:22 31428 #: ../lib/CataBlog.class.php:2259 429 429 msgid "PREV" 430 430 msgstr "TDGR" 431 431 432 #: ../lib/CataBlog.class.php:22 32432 #: ../lib/CataBlog.class.php:2260 433 433 msgid "NEXT" 434 434 msgstr "NÄSTA" 435 435 436 #: ../lib/CataBlog.class.php:22 33436 #: ../lib/CataBlog.class.php:2261 437 437 msgid "CLOSE" 438 438 msgstr "STÄNG" 439 439 440 #: ../lib/CataBlog.class.php:22 37440 #: ../lib/CataBlog.class.php:2265 441 441 #, php-format 442 442 msgid "CataBlog %s LightBox JavaScript | %s" 443 443 msgstr "CataBlog %s LightBox JavaScript | %s" 444 444 445 #: ../lib/CataBlog.class.php:22 39445 #: ../lib/CataBlog.class.php:2267 446 446 msgid "End CataBlog LightBox JavaScript" 447 447 msgstr "Slut CataBlog LightBox JavaScript" 448 448 449 #: ../lib/CataBlog.class.php:23 55449 #: ../lib/CataBlog.class.php:2386 450 450 msgid "You must use the id attribute in the catablog_gallery Shortcode" 451 451 msgstr "" 452 452 453 #: ../lib/CataBlog.class.php:2 372453 #: ../lib/CataBlog.class.php:2406 454 454 #, php-format 455 455 msgid "Could not find a CataBlog Gallery with id %s" … … 457 457 458 458 #: ../lib/CataBlog.class.php:2455 459 #, php-format 460 msgid "%s to %s of %s" 461 msgstr "" 462 463 #: ../lib/CataBlog.class.php:2591 459 #: ../lib/CataBlog.class.php:2841 460 #: ../lib/CataBlog.class.php:3016 461 msgid "Previous" 462 msgstr "" 463 464 #: ../lib/CataBlog.class.php:2456 465 #: ../lib/CataBlog.class.php:2842 466 #: ../lib/CataBlog.class.php:3017 467 msgid "Next" 468 msgstr "" 469 470 #: ../lib/CataBlog.class.php:2614 464 471 #, fuzzy, php-format 465 472 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 466 473 msgstr "CataBlog kortkods parameter fel: Mall attributet av denna kortkod pekar mot en fil som inte finns. Var god se till att det finns en fil med namnet '%s.htm' i vykatalogen." 467 474 468 #: ../lib/CataBlog.class.php:26 14475 #: ../lib/CataBlog.class.php:2637 469 476 #, php-format 470 477 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 471 478 msgstr "CataBlog kortkods parameter fel: Mall attributet av denna kortkod pekar mot en fil som inte finns. Var god se till att det finns en fil med namnet '%s.htm' i vykatalogen." 472 479 473 #: ../lib/CataBlog.class.php:26 15480 #: ../lib/CataBlog.class.php:2638 474 481 msgid "Learn More" 475 482 msgstr "Lär dig mer" 476 483 477 #: ../lib/CataBlog.class.php:26 67484 #: ../lib/CataBlog.class.php:2690 478 485 #, fuzzy 479 486 msgid "CataBlog Error:" 480 487 msgstr "CataBlog inlägg" 481 488 482 #: ../lib/CataBlog.class.php:26 69489 #: ../lib/CataBlog.class.php:2692 483 490 #, php-format 484 491 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 485 492 msgstr "" 486 493 487 #: ../lib/CataBlog.class.php:2 689494 #: ../lib/CataBlog.class.php:2712 488 495 #, fuzzy 489 496 msgid "Select Category" 490 497 msgstr "Välj en färg" 491 498 492 #: ../lib/CataBlog.class.php:2 783499 #: ../lib/CataBlog.class.php:2806 493 500 #, fuzzy 494 501 msgid "The CataBlog Upload Directory cannot be written. " 495 502 msgstr "CataBlog uppladdningskataloger är låsta." 496 503 497 #: ../lib/CataBlog.class.php:2 783498 #: ../lib/CataBlog.class.php:2 788499 #: ../lib/CataBlog.class.php: 2988504 #: ../lib/CataBlog.class.php:2806 505 #: ../lib/CataBlog.class.php:2811 506 #: ../lib/CataBlog.class.php:3011 500 507 msgid "Please check your server file permissions and apache configuration." 501 508 msgstr "" 502 509 503 #: ../lib/CataBlog.class.php:2 788510 #: ../lib/CataBlog.class.php:2811 504 511 #, fuzzy 505 512 msgid "The CataBlog Templates Directory cannot be written. " 506 513 msgstr "CataBlog uppladdningskataloger är låsta." 507 514 508 #: ../lib/CataBlog.class.php:2 794515 #: ../lib/CataBlog.class.php:2817 509 516 #, php-format 510 517 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 511 518 msgstr "CataBlogs inställningar och kataloger har blivit installerad. Var god %suppdatera nu%s" 512 519 513 #: ../lib/CataBlog.class.php:2818 514 #: ../lib/CataBlog.class.php:2993 515 msgid "Previous" 516 msgstr "" 517 518 #: ../lib/CataBlog.class.php:2819 519 #: ../lib/CataBlog.class.php:2994 520 msgid "Next" 521 msgstr "" 522 523 #: ../lib/CataBlog.class.php:2875 520 #: ../lib/CataBlog.class.php:2898 524 521 #, php-format 525 522 msgid "There was an error creating the default term: %s" 526 523 msgstr "Ett fel uppstod när grundtermen skulle skapas: %s" 527 524 528 #: ../lib/CataBlog.class.php:29 10525 #: ../lib/CataBlog.class.php:2933 529 526 msgid "CataBlog options and directories have been successfully upgraded." 530 527 msgstr "CataBlogs inställningar och kataloger har uppgraderats." 531 528 532 #: ../lib/CataBlog.class.php: 2988529 #: ../lib/CataBlog.class.php:3011 533 530 #, fuzzy 534 531 msgid "The New CataBlog Templates cannot be written. " 535 532 msgstr "CataBlog uppladdningskataloger är låsta." 536 533 537 #: ../lib/CataBlog.class.php:31 75534 #: ../lib/CataBlog.class.php:3198 538 535 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 539 536 msgstr "Uppladdad CSV fil kunde inte analyseras, kolla så att filformatet är korrekt." 540 537 541 #: ../lib/CataBlog.class.php:32 16538 #: ../lib/CataBlog.class.php:3239 542 539 #, fuzzy, php-format 543 540 msgid "There was an error parsing your CSV file on lines: %s." 544 541 msgstr "Ett fel uppstod när grundtermen skulle skapas: %s" 545 542 546 #: ../lib/CataBlog.class.php:32 63547 #: ../lib/CataBlog.class.php:33 06548 #: ../lib/CataBlog.class.php:33 10549 #: ../lib/CataBlog.class.php:33 13543 #: ../lib/CataBlog.class.php:3286 544 #: ../lib/CataBlog.class.php:3329 545 #: ../lib/CataBlog.class.php:3333 546 #: ../lib/CataBlog.class.php:3336 550 547 msgid "Error:" 551 548 msgstr "Fel:" 552 549 553 #: ../lib/CataBlog.class.php:3 277550 #: ../lib/CataBlog.class.php:3300 554 551 msgid "Success:" 555 552 msgstr "Lyckat:" 556 553 557 #: ../lib/CataBlog.class.php:3 277554 #: ../lib/CataBlog.class.php:3300 558 555 #, php-format 559 556 msgid " %s inserted into catalog categories." 560 557 msgstr "%s tillagt i katalog kategorierna." 561 558 562 #: ../lib/CataBlog.class.php:3 285559 #: ../lib/CataBlog.class.php:3308 563 560 msgid "All New Categories Created" 564 561 msgstr "Alla nya kategorier skapades" 565 562 566 #: ../lib/CataBlog.class.php:3 289563 #: ../lib/CataBlog.class.php:3312 567 564 msgid "No New Categories Created" 568 565 msgstr "Inga nya kategorier skapades" 569 566 570 #: ../lib/CataBlog.class.php:33 04571 #: ../lib/CataBlog.class.php:33 58567 #: ../lib/CataBlog.class.php:3327 568 #: ../lib/CataBlog.class.php:3381 572 569 msgid "Insert:" 573 570 msgstr "Infoga:" 574 571 575 #: ../lib/CataBlog.class.php:33 04576 #: ../lib/CataBlog.class.php:33 58572 #: ../lib/CataBlog.class.php:3327 573 #: ../lib/CataBlog.class.php:3381 577 574 #, php-format 578 575 msgid " %s inserted into the database." 579 576 msgstr "%s fördes in i databasen" 580 577 581 #: ../lib/CataBlog.class.php:33 06578 #: ../lib/CataBlog.class.php:3329 582 579 #, php-format 583 580 msgid " %s was not inserted into the database." 584 581 msgstr "%s infördes inte i databasen." 585 582 586 #: ../lib/CataBlog.class.php:33 10583 #: ../lib/CataBlog.class.php:3333 587 584 msgid "Item had no title and could not be made." 588 585 msgstr "Artikeln hade ingen titel och kunde inte skapas." 589 586 590 #: ../lib/CataBlog.class.php:33 13587 #: ../lib/CataBlog.class.php:3336 591 588 msgid "Item had no primary image name and could not be made." 592 589 msgstr "Artikeln hade inget primärt bildnamn och kunde inte skapas." 593 590 594 #: ../lib/CataBlog.class.php:33 55591 #: ../lib/CataBlog.class.php:3378 595 592 msgid "Update:" 596 593 msgstr "Uppdatera:" 597 594 598 #: ../lib/CataBlog.class.php:33 55595 #: ../lib/CataBlog.class.php:3378 599 596 #, php-format 600 597 msgid " %s updated in database." 601 598 msgstr "%s uppdaterat i databasen." 602 599 603 #: ../lib/CataBlog.class.php:3 384600 #: ../lib/CataBlog.class.php:3407 604 601 #, fuzzy, php-format 605 602 msgid "%s Catalog Items Inserted" 606 603 msgstr "Alla katalog artiklar bearbetades" 607 604 608 #: ../lib/CataBlog.class.php:34 49605 #: ../lib/CataBlog.class.php:3472 609 606 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 610 607 msgstr "Uppladda fil översteg PHP konfigurationens max gräns." 611 608 612 #: ../lib/CataBlog.class.php:34 52609 #: ../lib/CataBlog.class.php:3475 613 610 msgid "Upload File Exceeded The HTML Form's Max File Size." 614 611 msgstr "Uppladda fil översteg HTML formulärets max gräns." 615 612 616 #: ../lib/CataBlog.class.php:34 55613 #: ../lib/CataBlog.class.php:3478 617 614 msgid "File Only Partially Uploaded, Please Try Again." 618 615 msgstr "Filen laddades endast upp delvis, var god försök igen." 619 616 620 #: ../lib/CataBlog.class.php:34 58617 #: ../lib/CataBlog.class.php:3481 621 618 msgid "No File Selected For Upload. Please Resubmit The Form." 622 619 msgstr "Ingen fil valdes för uppladdning. Var god skicka formuläret igen." 623 620 624 #: ../lib/CataBlog.class.php:34 61621 #: ../lib/CataBlog.class.php:3484 625 622 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 626 623 msgstr "Din servers PHP konfiguration har ingen temporär mapp för uppladdning, var god kontakta system administratören." 627 624 628 #: ../lib/CataBlog.class.php:34 64625 #: ../lib/CataBlog.class.php:3487 629 626 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 630 627 msgstr "Din servers PHP konfiguration kan inte skriva till disk, var god kontakta system administratören." 631 628 632 #: ../lib/CataBlog.class.php:34 67629 #: ../lib/CataBlog.class.php:3490 633 630 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 634 631 msgstr "En PHP förlängning blockerar PHP från att tillåta uppladdningar, var god kontakta system administratören." 635 632 636 #: ../lib/CataBlog.class.php:34 70633 #: ../lib/CataBlog.class.php:3493 637 634 msgid "An Unknown Upload Error Has Occurred" 638 635 msgstr "Ett okänt uppladdningsproblem har uppstått" … … 651 648 msgstr "Kunde inte ställa in kategorierna, var god prova igen." 652 649 653 #: ../lib/catablog.upload.php:112 654 #: ../templates/admin-edit.php:77 655 #: ../templates/admin-gallery-edit.php:39 656 msgid "Save Changes" 657 msgstr "Spara ändringar" 658 659 #: ../lib/CataBlogDirectory.class.php:12 660 #: ../lib/CataBlogDirectory.class.php:109 661 msgid "Could not open directory." 662 msgstr "Kunde inte öppna katalogen." 663 664 #: ../lib/CataBlogGallery.class.php:187 665 #, fuzzy 666 msgid "A gallery must have a title of at least one alphanumeric character." 667 msgstr "En artikel måste ha en titel med minst ett alfanumeriskt tecken." 668 669 #: ../lib/CataBlogGallery.class.php:192 670 #, fuzzy 671 msgid "A gallery title can not be more then 200 characters long." 672 msgstr "En artikels titel kan inte vara mer än 200 tecken långt." 673 674 #: ../lib/CataBlogItem.class.php:354 675 msgid "An item must have an image associated with it." 676 msgstr "En artikel måste ha en bild associerad till sig." 677 678 #: ../lib/CataBlogItem.class.php:360 679 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 680 msgstr "Kan inte ladda upp bilden till servern, säkerställ att CataBlog katalogen i Wordpress foldern är skrivbar." 681 682 #: ../lib/CataBlogItem.class.php:365 683 msgid "An item must have a title of at least one alphanumeric character." 684 msgstr "En artikel måste ha en titel med minst ett alfanumeriskt tecken." 685 686 #: ../lib/CataBlogItem.class.php:370 687 msgid "An item's title can not be more then 200 characters long." 688 msgstr "En artikels titel kan inte vara mer än 200 tecken långt." 689 690 #: ../lib/CataBlogItem.class.php:375 691 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 692 msgstr "En artikels datum måste matcha MySQL datumformatet exakt, ÅÅÅÅ-MM-DD TT:MM:SS" 693 694 #: ../lib/CataBlogItem.class.php:383 695 msgid "An item's date must be an actual day on the gregorian calendar." 696 msgstr "En artikels datum måste vara en verklige dag enligt den gregorianska kalendern." 697 698 #: ../lib/CataBlogItem.class.php:388 699 msgid "An item's date hour must be below twenty-four." 700 msgstr "En artikels timme måste vara under 24-timmar." 701 702 #: ../lib/CataBlogItem.class.php:393 703 msgid "An item's order value must be a positive integer." 704 msgstr "En artikels ordningsvärde måste vara ett positivt tal. " 705 706 #: ../lib/CataBlogItem.class.php:400 707 msgid "An item's price must be a positive number." 708 msgstr "En artikels pris måste vara ett positivt nummer." 709 710 #: ../lib/CataBlogItem.class.php:423 711 #: ../lib/CataBlogItem.class.php:611 712 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 713 msgstr "Bilden kunde inte användas eftersom det är ett format som inte stöds. Endast JPEG, GIF eller PNG format." 714 715 #: ../lib/CataBlogItem.class.php:436 716 #: ../lib/CataBlogItem.class.php:598 717 msgid "Can not write uploaded image to server, your storage space is exhausted." 718 msgstr "Kan inte skriva uppladdad bild till servern, finns ingen plats." 719 720 #: ../lib/CataBlogItem.class.php:437 721 #: ../lib/CataBlogItem.class.php:599 722 msgid "Please delete some media files to free up space and try again." 723 msgstr "Var god och ta bort några filer för att skapa mer plats och prova igen." 724 725 #: ../lib/CataBlogItem.class.php:438 726 #: ../lib/CataBlogItem.class.php:600 727 #, php-format 728 msgid "You have %sMB of available space on your server and your image is %sMB." 729 msgstr "Du har %sMB med tillgänglig plats på servern och din bild är %sMB." 730 731 #: ../lib/CataBlogItem.class.php:528 732 msgid "Could not set categories, please try again." 733 msgstr "Kunde inte ställa in kategorierna, var god prova igen." 734 735 #: ../lib/CataBlogItem.class.php:655 736 #: ../lib/CataBlogItem.class.php:716 737 #, php-format 738 msgid "Original image file missing, could not be located at %s" 739 msgstr "Orginalbilden fattas, kunde inte hittas på %s" 740 741 #: ../lib/CataBlogItem.class.php:662 742 #: ../lib/CataBlogItem.class.php:724 743 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 744 msgstr "Orginalbildens dimensioner är mindre än 1px. Troligtvis har inte PHP rätt att läsa orginal filen." 745 746 #: ../lib/CataBlogItem.class.php:691 747 #: ../lib/CataBlogItem.class.php:738 748 msgid "Original image could not be loaded because it is an unsupported format." 749 msgstr "Orginalbilden kunde inte laddas för att filformatet inte stöds." 750 751 #: ../lib/CataBlogWidget.class.php:14 752 #, fuzzy 753 msgid "Entries from your CataBlog Library" 754 msgstr "CataBlog Bibliotek" 755 756 #: ../lib/CataBlogWidget.class.php:15 757 #, fuzzy 758 msgid "CataBlog Catalog" 759 msgstr "CataBlog Kategori" 760 761 #: ../lib/CataBlogWidget.class.php:50 762 #: ../templates/admin-galleries.php:70 763 #: ../templates/admin-galleries.php:84 764 msgid "Date" 765 msgstr "Datum" 766 767 #: ../lib/CataBlogWidget.class.php:51 768 msgid "Order" 769 msgstr "Beställning" 770 650 #: ../lib/catablog.upload.php:120 771 651 #: ../lib/CataBlogWidget.class.php:52 772 652 #: ../templates/admin-edit.php:57 … … 777 657 msgstr "Titel" 778 658 659 #: ../lib/catablog.upload.php:123 660 #: ../lib/CataBlogItem.class.php:365 661 msgid "An item must have a title of at least one alphanumeric character." 662 msgstr "En artikel måste ha en titel med minst ett alfanumeriskt tecken." 663 664 #: ../lib/catablog.upload.php:127 665 #: ../templates/admin-galleries.php:61 666 #: ../templates/admin-galleries.php:81 667 #: ../templates/admin-gallery-edit.php:17 668 msgid "Description" 669 msgstr "Beskrivning" 670 671 #: ../lib/catablog.upload.php:142 672 #: ../lib/CataBlogItem.class.php:400 673 msgid "An item's price must be a positive number." 674 msgstr "En artikels pris måste vara ett positivt nummer." 675 676 #: ../lib/catablog.upload.php:145 677 #: ../lib/CataBlogItem.class.php:393 678 msgid "An item's order value must be a positive integer." 679 msgstr "En artikels ordningsvärde måste vara ett positivt tal. " 680 681 #: ../lib/catablog.upload.php:154 682 #: ../templates/admin-edit.php:77 683 #: ../templates/admin-gallery-edit.php:39 684 msgid "Save Changes" 685 msgstr "Spara ändringar" 686 687 #: ../lib/CataBlogDirectory.class.php:12 688 #: ../lib/CataBlogDirectory.class.php:109 689 msgid "Could not open directory." 690 msgstr "Kunde inte öppna katalogen." 691 692 #: ../lib/CataBlogGallery.class.php:187 693 #, fuzzy 694 msgid "A gallery must have a title of at least one alphanumeric character." 695 msgstr "En artikel måste ha en titel med minst ett alfanumeriskt tecken." 696 697 #: ../lib/CataBlogGallery.class.php:192 698 #, fuzzy 699 msgid "A gallery title can not be more then 200 characters long." 700 msgstr "En artikels titel kan inte vara mer än 200 tecken långt." 701 702 #: ../lib/CataBlogItem.class.php:354 703 msgid "An item must have an image associated with it." 704 msgstr "En artikel måste ha en bild associerad till sig." 705 706 #: ../lib/CataBlogItem.class.php:360 707 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 708 msgstr "Kan inte ladda upp bilden till servern, säkerställ att CataBlog katalogen i Wordpress foldern är skrivbar." 709 710 #: ../lib/CataBlogItem.class.php:370 711 msgid "An item's title can not be more then 200 characters long." 712 msgstr "En artikels titel kan inte vara mer än 200 tecken långt." 713 714 #: ../lib/CataBlogItem.class.php:375 715 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 716 msgstr "En artikels datum måste matcha MySQL datumformatet exakt, ÅÅÅÅ-MM-DD TT:MM:SS" 717 718 #: ../lib/CataBlogItem.class.php:383 719 msgid "An item's date must be an actual day on the gregorian calendar." 720 msgstr "En artikels datum måste vara en verklige dag enligt den gregorianska kalendern." 721 722 #: ../lib/CataBlogItem.class.php:388 723 msgid "An item's date hour must be below twenty-four." 724 msgstr "En artikels timme måste vara under 24-timmar." 725 726 #: ../lib/CataBlogItem.class.php:423 727 #: ../lib/CataBlogItem.class.php:600 728 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 729 msgstr "Bilden kunde inte användas eftersom det är ett format som inte stöds. Endast JPEG, GIF eller PNG format." 730 731 #: ../lib/CataBlogItem.class.php:436 732 #: ../lib/CataBlogItem.class.php:587 733 msgid "Can not write uploaded image to server, your storage space is exhausted." 734 msgstr "Kan inte skriva uppladdad bild till servern, finns ingen plats." 735 736 #: ../lib/CataBlogItem.class.php:437 737 #: ../lib/CataBlogItem.class.php:588 738 msgid "Please delete some media files to free up space and try again." 739 msgstr "Var god och ta bort några filer för att skapa mer plats och prova igen." 740 741 #: ../lib/CataBlogItem.class.php:438 742 #: ../lib/CataBlogItem.class.php:589 743 #, php-format 744 msgid "You have %sMB of available space on your server and your image is %sMB." 745 msgstr "Du har %sMB med tillgänglig plats på servern och din bild är %sMB." 746 747 #: ../lib/CataBlogItem.class.php:517 748 msgid "Could not set categories, please try again." 749 msgstr "Kunde inte ställa in kategorierna, var god prova igen." 750 751 #: ../lib/CataBlogItem.class.php:644 752 #: ../lib/CataBlogItem.class.php:712 753 #, php-format 754 msgid "Original image file missing, could not be located at %s" 755 msgstr "Orginalbilden fattas, kunde inte hittas på %s" 756 757 #: ../lib/CataBlogItem.class.php:651 758 #: ../lib/CataBlogItem.class.php:720 759 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 760 msgstr "Orginalbildens dimensioner är mindre än 1px. Troligtvis har inte PHP rätt att läsa orginal filen." 761 762 #: ../lib/CataBlogItem.class.php:680 763 #: ../lib/CataBlogItem.class.php:734 764 msgid "Original image could not be loaded because it is an unsupported format." 765 msgstr "Orginalbilden kunde inte laddas för att filformatet inte stöds." 766 767 #: ../lib/CataBlogWidget.class.php:14 768 #, fuzzy 769 msgid "Entries from your CataBlog Library" 770 msgstr "CataBlog Bibliotek" 771 772 #: ../lib/CataBlogWidget.class.php:15 773 #, fuzzy 774 msgid "CataBlog Catalog" 775 msgstr "CataBlog Kategori" 776 777 #: ../lib/CataBlogWidget.class.php:50 778 #: ../templates/admin-galleries.php:70 779 #: ../templates/admin-galleries.php:84 780 msgid "Date" 781 msgstr "Datum" 782 783 #: ../lib/CataBlogWidget.class.php:51 784 msgid "Order" 785 msgstr "Beställning" 786 779 787 #: ../lib/CataBlogWidget.class.php:53 780 788 msgid "Random" … … 1356 1364 msgstr "Gå till sista sidan" 1357 1365 1358 #: ../templates/admin-galleries.php:611359 #: ../templates/admin-galleries.php:811360 #: ../templates/admin-gallery-edit.php:171361 msgid "Description"1362 msgstr "Beskrivning"1363 1364 1366 #: ../templates/admin-galleries.php:62 1365 1367 #: ../templates/admin-galleries.php:82 … … 1479 1481 1480 1482 #: ../templates/admin-library.php:40 1483 #: ../templates/admin-screen-options-add-new.php:49 1481 1484 #: ../templates/admin-screen-options-galleries.php:56 1482 1485 #: ../templates/admin-screen-options-library.php:56 … … 1564 1567 msgstr "Välj minst en katalog artikel först." 1565 1568 1566 #: ../templates/admin-library.php:28 71569 #: ../templates/admin-library.php:289 1567 1570 msgid "Are you sure you want to delete multiple items?" 1568 1571 msgstr "Är du säker på att du vill ta bort flertalet artiklar?" 1569 1572 1570 #: ../templates/admin-library.php:31 61573 #: ../templates/admin-library.php:318 1571 1574 msgid "Are you sure you want to permanently delete this catalog items?" 1572 1575 msgstr "Är du säker på att du vill ta bort dessa katalog artiklar permanent?" … … 1637 1640 msgid "Select Images" 1638 1641 msgstr "Återskapa bilder" 1642 1643 #: ../templates/admin-new.php:261 1644 #: ../templates/admin-options.php:601 1645 msgid "There are errors, please correct them before saving." 1646 msgstr "" 1639 1647 1640 1648 #: ../templates/admin-options.php:8 … … 2086 2094 msgstr "eller %sångra nuvarande ändringar%s" 2087 2095 2088 #: ../templates/admin-options.php:6012089 msgid "There are errors, please correct them before saving."2090 msgstr ""2091 2092 2096 #: ../templates/admin-options.php:720 2093 2097 #: ../templates/admin-regenerate.php:43 … … 2159 2163 msgstr "Ny bild hittades, skapar katalog artikel %s" 2160 2164 2165 #: ../templates/admin-screen-options-add-new.php:40 2161 2166 #: ../templates/admin-screen-options-galleries.php:41 2162 2167 #: ../templates/admin-screen-options-galleries.php:50 -
catablog/trunk/localization/catablog.po
r524478 r530481 5 5 "Project-Id-Version: CataBlog 1.2.5\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2012-0 3-27 14:24-0800\n"8 "PO-Revision-Date: 2012-0 3-27 14:24-0800\n"7 "POT-Creation-Date: 2012-04-12 16:58-0800\n" 8 "PO-Revision-Date: 2012-04-12 16:58-0800\n" 9 9 "Last-Translator: Zachary Segal <zac@illproductions.com>\n" 10 10 "Language-Team: illProductions <zac@illproductions.com>\n" … … 34 34 msgstr "" 35 35 36 #: ../lib/CataBlog.class.php:21 036 #: ../lib/CataBlog.class.php:211 37 37 msgid "Uncategorized" 38 38 msgstr "" 39 39 40 #: ../lib/CataBlog.class.php:23 140 #: ../lib/CataBlog.class.php:232 41 41 msgid "CataBlog Item" 42 42 msgstr "" 43 43 44 #: ../lib/CataBlog.class.php:23 644 #: ../lib/CataBlog.class.php:237 45 45 msgid "A Catalog Item, generated by CataBlog." 46 46 msgstr "" 47 47 48 #: ../lib/CataBlog.class.php:24 748 #: ../lib/CataBlog.class.php:248 49 49 msgid "CataBlog Category" 50 50 msgstr "" 51 51 52 #: ../lib/CataBlog.class.php:25 852 #: ../lib/CataBlog.class.php:259 53 53 msgid "CataBlog Gallery" 54 54 msgstr "" 55 55 56 #: ../lib/CataBlog.class.php:26 356 #: ../lib/CataBlog.class.php:264 57 57 msgid "A Catalog Gallery, generated by CataBlog." 58 58 msgstr "" 59 59 60 #: ../lib/CataBlog.class.php:3 8960 #: ../lib/CataBlog.class.php:390 61 61 #: ../templates/admin-404.php:11 62 62 msgid "CataBlog Library" 63 63 msgstr "" 64 64 65 #: ../lib/CataBlog.class.php:38966 #: ../lib/CataBlog.class.php:47667 msgid "Library"68 msgstr ""69 70 #: ../lib/CataBlog.class.php:39071 msgid "Add New CataBlog Entry"72 msgstr ""73 74 65 #: ../lib/CataBlog.class.php:390 75 66 #: ../lib/CataBlog.class.php:477 67 msgid "Library" 68 msgstr "" 69 70 #: ../lib/CataBlog.class.php:391 71 msgid "Add New CataBlog Entry" 72 msgstr "" 73 74 #: ../lib/CataBlog.class.php:391 75 #: ../lib/CataBlog.class.php:478 76 76 msgid "Add New" 77 77 msgstr "" 78 78 79 #: ../lib/CataBlog.class.php:39 179 #: ../lib/CataBlog.class.php:392 80 80 #: ../templates/admin-galleries.php:5 81 81 msgid "CataBlog Galleries" 82 82 msgstr "" 83 83 84 #: ../lib/CataBlog.class.php:39185 #: ../lib/CataBlog.class.php:47886 msgid "Galleries"87 msgstr ""88 89 #: ../lib/CataBlog.class.php:39290 msgid "CataBlog Templates"91 msgstr ""92 93 84 #: ../lib/CataBlog.class.php:392 94 85 #: ../lib/CataBlog.class.php:479 95 msgid " Templates"86 msgid "Galleries" 96 87 msgstr "" 97 88 98 89 #: ../lib/CataBlog.class.php:393 99 msgid "CataBlog Options"90 msgid "CataBlog Templates" 100 91 msgstr "" 101 92 102 93 #: ../lib/CataBlog.class.php:393 103 94 #: ../lib/CataBlog.class.php:480 95 msgid "Templates" 96 msgstr "" 97 98 #: ../lib/CataBlog.class.php:394 99 msgid "CataBlog Options" 100 msgstr "" 101 102 #: ../lib/CataBlog.class.php:394 103 #: ../lib/CataBlog.class.php:481 104 104 msgid "Options" 105 105 msgstr "" 106 106 107 #: ../lib/CataBlog.class.php:39 4107 #: ../lib/CataBlog.class.php:395 108 108 #: ../templates/admin-about.php:4 109 109 msgid "About CataBlog" 110 110 msgstr "" 111 111 112 #: ../lib/CataBlog.class.php:39 4113 #: ../lib/CataBlog.class.php:48 1112 #: ../lib/CataBlog.class.php:395 113 #: ../lib/CataBlog.class.php:482 114 114 msgid "About" 115 115 msgstr "" 116 116 117 #: ../lib/CataBlog.class.php:46 1117 #: ../lib/CataBlog.class.php:462 118 118 #: ../templates/admin-edit.php:4 119 119 msgid "Edit CataBlog Entry" 120 120 msgstr "" 121 121 122 #: ../lib/CataBlog.class.php:47 5122 #: ../lib/CataBlog.class.php:476 123 123 #: ../templates/admin-discfull.php:22 124 124 msgid "CataBlog" 125 125 msgstr "" 126 126 127 #: ../lib/CataBlog.class.php:48 4127 #: ../lib/CataBlog.class.php:485 128 128 msgid "CataBlog Entry" 129 129 msgstr "" 130 130 131 #: ../lib/CataBlog.class.php:66 4132 #: ../lib/CataBlog.class.php:70 7133 #: ../lib/CataBlog.class.php:117 4131 #: ../lib/CataBlog.class.php:665 132 #: ../lib/CataBlog.class.php:708 133 #: ../lib/CataBlog.class.php:1175 134 134 msgid "Changes Saved Successfully." 135 135 msgstr "" 136 136 137 #: ../lib/CataBlog.class.php:66 7137 #: ../lib/CataBlog.class.php:668 138 138 msgid "Catalog Item Deleted Successfully." 139 139 msgstr "" 140 140 141 #: ../lib/CataBlog.class.php:67 0141 #: ../lib/CataBlog.class.php:671 142 142 msgid "Could Not Delete Item Because ID was non existent." 143 143 msgstr "" 144 144 145 #: ../lib/CataBlog.class.php:67 3145 #: ../lib/CataBlog.class.php:674 146 146 msgid "Could not verify bulk edit action nonce, please refresh page and try again." 147 147 msgstr "" 148 148 149 #: ../lib/CataBlog.class.php:67 6149 #: ../lib/CataBlog.class.php:677 150 150 msgid "Bulk categories edit performed successfully." 151 151 msgstr "" 152 152 153 #: ../lib/CataBlog.class.php:6 79153 #: ../lib/CataBlog.class.php:680 154 154 msgid "Bulk delete performed successfully." 155 155 msgstr "" 156 156 157 #: ../lib/CataBlog.class.php:68 2157 #: ../lib/CataBlog.class.php:683 158 158 msgid "Reset all data successfully." 159 159 msgstr "" 160 160 161 #: ../lib/CataBlog.class.php:68 5161 #: ../lib/CataBlog.class.php:686 162 162 msgid "Catalog items added to Gallery successfully." 163 163 msgstr "" 164 164 165 #: ../lib/CataBlog.class.php:68 8165 #: ../lib/CataBlog.class.php:689 166 166 msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again." 167 167 msgstr "" 168 168 169 #: ../lib/CataBlog.class.php:69 1169 #: ../lib/CataBlog.class.php:692 170 170 msgid "Could not validate the gallery, please modify the gallery and try again." 171 171 msgstr "" 172 172 173 #: ../lib/CataBlog.class.php:71 1173 #: ../lib/CataBlog.class.php:712 174 174 msgid "View Now" 175 175 msgstr "" 176 176 177 #: ../lib/CataBlog.class.php:77 4177 #: ../lib/CataBlog.class.php:775 178 178 msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical." 179 179 msgstr "" 180 180 181 #: ../lib/CataBlog.class.php:78 2181 #: ../lib/CataBlog.class.php:783 182 182 msgid "CataBlog Options Saved" 183 183 msgstr "" 184 184 185 #: ../lib/CataBlog.class.php:83 5185 #: ../lib/CataBlog.class.php:836 186 186 msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page" 187 187 msgstr "" 188 188 189 #: ../lib/CataBlog.class.php:85 3190 #: ../lib/CataBlog.class.php:90 4191 #: ../lib/CataBlog.class.php:90 7192 #: ../lib/CataBlog.class.php:112 5193 #: ../lib/CataBlog.class.php:118 0189 #: ../lib/CataBlog.class.php:854 190 #: ../lib/CataBlog.class.php:905 191 #: ../lib/CataBlog.class.php:908 192 #: ../lib/CataBlog.class.php:1126 193 #: ../lib/CataBlog.class.php:1181 194 194 msgid "Form Validation Error. Please reload the page and try again." 195 195 msgstr "" 196 196 197 #: ../lib/CataBlog.class.php:89 8197 #: ../lib/CataBlog.class.php:899 198 198 msgid "Template Changes Saved Successfully." 199 199 msgstr "" 200 200 201 #: ../lib/CataBlog.class.php:90 1201 #: ../lib/CataBlog.class.php:902 202 202 msgid "Template Created Successfully." 203 203 msgstr "" 204 204 205 #: ../lib/CataBlog.class.php:91 0205 #: ../lib/CataBlog.class.php:911 206 206 #, php-format 207 207 msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>" 208 208 msgstr "" 209 209 210 #: ../lib/CataBlog.class.php:91 3210 #: ../lib/CataBlog.class.php:914 211 211 msgid "File Creation Error. A template already exists with that name." 212 212 msgstr "" 213 213 214 #: ../lib/CataBlog.class.php:91 6214 #: ../lib/CataBlog.class.php:917 215 215 msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters." 216 216 msgstr "" 217 217 218 #: ../lib/CataBlog.class.php:998219 218 #: ../lib/CataBlog.class.php:999 220 219 #: ../lib/CataBlog.class.php:1000 220 #: ../lib/CataBlog.class.php:1001 221 221 msgid "not present" 222 222 msgstr "" 223 223 224 #: ../lib/CataBlog.class.php:11 19224 #: ../lib/CataBlog.class.php:1120 225 225 msgid "Gallery Created Successfully." 226 226 msgstr "" 227 227 228 #: ../lib/CataBlog.class.php:112 2228 #: ../lib/CataBlog.class.php:1123 229 229 msgid "Form Validation Error. Please check your gallery title and try again." 230 230 msgstr "" 231 231 232 #: ../lib/CataBlog.class.php:112 8232 #: ../lib/CataBlog.class.php:1129 233 233 msgid "Gallery Deleted Successfully." 234 234 msgstr "" 235 235 236 #: ../lib/CataBlog.class.php:113 1236 #: ../lib/CataBlog.class.php:1132 237 237 msgid "Could Not Delete Gallery Because ID was non existent." 238 238 msgstr "" 239 239 240 #: ../lib/CataBlog.class.php:113 4240 #: ../lib/CataBlog.class.php:1135 241 241 msgid "Multiple Galleries Deleted Successfully." 242 242 msgstr "" 243 243 244 #: ../lib/CataBlog.class.php:117 7244 #: ../lib/CataBlog.class.php:1178 245 245 msgid "Form Validation Error: Please make sure your title is at least one character." 246 246 msgstr "" 247 247 248 #: ../lib/CataBlog.class.php:131 5248 #: ../lib/CataBlog.class.php:1316 249 249 msgid "The file you selected was to large or you didn't select anything at all, please try again." 250 250 msgstr "" 251 251 252 #: ../lib/CataBlog.class.php:13 19253 #: ../lib/CataBlog.class.php:137 3254 #: ../lib/CataBlog.class.php:142 5255 #: ../lib/CataBlog.class.php:146 3256 #: ../lib/CataBlog.class.php:159 6252 #: ../lib/CataBlog.class.php:1320 253 #: ../lib/CataBlog.class.php:1374 254 #: ../lib/CataBlog.class.php:1426 255 #: ../lib/CataBlog.class.php:1464 256 #: ../lib/CataBlog.class.php:1597 257 257 msgid "WordPress Nonce Error, please reload the form and try again." 258 258 msgstr "" 259 259 260 #: ../lib/CataBlog.class.php:137 7260 #: ../lib/CataBlog.class.php:1378 261 261 msgid "full form was not submitted, please try again." 262 262 msgstr "" 263 263 264 #: ../lib/CataBlog.class.php:142 1265 #: ../lib/CataBlog.class.php:14 59264 #: ../lib/CataBlog.class.php:1422 265 #: ../lib/CataBlog.class.php:1460 266 266 msgid "You didn't select anything to upload, please try again." 267 267 msgstr "" 268 268 269 #: ../lib/CataBlog.class.php:14 29270 #: ../lib/CataBlog.class.php:146 7269 #: ../lib/CataBlog.class.php:1430 270 #: ../lib/CataBlog.class.php:1468 271 271 msgid "No item ID posted, press back arrow and try again." 272 272 msgstr "" 273 273 274 #: ../lib/CataBlog.class.php:151 0274 #: ../lib/CataBlog.class.php:1511 275 275 msgid "Please make your selection by checking the boxes in the list below." 276 276 msgstr "" 277 277 278 #: ../lib/CataBlog.class.php:155 6278 #: ../lib/CataBlog.class.php:1557 279 279 #, php-format 280 280 msgid "Error during set category, could not load item with id %s." 281 281 msgstr "" 282 282 283 #: ../lib/CataBlog.class.php:157 4283 #: ../lib/CataBlog.class.php:1575 284 284 #, php-format 285 285 msgid "Error during bulk delete, could not load item with id %s." 286 286 msgstr "" 287 287 288 #: ../lib/CataBlog.class.php:160 5288 #: ../lib/CataBlog.class.php:1606 289 289 msgid "No file was selected for upload, please try again." 290 290 msgstr "" 291 291 292 #: ../lib/CataBlog.class.php:161 4292 #: ../lib/CataBlog.class.php:1615 293 293 msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML." 294 294 msgstr "" 295 295 296 #: ../lib/CataBlog.class.php:162 4296 #: ../lib/CataBlog.class.php:1625 297 297 msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension." 298 298 msgstr "" 299 299 300 #: ../lib/CataBlog.class.php:169 5300 #: ../lib/CataBlog.class.php:1696 301 301 msgid "The CataBlog upload directories have been unlocked." 302 302 msgstr "" 303 303 304 #: ../lib/CataBlog.class.php:169 8305 #: ../lib/CataBlog.class.php:171 1304 #: ../lib/CataBlog.class.php:1699 305 #: ../lib/CataBlog.class.php:1712 306 306 msgid "Could not lock/unlock the directory. Are you using a unix based server?" 307 307 msgstr "" 308 308 309 #: ../lib/CataBlog.class.php:170 8309 #: ../lib/CataBlog.class.php:1709 310 310 msgid "The CataBlog upload directories have been locked." 311 311 msgstr "" 312 312 313 #: ../lib/CataBlog.class.php:18 27313 #: ../lib/CataBlog.class.php:1843 314 314 msgid "micro save successful" 315 315 msgstr "" 316 316 317 #: ../lib/CataBlog.class.php:18 35317 #: ../lib/CataBlog.class.php:1851 318 318 msgid "Cannot save changes because the item id could not be found in the database." 319 319 msgstr "" 320 320 321 #: ../lib/CataBlog.class.php:1 896321 #: ../lib/CataBlog.class.php:1924 322 322 msgid "Screen Options updated successfully." 323 323 msgstr "" 324 324 325 #: ../lib/CataBlog.class.php:19 10325 #: ../lib/CataBlog.class.php:1938 326 326 #: ../templates/admin-edit.php:277 327 327 msgid "Commas, Pipes and reserved HTML characters are not allowed in category names." 328 328 msgstr "" 329 329 330 #: ../lib/CataBlog.class.php:19 16330 #: ../lib/CataBlog.class.php:1944 331 331 msgid "Please be a little more specific with your category name." 332 332 msgstr "" 333 333 334 #: ../lib/CataBlog.class.php:19 29334 #: ../lib/CataBlog.class.php:1957 335 335 msgid "There already is a category with that name." 336 336 msgstr "" 337 337 338 #: ../lib/CataBlog.class.php:19 66338 #: ../lib/CataBlog.class.php:1994 339 339 msgid "Term Edited Successfully" 340 340 msgstr "" 341 341 342 #: ../lib/CataBlog.class.php:19 69343 #: ../lib/CataBlog.class.php: 1985342 #: ../lib/CataBlog.class.php:1997 343 #: ../lib/CataBlog.class.php:2013 344 344 msgid "Term did not exist, please refresh page and try again." 345 345 msgstr "" 346 346 347 #: ../lib/CataBlog.class.php: 1982347 #: ../lib/CataBlog.class.php:2010 348 348 msgid "Term Removed Successfully." 349 349 msgstr "" 350 350 351 #: ../lib/CataBlog.class.php:20 36351 #: ../lib/CataBlog.class.php:2064 352 352 msgid "unsupported image size type" 353 353 msgstr "" 354 354 355 #: ../lib/CataBlog.class.php:20 46355 #: ../lib/CataBlog.class.php:2074 356 356 #, php-format 357 357 msgid "Rendering... %s of %s" 358 358 msgstr "" 359 359 360 #: ../lib/CataBlog.class.php:20 48360 #: ../lib/CataBlog.class.php:2076 361 361 msgid "Image rendering is now complete." 362 362 msgstr "" 363 363 364 #: ../lib/CataBlog.class.php:2 089364 #: ../lib/CataBlog.class.php:2117 365 365 msgid "error" 366 366 msgstr "" 367 367 368 #: ../lib/CataBlog.class.php:2 092368 #: ../lib/CataBlog.class.php:2120 369 369 msgid "sub image deleted successfully" 370 370 msgstr "" 371 371 372 #: ../lib/CataBlog.class.php:21 27372 #: ../lib/CataBlog.class.php:2155 373 373 #, php-format 374 374 msgid "%s library items deleted successfully." 375 375 msgstr "" 376 376 377 #: ../lib/CataBlog.class.php:21 30377 #: ../lib/CataBlog.class.php:2158 378 378 msgid "CataBlog Library Cleared Successfully." 379 379 msgstr "" 380 380 381 #: ../lib/CataBlog.class.php:21 43381 #: ../lib/CataBlog.class.php:2171 382 382 msgid "CataBlog Options, Directories and Terms Deleted Successfully." 383 383 msgstr "" 384 384 385 #: ../lib/CataBlog.class.php:21 44385 #: ../lib/CataBlog.class.php:2172 386 386 msgid "You may now go deactivate CataBlog and nothing will be left behind." 387 387 msgstr "" 388 388 389 #: ../lib/CataBlog.class.php:21 45389 #: ../lib/CataBlog.class.php:2173 390 390 msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings." 391 391 msgstr "" 392 392 393 #: ../lib/CataBlog.class.php:22 06393 #: ../lib/CataBlog.class.php:2234 394 394 #, php-format 395 395 msgid "CataBlog %s LightBox Styles | %s" 396 396 msgstr "" 397 397 398 #: ../lib/CataBlog.class.php:22 28398 #: ../lib/CataBlog.class.php:2256 399 399 msgid "You may also press "P" or the left arrow on your keyboard" 400 400 msgstr "" 401 401 402 #: ../lib/CataBlog.class.php:22 29402 #: ../lib/CataBlog.class.php:2257 403 403 msgid "You may also press "N" or the right arrow on your keyboard" 404 404 msgstr "" 405 405 406 #: ../lib/CataBlog.class.php:22 30406 #: ../lib/CataBlog.class.php:2258 407 407 msgid "Close LightBox Now" 408 408 msgstr "" 409 409 410 #: ../lib/CataBlog.class.php:22 31410 #: ../lib/CataBlog.class.php:2259 411 411 msgid "PREV" 412 412 msgstr "" 413 413 414 #: ../lib/CataBlog.class.php:22 32414 #: ../lib/CataBlog.class.php:2260 415 415 msgid "NEXT" 416 416 msgstr "" 417 417 418 #: ../lib/CataBlog.class.php:22 33418 #: ../lib/CataBlog.class.php:2261 419 419 msgid "CLOSE" 420 420 msgstr "" 421 421 422 #: ../lib/CataBlog.class.php:22 37422 #: ../lib/CataBlog.class.php:2265 423 423 #, php-format 424 424 msgid "CataBlog %s LightBox JavaScript | %s" 425 425 msgstr "" 426 426 427 #: ../lib/CataBlog.class.php:22 39427 #: ../lib/CataBlog.class.php:2267 428 428 msgid "End CataBlog LightBox JavaScript" 429 429 msgstr "" 430 430 431 #: ../lib/CataBlog.class.php:23 55431 #: ../lib/CataBlog.class.php:2386 432 432 msgid "You must use the id attribute in the catablog_gallery Shortcode" 433 433 msgstr "" 434 434 435 #: ../lib/CataBlog.class.php:2 372435 #: ../lib/CataBlog.class.php:2406 436 436 #, php-format 437 437 msgid "Could not find a CataBlog Gallery with id %s" … … 439 439 440 440 #: ../lib/CataBlog.class.php:2455 441 #, php-format 442 msgid "%s to %s of %s" 443 msgstr "" 444 445 #: ../lib/CataBlog.class.php:2591 441 #: ../lib/CataBlog.class.php:2841 442 #: ../lib/CataBlog.class.php:3016 443 msgid "Previous" 444 msgstr "" 445 446 #: ../lib/CataBlog.class.php:2456 447 #: ../lib/CataBlog.class.php:2842 448 #: ../lib/CataBlog.class.php:3017 449 msgid "Next" 450 msgstr "" 451 452 #: ../lib/CataBlog.class.php:2614 446 453 #, php-format 447 454 msgid "CataBlog Template Error: The store template does not exist. Please make sure their is a file with the name '%s.htm' in the <code>wp-content/uploads/catablog/templates</code> directory." 448 455 msgstr "" 449 456 450 #: ../lib/CataBlog.class.php:26 14457 #: ../lib/CataBlog.class.php:2637 451 458 #, php-format 452 459 msgid "CataBlog ShortCode Parameter Error: The template attribute of this ShortCode points to a file that does not exist. Please make sure their is a file with the name '%s.htm' in the views directory." 453 460 msgstr "" 454 461 455 #: ../lib/CataBlog.class.php:26 15462 #: ../lib/CataBlog.class.php:2638 456 463 msgid "Learn More" 457 464 msgstr "" 458 465 459 #: ../lib/CataBlog.class.php:26 67466 #: ../lib/CataBlog.class.php:2690 460 467 msgid "CataBlog Error:" 461 468 msgstr "" 462 469 463 #: ../lib/CataBlog.class.php:26 69470 #: ../lib/CataBlog.class.php:2692 464 471 #, php-format 465 472 msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s." 466 473 msgstr "" 467 474 468 #: ../lib/CataBlog.class.php:2 689475 #: ../lib/CataBlog.class.php:2712 469 476 msgid "Select Category" 470 477 msgstr "" 471 478 472 #: ../lib/CataBlog.class.php:2 783479 #: ../lib/CataBlog.class.php:2806 473 480 msgid "The CataBlog Upload Directory cannot be written. " 474 481 msgstr "" 475 482 476 #: ../lib/CataBlog.class.php:2 783477 #: ../lib/CataBlog.class.php:2 788478 #: ../lib/CataBlog.class.php: 2988483 #: ../lib/CataBlog.class.php:2806 484 #: ../lib/CataBlog.class.php:2811 485 #: ../lib/CataBlog.class.php:3011 479 486 msgid "Please check your server file permissions and apache configuration." 480 487 msgstr "" 481 488 482 #: ../lib/CataBlog.class.php:2 788489 #: ../lib/CataBlog.class.php:2811 483 490 msgid "The CataBlog Templates Directory cannot be written. " 484 491 msgstr "" 485 492 486 #: ../lib/CataBlog.class.php:2 794493 #: ../lib/CataBlog.class.php:2817 487 494 #, php-format 488 495 msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s" 489 496 msgstr "" 490 497 491 #: ../lib/CataBlog.class.php:2818 492 #: ../lib/CataBlog.class.php:2993 493 msgid "Previous" 494 msgstr "" 495 496 #: ../lib/CataBlog.class.php:2819 497 #: ../lib/CataBlog.class.php:2994 498 msgid "Next" 499 msgstr "" 500 501 #: ../lib/CataBlog.class.php:2875 498 #: ../lib/CataBlog.class.php:2898 502 499 #, php-format 503 500 msgid "There was an error creating the default term: %s" 504 501 msgstr "" 505 502 506 #: ../lib/CataBlog.class.php:29 10503 #: ../lib/CataBlog.class.php:2933 507 504 msgid "CataBlog options and directories have been successfully upgraded." 508 505 msgstr "" 509 506 510 #: ../lib/CataBlog.class.php: 2988507 #: ../lib/CataBlog.class.php:3011 511 508 msgid "The New CataBlog Templates cannot be written. " 512 509 msgstr "" 513 510 514 #: ../lib/CataBlog.class.php:31 75511 #: ../lib/CataBlog.class.php:3198 515 512 msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid." 516 513 msgstr "" 517 514 518 #: ../lib/CataBlog.class.php:32 16515 #: ../lib/CataBlog.class.php:3239 519 516 #, php-format 520 517 msgid "There was an error parsing your CSV file on lines: %s." 521 518 msgstr "" 522 519 523 #: ../lib/CataBlog.class.php:32 63524 #: ../lib/CataBlog.class.php:33 06525 #: ../lib/CataBlog.class.php:33 10526 #: ../lib/CataBlog.class.php:33 13520 #: ../lib/CataBlog.class.php:3286 521 #: ../lib/CataBlog.class.php:3329 522 #: ../lib/CataBlog.class.php:3333 523 #: ../lib/CataBlog.class.php:3336 527 524 msgid "Error:" 528 525 msgstr "" 529 526 530 #: ../lib/CataBlog.class.php:3 277527 #: ../lib/CataBlog.class.php:3300 531 528 msgid "Success:" 532 529 msgstr "" 533 530 534 #: ../lib/CataBlog.class.php:3 277531 #: ../lib/CataBlog.class.php:3300 535 532 #, php-format 536 533 msgid " %s inserted into catalog categories." 537 534 msgstr "" 538 535 539 #: ../lib/CataBlog.class.php:3 285536 #: ../lib/CataBlog.class.php:3308 540 537 msgid "All New Categories Created" 541 538 msgstr "" 542 539 543 #: ../lib/CataBlog.class.php:3 289540 #: ../lib/CataBlog.class.php:3312 544 541 msgid "No New Categories Created" 545 542 msgstr "" 546 543 547 #: ../lib/CataBlog.class.php:33 04548 #: ../lib/CataBlog.class.php:33 58544 #: ../lib/CataBlog.class.php:3327 545 #: ../lib/CataBlog.class.php:3381 549 546 msgid "Insert:" 550 547 msgstr "" 551 548 552 #: ../lib/CataBlog.class.php:33 04553 #: ../lib/CataBlog.class.php:33 58549 #: ../lib/CataBlog.class.php:3327 550 #: ../lib/CataBlog.class.php:3381 554 551 #, php-format 555 552 msgid " %s inserted into the database." 556 553 msgstr "" 557 554 558 #: ../lib/CataBlog.class.php:33 06555 #: ../lib/CataBlog.class.php:3329 559 556 #, php-format 560 557 msgid " %s was not inserted into the database." 561 558 msgstr "" 562 559 563 #: ../lib/CataBlog.class.php:33 10560 #: ../lib/CataBlog.class.php:3333 564 561 msgid "Item had no title and could not be made." 565 562 msgstr "" 566 563 567 #: ../lib/CataBlog.class.php:33 13564 #: ../lib/CataBlog.class.php:3336 568 565 msgid "Item had no primary image name and could not be made." 569 566 msgstr "" 570 567 571 #: ../lib/CataBlog.class.php:33 55568 #: ../lib/CataBlog.class.php:3378 572 569 msgid "Update:" 573 570 msgstr "" 574 571 575 #: ../lib/CataBlog.class.php:33 55572 #: ../lib/CataBlog.class.php:3378 576 573 #, php-format 577 574 msgid " %s updated in database." 578 575 msgstr "" 579 576 580 #: ../lib/CataBlog.class.php:3 384577 #: ../lib/CataBlog.class.php:3407 581 578 #, php-format 582 579 msgid "%s Catalog Items Inserted" 583 580 msgstr "" 584 581 585 #: ../lib/CataBlog.class.php:34 49582 #: ../lib/CataBlog.class.php:3472 586 583 msgid "Uploaded File Exceeded The PHP Configurations Max File Size." 587 584 msgstr "" 588 585 589 #: ../lib/CataBlog.class.php:34 52586 #: ../lib/CataBlog.class.php:3475 590 587 msgid "Upload File Exceeded The HTML Form's Max File Size." 591 588 msgstr "" 592 589 593 #: ../lib/CataBlog.class.php:34 55590 #: ../lib/CataBlog.class.php:3478 594 591 msgid "File Only Partially Uploaded, Please Try Again." 595 592 msgstr "" 596 593 597 #: ../lib/CataBlog.class.php:34 58594 #: ../lib/CataBlog.class.php:3481 598 595 msgid "No File Selected For Upload. Please Resubmit The Form." 599 596 msgstr "" 600 597 601 #: ../lib/CataBlog.class.php:34 61598 #: ../lib/CataBlog.class.php:3484 602 599 msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin." 603 600 msgstr "" 604 601 605 #: ../lib/CataBlog.class.php:34 64602 #: ../lib/CataBlog.class.php:3487 606 603 msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin." 607 604 msgstr "" 608 605 609 #: ../lib/CataBlog.class.php:34 67606 #: ../lib/CataBlog.class.php:3490 610 607 msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin." 611 608 msgstr "" 612 609 613 #: ../lib/CataBlog.class.php:34 70610 #: ../lib/CataBlog.class.php:3493 614 611 msgid "An Unknown Upload Error Has Occurred" 615 612 msgstr "" … … 627 624 msgstr "" 628 625 629 #: ../lib/catablog.upload.php:112 630 #: ../templates/admin-edit.php:77 631 #: ../templates/admin-gallery-edit.php:39 632 msgid "Save Changes" 633 msgstr "" 634 635 #: ../lib/CataBlogDirectory.class.php:12 636 #: ../lib/CataBlogDirectory.class.php:109 637 msgid "Could not open directory." 638 msgstr "" 639 640 #: ../lib/CataBlogGallery.class.php:187 641 msgid "A gallery must have a title of at least one alphanumeric character." 642 msgstr "" 643 644 #: ../lib/CataBlogGallery.class.php:192 645 msgid "A gallery title can not be more then 200 characters long." 646 msgstr "" 647 648 #: ../lib/CataBlogItem.class.php:354 649 msgid "An item must have an image associated with it." 650 msgstr "" 651 652 #: ../lib/CataBlogItem.class.php:360 653 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 654 msgstr "" 655 656 #: ../lib/CataBlogItem.class.php:365 657 msgid "An item must have a title of at least one alphanumeric character." 658 msgstr "" 659 660 #: ../lib/CataBlogItem.class.php:370 661 msgid "An item's title can not be more then 200 characters long." 662 msgstr "" 663 664 #: ../lib/CataBlogItem.class.php:375 665 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 666 msgstr "" 667 668 #: ../lib/CataBlogItem.class.php:383 669 msgid "An item's date must be an actual day on the gregorian calendar." 670 msgstr "" 671 672 #: ../lib/CataBlogItem.class.php:388 673 msgid "An item's date hour must be below twenty-four." 674 msgstr "" 675 676 #: ../lib/CataBlogItem.class.php:393 677 msgid "An item's order value must be a positive integer." 678 msgstr "" 679 680 #: ../lib/CataBlogItem.class.php:400 681 msgid "An item's price must be a positive number." 682 msgstr "" 683 684 #: ../lib/CataBlogItem.class.php:423 685 #: ../lib/CataBlogItem.class.php:611 686 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 687 msgstr "" 688 689 #: ../lib/CataBlogItem.class.php:436 690 #: ../lib/CataBlogItem.class.php:598 691 msgid "Can not write uploaded image to server, your storage space is exhausted." 692 msgstr "" 693 694 #: ../lib/CataBlogItem.class.php:437 695 #: ../lib/CataBlogItem.class.php:599 696 msgid "Please delete some media files to free up space and try again." 697 msgstr "" 698 699 #: ../lib/CataBlogItem.class.php:438 700 #: ../lib/CataBlogItem.class.php:600 701 #, php-format 702 msgid "You have %sMB of available space on your server and your image is %sMB." 703 msgstr "" 704 705 #: ../lib/CataBlogItem.class.php:528 706 msgid "Could not set categories, please try again." 707 msgstr "" 708 709 #: ../lib/CataBlogItem.class.php:655 710 #: ../lib/CataBlogItem.class.php:716 711 #, php-format 712 msgid "Original image file missing, could not be located at %s" 713 msgstr "" 714 715 #: ../lib/CataBlogItem.class.php:662 716 #: ../lib/CataBlogItem.class.php:724 717 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 718 msgstr "" 719 720 #: ../lib/CataBlogItem.class.php:691 721 #: ../lib/CataBlogItem.class.php:738 722 msgid "Original image could not be loaded because it is an unsupported format." 723 msgstr "" 724 725 #: ../lib/CataBlogWidget.class.php:14 726 msgid "Entries from your CataBlog Library" 727 msgstr "" 728 729 #: ../lib/CataBlogWidget.class.php:15 730 msgid "CataBlog Catalog" 731 msgstr "" 732 733 #: ../lib/CataBlogWidget.class.php:50 734 #: ../templates/admin-galleries.php:70 735 #: ../templates/admin-galleries.php:84 736 msgid "Date" 737 msgstr "" 738 739 #: ../lib/CataBlogWidget.class.php:51 740 msgid "Order" 741 msgstr "" 742 626 #: ../lib/catablog.upload.php:120 743 627 #: ../lib/CataBlogWidget.class.php:52 744 628 #: ../templates/admin-edit.php:57 … … 749 633 msgstr "" 750 634 635 #: ../lib/catablog.upload.php:123 636 #: ../lib/CataBlogItem.class.php:365 637 msgid "An item must have a title of at least one alphanumeric character." 638 msgstr "" 639 640 #: ../lib/catablog.upload.php:127 641 #: ../templates/admin-galleries.php:61 642 #: ../templates/admin-galleries.php:81 643 #: ../templates/admin-gallery-edit.php:17 644 msgid "Description" 645 msgstr "" 646 647 #: ../lib/catablog.upload.php:142 648 #: ../lib/CataBlogItem.class.php:400 649 msgid "An item's price must be a positive number." 650 msgstr "" 651 652 #: ../lib/catablog.upload.php:145 653 #: ../lib/CataBlogItem.class.php:393 654 msgid "An item's order value must be a positive integer." 655 msgstr "" 656 657 #: ../lib/catablog.upload.php:154 658 #: ../templates/admin-edit.php:77 659 #: ../templates/admin-gallery-edit.php:39 660 msgid "Save Changes" 661 msgstr "" 662 663 #: ../lib/CataBlogDirectory.class.php:12 664 #: ../lib/CataBlogDirectory.class.php:109 665 msgid "Could not open directory." 666 msgstr "" 667 668 #: ../lib/CataBlogGallery.class.php:187 669 msgid "A gallery must have a title of at least one alphanumeric character." 670 msgstr "" 671 672 #: ../lib/CataBlogGallery.class.php:192 673 msgid "A gallery title can not be more then 200 characters long." 674 msgstr "" 675 676 #: ../lib/CataBlogItem.class.php:354 677 msgid "An item must have an image associated with it." 678 msgstr "" 679 680 #: ../lib/CataBlogItem.class.php:360 681 msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable." 682 msgstr "" 683 684 #: ../lib/CataBlogItem.class.php:370 685 msgid "An item's title can not be more then 200 characters long." 686 msgstr "" 687 688 #: ../lib/CataBlogItem.class.php:375 689 msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS" 690 msgstr "" 691 692 #: ../lib/CataBlogItem.class.php:383 693 msgid "An item's date must be an actual day on the gregorian calendar." 694 msgstr "" 695 696 #: ../lib/CataBlogItem.class.php:388 697 msgid "An item's date hour must be below twenty-four." 698 msgstr "" 699 700 #: ../lib/CataBlogItem.class.php:423 701 #: ../lib/CataBlogItem.class.php:600 702 msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please." 703 msgstr "" 704 705 #: ../lib/CataBlogItem.class.php:436 706 #: ../lib/CataBlogItem.class.php:587 707 msgid "Can not write uploaded image to server, your storage space is exhausted." 708 msgstr "" 709 710 #: ../lib/CataBlogItem.class.php:437 711 #: ../lib/CataBlogItem.class.php:588 712 msgid "Please delete some media files to free up space and try again." 713 msgstr "" 714 715 #: ../lib/CataBlogItem.class.php:438 716 #: ../lib/CataBlogItem.class.php:589 717 #, php-format 718 msgid "You have %sMB of available space on your server and your image is %sMB." 719 msgstr "" 720 721 #: ../lib/CataBlogItem.class.php:517 722 msgid "Could not set categories, please try again." 723 msgstr "" 724 725 #: ../lib/CataBlogItem.class.php:644 726 #: ../lib/CataBlogItem.class.php:712 727 #, php-format 728 msgid "Original image file missing, could not be located at %s" 729 msgstr "" 730 731 #: ../lib/CataBlogItem.class.php:651 732 #: ../lib/CataBlogItem.class.php:720 733 msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file." 734 msgstr "" 735 736 #: ../lib/CataBlogItem.class.php:680 737 #: ../lib/CataBlogItem.class.php:734 738 msgid "Original image could not be loaded because it is an unsupported format." 739 msgstr "" 740 741 #: ../lib/CataBlogWidget.class.php:14 742 msgid "Entries from your CataBlog Library" 743 msgstr "" 744 745 #: ../lib/CataBlogWidget.class.php:15 746 msgid "CataBlog Catalog" 747 msgstr "" 748 749 #: ../lib/CataBlogWidget.class.php:50 750 #: ../templates/admin-galleries.php:70 751 #: ../templates/admin-galleries.php:84 752 msgid "Date" 753 msgstr "" 754 755 #: ../lib/CataBlogWidget.class.php:51 756 msgid "Order" 757 msgstr "" 758 751 759 #: ../lib/CataBlogWidget.class.php:53 752 760 msgid "Random" … … 1311 1319 msgstr "" 1312 1320 1313 #: ../templates/admin-galleries.php:611314 #: ../templates/admin-galleries.php:811315 #: ../templates/admin-gallery-edit.php:171316 msgid "Description"1317 msgstr ""1318 1319 1321 #: ../templates/admin-galleries.php:62 1320 1322 #: ../templates/admin-galleries.php:82 … … 1428 1430 1429 1431 #: ../templates/admin-library.php:40 1432 #: ../templates/admin-screen-options-add-new.php:49 1430 1433 #: ../templates/admin-screen-options-galleries.php:56 1431 1434 #: ../templates/admin-screen-options-library.php:56 … … 1510 1513 msgstr "" 1511 1514 1512 #: ../templates/admin-library.php:28 71515 #: ../templates/admin-library.php:289 1513 1516 msgid "Are you sure you want to delete multiple items?" 1514 1517 msgstr "" 1515 1518 1516 #: ../templates/admin-library.php:31 61519 #: ../templates/admin-library.php:318 1517 1520 msgid "Are you sure you want to permanently delete this catalog items?" 1518 1521 msgstr "" … … 1576 1579 #: ../templates/admin-new.php:159 1577 1580 msgid "Select Images" 1581 msgstr "" 1582 1583 #: ../templates/admin-new.php:261 1584 #: ../templates/admin-options.php:601 1585 msgid "There are errors, please correct them before saving." 1578 1586 msgstr "" 1579 1587 … … 2012 2020 msgstr "" 2013 2021 2014 #: ../templates/admin-options.php:6012015 msgid "There are errors, please correct them before saving."2016 msgstr ""2017 2018 2022 #: ../templates/admin-options.php:720 2019 2023 #: ../templates/admin-regenerate.php:43 … … 2085 2089 msgstr "" 2086 2090 2091 #: ../templates/admin-screen-options-add-new.php:40 2087 2092 #: ../templates/admin-screen-options-galleries.php:41 2088 2093 #: ../templates/admin-screen-options-galleries.php:50 -
catablog/trunk/readme.txt
r524499 r530481 5 5 Requires at least: 3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 1.6 7 Stable tag: 1.6.1 8 8 9 9 CataBlog is a comprehensive and effortless tool that allows you to create catalogs, stores and galleries for your blog. … … 103 103 104 104 == Changelog == 105 106 = 1.6.1 = 107 * New: Flash Upload's Micro Save Form now has configurable fields. 108 * New: Enhanced catalog navigation links, including jump to page links. 109 * Fix: Deleting Library items no longer breaks the galleries they were in. 110 * Fix: Widened the Select Images button in the Add New page for localization. 111 * Fix: Add to Gallery form removes previously selected library item ids after closing and reopening. 105 112 106 113 = 1.6 = -
catablog/trunk/templates/admin-library.php
r524478 r530481 276 276 jQuery('#catablog_load_curtain').fadeTo(200, 0.8); 277 277 278 jQuery('#catablog-add-to-gallery').children('input[name="item_ids[]"]').remove(); 279 278 280 checked_catalog_items.each(function() { 279 281 $('#catablog-add-to-gallery').append("<input type='hidden' name='item_ids[]' value='"+this.value+"' />"); -
catablog/trunk/templates/admin-new.php
r524478 r530481 154 154 155 155 button_placeholder_id : 'upload_buttons', 156 button_image_url : "<?php echo includes_url('images/upload.png'); ?>",157 button_width : 1 32,156 button_image_url : "<?php echo $this->urls['images'] . '/upload.png'; ?>", 157 button_width : 190, 158 158 button_height: 23, 159 159 button_text : '<span class="button"><?php _e("Select Images", "catablog") ?></span>', … … 193 193 jQuery('#upload-form-right-col').addClass('right-col'); 194 194 }); 195 195 196 197 function catablog_verify_title(event) { 198 // return true; 199 var title = jQuery.trim(this.value); 200 201 if (title.length < 1 || title.length > 200) { 202 if (true == jQuery(this).siblings('.error').hasClass('hide')) { 203 jQuery(this).siblings('.error').removeClass('hide'); 204 jQuery(this).closest('table').find('input.button-primary').attr('disabled', true); 205 } 206 } 207 else { 208 if (false == jQuery(this).siblings('.error').hasClass('hide')) { 209 jQuery(this).siblings('.error').addClass('hide'); 210 jQuery(this).closest('table').find('input.button-primary').attr('disabled', false); 211 } 212 } 213 } 214 215 function catablog_verify_price(event) { 216 var price = this.value; 217 if (!is_float(price)) { 218 if (true == jQuery(this).siblings('.error').hasClass('hide')) { 219 jQuery(this).siblings('.error').removeClass('hide'); 220 jQuery(this).closest('table').find('input.button-primary').attr('disabled', true); 221 } 222 } 223 else { 224 if (false == jQuery(this).siblings('.error').hasClass('hide')) { 225 jQuery(this).siblings('.error').addClass('hide'); 226 jQuery(this).closest('table').find('input.button-primary').attr('disabled', false); 227 } 228 } 229 } 230 231 function catablog_verify_order(event) { 232 var order = this.value; 233 if (!is_integer(order)) { 234 if (true == jQuery(this).siblings('.error').hasClass('hide')) { 235 jQuery(this).siblings('.error').removeClass('hide'); 236 jQuery(this).closest('table').find('input.button-primary').attr('disabled', true); 237 } 238 } 239 else { 240 if (false == jQuery(this).siblings('.error').hasClass('hide')) { 241 jQuery(this).siblings('.error').addClass('hide'); 242 jQuery(this).closest('table').find('input.button-primary').attr('disabled', false); 243 } 244 } 245 } 246 247 196 248 function catablog_micro_save(event) { 197 249 if (event.type == "keypress") { … … 201 253 } 202 254 } 203 204 if (this.disabled) { 255 256 var container = jQuery(this).closest('li'); 257 var button = container.find('input.button-primary'); 258 259 // if the button is disabled, stop the script 260 if (button.attr('disabled') != undefined) { 261 alert("<?php _e('There are errors, please correct them before saving.', 'catablog'); ?>"); 205 262 return false; 206 263 } 207 208 var container = jQuery(this).closest('li'); 209 var button = container.find('input.button-primary'); 210 var title = container.find('input.title').val(); 211 var description = container.find('textarea.description').val(); 212 var item_id = container.find('input.id').val(); 213 264 265 // get field values from the DOM 266 var item_id = container.find('input.id').val(); 267 var title = container.find('input.title').val(); 268 var description = container.find('textarea.description').val(); 269 var link = container.find('input.link').val(); 270 var price = container.find('input.price').val(); 271 var product_code = container.find('input.product_code').val(); 272 var order = container.find('input.order').val(); 273 274 if (description == undefined) { 275 description = ''; 276 } 277 278 // trim field values 279 title = jQuery.trim(title); 280 link = jQuery.trim(link); 281 price = jQuery.trim(price); 282 product_code = jQuery.trim(product_code); 283 order = jQuery.trim(order); 284 214 285 container.find('input').attr('readonly', true); 215 286 container.find('textarea').attr('readonly', true); … … 221 292 222 293 var params = { 223 'action': 'catablog_micro_save', 224 'security': '<?php echo wp_create_nonce("catablog-micro-save") ?>', 225 'id' : item_id, 226 'title' : title, 227 'description': description 228 } 229 294 'action' : 'catablog_micro_save', 295 'security' : '<?php echo wp_create_nonce("catablog-micro-save") ?>', 296 'id' : item_id, 297 'title' : title, 298 'description' : description, 299 'link' : link, 300 'price' : price, 301 'product_code' : product_code, 302 'order' : order 303 } 304 230 305 jQuery.post(ajaxurl, params, function(data) { 231 306 try { … … 243 318 } 244 319 }); 245 320 246 321 return false; 247 322 } 248 323 324 325 // BIND THE SCREEN SETTINGS AJAX SAVE 326 var nonce = '<?php echo wp_create_nonce("catablog-update-screen-settings") ?>'; 327 jQuery('.hide-catablog-column-tog').bind('change', function(event) { 328 saveScreenSettings('#adv-settings input', nonce); 329 }); 330 249 331 250 332 </script> -
catablog/trunk/templates/admin-screen-options-add-new.php
r519651 r530481 1 <p>Coming Soon</p> 1 <?php 2 $page = 'add-new'; 3 $fields = array('description', 'link', 'price', 'product_code', 'order'); 4 $user = wp_get_current_user(); 5 $user_settings = get_user_meta($user->ID, $this->custom_user_meta_name, true); 6 7 if (empty($user_settings)) { 8 $user_settings = $this->getDefaultUserSettings(); 9 update_user_meta($user->ID, $this->custom_user_meta_name, $user_settings); 10 } 11 12 $screen_settings = $user_settings[$page]; 13 14 // processes screen options form if submitted 15 if (isset($_POST['screen-options-apply'])) { 16 $nonce_verified = wp_verify_nonce( $_REQUEST['_catablog_screen_settings_nonce'], 'catablog_screen_settings' ); 17 if ($nonce_verified) { 18 19 $hide_array = array(); 20 if (isset($_REQUEST['hide'])) { 21 $hide_array = $_REQUEST['hide']; 22 } 23 24 $screen_settings['hide-columns'] = array(); 25 foreach ($fields as $field) { 26 if (!in_array($field, $hide_array)) { 27 $screen_settings['hide-columns'][] = $field; 28 } 29 } 30 31 $user_settings[$page] = $screen_settings; 32 update_user_meta($user->ID, $this->custom_user_meta_name, $user_settings); 33 } 34 } 35 36 ?> 37 38 <?php $screen_settings['hide-columns'] = (is_array($screen_settings['hide-columns']))? $screen_settings['hide-columns'] : array() ?> 39 40 <h5><?php _e('Show on screen', 'catablog') ?></h5> 41 <div class="metabox-prefs"> 42 <?php foreach ($fields as $field): ?> 43 <?php $checked = (!in_array($field, $screen_settings['hide-columns']))? ' checked="checked"' : '' ?> 44 <label for="hide-column-<?php echo $field ?>"><input class="hide-catablog-column-tog" type="checkbox" name="hide[]" value="<?php echo $field ?>" id="hide-column-<?php echo $field ?>"<?php echo $checked ?>><?php _e(ucwords(str_replace('_', ' ', $field)), 'catablog') ?></label> 45 <?php endforeach ?> 46 47 <input type="hidden" name="settings-page" value="<?php echo $page; ?>" /> 48 <?php wp_nonce_field( 'catablog_screen_settings', '_catablog_screen_settings_nonce', false, true ) ?> 49 <input type="submit" name="screen-options-apply" id="screen-options-apply" class="button" style="vertical-align:middle;" value="<?php _e('Apply', 'catablog') ?>" /> 50 51 <br class="clear"> 52 </div> 53 54
Note: See TracChangeset
for help on using the changeset viewer.