Plugin Directory

Changeset 530481


Ignore:
Timestamp:
04/13/2012 12:16:47 AM (14 years ago)
Author:
macguru2000
Message:

CataBlog Release 1.6.1

  • New: Flash Upload's Micro Save Form now has configurable fields.
  • New: Enhanced catalog navigation links, including jump to page links.
  • Fix: Deleting Library items no longer breaks the galleries they were in.
  • Fix: Widened the Select Images button in the Add New page for localization.
  • Fix: Add to Gallery form removes previously selected library item ids after closing and reopening.
Location:
catablog/trunk
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • catablog/trunk/catablog.php

    r524478 r530481  
    44Plugin URI: http://catablog.illproductions.com/
    55Description: 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
     6Version: 1.6.1
    77Author: Zachary Segal
    88Author URI: http://catablog.illproductions.com/about/
  • catablog/trunk/css/catablog-admin.css

    r524478 r530481  
    517517
    518518#new-items-editor li .text-elements {
     519    position: relative;
    519520    margin-left: 112px;
    520521    min-height: 100px;
     
    539540
    540541
    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}
    544564
    545565
  • catablog/trunk/js/catablog-admin.js

    r519651 r530481  
    5353function is_integer(s) {
    5454    return (s.toString().search(/^[0-9]+$/) == 0);
     55}
     56
     57function is_float(s) {
     58    return (s.toString().search(/^[0-9\.]+$/) == 0);
    5559}
    5660
  • catablog/trunk/js/catablog.handlers.js

    r393930 r530481  
    6666       
    6767        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);
    7179       
    7280    } catch(error) {
  • catablog/trunk/lib/CataBlog.class.php

    r524478 r530481  
    55 * This file contains the core class for the CataBlog WordPress Plugin.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.6
     7 * @version 1.6.1
    88 * @package catablog
    99 */
     
    1919   
    2020    // plugin version number and blog url
    21     private $version     = "1.6";
     21    private $version     = "1.6.1";
    2222    private $blog_url    = 'http://catablog.illproductions.com/';
    2323    private $debug       = false;
     
    2828    private $custom_tax_name          = "catablog-terms";
    2929    private $custom_user_meta_name    = "catablog_screen_settings";
     30    private $pagination_query_label   = "catablog-page";
    3031   
    3132    // wordpress database options
     
    18171818       
    18181819        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'];
    18211826
    18221827            $item->setTitle($title);
    18231828            $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           
    18241840            $validate = $item->validate();
    18251841            if ($validate === true) {
     
    18661882               
    18671883                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                }
    18711899           
    18721900                break;
     
    22602288        $navigation = (in_array(strtolower($navigation), $turn_off_nav_words))? false : true;
    22612289       
    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;
    22672298       
    22682299        // get items from cache and start the output buffer
     
    23612392        $navigation = (in_array(strtolower($navigation), $turn_off_nav_words))? false : true;
    23622393       
    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;
    23682402       
    23692403        // !! NOTE: Eventually $offset and $limit should be used here for better db performance
     
    23752409        $gallery_item_ids = $gallery->getItemIds();
    23762410        $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       
    23772418        $total = count($gallery_item_ids);
    23782419       
     
    24072448   
    24082449    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, '&amp;');
    2430             $prev_http_query = http_build_query($prev_params, '&amp;');
    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>";
    24602483    }
    24612484   
     
    34833506    }
    34843507   
     3508    public function get_custom_user_meta_name() {
     3509        return $this->custom_user_meta_name;
     3510    }
     3511   
    34853512    public function get_terms($reload=false) {
    34863513        if ($this->terms == NULL || $reload) {
  • catablog/trunk/lib/CataBlogGallery.class.php

    r524478 r530481  
    55 * This file contains the class for each CataBlog Item that is fetched from the database.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.6
     7 * @version 1.6.1
    88 * @package catablog
    99 */
  • catablog/trunk/lib/CataBlogItem.class.php

    r524478 r530481  
    55 * This file contains the class for each CataBlog Item that is fetched from the database.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.6
     7 * @version 1.6.1
    88 * @package catablog
    99 */
     
    497497            // save the new image's title to the post meta
    498498            $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           
    511500            // generate a thumbnail for the new image
    512501            $this->makeThumbnail();
     
    692681        }
    693682       
     683        // copy the image upload onto the canvas
    694684        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);
    695688       
    696689        // rotate the final canvas to match the original files orientation
    697690        $canvas = $this->rotateImage($canvas, $original);
    698691       
     692        // save the canvas
    699693        imagejpeg($canvas, $fullsize, $quality);
    700694       
    701         imagedestroy($canvas);
     695        // remove the canvas from memory
     696        if(is_resource($canvas)) @imagedestroy($canvas);
     697       
    702698       
    703699        return true;
     
    771767        }
    772768       
     769        // copy the upload image onto the canvas
    773770        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
    774776        imagejpeg($canvas, $thumb, $quality);
    775         imagedestroy($canvas);
     777       
     778        // remove the canvas from memory
     779        if(is_resource($canvas)) @imagedestroy($canvas);
    776780       
    777781        return true;
  • catablog/trunk/lib/CataBlogWidget.class.php

    r524478 r530481  
    55 * This file contains the widget classes for the CataBlog WordPress Plugin.
    66 * @author Zachary Segal <zac@illproductions.com>
    7  * @version 1.6
     7 * @version 1.6.1
    88 * @package catablog
    99 */
  • catablog/trunk/lib/catablog.upload.php

    r492787 r530481  
    100100    $new_item->save();
    101101   
     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
    102111    $html  = "<li>";
    103    
     112
    104113    $html .= "<div class='button-elements'>";
    105114    $html .= "<img src='".$wp_plugin_catablog_class->urls['thumbnails'] . '/' . $new_item->getImage()."' />";
    106115    $html .= "</div>";
     116
     117    $html .= "<div class='text-elements'>";
    107118   
    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>&nbsp;</th>";
     153    $html .= "<td>";
     154    $html .= "<input type='button' class='button-primary' name='submit' value='".__('Save Changes', 'catablog')."' />";
    110155    $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
    113161    $html .= "</div>";
    114    
     162
    115163    $html .= "</li>";
    116    
     164
    117165    die($html);
    118166}
  • catablog/trunk/localization/catablog-de_DE.po

    r524478 r530481  
    55"Project-Id-Version: CataBlog 1.2.5\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2012-03-27 14:25-0800\n"
    8 "PO-Revision-Date: 2012-03-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"
    99"Last-Translator: Zachary Segal <zac@illproductions.com>\n"
    1010"Language-Team: illProductions <zac@illproductions.com>\n"
     
    3434msgstr "<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."
    3535
    36 #: ../lib/CataBlog.class.php:210
     36#: ../lib/CataBlog.class.php:211
    3737msgid "Uncategorized"
    3838msgstr "Ohne Kategorie"
    3939
    40 #: ../lib/CataBlog.class.php:231
     40#: ../lib/CataBlog.class.php:232
    4141msgid "CataBlog Item"
    4242msgstr "CataBlog-Eintrag"
    4343
    44 #: ../lib/CataBlog.class.php:236
     44#: ../lib/CataBlog.class.php:237
    4545msgid "A Catalog Item, generated by CataBlog."
    4646msgstr "Ein von CataBlog generierter Eintrag."
    4747
    48 #: ../lib/CataBlog.class.php:247
     48#: ../lib/CataBlog.class.php:248
    4949msgid "CataBlog Category"
    5050msgstr "CataBlog-Kategorie"
    5151
    52 #: ../lib/CataBlog.class.php:258
     52#: ../lib/CataBlog.class.php:259
    5353#, fuzzy
    5454msgid "CataBlog Gallery"
    5555msgstr "CataBlog-Kategorie"
    5656
    57 #: ../lib/CataBlog.class.php:263
     57#: ../lib/CataBlog.class.php:264
    5858#, fuzzy
    5959msgid "A Catalog Gallery, generated by CataBlog."
    6060msgstr "Ein von CataBlog generierter Eintrag."
    6161
    62 #: ../lib/CataBlog.class.php:389
     62#: ../lib/CataBlog.class.php:390
    6363#: ../templates/admin-404.php:11
    6464msgid "CataBlog Library"
    6565msgstr "CataBlog-Einträge"
    6666
    67 #: ../lib/CataBlog.class.php:389
    68 #: ../lib/CataBlog.class.php:476
     67#: ../lib/CataBlog.class.php:390
     68#: ../lib/CataBlog.class.php:477
    6969msgid "Library"
    7070msgstr "Einträge"
    7171
    72 #: ../lib/CataBlog.class.php:390
     72#: ../lib/CataBlog.class.php:391
    7373msgid "Add New CataBlog Entry"
    7474msgstr "Neuen CataBlog-Eintrag hinzufügen"
    7575
    76 #: ../lib/CataBlog.class.php:390
    77 #: ../lib/CataBlog.class.php:477
     76#: ../lib/CataBlog.class.php:391
     77#: ../lib/CataBlog.class.php:478
    7878msgid "Add New"
    7979msgstr "Eintrag hinzufügen"
    8080
    81 #: ../lib/CataBlog.class.php:391
     81#: ../lib/CataBlog.class.php:392
    8282#: ../templates/admin-galleries.php:5
    8383#, fuzzy
     
    8585msgstr "CataBlog-Kategorie"
    8686
    87 #: ../lib/CataBlog.class.php:391
    88 #: ../lib/CataBlog.class.php:478
     87#: ../lib/CataBlog.class.php:392
     88#: ../lib/CataBlog.class.php:479
    8989#, fuzzy
    9090msgid "Galleries"
    9191msgstr "Kategorien"
    9292
    93 #: ../lib/CataBlog.class.php:392
     93#: ../lib/CataBlog.class.php:393
    9494#, fuzzy
    9595msgid "CataBlog Templates"
    9696msgstr "CataBlog entfernen"
    9797
    98 #: ../lib/CataBlog.class.php:392
    99 #: ../lib/CataBlog.class.php:479
     98#: ../lib/CataBlog.class.php:393
     99#: ../lib/CataBlog.class.php:480
    100100#, fuzzy
    101101msgid "Templates"
    102102msgstr "Vorlage"
    103103
    104 #: ../lib/CataBlog.class.php:393
     104#: ../lib/CataBlog.class.php:394
    105105msgid "CataBlog Options"
    106106msgstr "CataBlog-Einstellungen"
    107107
    108 #: ../lib/CataBlog.class.php:393
    109 #: ../lib/CataBlog.class.php:480
     108#: ../lib/CataBlog.class.php:394
     109#: ../lib/CataBlog.class.php:481
    110110msgid "Options"
    111111msgstr "Einstellungen"
    112112
    113 #: ../lib/CataBlog.class.php:394
     113#: ../lib/CataBlog.class.php:395
    114114#: ../templates/admin-about.php:4
    115115msgid "About CataBlog"
    116116msgstr "Über CataBlog"
    117117
    118 #: ../lib/CataBlog.class.php:394
    119 #: ../lib/CataBlog.class.php:481
     118#: ../lib/CataBlog.class.php:395
     119#: ../lib/CataBlog.class.php:482
    120120msgid "About"
    121121msgstr "Über"
    122122
    123 #: ../lib/CataBlog.class.php:461
     123#: ../lib/CataBlog.class.php:462
    124124#: ../templates/admin-edit.php:4
    125125msgid "Edit CataBlog Entry"
    126126msgstr "CataBlog-Eintrag bearbeiten"
    127127
    128 #: ../lib/CataBlog.class.php:475
     128#: ../lib/CataBlog.class.php:476
    129129#: ../templates/admin-discfull.php:22
    130130msgid "CataBlog"
    131131msgstr "CataBlog"
    132132
    133 #: ../lib/CataBlog.class.php:484
     133#: ../lib/CataBlog.class.php:485
    134134msgid "CataBlog Entry"
    135135msgstr "CataBlog-Eintrag"
    136136
    137 #: ../lib/CataBlog.class.php:664
    138 #: ../lib/CataBlog.class.php:707
    139 #: ../lib/CataBlog.class.php:1174
     137#: ../lib/CataBlog.class.php:665
     138#: ../lib/CataBlog.class.php:708
     139#: ../lib/CataBlog.class.php:1175
    140140msgid "Changes Saved Successfully."
    141141msgstr "Änderungen übernommen."
    142142
    143 #: ../lib/CataBlog.class.php:667
     143#: ../lib/CataBlog.class.php:668
    144144msgid "Catalog Item Deleted Successfully."
    145145msgstr "Eintrag entfernt."
    146146
    147 #: ../lib/CataBlog.class.php:670
     147#: ../lib/CataBlog.class.php:671
    148148msgid "Could Not Delete Item Because ID was non existent."
    149149msgstr "Eintrag konnte nicht entfernt werden, da ID nicht existiert."
    150150
    151 #: ../lib/CataBlog.class.php:673
     151#: ../lib/CataBlog.class.php:674
    152152msgid "Could not verify bulk edit action nonce, please refresh page and try again."
    153153msgstr "Aktion konnte nicht ausgeführt werden. Bitte lade die Seite neu und versuche es erneut."
    154154
    155 #: ../lib/CataBlog.class.php:676
     155#: ../lib/CataBlog.class.php:677
    156156msgid "Bulk categories edit performed successfully."
    157157msgstr "Kategorien geändert."
    158158
    159 #: ../lib/CataBlog.class.php:679
     159#: ../lib/CataBlog.class.php:680
    160160msgid "Bulk delete performed successfully."
    161161msgstr "Einträge entfernt."
    162162
    163 #: ../lib/CataBlog.class.php:682
     163#: ../lib/CataBlog.class.php:683
    164164msgid "Reset all data successfully."
    165165msgstr "Zürucksetzen erfolgreich."
    166166
    167 #: ../lib/CataBlog.class.php:685
     167#: ../lib/CataBlog.class.php:686
    168168#, fuzzy
    169169msgid "Catalog items added to Gallery successfully."
    170170msgstr "Eintrag entfernt."
    171171
    172 #: ../lib/CataBlog.class.php:688
     172#: ../lib/CataBlog.class.php:689
    173173msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again."
    174174msgstr ""
    175175
    176 #: ../lib/CataBlog.class.php:691
     176#: ../lib/CataBlog.class.php:692
    177177#, fuzzy
    178178msgid "Could not validate the gallery, please modify the gallery and try again."
    179179msgstr "Aktion konnte nicht ausgeführt werden. Bitte lade die Seite neu und versuche es erneut."
    180180
    181 #: ../lib/CataBlog.class.php:711
     181#: ../lib/CataBlog.class.php:712
    182182msgid "View Now"
    183183msgstr "Ansicht"
    184184
    185 #: ../lib/CataBlog.class.php:774
     185#: ../lib/CataBlog.class.php:775
    186186#, fuzzy
    187187msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical."
    188188msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut."
    189189
    190 #: ../lib/CataBlog.class.php:782
     190#: ../lib/CataBlog.class.php:783
    191191msgid "CataBlog Options Saved"
    192192msgstr "CataBlog-Einstellungen gespeichert"
    193193
    194 #: ../lib/CataBlog.class.php:835
     194#: ../lib/CataBlog.class.php:836
    195195msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page"
    196196msgstr "Bitte warte bis die Bildverarbeitung abgeschlossen ist, bevor du diese Seite verlässt."
    197197
    198 #: ../lib/CataBlog.class.php:853
    199 #: ../lib/CataBlog.class.php:904
    200 #: ../lib/CataBlog.class.php:907
    201 #: ../lib/CataBlog.class.php:1125
    202 #: ../lib/CataBlog.class.php:1180
     198#: ../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
    203203msgid "Form Validation Error. Please reload the page and try again."
    204204msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut."
    205205
    206 #: ../lib/CataBlog.class.php:898
     206#: ../lib/CataBlog.class.php:899
    207207#, fuzzy
    208208msgid "Template Changes Saved Successfully."
    209209msgstr "Änderungen übernommen."
    210210
    211 #: ../lib/CataBlog.class.php:901
     211#: ../lib/CataBlog.class.php:902
    212212#, fuzzy
    213213msgid "Template Created Successfully."
    214214msgstr "Löschen erfolgreich."
    215215
    216 #: ../lib/CataBlog.class.php:910
     216#: ../lib/CataBlog.class.php:911
    217217#, php-format
    218218msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>"
    219219msgstr ""
    220220
    221 #: ../lib/CataBlog.class.php:913
     221#: ../lib/CataBlog.class.php:914
    222222msgid "File Creation Error. A template already exists with that name."
    223223msgstr ""
    224224
    225 #: ../lib/CataBlog.class.php:916
     225#: ../lib/CataBlog.class.php:917
    226226msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters."
    227227msgstr ""
    228228
    229 #: ../lib/CataBlog.class.php:998
    230229#: ../lib/CataBlog.class.php:999
    231230#: ../lib/CataBlog.class.php:1000
     231#: ../lib/CataBlog.class.php:1001
    232232msgid "not present"
    233233msgstr "nicht vorhanden"
    234234
    235 #: ../lib/CataBlog.class.php:1119
     235#: ../lib/CataBlog.class.php:1120
    236236#, fuzzy
    237237msgid "Gallery Created Successfully."
    238238msgstr "Löschen erfolgreich."
    239239
    240 #: ../lib/CataBlog.class.php:1122
     240#: ../lib/CataBlog.class.php:1123
    241241#, fuzzy
    242242msgid "Form Validation Error. Please check your gallery title and try again."
    243243msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut."
    244244
    245 #: ../lib/CataBlog.class.php:1128
     245#: ../lib/CataBlog.class.php:1129
    246246#, fuzzy
    247247msgid "Gallery Deleted Successfully."
    248248msgstr "Eintrag entfernt."
    249249
    250 #: ../lib/CataBlog.class.php:1131
     250#: ../lib/CataBlog.class.php:1132
    251251#, fuzzy
    252252msgid "Could Not Delete Gallery Because ID was non existent."
    253253msgstr "Eintrag konnte nicht entfernt werden, da ID nicht existiert."
    254254
    255 #: ../lib/CataBlog.class.php:1134
     255#: ../lib/CataBlog.class.php:1135
    256256#, fuzzy
    257257msgid "Multiple Galleries Deleted Successfully."
    258258msgstr "Eintrag entfernt."
    259259
    260 #: ../lib/CataBlog.class.php:1177
     260#: ../lib/CataBlog.class.php:1178
    261261#, fuzzy
    262262msgid "Form Validation Error: Please make sure your title is at least one character."
    263263msgstr "Eingabefehler. Bitte lade die Seite neu und versuche es erneut."
    264264
    265 #: ../lib/CataBlog.class.php:1315
     265#: ../lib/CataBlog.class.php:1316
    266266msgid "The file you selected was to large or you didn't select anything at all, please try again."
    267267msgstr "Die gewählte Datei ist zu groß oder es wurde nichts ausgewählt. Bitte versuche es erneut."
    268268
    269 #: ../lib/CataBlog.class.php:1319
    270 #: ../lib/CataBlog.class.php:1373
    271 #: ../lib/CataBlog.class.php:1425
    272 #: ../lib/CataBlog.class.php:1463
    273 #: ../lib/CataBlog.class.php:1596
     269#: ../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
    274274msgid "WordPress Nonce Error, please reload the form and try again."
    275275msgstr "WordPress-Fehler. Bitte lade die Seite neu und versuche es erneut."
    276276
    277 #: ../lib/CataBlog.class.php:1377
     277#: ../lib/CataBlog.class.php:1378
    278278msgid "full form was not submitted, please try again."
    279279msgstr "Formular unvollständig. Bitte versuche es erneut."
    280280
    281 #: ../lib/CataBlog.class.php:1421
    282 #: ../lib/CataBlog.class.php:1459
     281#: ../lib/CataBlog.class.php:1422
     282#: ../lib/CataBlog.class.php:1460
    283283msgid "You didn't select anything to upload, please try again."
    284284msgstr "Nichts ausgewählt. Bitte versuche es erneut."
    285285
    286 #: ../lib/CataBlog.class.php:1429
    287 #: ../lib/CataBlog.class.php:1467
     286#: ../lib/CataBlog.class.php:1430
     287#: ../lib/CataBlog.class.php:1468
    288288msgid "No item ID posted, press back arrow and try again."
    289289msgstr "Keine ID gewählt. Bitte versuche es erneut."
    290290
    291 #: ../lib/CataBlog.class.php:1510
     291#: ../lib/CataBlog.class.php:1511
    292292msgid "Please make your selection by checking the boxes in the list below."
    293293msgstr "Bitte wähle aus der folgenden Liste."
    294294
    295 #: ../lib/CataBlog.class.php:1556
     295#: ../lib/CataBlog.class.php:1557
    296296#, php-format
    297297msgid "Error during set category, could not load item with id %s."
    298298msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden."
    299299
    300 #: ../lib/CataBlog.class.php:1574
     300#: ../lib/CataBlog.class.php:1575
    301301#, php-format
    302302msgid "Error during bulk delete, could not load item with id %s."
    303303msgstr "Fehler. Eintrag mit der ID %s konnte nicht geladen werden."
    304304
    305 #: ../lib/CataBlog.class.php:1605
     305#: ../lib/CataBlog.class.php:1606
    306306msgid "No file was selected for upload, please try again."
    307307msgstr "Nichts ausgewählt. Bitte versuche es erneut."
    308308
    309 #: ../lib/CataBlog.class.php:1614
     309#: ../lib/CataBlog.class.php:1615
    310310msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML."
    311311msgstr "XML-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist."
    312312
    313 #: ../lib/CataBlog.class.php:1624
     313#: ../lib/CataBlog.class.php:1625
    314314msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension."
    315315msgstr "Dateiformat unbekannt. Bitte überprüfe, ob die Dateiendung .xml oder .csv lautet."
    316316
    317 #: ../lib/CataBlog.class.php:1695
     317#: ../lib/CataBlog.class.php:1696
    318318msgid "The CataBlog upload directories have been unlocked."
    319319msgstr "Die CataBlog-Upload-Verzeichnisse sind freigegeben."
    320320
    321 #: ../lib/CataBlog.class.php:1698
    322 #: ../lib/CataBlog.class.php:1711
     321#: ../lib/CataBlog.class.php:1699
     322#: ../lib/CataBlog.class.php:1712
    323323msgid "Could not lock/unlock the directory. Are you using a unix based server?"
    324324msgstr "Verzeichnis konnte nicht gesperrt/freigegeben werden. Bist du sicher, dass ein UNIX-Server eingesetzt wird?"
    325325
    326 #: ../lib/CataBlog.class.php:1708
     326#: ../lib/CataBlog.class.php:1709
    327327msgid "The CataBlog upload directories have been locked."
    328328msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt."
    329329
    330 #: ../lib/CataBlog.class.php:1827
     330#: ../lib/CataBlog.class.php:1843
    331331msgid "micro save successful"
    332332msgstr ""
    333333
    334 #: ../lib/CataBlog.class.php:1835
     334#: ../lib/CataBlog.class.php:1851
    335335msgid "Cannot save changes because the item id could not be found in the database."
    336336msgstr ""
    337337
    338 #: ../lib/CataBlog.class.php:1896
     338#: ../lib/CataBlog.class.php:1924
    339339msgid "Screen Options updated successfully."
    340340msgstr "Anzeigeeinstellungen erfolgreich aktualisiert."
    341341
    342 #: ../lib/CataBlog.class.php:1910
     342#: ../lib/CataBlog.class.php:1938
    343343#: ../templates/admin-edit.php:277
    344344msgid "Commas, Pipes and reserved HTML characters are not allowed in category names."
    345345msgstr "Kategoriename enthält ungültige Zeichen."
    346346
    347 #: ../lib/CataBlog.class.php:1916
     347#: ../lib/CataBlog.class.php:1944
    348348msgid "Please be a little more specific with your category name."
    349349msgstr "Bitte sei etwas eindeutiger mit dem Kategorienamen."
    350350
    351 #: ../lib/CataBlog.class.php:1929
     351#: ../lib/CataBlog.class.php:1957
    352352msgid "There already is a category with that name."
    353353msgstr "Dieser Kategoriename existiert bereits."
    354354
    355 #: ../lib/CataBlog.class.php:1966
     355#: ../lib/CataBlog.class.php:1994
    356356#, fuzzy
    357357msgid "Term Edited Successfully"
    358358msgstr "Löschen erfolgreich."
    359359
    360 #: ../lib/CataBlog.class.php:1969
    361 #: ../lib/CataBlog.class.php:1985
     360#: ../lib/CataBlog.class.php:1997
     361#: ../lib/CataBlog.class.php:2013
    362362msgid "Term did not exist, please refresh page and try again."
    363363msgstr "Bezeichnung existiert nicht. Bitte lade die Seite neu und versuche es erneut."
    364364
    365 #: ../lib/CataBlog.class.php:1982
     365#: ../lib/CataBlog.class.php:2010
    366366msgid "Term Removed Successfully."
    367367msgstr "Löschen erfolgreich."
    368368
    369 #: ../lib/CataBlog.class.php:2036
     369#: ../lib/CataBlog.class.php:2064
    370370msgid "unsupported image size type"
    371371msgstr "Bildgröße nicht unterstützt."
    372372
    373 #: ../lib/CataBlog.class.php:2046
     373#: ../lib/CataBlog.class.php:2074
    374374#, php-format
    375375msgid "Rendering... %s of %s"
    376376msgstr "Bildverarbeitung... %s von %s"
    377377
    378 #: ../lib/CataBlog.class.php:2048
     378#: ../lib/CataBlog.class.php:2076
    379379msgid "Image rendering is now complete."
    380380msgstr "Bildverarbeitung abgeschlossen."
    381381
    382 #: ../lib/CataBlog.class.php:2089
     382#: ../lib/CataBlog.class.php:2117
    383383msgid "error"
    384384msgstr "Fehler"
    385385
    386 #: ../lib/CataBlog.class.php:2092
     386#: ../lib/CataBlog.class.php:2120
    387387msgid "sub image deleted successfully"
    388388msgstr "Löschen erfolgreich."
    389389
    390 #: ../lib/CataBlog.class.php:2127
     390#: ../lib/CataBlog.class.php:2155
    391391#, php-format
    392392msgid "%s library items deleted successfully."
    393393msgstr "%s Einträge entfernt."
    394394
    395 #: ../lib/CataBlog.class.php:2130
     395#: ../lib/CataBlog.class.php:2158
    396396msgid "CataBlog Library Cleared Successfully."
    397397msgstr "CataBlog-Einträge entfernt."
    398398
    399 #: ../lib/CataBlog.class.php:2143
     399#: ../lib/CataBlog.class.php:2171
    400400msgid "CataBlog Options, Directories and Terms Deleted Successfully."
    401401msgstr "CataBlog-Einstellungen, Verzeichnisse und Bezeichnungen entfernt."
    402402
    403 #: ../lib/CataBlog.class.php:2144
     403#: ../lib/CataBlog.class.php:2172
    404404msgid "You may now go deactivate CataBlog and nothing will be left behind."
    405405msgstr "Du kannst nun CataBlog deaktivieren. Es bleibt nichts zurück."
    406406
    407 #: ../lib/CataBlog.class.php:2145
     407#: ../lib/CataBlog.class.php:2173
    408408msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings."
    409409msgstr "Wenn du CataBlog wieder nutzen möchtest, installiere alles Nötige erneut."
    410410
    411 #: ../lib/CataBlog.class.php:2206
     411#: ../lib/CataBlog.class.php:2234
    412412#, php-format
    413413msgid "CataBlog %s LightBox Styles | %s"
    414414msgstr "CataBlog %s LightBox Styles | %s"
    415415
    416 #: ../lib/CataBlog.class.php:2228
     416#: ../lib/CataBlog.class.php:2256
    417417msgid "You may also press &quot;P&quot; or the left arrow on your keyboard"
    418418msgstr "Die linke Pfeiltaste oder &quot;P&quot; kann auch genutzt werden."
    419419
    420 #: ../lib/CataBlog.class.php:2229
     420#: ../lib/CataBlog.class.php:2257
    421421msgid "You may also press &quot;N&quot; or the right arrow on your keyboard"
    422422msgstr "Die rechte Pfeiltaste oder &quot;N&quot; kann auch genutzt werden."
    423423
    424 #: ../lib/CataBlog.class.php:2230
     424#: ../lib/CataBlog.class.php:2258
    425425msgid "Close LightBox Now"
    426426msgstr "LightBox schließen"
    427427
    428 #: ../lib/CataBlog.class.php:2231
     428#: ../lib/CataBlog.class.php:2259
    429429msgid "PREV"
    430430msgstr "zurück"
    431431
    432 #: ../lib/CataBlog.class.php:2232
     432#: ../lib/CataBlog.class.php:2260
    433433msgid "NEXT"
    434434msgstr "weiter"
    435435
    436 #: ../lib/CataBlog.class.php:2233
     436#: ../lib/CataBlog.class.php:2261
    437437msgid "CLOSE"
    438438msgstr "schließen"
    439439
    440 #: ../lib/CataBlog.class.php:2237
     440#: ../lib/CataBlog.class.php:2265
    441441#, php-format
    442442msgid "CataBlog %s LightBox JavaScript | %s"
    443443msgstr "CataBlog %s LightBox JavaScript | %s"
    444444
    445 #: ../lib/CataBlog.class.php:2239
     445#: ../lib/CataBlog.class.php:2267
    446446msgid "End CataBlog LightBox JavaScript"
    447447msgstr "Beende CataBlog LightBox JavaScript"
    448448
    449 #: ../lib/CataBlog.class.php:2355
     449#: ../lib/CataBlog.class.php:2386
    450450msgid "You must use the id attribute in the catablog_gallery Shortcode"
    451451msgstr ""
    452452
    453 #: ../lib/CataBlog.class.php:2372
     453#: ../lib/CataBlog.class.php:2406
    454454#, php-format
    455455msgid "Could not find a CataBlog Gallery with id %s"
     
    457457
    458458#: ../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
     461msgid "Previous"
     462msgstr ""
     463
     464#: ../lib/CataBlog.class.php:2456
     465#: ../lib/CataBlog.class.php:2842
     466#: ../lib/CataBlog.class.php:3017
     467msgid "Next"
     468msgstr ""
     469
     470#: ../lib/CataBlog.class.php:2614
    464471#, fuzzy, php-format
    465472msgid "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."
    466473msgstr "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."
    467474
    468 #: ../lib/CataBlog.class.php:2614
     475#: ../lib/CataBlog.class.php:2637
    469476#, php-format
    470477msgid "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."
    471478msgstr "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."
    472479
    473 #: ../lib/CataBlog.class.php:2615
     480#: ../lib/CataBlog.class.php:2638
    474481msgid "Learn More"
    475482msgstr "Erfahre mehr"
    476483
    477 #: ../lib/CataBlog.class.php:2667
     484#: ../lib/CataBlog.class.php:2690
    478485#, fuzzy
    479486msgid "CataBlog Error:"
    480487msgstr "CataBlog-Eintrag"
    481488
    482 #: ../lib/CataBlog.class.php:2669
     489#: ../lib/CataBlog.class.php:2692
    483490#, php-format
    484491msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s."
    485492msgstr ""
    486493
    487 #: ../lib/CataBlog.class.php:2689
     494#: ../lib/CataBlog.class.php:2712
    488495#, fuzzy
    489496msgid "Select Category"
    490497msgstr "Wähle eine Farbe"
    491498
    492 #: ../lib/CataBlog.class.php:2783
     499#: ../lib/CataBlog.class.php:2806
    493500#, fuzzy
    494501msgid "The CataBlog Upload Directory cannot be written. "
    495502msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt."
    496503
    497 #: ../lib/CataBlog.class.php:2783
    498 #: ../lib/CataBlog.class.php:2788
    499 #: ../lib/CataBlog.class.php:2988
     504#: ../lib/CataBlog.class.php:2806
     505#: ../lib/CataBlog.class.php:2811
     506#: ../lib/CataBlog.class.php:3011
    500507msgid "Please check your server file permissions and apache configuration."
    501508msgstr ""
    502509
    503 #: ../lib/CataBlog.class.php:2788
     510#: ../lib/CataBlog.class.php:2811
    504511#, fuzzy
    505512msgid "The CataBlog Templates Directory cannot be written. "
    506513msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt."
    507514
    508 #: ../lib/CataBlog.class.php:2794
     515#: ../lib/CataBlog.class.php:2817
    509516#, php-format
    510517msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s"
    511518msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden eingespielt. Bitte %sneu laden%s"
    512519
    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
    524521#, php-format
    525522msgid "There was an error creating the default term: %s"
    526523msgstr "Fehler beim Erstellen der Standardbezeichnung: %s"
    527524
    528 #: ../lib/CataBlog.class.php:2910
     525#: ../lib/CataBlog.class.php:2933
    529526msgid "CataBlog options and directories have been successfully upgraded."
    530527msgstr "CataBlog-Einstellungen und -Verzeichnisse wurden aktualisiert."
    531528
    532 #: ../lib/CataBlog.class.php:2988
     529#: ../lib/CataBlog.class.php:3011
    533530#, fuzzy
    534531msgid "The New CataBlog Templates cannot be written. "
    535532msgstr "Die CataBlog-Upload-Verzeichnisse sind gesperrt."
    536533
    537 #: ../lib/CataBlog.class.php:3175
     534#: ../lib/CataBlog.class.php:3198
    538535msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid."
    539536msgstr "CSV-Dokument konnte nicht verarbeitet werden. Überprüfe, ob die Datei valide ist."
    540537
    541 #: ../lib/CataBlog.class.php:3216
     538#: ../lib/CataBlog.class.php:3239
    542539#, fuzzy, php-format
    543540msgid "There was an error parsing your CSV file on lines: %s."
    544541msgstr "Fehler beim Erstellen der Standardbezeichnung: %s"
    545542
    546 #: ../lib/CataBlog.class.php:3263
    547 #: ../lib/CataBlog.class.php:3306
    548 #: ../lib/CataBlog.class.php:3310
    549 #: ../lib/CataBlog.class.php:3313
     543#: ../lib/CataBlog.class.php:3286
     544#: ../lib/CataBlog.class.php:3329
     545#: ../lib/CataBlog.class.php:3333
     546#: ../lib/CataBlog.class.php:3336
    550547msgid "Error:"
    551548msgstr "Fehler:"
    552549
    553 #: ../lib/CataBlog.class.php:3277
     550#: ../lib/CataBlog.class.php:3300
    554551msgid "Success:"
    555552msgstr "Erfolg:"
    556553
    557 #: ../lib/CataBlog.class.php:3277
     554#: ../lib/CataBlog.class.php:3300
    558555#, php-format
    559556msgid " %s inserted into catalog categories."
    560557msgstr "%s in Kategorien eingefügt."
    561558
    562 #: ../lib/CataBlog.class.php:3285
     559#: ../lib/CataBlog.class.php:3308
    563560msgid "All New Categories Created"
    564561msgstr "Alle neuen Kategorien erstellt"
    565562
    566 #: ../lib/CataBlog.class.php:3289
     563#: ../lib/CataBlog.class.php:3312
    567564msgid "No New Categories Created"
    568565msgstr "Keine neuen Kategorien erstellt"
    569566
    570 #: ../lib/CataBlog.class.php:3304
    571 #: ../lib/CataBlog.class.php:3358
     567#: ../lib/CataBlog.class.php:3327
     568#: ../lib/CataBlog.class.php:3381
    572569msgid "Insert:"
    573570msgstr "Einfügen:"
    574571
    575 #: ../lib/CataBlog.class.php:3304
    576 #: ../lib/CataBlog.class.php:3358
     572#: ../lib/CataBlog.class.php:3327
     573#: ../lib/CataBlog.class.php:3381
    577574#, php-format
    578575msgid " %s inserted into the database."
    579576msgstr "%s in Datenbank eingefügt."
    580577
    581 #: ../lib/CataBlog.class.php:3306
     578#: ../lib/CataBlog.class.php:3329
    582579#, php-format
    583580msgid " %s was not inserted into the database."
    584581msgstr "%s wurde nicht in die Datenbank eingefügt."
    585582
    586 #: ../lib/CataBlog.class.php:3310
     583#: ../lib/CataBlog.class.php:3333
    587584msgid "Item had no title and could not be made."
    588585msgstr "Eintrag hat keinen Titel und konnte nicht erstellt werden."
    589586
    590 #: ../lib/CataBlog.class.php:3313
     587#: ../lib/CataBlog.class.php:3336
    591588msgid "Item had no primary image name and could not be made."
    592589msgstr "Eintrag hat kein Bild und konnte nicht erstellt werden."
    593590
    594 #: ../lib/CataBlog.class.php:3355
     591#: ../lib/CataBlog.class.php:3378
    595592msgid "Update:"
    596593msgstr "Aktualisierung:"
    597594
    598 #: ../lib/CataBlog.class.php:3355
     595#: ../lib/CataBlog.class.php:3378
    599596#, php-format
    600597msgid " %s updated in database."
    601598msgstr "%s in Datenbank aktualisiert."
    602599
    603 #: ../lib/CataBlog.class.php:3384
     600#: ../lib/CataBlog.class.php:3407
    604601#, fuzzy, php-format
    605602msgid "%s Catalog Items Inserted"
    606603msgstr "Alle Einträge verarbeitet"
    607604
    608 #: ../lib/CataBlog.class.php:3449
     605#: ../lib/CataBlog.class.php:3472
    609606msgid "Uploaded File Exceeded The PHP Configurations Max File Size."
    610607msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die PHP zulässt."
    611608
    612 #: ../lib/CataBlog.class.php:3452
     609#: ../lib/CataBlog.class.php:3475
    613610msgid "Upload File Exceeded The HTML Form's Max File Size."
    614611msgstr "Hochgeladene Datei überschreitet die maximale Dateigröße, die das Formular zulässt."
    615612
    616 #: ../lib/CataBlog.class.php:3455
     613#: ../lib/CataBlog.class.php:3478
    617614msgid "File Only Partially Uploaded, Please Try Again."
    618615msgstr "Datei nur teilweise hochgeladen. Bitte versuche es erneut."
    619616
    620 #: ../lib/CataBlog.class.php:3458
     617#: ../lib/CataBlog.class.php:3481
    621618msgid "No File Selected For Upload. Please Resubmit The Form."
    622619msgstr "Keine Datei gewählt. Bitte versuche es erneut."
    623620
    624 #: ../lib/CataBlog.class.php:3461
     621#: ../lib/CataBlog.class.php:3484
    625622msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin."
    626623msgstr "In der PHP-Konfiguration ist kein temporäres Verzeichnis für Uploads. Bitte kontaktiere den Systemadministrator."
    627624
    628 #: ../lib/CataBlog.class.php:3464
     625#: ../lib/CataBlog.class.php:3487
    629626msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin."
    630627msgstr "In der PHP-Konfiguration ist das Schreiben auf die Festplatte deaktiviert. Bitte kontaktiere den Systemadministrator."
    631628
    632 #: ../lib/CataBlog.class.php:3467
     629#: ../lib/CataBlog.class.php:3490
    633630msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin."
    634631msgstr "Eine PHP-Erweiterung blockiert PHP-Aktualisierungen. Bitte kontaktiere den Systemadministrator."
    635632
    636 #: ../lib/CataBlog.class.php:3470
     633#: ../lib/CataBlog.class.php:3493
    637634msgid "An Unknown Upload Error Has Occurred"
    638635msgstr "Ein unbekannter Fehler ist bein Upload aufgetreten"
     
    651648msgstr "Kategorien konnten nicht gewählt werden. Bitte versuche es erneut."
    652649
    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
    771651#: ../lib/CataBlogWidget.class.php:52
    772652#: ../templates/admin-edit.php:57
     
    777657msgstr "Titel"
    778658
     659#: ../lib/catablog.upload.php:123
     660#: ../lib/CataBlogItem.class.php:365
     661msgid "An item must have a title of at least one alphanumeric character."
     662msgstr "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
     668msgid "Description"
     669msgstr "Beschreibung"
     670
     671#: ../lib/catablog.upload.php:142
     672#: ../lib/CataBlogItem.class.php:400
     673msgid "An item's price must be a positive number."
     674msgstr "Der Preis muss positiv sein."
     675
     676#: ../lib/catablog.upload.php:145
     677#: ../lib/CataBlogItem.class.php:393
     678msgid "An item's order value must be a positive integer."
     679msgstr "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
     684msgid "Save Changes"
     685msgstr "Änderungen speichern"
     686
     687#: ../lib/CataBlogDirectory.class.php:12
     688#: ../lib/CataBlogDirectory.class.php:109
     689msgid "Could not open directory."
     690msgstr "Verzeichnis kann nicht geöffnet werden."
     691
     692#: ../lib/CataBlogGallery.class.php:187
     693#, fuzzy
     694msgid "A gallery must have a title of at least one alphanumeric character."
     695msgstr "Ein Eintrag muss einen Titel, bestehend aus mindestens einem alphanumerischen Zeichen, besitzen."
     696
     697#: ../lib/CataBlogGallery.class.php:192
     698#, fuzzy
     699msgid "A gallery title can not be more then 200 characters long."
     700msgstr "Der Titel kann maximal 200 Zeichen umfassen."
     701
     702#: ../lib/CataBlogItem.class.php:354
     703msgid "An item must have an image associated with it."
     704msgstr "Einem Eintrag muss ein Bild besitzen."
     705
     706#: ../lib/CataBlogItem.class.php:360
     707msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable."
     708msgstr "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
     711msgid "An item's title can not be more then 200 characters long."
     712msgstr "Der Titel kann maximal 200 Zeichen umfassen."
     713
     714#: ../lib/CataBlogItem.class.php:375
     715msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS"
     716msgstr "Das Datum eines Eintrags muss im MySQL-Datumsformat vorliegen, YYYY-MM-DD HH:MM:SS"
     717
     718#: ../lib/CataBlogItem.class.php:383
     719msgid "An item's date must be an actual day on the gregorian calendar."
     720msgstr "Das Datum eines Eintrags muss einem tatsächlichem Tag im Gregorianischen Kalender entsprechen."
     721
     722#: ../lib/CataBlogItem.class.php:388
     723msgid "An item's date hour must be below twenty-four."
     724msgstr "Die Stundenangabe muss unter 24 liegen."
     725
     726#: ../lib/CataBlogItem.class.php:423
     727#: ../lib/CataBlogItem.class.php:600
     728msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please."
     729msgstr "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
     733msgid "Can not write uploaded image to server, your storage space is exhausted."
     734msgstr "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
     738msgid "Please delete some media files to free up space and try again."
     739msgstr "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
     744msgid "You have %sMB of available space on your server and your image is %sMB."
     745msgstr "Du hast %sMB Speicherplatz zur Verfügung. Das Bild ist %sMB groß."
     746
     747#: ../lib/CataBlogItem.class.php:517
     748msgid "Could not set categories, please try again."
     749msgstr "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
     754msgid "Original image file missing, could not be located at %s"
     755msgstr "Original Bilddatei fehlt. Sie konnte nicht in %s gefunden werden"
     756
     757#: ../lib/CataBlogItem.class.php:651
     758#: ../lib/CataBlogItem.class.php:720
     759msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file."
     760msgstr "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
     764msgid "Original image could not be loaded because it is an unsupported format."
     765msgstr "Originalbild konnte nicht geladen werden, da es ein nicht unterstütztes Format besitzt."
     766
     767#: ../lib/CataBlogWidget.class.php:14
     768#, fuzzy
     769msgid "Entries from your CataBlog Library"
     770msgstr "CataBlog-Einträge"
     771
     772#: ../lib/CataBlogWidget.class.php:15
     773#, fuzzy
     774msgid "CataBlog Catalog"
     775msgstr "CataBlog-Kategorie"
     776
     777#: ../lib/CataBlogWidget.class.php:50
     778#: ../templates/admin-galleries.php:70
     779#: ../templates/admin-galleries.php:84
     780msgid "Date"
     781msgstr "Datum"
     782
     783#: ../lib/CataBlogWidget.class.php:51
     784msgid "Order"
     785msgstr "Reihenfolge"
     786
    779787#: ../lib/CataBlogWidget.class.php:53
    780788msgid "Random"
     
    13561364msgstr "Zur letzten Seite"
    13571365
    1358 #: ../templates/admin-galleries.php:61
    1359 #: ../templates/admin-galleries.php:81
    1360 #: ../templates/admin-gallery-edit.php:17
    1361 msgid "Description"
    1362 msgstr "Beschreibung"
    1363 
    13641366#: ../templates/admin-galleries.php:62
    13651367#: ../templates/admin-galleries.php:82
     
    14791481
    14801482#: ../templates/admin-library.php:40
     1483#: ../templates/admin-screen-options-add-new.php:49
    14811484#: ../templates/admin-screen-options-galleries.php:56
    14821485#: ../templates/admin-screen-options-library.php:56
     
    15641567msgstr "Bitte wähle zunächst mindestens einen Eintrag aus."
    15651568
    1566 #: ../templates/admin-library.php:287
     1569#: ../templates/admin-library.php:289
    15671570msgid "Are you sure you want to delete multiple items?"
    15681571msgstr "Bist du dir sicher, dass du mehrere Einträge löschen möchtest?"
    15691572
    1570 #: ../templates/admin-library.php:316
     1573#: ../templates/admin-library.php:318
    15711574msgid "Are you sure you want to permanently delete this catalog items?"
    15721575msgstr "Bist du sicher, dass du diese Einträge löschen möchtest?"
     
    16371640msgid "Select Images"
    16381641msgstr "Bilder neu verarbeiten"
     1642
     1643#: ../templates/admin-new.php:261
     1644#: ../templates/admin-options.php:601
     1645msgid "There are errors, please correct them before saving."
     1646msgstr ""
    16391647
    16401648#: ../templates/admin-options.php:8
     
    20862094msgstr "oder %saktuelle Änderungen rückgängig machen%s"
    20872095
    2088 #: ../templates/admin-options.php:601
    2089 msgid "There are errors, please correct them before saving."
    2090 msgstr ""
    2091 
    20922096#: ../templates/admin-options.php:720
    20932097#: ../templates/admin-regenerate.php:43
     
    21592163msgstr "Neues Bild gefunden. Erstelle Eintrag %s"
    21602164
     2165#: ../templates/admin-screen-options-add-new.php:40
    21612166#: ../templates/admin-screen-options-galleries.php:41
    21622167#: ../templates/admin-screen-options-galleries.php:50
  • catablog/trunk/localization/catablog-es_ES.po

    r524478 r530481  
    55"Project-Id-Version: CataBlog 1.2.5\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2012-03-27 14:25-0800\n"
    8 "PO-Revision-Date: 2012-03-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"
    99"Last-Translator: Zachary Segal <zac@illproductions.com>\n"
    1010"Language-Team: illProductions <zac@illproductions.com>\n"
     
    3434msgstr "<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."
    3535
    36 #: ../lib/CataBlog.class.php:210
     36#: ../lib/CataBlog.class.php:211
    3737msgid "Uncategorized"
    3838msgstr "sin categoría"
    3939
    40 #: ../lib/CataBlog.class.php:231
     40#: ../lib/CataBlog.class.php:232
    4141msgid "CataBlog Item"
    4242msgstr "CataBlog Artículo"
    4343
    44 #: ../lib/CataBlog.class.php:236
     44#: ../lib/CataBlog.class.php:237
    4545msgid "A Catalog Item, generated by CataBlog."
    4646msgstr "Un artículo de catálogo, generado por CataBlog."
    4747
    48 #: ../lib/CataBlog.class.php:247
     48#: ../lib/CataBlog.class.php:248
    4949msgid "CataBlog Category"
    5050msgstr "CataBlog Categoría"
    5151
    52 #: ../lib/CataBlog.class.php:258
     52#: ../lib/CataBlog.class.php:259
    5353#, fuzzy
    5454msgid "CataBlog Gallery"
    5555msgstr "CataBlog Categoría"
    5656
    57 #: ../lib/CataBlog.class.php:263
     57#: ../lib/CataBlog.class.php:264
    5858#, fuzzy
    5959msgid "A Catalog Gallery, generated by CataBlog."
    6060msgstr "Un artículo de catálogo, generado por CataBlog."
    6161
    62 #: ../lib/CataBlog.class.php:389
     62#: ../lib/CataBlog.class.php:390
    6363#: ../templates/admin-404.php:11
    6464msgid "CataBlog Library"
    6565msgstr "CataBlog Colección"
    6666
    67 #: ../lib/CataBlog.class.php:389
    68 #: ../lib/CataBlog.class.php:476
     67#: ../lib/CataBlog.class.php:390
     68#: ../lib/CataBlog.class.php:477
    6969msgid "Library"
    7070msgstr "Colección"
    7171
    72 #: ../lib/CataBlog.class.php:390
     72#: ../lib/CataBlog.class.php:391
    7373msgid "Add New CataBlog Entry"
    7474msgstr "Añadir entrada CataBlog Nueva"
    7575
    76 #: ../lib/CataBlog.class.php:390
    77 #: ../lib/CataBlog.class.php:477
     76#: ../lib/CataBlog.class.php:391
     77#: ../lib/CataBlog.class.php:478
    7878msgid "Add New"
    7979msgstr "Añadir nuevo"
    8080
    81 #: ../lib/CataBlog.class.php:391
     81#: ../lib/CataBlog.class.php:392
    8282#: ../templates/admin-galleries.php:5
    8383#, fuzzy
     
    8585msgstr "CataBlog Categorías"
    8686
    87 #: ../lib/CataBlog.class.php:391
    88 #: ../lib/CataBlog.class.php:478
     87#: ../lib/CataBlog.class.php:392
     88#: ../lib/CataBlog.class.php:479
    8989#, fuzzy
    9090msgid "Galleries"
    9191msgstr "Categorías"
    9292
    93 #: ../lib/CataBlog.class.php:392
     93#: ../lib/CataBlog.class.php:393
    9494msgid "CataBlog Templates"
    9595msgstr "Plantillas CataBlog"
    9696
    97 #: ../lib/CataBlog.class.php:392
    98 #: ../lib/CataBlog.class.php:479
     97#: ../lib/CataBlog.class.php:393
     98#: ../lib/CataBlog.class.php:480
    9999msgid "Templates"
    100100msgstr "Plantillas"
    101101
    102 #: ../lib/CataBlog.class.php:393
     102#: ../lib/CataBlog.class.php:394
    103103msgid "CataBlog Options"
    104104msgstr "CataBlog Opciones"
    105105
    106 #: ../lib/CataBlog.class.php:393
    107 #: ../lib/CataBlog.class.php:480
     106#: ../lib/CataBlog.class.php:394
     107#: ../lib/CataBlog.class.php:481
    108108msgid "Options"
    109109msgstr "Opciones"
    110110
    111 #: ../lib/CataBlog.class.php:394
     111#: ../lib/CataBlog.class.php:395
    112112#: ../templates/admin-about.php:4
    113113msgid "About CataBlog"
    114114msgstr "Acerca de CataBlog"
    115115
    116 #: ../lib/CataBlog.class.php:394
    117 #: ../lib/CataBlog.class.php:481
     116#: ../lib/CataBlog.class.php:395
     117#: ../lib/CataBlog.class.php:482
    118118msgid "About"
    119119msgstr "Acerca"
    120120
    121 #: ../lib/CataBlog.class.php:461
     121#: ../lib/CataBlog.class.php:462
    122122#: ../templates/admin-edit.php:4
    123123msgid "Edit CataBlog Entry"
    124124msgstr "Editar entrada CataBlog"
    125125
    126 #: ../lib/CataBlog.class.php:475
     126#: ../lib/CataBlog.class.php:476
    127127#: ../templates/admin-discfull.php:22
    128128msgid "CataBlog"
    129129msgstr "CataBlog"
    130130
    131 #: ../lib/CataBlog.class.php:484
     131#: ../lib/CataBlog.class.php:485
    132132msgid "CataBlog Entry"
    133133msgstr "CataBlog Entrada"
    134134
    135 #: ../lib/CataBlog.class.php:664
    136 #: ../lib/CataBlog.class.php:707
    137 #: ../lib/CataBlog.class.php:1174
     135#: ../lib/CataBlog.class.php:665
     136#: ../lib/CataBlog.class.php:708
     137#: ../lib/CataBlog.class.php:1175
    138138msgid "Changes Saved Successfully."
    139139msgstr "Cambios guardados con éxito."
    140140
    141 #: ../lib/CataBlog.class.php:667
     141#: ../lib/CataBlog.class.php:668
    142142msgid "Catalog Item Deleted Successfully."
    143143msgstr "Catálogo del artículo suprimido con éxito."
    144144
    145 #: ../lib/CataBlog.class.php:670
     145#: ../lib/CataBlog.class.php:671
    146146msgid "Could Not Delete Item Because ID was non existent."
    147147msgstr "No se pudo artículo Eliminar Porque ID fue inexistente."
    148148
    149 #: ../lib/CataBlog.class.php:673
     149#: ../lib/CataBlog.class.php:674
    150150msgid "Could not verify bulk edit action nonce, please refresh page and try again."
    151151msgstr "No se pudo verificar edición masiva nonce acción, puede volver a cargar la página e inténtalo de nuevo."
    152152
    153 #: ../lib/CataBlog.class.php:676
     153#: ../lib/CataBlog.class.php:677
    154154msgid "Bulk categories edit performed successfully."
    155155msgstr "Categorías de Edición masiva a cabo con éxito."
    156156
    157 #: ../lib/CataBlog.class.php:679
     157#: ../lib/CataBlog.class.php:680
    158158msgid "Bulk delete performed successfully."
    159159msgstr "A granel eliminar a cabo con éxito."
    160160
    161 #: ../lib/CataBlog.class.php:682
     161#: ../lib/CataBlog.class.php:683
    162162msgid "Reset all data successfully."
    163163msgstr "Restablecer todos los datos correctamente."
    164164
    165 #: ../lib/CataBlog.class.php:685
     165#: ../lib/CataBlog.class.php:686
    166166#, fuzzy
    167167msgid "Catalog items added to Gallery successfully."
    168168msgstr "Catálogo del artículo suprimido con éxito."
    169169
    170 #: ../lib/CataBlog.class.php:688
     170#: ../lib/CataBlog.class.php:689
    171171msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again."
    172172msgstr ""
    173173
    174 #: ../lib/CataBlog.class.php:691
     174#: ../lib/CataBlog.class.php:692
    175175#, fuzzy
    176176msgid "Could not validate the gallery, please modify the gallery and try again."
    177177msgstr "No se pudo verificar edición masiva nonce acción, puede volver a cargar la página e inténtalo de nuevo."
    178178
    179 #: ../lib/CataBlog.class.php:711
     179#: ../lib/CataBlog.class.php:712
    180180msgid "View Now"
    181181msgstr "Ver ahora"
    182182
    183 #: ../lib/CataBlog.class.php:774
     183#: ../lib/CataBlog.class.php:775
    184184msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical."
    185185msgstr "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."
    186186
    187 #: ../lib/CataBlog.class.php:782
     187#: ../lib/CataBlog.class.php:783
    188188msgid "CataBlog Options Saved"
    189189msgstr "Opciones CataBlog guardados"
    190190
    191 #: ../lib/CataBlog.class.php:835
     191#: ../lib/CataBlog.class.php:836
    192192msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page"
    193193msgstr "Por favor, Deja que la Prestación continuación completa antes de salir de esta página"
    194194
    195 #: ../lib/CataBlog.class.php:853
    196 #: ../lib/CataBlog.class.php:904
    197 #: ../lib/CataBlog.class.php:907
    198 #: ../lib/CataBlog.class.php:1125
    199 #: ../lib/CataBlog.class.php:1180
     195#: ../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
    200200msgid "Form Validation Error. Please reload the page and try again."
    201201msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo."
    202202
    203 #: ../lib/CataBlog.class.php:898
     203#: ../lib/CataBlog.class.php:899
    204204msgid "Template Changes Saved Successfully."
    205205msgstr "Cambios en las plantillas guardado correctamente."
    206206
    207 #: ../lib/CataBlog.class.php:901
     207#: ../lib/CataBlog.class.php:902
    208208msgid "Template Created Successfully."
    209209msgstr "Plantilla creado correctamente."
    210210
    211 #: ../lib/CataBlog.class.php:910
     211#: ../lib/CataBlog.class.php:911
    212212#, php-format
    213213msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>"
    214214msgstr "Error de creación del archivo. Por favor, asegúrese de que WordPress se puede escribir en este directorio:<br /><code>%s</code>"
    215215
    216 #: ../lib/CataBlog.class.php:913
     216#: ../lib/CataBlog.class.php:914
    217217msgid "File Creation Error. A template already exists with that name."
    218218msgstr "Error de creación del archivo. Una plantilla que ya existe con ese nombre."
    219219
    220 #: ../lib/CataBlog.class.php:916
     220#: ../lib/CataBlog.class.php:917
    221221msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters."
    222222msgstr "Error de creación del archivo. A nombre de la plantilla sólo puede consistir en guiones bajos, guiones y caracteres alfanuméricos."
    223223
    224 #: ../lib/CataBlog.class.php:998
    225224#: ../lib/CataBlog.class.php:999
    226225#: ../lib/CataBlog.class.php:1000
     226#: ../lib/CataBlog.class.php:1001
    227227msgid "not present"
    228228msgstr "no está presente"
    229229
    230 #: ../lib/CataBlog.class.php:1119
     230#: ../lib/CataBlog.class.php:1120
    231231#, fuzzy
    232232msgid "Gallery Created Successfully."
    233233msgstr "Plantilla creado correctamente."
    234234
    235 #: ../lib/CataBlog.class.php:1122
     235#: ../lib/CataBlog.class.php:1123
    236236#, fuzzy
    237237msgid "Form Validation Error. Please check your gallery title and try again."
    238238msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo."
    239239
    240 #: ../lib/CataBlog.class.php:1128
     240#: ../lib/CataBlog.class.php:1129
    241241#, fuzzy
    242242msgid "Gallery Deleted Successfully."
    243243msgstr "Catálogo del artículo suprimido con éxito."
    244244
    245 #: ../lib/CataBlog.class.php:1131
     245#: ../lib/CataBlog.class.php:1132
    246246#, fuzzy
    247247msgid "Could Not Delete Gallery Because ID was non existent."
    248248msgstr "No se pudo artículo Eliminar Porque ID fue inexistente."
    249249
    250 #: ../lib/CataBlog.class.php:1134
     250#: ../lib/CataBlog.class.php:1135
    251251#, fuzzy
    252252msgid "Multiple Galleries Deleted Successfully."
    253253msgstr "Catálogo del artículo suprimido con éxito."
    254254
    255 #: ../lib/CataBlog.class.php:1177
     255#: ../lib/CataBlog.class.php:1178
    256256#, fuzzy
    257257msgid "Form Validation Error: Please make sure your title is at least one character."
    258258msgstr "Formulario de error de validación. Por favor, vuelva a cargar la página e inténtalo de nuevo."
    259259
    260 #: ../lib/CataBlog.class.php:1315
     260#: ../lib/CataBlog.class.php:1316
    261261msgid "The file you selected was to large or you didn't select anything at all, please try again."
    262262msgstr "El archivo que se seleccionó a los grandes o si no ha seleccionado nada en absoluto, por favor, inténtelo de nuevo."
    263263
    264 #: ../lib/CataBlog.class.php:1319
    265 #: ../lib/CataBlog.class.php:1373
    266 #: ../lib/CataBlog.class.php:1425
    267 #: ../lib/CataBlog.class.php:1463
    268 #: ../lib/CataBlog.class.php:1596
     264#: ../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
    269269msgid "WordPress Nonce Error, please reload the form and try again."
    270270msgstr "WordPress Nonce Error: por favor, vuelva a cargar el formulario y vuelva a intentarlo."
    271271
    272 #: ../lib/CataBlog.class.php:1377
     272#: ../lib/CataBlog.class.php:1378
    273273msgid "full form was not submitted, please try again."
    274274msgstr "forma completa, no se presentó, por favor, inténtelo de nuevo."
    275275
    276 #: ../lib/CataBlog.class.php:1421
    277 #: ../lib/CataBlog.class.php:1459
     276#: ../lib/CataBlog.class.php:1422
     277#: ../lib/CataBlog.class.php:1460
    278278msgid "You didn't select anything to upload, please try again."
    279279msgstr "Usted no ha seleccionado nada para subir, por favor, inténtelo de nuevo."
    280280
    281 #: ../lib/CataBlog.class.php:1429
    282 #: ../lib/CataBlog.class.php:1467
     281#: ../lib/CataBlog.class.php:1430
     282#: ../lib/CataBlog.class.php:1468
    283283msgid "No item ID posted, press back arrow and try again."
    284284msgstr "Sin ID elemento publicado, pulse la flecha de nuevo y vuelve a intentarlo."
    285285
    286 #: ../lib/CataBlog.class.php:1510
     286#: ../lib/CataBlog.class.php:1511
    287287msgid "Please make your selection by checking the boxes in the list below."
    288288msgstr "Por favor haga su selección marcando las casillas de la lista a continuación."
    289289
    290 #: ../lib/CataBlog.class.php:1556
     290#: ../lib/CataBlog.class.php:1557
    291291#, php-format
    292292msgid "Error during set category, could not load item with id %s."
    293293msgstr "Error durante la categoría de conjunto, no se puede cargar el elemento con id %s."
    294294
    295 #: ../lib/CataBlog.class.php:1574
     295#: ../lib/CataBlog.class.php:1575
    296296#, php-format
    297297msgid "Error during bulk delete, could not load item with id %s."
    298298msgstr "Error durante la eliminación masiva, no se puede cargar el elemento con id %s."
    299299
    300 #: ../lib/CataBlog.class.php:1605
     300#: ../lib/CataBlog.class.php:1606
    301301msgid "No file was selected for upload, please try again."
    302302msgstr "No existe el fichero ha sido seleccionada para la subida, por favor, inténtelo de nuevo."
    303303
    304 #: ../lib/CataBlog.class.php:1614
     304#: ../lib/CataBlog.class.php:1615
    305305msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML."
    306306msgstr "Archivo Subido XML No se pudieron analizar, Compruebe que el contenido del archivo XML es válido."
    307307
    308 #: ../lib/CataBlog.class.php:1624
     308#: ../lib/CataBlog.class.php:1625
    309309msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension."
    310310msgstr "El archivo subido no era de formato correcto, por favor asegúrese de que el nombre de archivo tiene un xml o csv."
    311311
    312 #: ../lib/CataBlog.class.php:1695
     312#: ../lib/CataBlog.class.php:1696
    313313msgid "The CataBlog upload directories have been unlocked."
    314314msgstr "El CataBlog subir directorios han sido desbloqueados."
    315315
    316 #: ../lib/CataBlog.class.php:1698
    317 #: ../lib/CataBlog.class.php:1711
     316#: ../lib/CataBlog.class.php:1699
     317#: ../lib/CataBlog.class.php:1712
    318318msgid "Could not lock/unlock the directory. Are you using a unix based server?"
    319319msgstr "No se pudo bloquear / desbloquear el directorio. ¿Está utilizando un servidor basado en Unix?"
    320320
    321 #: ../lib/CataBlog.class.php:1708
     321#: ../lib/CataBlog.class.php:1709
    322322msgid "The CataBlog upload directories have been locked."
    323323msgstr "El CataBlog subir directorios se han bloqueado."
    324324
    325 #: ../lib/CataBlog.class.php:1827
     325#: ../lib/CataBlog.class.php:1843
    326326msgid "micro save successful"
    327327msgstr "micro guardar con éxito"
    328328
    329 #: ../lib/CataBlog.class.php:1835
     329#: ../lib/CataBlog.class.php:1851
    330330msgid "Cannot save changes because the item id could not be found in the database."
    331331msgstr ""
    332332
    333 #: ../lib/CataBlog.class.php:1896
     333#: ../lib/CataBlog.class.php:1924
    334334msgid "Screen Options updated successfully."
    335335msgstr "Opciones de la pantalla actualizado correctamente."
    336336
    337 #: ../lib/CataBlog.class.php:1910
     337#: ../lib/CataBlog.class.php:1938
    338338#: ../templates/admin-edit.php:277
    339339msgid "Commas, Pipes and reserved HTML characters are not allowed in category names."
    340340msgstr "Las comas, Tubos y reservados caracteres HTML no están permitidos en los nombres de categoría."
    341341
    342 #: ../lib/CataBlog.class.php:1916
     342#: ../lib/CataBlog.class.php:1944
    343343msgid "Please be a little more specific with your category name."
    344344msgstr "Por favor, un poco más específico con su nombre de la categoría."
    345345
    346 #: ../lib/CataBlog.class.php:1929
     346#: ../lib/CataBlog.class.php:1957
    347347msgid "There already is a category with that name."
    348348msgstr "Ya existe una categoría con ese nombre."
    349349
    350 #: ../lib/CataBlog.class.php:1966
     350#: ../lib/CataBlog.class.php:1994
    351351#, fuzzy
    352352msgid "Term Edited Successfully"
    353353msgstr "Plazo eliminado con éxito."
    354354
    355 #: ../lib/CataBlog.class.php:1969
    356 #: ../lib/CataBlog.class.php:1985
     355#: ../lib/CataBlog.class.php:1997
     356#: ../lib/CataBlog.class.php:2013
    357357msgid "Term did not exist, please refresh page and try again."
    358358msgstr "Término no existía, por favor, volver a cargar la página e inténtalo de nuevo."
    359359
    360 #: ../lib/CataBlog.class.php:1982
     360#: ../lib/CataBlog.class.php:2010
    361361msgid "Term Removed Successfully."
    362362msgstr "Plazo eliminado con éxito."
    363363
    364 #: ../lib/CataBlog.class.php:2036
     364#: ../lib/CataBlog.class.php:2064
    365365msgid "unsupported image size type"
    366366msgstr "imagen sin soporte en papel del tamaño"
    367367
    368 #: ../lib/CataBlog.class.php:2046
     368#: ../lib/CataBlog.class.php:2074
    369369#, php-format
    370370msgid "Rendering... %s of %s"
    371371msgstr "Representación... %s de %s"
    372372
    373 #: ../lib/CataBlog.class.php:2048
     373#: ../lib/CataBlog.class.php:2076
    374374msgid "Image rendering is now complete."
    375375msgstr "De representación en imágenes se ha completado."
    376376
    377 #: ../lib/CataBlog.class.php:2089
     377#: ../lib/CataBlog.class.php:2117
    378378msgid "error"
    379379msgstr "error"
    380380
    381 #: ../lib/CataBlog.class.php:2092
     381#: ../lib/CataBlog.class.php:2120
    382382msgid "sub image deleted successfully"
    383383msgstr "sub imagen eliminado con éxito"
    384384
    385 #: ../lib/CataBlog.class.php:2127
     385#: ../lib/CataBlog.class.php:2155
    386386#, php-format
    387387msgid "%s library items deleted successfully."
    388388msgstr "%s elementos de la biblioteca eliminado con éxito."
    389389
    390 #: ../lib/CataBlog.class.php:2130
     390#: ../lib/CataBlog.class.php:2158
    391391msgid "CataBlog Library Cleared Successfully."
    392392msgstr "Colección CataBlog aclarados con éxito."
    393393
    394 #: ../lib/CataBlog.class.php:2143
     394#: ../lib/CataBlog.class.php:2171
    395395msgid "CataBlog Options, Directories and Terms Deleted Successfully."
    396396msgstr "Opciones CataBlog, Directorios y Condiciones eliminados con éxito."
    397397
    398 #: ../lib/CataBlog.class.php:2144
     398#: ../lib/CataBlog.class.php:2172
    399399msgid "You may now go deactivate CataBlog and nothing will be left behind."
    400400msgstr "Ahora puede ir a desactivar CataBlog y nada se quedará atrás."
    401401
    402 #: ../lib/CataBlog.class.php:2145
     402#: ../lib/CataBlog.class.php:2173
    403403msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings."
    404404msgstr "Si desea seguir utilizando CataBlog, ir a la biblioteca para volver a instalar los ajustes necesarios."
    405405
    406 #: ../lib/CataBlog.class.php:2206
     406#: ../lib/CataBlog.class.php:2234
    407407#, php-format
    408408msgid "CataBlog %s LightBox Styles | %s"
    409409msgstr "CataBlog %s LightBox Styles | %s"
    410410
    411 #: ../lib/CataBlog.class.php:2228
     411#: ../lib/CataBlog.class.php:2256
    412412msgid "You may also press &quot;P&quot; or the left arrow on your keyboard"
    413413msgstr "También puede pulsar &quot;A&quot; o la flecha izquierda del teclado"
    414414
    415 #: ../lib/CataBlog.class.php:2229
     415#: ../lib/CataBlog.class.php:2257
    416416msgid "You may also press &quot;N&quot; or the right arrow on your keyboard"
    417417msgstr "También puede presionar &quot;S&quot; o la flecha derecha del teclado"
    418418
    419 #: ../lib/CataBlog.class.php:2230
     419#: ../lib/CataBlog.class.php:2258
    420420msgid "Close LightBox Now"
    421421msgstr "Cerca LightBox Ahora"
    422422
    423 #: ../lib/CataBlog.class.php:2231
     423#: ../lib/CataBlog.class.php:2259
    424424msgid "PREV"
    425425msgstr "ANTERIOR"
    426426
    427 #: ../lib/CataBlog.class.php:2232
     427#: ../lib/CataBlog.class.php:2260
    428428msgid "NEXT"
    429429msgstr "SIGUIENTE"
    430430
    431 #: ../lib/CataBlog.class.php:2233
     431#: ../lib/CataBlog.class.php:2261
    432432msgid "CLOSE"
    433433msgstr "CERRAR"
    434434
    435 #: ../lib/CataBlog.class.php:2237
     435#: ../lib/CataBlog.class.php:2265
    436436#, php-format
    437437msgid "CataBlog %s LightBox JavaScript | %s"
    438438msgstr "CataBlog %s LightBox JavaScript | %s"
    439439
    440 #: ../lib/CataBlog.class.php:2239
     440#: ../lib/CataBlog.class.php:2267
    441441msgid "End CataBlog LightBox JavaScript"
    442442msgstr "Fin CataBlog LightBox JavaScript"
    443443
    444 #: ../lib/CataBlog.class.php:2355
     444#: ../lib/CataBlog.class.php:2386
    445445msgid "You must use the id attribute in the catablog_gallery Shortcode"
    446446msgstr ""
    447447
    448 #: ../lib/CataBlog.class.php:2372
     448#: ../lib/CataBlog.class.php:2406
    449449#, php-format
    450450msgid "Could not find a CataBlog Gallery with id %s"
     
    452452
    453453#: ../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
     456msgid "Previous"
     457msgstr "anterior"
     458
     459#: ../lib/CataBlog.class.php:2456
     460#: ../lib/CataBlog.class.php:2842
     461#: ../lib/CataBlog.class.php:3017
     462msgid "Next"
     463msgstr "próximo"
     464
     465#: ../lib/CataBlog.class.php:2614
    459466#, php-format
    460467msgid "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."
    461468msgstr "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>."
    462469
    463 #: ../lib/CataBlog.class.php:2614
     470#: ../lib/CataBlog.class.php:2637
    464471#, php-format
    465472msgid "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."
    466473msgstr "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'."
    467474
    468 #: ../lib/CataBlog.class.php:2615
     475#: ../lib/CataBlog.class.php:2638
    469476msgid "Learn More"
    470477msgstr "Más información"
    471478
    472 #: ../lib/CataBlog.class.php:2667
     479#: ../lib/CataBlog.class.php:2690
    473480msgid "CataBlog Error:"
    474481msgstr "CataBlog de error:"
    475482
    476 #: ../lib/CataBlog.class.php:2669
     483#: ../lib/CataBlog.class.php:2692
    477484#, php-format
    478485msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s."
    479486msgstr "Categorías CataBlog requieren para activar %sla opción pública CataBlog%s."
    480487
    481 #: ../lib/CataBlog.class.php:2689
     488#: ../lib/CataBlog.class.php:2712
    482489msgid "Select Category"
    483490msgstr "Seleccione una categoría"
    484491
    485 #: ../lib/CataBlog.class.php:2783
     492#: ../lib/CataBlog.class.php:2806
    486493msgid "The CataBlog Upload Directory cannot be written. "
    487494msgstr "El Directorio de CataBlog Subir no se puede escribir."
    488495
    489 #: ../lib/CataBlog.class.php:2783
    490 #: ../lib/CataBlog.class.php:2788
    491 #: ../lib/CataBlog.class.php:2988
     496#: ../lib/CataBlog.class.php:2806
     497#: ../lib/CataBlog.class.php:2811
     498#: ../lib/CataBlog.class.php:3011
    492499msgid "Please check your server file permissions and apache configuration."
    493500msgstr "Compruebe sus permisos de servidor de archivos y la configuración de apache."
    494501
    495 #: ../lib/CataBlog.class.php:2788
     502#: ../lib/CataBlog.class.php:2811
    496503msgid "The CataBlog Templates Directory cannot be written. "
    497504msgstr "El Directorio de CataBlog Las plantillas no se puede escribir."
    498505
    499 #: ../lib/CataBlog.class.php:2794
     506#: ../lib/CataBlog.class.php:2817
    500507#, php-format
    501508msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s"
    502509msgstr "Opciones CataBlog y directorios se han instalado con éxito. Por favor, %sactualice ahora%s"
    503510
    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
    515512#, php-format
    516513msgid "There was an error creating the default term: %s"
    517514msgstr "Se ha producido un error al crear el término por defecto: %s"
    518515
    519 #: ../lib/CataBlog.class.php:2910
     516#: ../lib/CataBlog.class.php:2933
    520517msgid "CataBlog options and directories have been successfully upgraded."
    521518msgstr "Opciones CataBlog y directorios se han actualizado correctamente."
    522519
    523 #: ../lib/CataBlog.class.php:2988
     520#: ../lib/CataBlog.class.php:3011
    524521msgid "The New CataBlog Templates cannot be written. "
    525522msgstr "Las nuevas plantillas CataBlog no se puede escribir."
    526523
    527 #: ../lib/CataBlog.class.php:3175
     524#: ../lib/CataBlog.class.php:3198
    528525msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid."
    529526msgstr "Archivo Subido CSV no se pudo analizar, Compruebe que el formato del archivo es válido."
    530527
    531 #: ../lib/CataBlog.class.php:3216
     528#: ../lib/CataBlog.class.php:3239
    532529#, php-format
    533530msgid "There was an error parsing your CSV file on lines: %s."
    534531msgstr "Hubo un error al analizar el archivo CSV en las líneas: %s"
    535532
    536 #: ../lib/CataBlog.class.php:3263
    537 #: ../lib/CataBlog.class.php:3306
    538 #: ../lib/CataBlog.class.php:3310
    539 #: ../lib/CataBlog.class.php:3313
     533#: ../lib/CataBlog.class.php:3286
     534#: ../lib/CataBlog.class.php:3329
     535#: ../lib/CataBlog.class.php:3333
     536#: ../lib/CataBlog.class.php:3336
    540537msgid "Error:"
    541538msgstr "Error:"
    542539
    543 #: ../lib/CataBlog.class.php:3277
     540#: ../lib/CataBlog.class.php:3300
    544541msgid "Success:"
    545542msgstr "Éxito:"
    546543
    547 #: ../lib/CataBlog.class.php:3277
     544#: ../lib/CataBlog.class.php:3300
    548545#, php-format
    549546msgid " %s inserted into catalog categories."
    550547msgstr "%s inserta en categorías catálogo."
    551548
    552 #: ../lib/CataBlog.class.php:3285
     549#: ../lib/CataBlog.class.php:3308
    553550msgid "All New Categories Created"
    554551msgstr "Todas las categorías Nueva creación"
    555552
    556 #: ../lib/CataBlog.class.php:3289
     553#: ../lib/CataBlog.class.php:3312
    557554msgid "No New Categories Created"
    558555msgstr "No hay nuevas categorías creadas"
    559556
    560 #: ../lib/CataBlog.class.php:3304
    561 #: ../lib/CataBlog.class.php:3358
     557#: ../lib/CataBlog.class.php:3327
     558#: ../lib/CataBlog.class.php:3381
    562559msgid "Insert:"
    563560msgstr "Insertar:"
    564561
    565 #: ../lib/CataBlog.class.php:3304
    566 #: ../lib/CataBlog.class.php:3358
     562#: ../lib/CataBlog.class.php:3327
     563#: ../lib/CataBlog.class.php:3381
    567564#, php-format
    568565msgid " %s inserted into the database."
    569566msgstr "%s inserta en la base de datos."
    570567
    571 #: ../lib/CataBlog.class.php:3306
     568#: ../lib/CataBlog.class.php:3329
    572569#, php-format
    573570msgid " %s was not inserted into the database."
    574571msgstr "%s no fue insertado en la base de datos."
    575572
    576 #: ../lib/CataBlog.class.php:3310
     573#: ../lib/CataBlog.class.php:3333
    577574msgid "Item had no title and could not be made."
    578575msgstr "Artículo no tiene título y no pudo realizar."
    579576
    580 #: ../lib/CataBlog.class.php:3313
     577#: ../lib/CataBlog.class.php:3336
    581578msgid "Item had no primary image name and could not be made."
    582579msgstr "Artículo no tiene nombre de la imagen principal y no pudo realizar."
    583580
    584 #: ../lib/CataBlog.class.php:3355
     581#: ../lib/CataBlog.class.php:3378
    585582msgid "Update:"
    586583msgstr "Actualización:"
    587584
    588 #: ../lib/CataBlog.class.php:3355
     585#: ../lib/CataBlog.class.php:3378
    589586#, php-format
    590587msgid " %s updated in database."
    591588msgstr "%s actualizada la base de datos."
    592589
    593 #: ../lib/CataBlog.class.php:3384
     590#: ../lib/CataBlog.class.php:3407
    594591#, php-format
    595592msgid "%s Catalog Items Inserted"
    596593msgstr "%s artículos de catálogo insertada"
    597594
    598 #: ../lib/CataBlog.class.php:3449
     595#: ../lib/CataBlog.class.php:3472
    599596msgid "Uploaded File Exceeded The PHP Configurations Max File Size."
    600597msgstr "El archivo subido excede el máximo de configuraciones de PHP Tamaño del archivo."
    601598
    602 #: ../lib/CataBlog.class.php:3452
     599#: ../lib/CataBlog.class.php:3475
    603600msgid "Upload File Exceeded The HTML Form's Max File Size."
    604601msgstr "Carga de archivos ha superado el máximo de formulario HTML Tamaño del archivo."
    605602
    606 #: ../lib/CataBlog.class.php:3455
     603#: ../lib/CataBlog.class.php:3478
    607604msgid "File Only Partially Uploaded, Please Try Again."
    608605msgstr "El archivo sólo parcialmente cargado, por favor intente de nuevo."
    609606
    610 #: ../lib/CataBlog.class.php:3458
     607#: ../lib/CataBlog.class.php:3481
    611608msgid "No File Selected For Upload. Please Resubmit The Form."
    612609msgstr "No hay archivos seleccionados para subir. Por favor, vuelva a enviar el formulario."
    613610
    614 #: ../lib/CataBlog.class.php:3461
     611#: ../lib/CataBlog.class.php:3484
    615612msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin."
    616613msgstr "Configuración de su servidor PHP no tiene una carpeta temporal de Cargas, Póngase en contacto con el administrador del sistema."
    617614
    618 #: ../lib/CataBlog.class.php:3464
     615#: ../lib/CataBlog.class.php:3487
    619616msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin."
    620617msgstr "Configuración de su servidor PHP no se puede escribir en el disco, Por favor contacte al administrador del sistema."
    621618
    622 #: ../lib/CataBlog.class.php:3467
     619#: ../lib/CataBlog.class.php:3490
    623620msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin."
    624621msgstr "Una extensión de PHP está bloqueando PHP De Cargas aceptar, Póngase en contacto con el administrador del sistema."
    625622
    626 #: ../lib/CataBlog.class.php:3470
     623#: ../lib/CataBlog.class.php:3493
    627624msgid "An Unknown Upload Error Has Occurred"
    628625msgstr "Un desconocido Subir error ha ocurrido"
     
    640637msgstr "La imagen no puede ser cargado en el servidor, por favor, inténtelo de nuevo."
    641638
    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
    758640#: ../lib/CataBlogWidget.class.php:52
    759641#: ../templates/admin-edit.php:57
     
    764646msgstr "Título"
    765647
     648#: ../lib/catablog.upload.php:123
     649#: ../lib/CataBlogItem.class.php:365
     650msgid "An item must have a title of at least one alphanumeric character."
     651msgstr "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
     657msgid "Description"
     658msgstr "Descripción"
     659
     660#: ../lib/catablog.upload.php:142
     661#: ../lib/CataBlogItem.class.php:400
     662msgid "An item's price must be a positive number."
     663msgstr "Precio de un artículo debe ser un número positivo."
     664
     665#: ../lib/catablog.upload.php:145
     666#: ../lib/CataBlogItem.class.php:393
     667msgid "An item's order value must be a positive integer."
     668msgstr "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
     673msgid "Save Changes"
     674msgstr "Guardar Cambios"
     675
     676#: ../lib/CataBlogDirectory.class.php:12
     677#: ../lib/CataBlogDirectory.class.php:109
     678msgid "Could not open directory."
     679msgstr "No se pudo abrir el directorio."
     680
     681#: ../lib/CataBlogGallery.class.php:187
     682#, fuzzy
     683msgid "A gallery must have a title of at least one alphanumeric character."
     684msgstr "Un elemento debe tener un título de al menos un carácter alfanumérico."
     685
     686#: ../lib/CataBlogGallery.class.php:192
     687#, fuzzy
     688msgid "A gallery title can not be more then 200 characters long."
     689msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud."
     690
     691#: ../lib/CataBlogItem.class.php:354
     692msgid "An item must have an image associated with it."
     693msgstr "Un elemento debe tener una imagen."
     694
     695#: ../lib/CataBlogItem.class.php:360
     696msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable."
     697msgstr "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
     700msgid "An item's title can not be more then 200 characters long."
     701msgstr "Título de un artículo no puede ser más de 200 caracteres de longitud."
     702
     703#: ../lib/CataBlogItem.class.php:375
     704msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS"
     705msgstr "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
     708msgid "An item's date must be an actual day on the gregorian calendar."
     709msgstr "Fecha de un artículo debe ser una fecha exacta del calendario gregoriano."
     710
     711#: ../lib/CataBlogItem.class.php:388
     712msgid "An item's date hour must be below twenty-four."
     713msgstr "Una hora elemento fecha debe ser inferior a veinticuatro."
     714
     715#: ../lib/CataBlogItem.class.php:423
     716#: ../lib/CataBlogItem.class.php:600
     717msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please."
     718msgstr "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
     722msgid "Can not write uploaded image to server, your storage space is exhausted."
     723msgstr "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
     727msgid "Please delete some media files to free up space and try again."
     728msgstr "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
     733msgid "You have %sMB of available space on your server and your image is %sMB."
     734msgstr "Tiene %sMB del espacio disponible en el servidor y su imagen es %sMB."
     735
     736#: ../lib/CataBlogItem.class.php:517
     737msgid "Could not set categories, please try again."
     738msgstr "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
     743msgid "Original image file missing, could not be located at %s"
     744msgstr "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
     748msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file."
     749msgstr "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
     753msgid "Original image could not be loaded because it is an unsupported format."
     754msgstr "Imagen original no se pudo cargar porque es un formato no compatible."
     755
     756#: ../lib/CataBlogWidget.class.php:14
     757msgid "Entries from your CataBlog Library"
     758msgstr "Las entradas de la biblioteca de CataBlog"
     759
     760#: ../lib/CataBlogWidget.class.php:15
     761msgid "CataBlog Catalog"
     762msgstr "CataBlog Catálogo"
     763
     764#: ../lib/CataBlogWidget.class.php:50
     765#: ../templates/admin-galleries.php:70
     766#: ../templates/admin-galleries.php:84
     767msgid "Date"
     768msgstr "Fecha"
     769
     770#: ../lib/CataBlogWidget.class.php:51
     771msgid "Order"
     772msgstr "Orden"
     773
    766774#: ../lib/CataBlogWidget.class.php:53
    767775msgid "Random"
     
    13311339msgstr "Ir a la última página"
    13321340
    1333 #: ../templates/admin-galleries.php:61
    1334 #: ../templates/admin-galleries.php:81
    1335 #: ../templates/admin-gallery-edit.php:17
    1336 msgid "Description"
    1337 msgstr "Descripción"
    1338 
    13391341#: ../templates/admin-galleries.php:62
    13401342#: ../templates/admin-galleries.php:82
     
    14531455
    14541456#: ../templates/admin-library.php:40
     1457#: ../templates/admin-screen-options-add-new.php:49
    14551458#: ../templates/admin-screen-options-galleries.php:56
    14561459#: ../templates/admin-screen-options-library.php:56
     
    15381541msgstr "Por favor, seleccione al menos un elemento de primer catálogo."
    15391542
    1540 #: ../templates/admin-library.php:287
     1543#: ../templates/admin-library.php:289
    15411544msgid "Are you sure you want to delete multiple items?"
    15421545msgstr "¿Está seguro que desea eliminar varios elementos?"
    15431546
    1544 #: ../templates/admin-library.php:316
     1547#: ../templates/admin-library.php:318
    15451548msgid "Are you sure you want to permanently delete this catalog items?"
    15461549msgstr "¿Está seguro que desea eliminar permanentemente esta artículos del catálogo?"
     
    16051608msgid "Select Images"
    16061609msgstr "Elegir archivos"
     1610
     1611#: ../templates/admin-new.php:261
     1612#: ../templates/admin-options.php:601
     1613msgid "There are errors, please correct them before saving."
     1614msgstr "Hay errores, por favor corregirlos antes de guardar."
    16071615
    16081616#: ../templates/admin-options.php:8
     
    20442052msgstr "o %sdeshacer los cambios actuales%s"
    20452053
    2046 #: ../templates/admin-options.php:601
    2047 msgid "There are errors, please correct them before saving."
    2048 msgstr "Hay errores, por favor corregirlos antes de guardar."
    2049 
    20502054#: ../templates/admin-options.php:720
    20512055#: ../templates/admin-regenerate.php:43
     
    21172121msgstr "Nueva imagen que se encuentra, la creación de tema catálogo %s"
    21182122
     2123#: ../templates/admin-screen-options-add-new.php:40
    21192124#: ../templates/admin-screen-options-galleries.php:41
    21202125#: ../templates/admin-screen-options-galleries.php:50
     
    21972202msgid "Please only use underscores, hyphens and alphanumeric characters only."
    21982203msgstr "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"
    21992207
    22002208#~ msgid "accepts html formatting"
  • catablog/trunk/localization/catablog-fr_FR.po

    r524478 r530481  
    55"Project-Id-Version: CataBlog 1.2.5\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2012-03-27 14:31-0800\n"
    8 "PO-Revision-Date: 2012-03-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"
    99"Last-Translator: Zachary Segal <zac@illproductions.com>\n"
    1010"Language-Team: ezion <youpsee@gmail.com>\n"
     
    3434msgstr "<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."
    3535
    36 #: ../lib/CataBlog.class.php:210
     36#: ../lib/CataBlog.class.php:211
    3737msgid "Uncategorized"
    3838msgstr "Sans Catégorie"
    3939
    40 #: ../lib/CataBlog.class.php:231
     40#: ../lib/CataBlog.class.php:232
    4141msgid "CataBlog Item"
    4242msgstr "Objet"
    4343
    44 #: ../lib/CataBlog.class.php:236
     44#: ../lib/CataBlog.class.php:237
    4545msgid "A Catalog Item, generated by CataBlog."
    4646msgstr "Un objet généré par la Galerie."
    4747
    48 #: ../lib/CataBlog.class.php:247
     48#: ../lib/CataBlog.class.php:248
    4949msgid "CataBlog Category"
    5050msgstr "Catégorie"
    5151
    52 #: ../lib/CataBlog.class.php:258
     52#: ../lib/CataBlog.class.php:259
    5353#, fuzzy
    5454msgid "CataBlog Gallery"
    5555msgstr "Catégorie"
    5656
    57 #: ../lib/CataBlog.class.php:263
     57#: ../lib/CataBlog.class.php:264
    5858#, fuzzy
    5959msgid "A Catalog Gallery, generated by CataBlog."
    6060msgstr "Un objet généré par la Galerie."
    6161
    62 #: ../lib/CataBlog.class.php:389
     62#: ../lib/CataBlog.class.php:390
    6363#: ../templates/admin-404.php:11
    6464msgid "CataBlog Library"
    6565msgstr "Galerie"
    6666
    67 #: ../lib/CataBlog.class.php:389
    68 #: ../lib/CataBlog.class.php:476
     67#: ../lib/CataBlog.class.php:390
     68#: ../lib/CataBlog.class.php:477
    6969msgid "Library"
    7070msgstr "Album"
    7171
    72 #: ../lib/CataBlog.class.php:390
     72#: ../lib/CataBlog.class.php:391
    7373msgid "Add New CataBlog Entry"
    7474msgstr "Ajouter une Nouvelle Image"
    7575
    76 #: ../lib/CataBlog.class.php:390
    77 #: ../lib/CataBlog.class.php:477
     76#: ../lib/CataBlog.class.php:391
     77#: ../lib/CataBlog.class.php:478
    7878msgid "Add New"
    7979msgstr "Ajouter"
    8080
    81 #: ../lib/CataBlog.class.php:391
     81#: ../lib/CataBlog.class.php:392
    8282#: ../templates/admin-galleries.php:5
    8383#, fuzzy
     
    8585msgstr "Catégories CataBlog"
    8686
    87 #: ../lib/CataBlog.class.php:391
    88 #: ../lib/CataBlog.class.php:478
     87#: ../lib/CataBlog.class.php:392
     88#: ../lib/CataBlog.class.php:479
    8989#, fuzzy
    9090msgid "Galleries"
    9191msgstr "Catégories"
    9292
    93 #: ../lib/CataBlog.class.php:392
     93#: ../lib/CataBlog.class.php:393
    9494msgid "CataBlog Templates"
    9595msgstr "Thèmes CataBlog"
    9696
    97 #: ../lib/CataBlog.class.php:392
    98 #: ../lib/CataBlog.class.php:479
     97#: ../lib/CataBlog.class.php:393
     98#: ../lib/CataBlog.class.php:480
    9999msgid "Templates"
    100100msgstr "Thèmes"
    101101
    102 #: ../lib/CataBlog.class.php:393
     102#: ../lib/CataBlog.class.php:394
    103103msgid "CataBlog Options"
    104104msgstr "Options de la Galerie"
    105105
    106 #: ../lib/CataBlog.class.php:393
    107 #: ../lib/CataBlog.class.php:480
     106#: ../lib/CataBlog.class.php:394
     107#: ../lib/CataBlog.class.php:481
    108108msgid "Options"
    109109msgstr "Options"
    110110
    111 #: ../lib/CataBlog.class.php:394
     111#: ../lib/CataBlog.class.php:395
    112112#: ../templates/admin-about.php:4
    113113msgid "About CataBlog"
    114114msgstr "A propos de la Galerie"
    115115
    116 #: ../lib/CataBlog.class.php:394
    117 #: ../lib/CataBlog.class.php:481
     116#: ../lib/CataBlog.class.php:395
     117#: ../lib/CataBlog.class.php:482
    118118msgid "About"
    119119msgstr "A Propos"
    120120
    121 #: ../lib/CataBlog.class.php:461
     121#: ../lib/CataBlog.class.php:462
    122122#: ../templates/admin-edit.php:4
    123123msgid "Edit CataBlog Entry"
    124124msgstr "Editer une Image"
    125125
    126 #: ../lib/CataBlog.class.php:475
     126#: ../lib/CataBlog.class.php:476
    127127#: ../templates/admin-discfull.php:22
    128128msgid "CataBlog"
    129129msgstr "CataBlog"
    130130
    131 #: ../lib/CataBlog.class.php:484
     131#: ../lib/CataBlog.class.php:485
    132132msgid "CataBlog Entry"
    133133msgstr "Image"
    134134
    135 #: ../lib/CataBlog.class.php:664
    136 #: ../lib/CataBlog.class.php:707
    137 #: ../lib/CataBlog.class.php:1174
     135#: ../lib/CataBlog.class.php:665
     136#: ../lib/CataBlog.class.php:708
     137#: ../lib/CataBlog.class.php:1175
    138138msgid "Changes Saved Successfully."
    139139msgstr "Modifications Enregistrées avec Succès."
    140140
    141 #: ../lib/CataBlog.class.php:667
     141#: ../lib/CataBlog.class.php:668
    142142msgid "Catalog Item Deleted Successfully."
    143143msgstr "Objet Supprimé avec Succès."
    144144
    145 #: ../lib/CataBlog.class.php:670
     145#: ../lib/CataBlog.class.php:671
    146146msgid "Could Not Delete Item Because ID was non existent."
    147147msgstr "Impossible de supprimer cet objet car son ID n'existe pas."
    148148
    149 #: ../lib/CataBlog.class.php:673
     149#: ../lib/CataBlog.class.php:674
    150150msgid "Could not verify bulk edit action nonce, please refresh page and try again."
    151151msgstr "Impossible de vérifier la possibilité d'édition en masse pour le moment, merci d'actualiser la page puis de réessayer."
    152152
    153 #: ../lib/CataBlog.class.php:676
     153#: ../lib/CataBlog.class.php:677
    154154msgid "Bulk categories edit performed successfully."
    155155msgstr "Edition des catégories en masse effectuée avec succès."
    156156
    157 #: ../lib/CataBlog.class.php:679
     157#: ../lib/CataBlog.class.php:680
    158158msgid "Bulk delete performed successfully."
    159159msgstr "Suppression en masse effectuée avec succès."
    160160
    161 #: ../lib/CataBlog.class.php:682
     161#: ../lib/CataBlog.class.php:683
    162162msgid "Reset all data successfully."
    163163msgstr "Réinitialisation des données effectuée avec succès."
    164164
    165 #: ../lib/CataBlog.class.php:685
     165#: ../lib/CataBlog.class.php:686
    166166#, fuzzy
    167167msgid "Catalog items added to Gallery successfully."
    168168msgstr "Objet Supprimé avec Succès."
    169169
    170 #: ../lib/CataBlog.class.php:688
     170#: ../lib/CataBlog.class.php:689
    171171msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again."
    172172msgstr ""
    173173
    174 #: ../lib/CataBlog.class.php:691
     174#: ../lib/CataBlog.class.php:692
    175175#, fuzzy
    176176msgid "Could not validate the gallery, please modify the gallery and try again."
    177177msgstr "Impossible de vérifier la possibilité d'édition en masse pour le moment, merci d'actualiser la page puis de réessayer."
    178178
    179 #: ../lib/CataBlog.class.php:711
     179#: ../lib/CataBlog.class.php:712
    180180msgid "View Now"
    181181msgstr "Voir Maintenant"
    182182
    183 #: ../lib/CataBlog.class.php:774
     183#: ../lib/CataBlog.class.php:775
    184184msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical."
    185185msgstr "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."
    186186
    187 #: ../lib/CataBlog.class.php:782
     187#: ../lib/CataBlog.class.php:783
    188188msgid "CataBlog Options Saved"
    189189msgstr "Options Enregistrées"
    190190
    191 #: ../lib/CataBlog.class.php:835
     191#: ../lib/CataBlog.class.php:836
    192192msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page"
    193193msgstr "Merci de bien vouloir compléter et envoyer le formulaire suivant avant de charger une nouvelle page."
    194194
    195 #: ../lib/CataBlog.class.php:853
    196 #: ../lib/CataBlog.class.php:904
    197 #: ../lib/CataBlog.class.php:907
    198 #: ../lib/CataBlog.class.php:1125
    199 #: ../lib/CataBlog.class.php:1180
     195#: ../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
    200200msgid "Form Validation Error. Please reload the page and try again."
    201201msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer."
    202202
    203 #: ../lib/CataBlog.class.php:898
     203#: ../lib/CataBlog.class.php:899
    204204msgid "Template Changes Saved Successfully."
    205205msgstr "Modifications des Thèmes Enregistrées avec Succès."
    206206
    207 #: ../lib/CataBlog.class.php:901
     207#: ../lib/CataBlog.class.php:902
    208208msgid "Template Created Successfully."
    209209msgstr "Thème Créé avec succès."
    210210
    211 #: ../lib/CataBlog.class.php:910
     211#: ../lib/CataBlog.class.php:911
    212212#, php-format
    213213msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>"
    214214msgstr "Erreur lors de la création du fichier. Veuillez vous assurer que WordPress peut écrire dans ce répertoire : <br/><code>%s</code>"
    215215
    216 #: ../lib/CataBlog.class.php:913
     216#: ../lib/CataBlog.class.php:914
    217217msgid "File Creation Error. A template already exists with that name."
    218218msgstr "Erreur lors de la création du fichier. Un template portant le même nom existe déjà."
    219219
    220 #: ../lib/CataBlog.class.php:916
     220#: ../lib/CataBlog.class.php:917
    221221msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters."
    222222msgstr "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."
    223223
    224 #: ../lib/CataBlog.class.php:998
    225224#: ../lib/CataBlog.class.php:999
    226225#: ../lib/CataBlog.class.php:1000
     226#: ../lib/CataBlog.class.php:1001
    227227msgid "not present"
    228228msgstr "absent"
    229229
    230 #: ../lib/CataBlog.class.php:1119
     230#: ../lib/CataBlog.class.php:1120
    231231#, fuzzy
    232232msgid "Gallery Created Successfully."
    233233msgstr "Thème Créé avec succès."
    234234
    235 #: ../lib/CataBlog.class.php:1122
     235#: ../lib/CataBlog.class.php:1123
    236236#, fuzzy
    237237msgid "Form Validation Error. Please check your gallery title and try again."
    238238msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer."
    239239
    240 #: ../lib/CataBlog.class.php:1128
     240#: ../lib/CataBlog.class.php:1129
    241241#, fuzzy
    242242msgid "Gallery Deleted Successfully."
    243243msgstr "Objet Supprimé avec Succès."
    244244
    245 #: ../lib/CataBlog.class.php:1131
     245#: ../lib/CataBlog.class.php:1132
    246246#, fuzzy
    247247msgid "Could Not Delete Gallery Because ID was non existent."
    248248msgstr "Impossible de supprimer cet objet car son ID n'existe pas."
    249249
    250 #: ../lib/CataBlog.class.php:1134
     250#: ../lib/CataBlog.class.php:1135
    251251#, fuzzy
    252252msgid "Multiple Galleries Deleted Successfully."
    253253msgstr "Objet Supprimé avec Succès."
    254254
    255 #: ../lib/CataBlog.class.php:1177
     255#: ../lib/CataBlog.class.php:1178
    256256#, fuzzy
    257257msgid "Form Validation Error: Please make sure your title is at least one character."
    258258msgstr "Erreur lors du contrôle de ce formulaire. Merci de bien vouloir actualiser la page et de réessayer."
    259259
    260 #: ../lib/CataBlog.class.php:1315
     260#: ../lib/CataBlog.class.php:1316
    261261msgid "The file you selected was to large or you didn't select anything at all, please try again."
    262262msgstr "Le fichier sélectionné est trop volumineux, ou vous n'avez pas sélectionné de fichier du tout. Veuillez réessayer."
    263263
    264 #: ../lib/CataBlog.class.php:1319
    265 #: ../lib/CataBlog.class.php:1373
    266 #: ../lib/CataBlog.class.php:1425
    267 #: ../lib/CataBlog.class.php:1463
    268 #: ../lib/CataBlog.class.php:1596
     264#: ../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
    269269msgid "WordPress Nonce Error, please reload the form and try again."
    270270msgstr "Erreur de sécurité, veuillez actualiser la page et renseigner de nouveau le formulaire."
    271271
    272 #: ../lib/CataBlog.class.php:1377
     272#: ../lib/CataBlog.class.php:1378
    273273msgid "full form was not submitted, please try again."
    274274msgstr "le formulaire n'a pas été envoyé dans son intégralité, veuillez essayer de nouveau."
    275275
    276 #: ../lib/CataBlog.class.php:1421
    277 #: ../lib/CataBlog.class.php:1459
     276#: ../lib/CataBlog.class.php:1422
     277#: ../lib/CataBlog.class.php:1460
    278278msgid "You didn't select anything to upload, please try again."
    279279msgstr "Vous n'avez sélectionné aucun fichier à envoyer, veuillez essayer de nouveau."
    280280
    281 #: ../lib/CataBlog.class.php:1429
    282 #: ../lib/CataBlog.class.php:1467
     281#: ../lib/CataBlog.class.php:1430
     282#: ../lib/CataBlog.class.php:1468
    283283msgid "No item ID posted, press back arrow and try again."
    284284msgstr "Aucun objet n'a été envoyé, retournez sur la page précédente afin d'essayer de nouveau."
    285285
    286 #: ../lib/CataBlog.class.php:1510
     286#: ../lib/CataBlog.class.php:1511
    287287msgid "Please make your selection by checking the boxes in the list below."
    288288msgstr "Veuillez faire votre choix en sélectionnant l'une des cases de la liste suivante."
    289289
    290 #: ../lib/CataBlog.class.php:1556
     290#: ../lib/CataBlog.class.php:1557
    291291#, php-format
    292292msgid "Error during set category, could not load item with id %s."
    293293msgstr "Erreur lors du choix de la catégorie, impossible de charger l'objet sélectionné (%s)."
    294294
    295 #: ../lib/CataBlog.class.php:1574
     295#: ../lib/CataBlog.class.php:1575
    296296#, php-format
    297297msgid "Error during bulk delete, could not load item with id %s."
    298298msgstr "Erreur lors de la suppression des éléments, un des éléments n'a pu être chargé (%s)."
    299299
    300 #: ../lib/CataBlog.class.php:1605
     300#: ../lib/CataBlog.class.php:1606
    301301msgid "No file was selected for upload, please try again."
    302302msgstr "Aucun fichier à envoyer n'a été sélectionné, veuillez essayer de nouveau."
    303303
    304 #: ../lib/CataBlog.class.php:1614
     304#: ../lib/CataBlog.class.php:1615
    305305msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML."
    306306msgstr "Le fichier XML envoyé n'a pu être analysé, veuillez vérifier que son contenu est conforme."
    307307
    308 #: ../lib/CataBlog.class.php:1624
     308#: ../lib/CataBlog.class.php:1625
    309309msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension."
    310310msgstr "Le fichier envoyé n'est pas conforme, vérifiez que le nom de ce dernier possède bien une extension XML ou CSV."
    311311
    312 #: ../lib/CataBlog.class.php:1695
     312#: ../lib/CataBlog.class.php:1696
    313313msgid "The CataBlog upload directories have been unlocked."
    314314msgstr "L'envoi de dossiers a été débloqué avec succès."
    315315
    316 #: ../lib/CataBlog.class.php:1698
    317 #: ../lib/CataBlog.class.php:1711
     316#: ../lib/CataBlog.class.php:1699
     317#: ../lib/CataBlog.class.php:1712
    318318msgid "Could not lock/unlock the directory. Are you using a unix based server?"
    319319msgstr "Impossible de vérouiller/dévérouiller le dossier. Utilisez-vous un serveur UNIX?"
    320320
    321 #: ../lib/CataBlog.class.php:1708
     321#: ../lib/CataBlog.class.php:1709
    322322msgid "The CataBlog upload directories have been locked."
    323323msgstr "Les dossiers d'envoi de fichiers ont bien été vérouillés."
    324324
    325 #: ../lib/CataBlog.class.php:1827
     325#: ../lib/CataBlog.class.php:1843
    326326msgid "micro save successful"
    327327msgstr "sauvegarde rapide réussie"
    328328
    329 #: ../lib/CataBlog.class.php:1835
     329#: ../lib/CataBlog.class.php:1851
    330330msgid "Cannot save changes because the item id could not be found in the database."
    331331msgstr ""
    332332
    333 #: ../lib/CataBlog.class.php:1896
     333#: ../lib/CataBlog.class.php:1924
    334334msgid "Screen Options updated successfully."
    335335msgstr "Options d'affichage mises à jour avec succès."
    336336
    337 #: ../lib/CataBlog.class.php:1910
     337#: ../lib/CataBlog.class.php:1938
    338338#: ../templates/admin-edit.php:277
    339339msgid "Commas, Pipes and reserved HTML characters are not allowed in category names."
    340340msgstr "Virgules, crochets et autres caractères spéiaux ne sont pas autorisés pour les noms de catégories."
    341341
    342 #: ../lib/CataBlog.class.php:1916
     342#: ../lib/CataBlog.class.php:1944
    343343msgid "Please be a little more specific with your category name."
    344344msgstr "Veuillez être un peu plus précis dans le choix de vos noms de catégories."
    345345
    346 #: ../lib/CataBlog.class.php:1929
     346#: ../lib/CataBlog.class.php:1957
    347347msgid "There already is a category with that name."
    348348msgstr "Une catégorie du même nom existe déjà."
    349349
    350 #: ../lib/CataBlog.class.php:1966
     350#: ../lib/CataBlog.class.php:1994
    351351#, fuzzy
    352352msgid "Term Edited Successfully"
    353353msgstr "Description supprimée avec succès."
    354354
    355 #: ../lib/CataBlog.class.php:1969
    356 #: ../lib/CataBlog.class.php:1985
     355#: ../lib/CataBlog.class.php:1997
     356#: ../lib/CataBlog.class.php:2013
    357357msgid "Term did not exist, please refresh page and try again."
    358358msgstr "Description inexistante, veuillez actualisez le page pour essayer de nouveau."
    359359
    360 #: ../lib/CataBlog.class.php:1982
     360#: ../lib/CataBlog.class.php:2010
    361361msgid "Term Removed Successfully."
    362362msgstr "Description supprimée avec succès."
    363363
    364 #: ../lib/CataBlog.class.php:2036
     364#: ../lib/CataBlog.class.php:2064
    365365msgid "unsupported image size type"
    366366msgstr "La taille de l'image ne convient pas."
    367367
    368 #: ../lib/CataBlog.class.php:2046
     368#: ../lib/CataBlog.class.php:2074
    369369#, php-format
    370370msgid "Rendering... %s of %s"
    371371msgstr "Analyse... %s sur %s"
    372372
    373 #: ../lib/CataBlog.class.php:2048
     373#: ../lib/CataBlog.class.php:2076
    374374msgid "Image rendering is now complete."
    375375msgstr "L'analyse de l'image est terminée."
    376376
    377 #: ../lib/CataBlog.class.php:2089
     377#: ../lib/CataBlog.class.php:2117
    378378msgid "error"
    379379msgstr "erreur"
    380380
    381 #: ../lib/CataBlog.class.php:2092
     381#: ../lib/CataBlog.class.php:2120
    382382msgid "sub image deleted successfully"
    383383msgstr "image secondaire supprimée avec succès"
    384384
    385 #: ../lib/CataBlog.class.php:2127
     385#: ../lib/CataBlog.class.php:2155
    386386#, php-format
    387387msgid "%s library items deleted successfully."
    388388msgstr "%s objets ont été supprimés de la galerie."
    389389
    390 #: ../lib/CataBlog.class.php:2130
     390#: ../lib/CataBlog.class.php:2158
    391391msgid "CataBlog Library Cleared Successfully."
    392392msgstr "La galerie a été nettoyée avec succès."
    393393
    394 #: ../lib/CataBlog.class.php:2143
     394#: ../lib/CataBlog.class.php:2171
    395395msgid "CataBlog Options, Directories and Terms Deleted Successfully."
    396396msgstr "Options, dossiers et descriptions supprimés avec succès."
    397397
    398 #: ../lib/CataBlog.class.php:2144
     398#: ../lib/CataBlog.class.php:2172
    399399msgid "You may now go deactivate CataBlog and nothing will be left behind."
    400400msgstr "Vous pouvez maintenant désactiver l'extension, rien ne sera laissé de côté."
    401401
    402 #: ../lib/CataBlog.class.php:2145
     402#: ../lib/CataBlog.class.php:2173
    403403msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings."
    404404msgstr "Si vous souhaitez continuer à utiliser l'extension, veuillez aller dans la galerie afin de mettre à jour les réglages nécessaires."
    405405
    406 #: ../lib/CataBlog.class.php:2206
     406#: ../lib/CataBlog.class.php:2234
    407407#, php-format
    408408msgid "CataBlog %s LightBox Styles | %s"
    409409msgstr "Fenêtre de styles %s de l'extension | %s"
    410410
    411 #: ../lib/CataBlog.class.php:2228
     411#: ../lib/CataBlog.class.php:2256
    412412msgid "You may also press &quot;P&quot; or the left arrow on your keyboard"
    413413msgstr "Vous pouvez également appuyer sur &quot;P&quot; ou sur la flèche gauche de votre clavier"
    414414
    415 #: ../lib/CataBlog.class.php:2229
     415#: ../lib/CataBlog.class.php:2257
    416416msgid "You may also press &quot;N&quot; or the right arrow on your keyboard"
    417417msgstr "Vous pouvez également appuyer sur &quotN&quot; ou sur la flèche droite de votre clavier"
    418418
    419 #: ../lib/CataBlog.class.php:2230
     419#: ../lib/CataBlog.class.php:2258
    420420msgid "Close LightBox Now"
    421421msgstr "Fermer la fenêtre maintenant"
    422422
    423 #: ../lib/CataBlog.class.php:2231
     423#: ../lib/CataBlog.class.php:2259
    424424msgid "PREV"
    425425msgstr "Précédent"
    426426
    427 #: ../lib/CataBlog.class.php:2232
     427#: ../lib/CataBlog.class.php:2260
    428428msgid "NEXT"
    429429msgstr "Suivant"
    430430
    431 #: ../lib/CataBlog.class.php:2233
     431#: ../lib/CataBlog.class.php:2261
    432432msgid "CLOSE"
    433433msgstr "Fermer"
    434434
    435 #: ../lib/CataBlog.class.php:2237
     435#: ../lib/CataBlog.class.php:2265
    436436#, php-format
    437437msgid "CataBlog %s LightBox JavaScript | %s"
    438438msgstr "CataBlog %s la LightBox Javascript | %s"
    439439
    440 #: ../lib/CataBlog.class.php:2239
     440#: ../lib/CataBlog.class.php:2267
    441441msgid "End CataBlog LightBox JavaScript"
    442442msgstr "Ferme la fenêtre Javascript de l'extension"
    443443
    444 #: ../lib/CataBlog.class.php:2355
     444#: ../lib/CataBlog.class.php:2386
    445445msgid "You must use the id attribute in the catablog_gallery Shortcode"
    446446msgstr ""
    447447
    448 #: ../lib/CataBlog.class.php:2372
     448#: ../lib/CataBlog.class.php:2406
    449449#, php-format
    450450msgid "Could not find a CataBlog Gallery with id %s"
     
    452452
    453453#: ../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
     456msgid "Previous"
     457msgstr "Précédent"
     458
     459#: ../lib/CataBlog.class.php:2456
     460#: ../lib/CataBlog.class.php:2842
     461#: ../lib/CataBlog.class.php:3017
     462msgid "Next"
     463msgstr "Suivant"
     464
     465#: ../lib/CataBlog.class.php:2614
    459466#, php-format
    460467msgid "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."
    461468msgstr "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>."
    462469
    463 #: ../lib/CataBlog.class.php:2614
     470#: ../lib/CataBlog.class.php:2637
    464471#, php-format
    465472msgid "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."
    466473msgstr "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."
    467474
    468 #: ../lib/CataBlog.class.php:2615
     475#: ../lib/CataBlog.class.php:2638
    469476msgid "Learn More"
    470477msgstr "En savoir plus"
    471478
    472 #: ../lib/CataBlog.class.php:2667
     479#: ../lib/CataBlog.class.php:2690
    473480msgid "CataBlog Error:"
    474481msgstr "Erreur CataBlog :"
    475482
    476 #: ../lib/CataBlog.class.php:2669
     483#: ../lib/CataBlog.class.php:2692
    477484#, php-format
    478485msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s."
    479486msgstr "L'utilisation des Catégories CataBlog requiert l'activation des %sOptions Publiques CataBlog%s"
    480487
    481 #: ../lib/CataBlog.class.php:2689
     488#: ../lib/CataBlog.class.php:2712
    482489msgid "Select Category"
    483490msgstr "Sélectionnez une Catégorie"
    484491
    485 #: ../lib/CataBlog.class.php:2783
     492#: ../lib/CataBlog.class.php:2806
    486493msgid "The CataBlog Upload Directory cannot be written. "
    487494msgstr "Les dossiers d'envoi de fichiers de CataBlog ne sont pas accessible en écriture."
    488495
    489 #: ../lib/CataBlog.class.php:2783
    490 #: ../lib/CataBlog.class.php:2788
    491 #: ../lib/CataBlog.class.php:2988
     496#: ../lib/CataBlog.class.php:2806
     497#: ../lib/CataBlog.class.php:2811
     498#: ../lib/CataBlog.class.php:3011
    492499msgid "Please check your server file permissions and apache configuration."
    493500msgstr "Veuillez vérifier les permissions liés aux fichiers ainsi que la configuration de votre serveur apache."
    494501
    495 #: ../lib/CataBlog.class.php:2788
     502#: ../lib/CataBlog.class.php:2811
    496503msgid "The CataBlog Templates Directory cannot be written. "
    497504msgstr "Les dossiers d'envoi de fichiers ne sont pas accessible en écriture."
    498505
    499 #: ../lib/CataBlog.class.php:2794
     506#: ../lib/CataBlog.class.php:2817
    500507#, php-format
    501508msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s"
    502509msgstr "Les options et dossiers de l'extension ont été correctement mis à jour. Veuillez %sactualiser maintenant%s"
    503510
    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
    515512#, php-format
    516513msgid "There was an error creating the default term: %s"
    517514msgstr "Erreur lors de la création du contrat par défaut : %s"
    518515
    519 #: ../lib/CataBlog.class.php:2910
     516#: ../lib/CataBlog.class.php:2933
    520517msgid "CataBlog options and directories have been successfully upgraded."
    521518msgstr "Les options et dossiers de l'extension ont été correctement mis à jour."
    522519
    523 #: ../lib/CataBlog.class.php:2988
     520#: ../lib/CataBlog.class.php:3011
    524521msgid "The New CataBlog Templates cannot be written. "
    525522msgstr "Le Nouveau Template CataBlog ne peut être créé."
    526523
    527 #: ../lib/CataBlog.class.php:3175
     524#: ../lib/CataBlog.class.php:3198
    528525msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid."
    529526msgstr "Le fichier CSV envoyé n'a pu être analysé, veuillez vérifier que son contenu est conforme."
    530527
    531 #: ../lib/CataBlog.class.php:3216
     528#: ../lib/CataBlog.class.php:3239
    532529#, php-format
    533530msgid "There was an error parsing your CSV file on lines: %s."
    534531msgstr "Une erreur a été rencontrée lors de la génération du fichier CSV aux ligne : %s."
    535532
    536 #: ../lib/CataBlog.class.php:3263
    537 #: ../lib/CataBlog.class.php:3306
    538 #: ../lib/CataBlog.class.php:3310
    539 #: ../lib/CataBlog.class.php:3313
     533#: ../lib/CataBlog.class.php:3286
     534#: ../lib/CataBlog.class.php:3329
     535#: ../lib/CataBlog.class.php:3333
     536#: ../lib/CataBlog.class.php:3336
    540537msgid "Error:"
    541538msgstr "Erreur :"
    542539
    543 #: ../lib/CataBlog.class.php:3277
     540#: ../lib/CataBlog.class.php:3300
    544541msgid "Success:"
    545542msgstr "Succès :"
    546543
    547 #: ../lib/CataBlog.class.php:3277
     544#: ../lib/CataBlog.class.php:3300
    548545#, php-format
    549546msgid " %s inserted into catalog categories."
    550547msgstr "%s inséré dans l'ensemble des catégories."
    551548
    552 #: ../lib/CataBlog.class.php:3285
     549#: ../lib/CataBlog.class.php:3308
    553550msgid "All New Categories Created"
    554551msgstr "Toutes les catégories ont été créées"
    555552
    556 #: ../lib/CataBlog.class.php:3289
     553#: ../lib/CataBlog.class.php:3312
    557554msgid "No New Categories Created"
    558555msgstr "Pas de nouvelle catégorie créée"
    559556
    560 #: ../lib/CataBlog.class.php:3304
    561 #: ../lib/CataBlog.class.php:3358
     557#: ../lib/CataBlog.class.php:3327
     558#: ../lib/CataBlog.class.php:3381
    562559msgid "Insert:"
    563560msgstr "Insérer :"
    564561
    565 #: ../lib/CataBlog.class.php:3304
    566 #: ../lib/CataBlog.class.php:3358
     562#: ../lib/CataBlog.class.php:3327
     563#: ../lib/CataBlog.class.php:3381
    567564#, php-format
    568565msgid " %s inserted into the database."
    569566msgstr "%s inséré dans la base de données."
    570567
    571 #: ../lib/CataBlog.class.php:3306
     568#: ../lib/CataBlog.class.php:3329
    572569#, php-format
    573570msgid " %s was not inserted into the database."
    574571msgstr "%s n'a pas été inséré dans la base de données."
    575572
    576 #: ../lib/CataBlog.class.php:3310
     573#: ../lib/CataBlog.class.php:3333
    577574msgid "Item had no title and could not be made."
    578575msgstr "L'élément n'a pas de titre et ne peut donc être créé."
    579576
    580 #: ../lib/CataBlog.class.php:3313
     577#: ../lib/CataBlog.class.php:3336
    581578msgid "Item had no primary image name and could not be made."
    582579msgstr "L'élément n'a pas d'image prencipale et ne peut donc être créé."
    583580
    584 #: ../lib/CataBlog.class.php:3355
     581#: ../lib/CataBlog.class.php:3378
    585582msgid "Update:"
    586583msgstr "Mise à jour :"
    587584
    588 #: ../lib/CataBlog.class.php:3355
     585#: ../lib/CataBlog.class.php:3378
    589586#, php-format
    590587msgid " %s updated in database."
    591588msgstr "%s mis à jour dans la base de données."
    592589
    593 #: ../lib/CataBlog.class.php:3384
     590#: ../lib/CataBlog.class.php:3407
    594591#, php-format
    595592msgid "%s Catalog Items Inserted"
    596593msgstr "%s Objets Insérés dans le Catalogue."
    597594
    598 #: ../lib/CataBlog.class.php:3449
     595#: ../lib/CataBlog.class.php:3472
    599596msgid "Uploaded File Exceeded The PHP Configurations Max File Size."
    600597msgstr "Le taille du fichier envoyé dépasse la taille maximum spécifiée dans la configuration de PHP."
    601598
    602 #: ../lib/CataBlog.class.php:3452
     599#: ../lib/CataBlog.class.php:3475
    603600msgid "Upload File Exceeded The HTML Form's Max File Size."
    604601msgstr "La taille du fichier envoyé dépasse la taille maximum des formulaires HTML."
    605602
    606 #: ../lib/CataBlog.class.php:3455
     603#: ../lib/CataBlog.class.php:3478
    607604msgid "File Only Partially Uploaded, Please Try Again."
    608605msgstr "Le fichier n'a pas été envoyé intégralement. Veuillez essayer de nouveau."
    609606
    610 #: ../lib/CataBlog.class.php:3458
     607#: ../lib/CataBlog.class.php:3481
    611608msgid "No File Selected For Upload. Please Resubmit The Form."
    612609msgstr "Aucun fichier ç envoyer sélectionné. Veuillez envoyer de nouveau le formulaire."
    613610
    614 #: ../lib/CataBlog.class.php:3461
     611#: ../lib/CataBlog.class.php:3484
    615612msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin."
    616613msgstr "La configuration PHP de votre serveur ne possède pas de dossiers pour les fichiers temporaires, veuillez contacter l'administrateur."
    617614
    618 #: ../lib/CataBlog.class.php:3464
     615#: ../lib/CataBlog.class.php:3487
    619616msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin."
    620617msgstr "La configuration PHP de votre serveur ne permet pas l'écriture sur le disque dur. Veuillez contacter l'administrateur."
    621618
    622 #: ../lib/CataBlog.class.php:3467
     619#: ../lib/CataBlog.class.php:3490
    623620msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin."
    624621msgstr "Une extension PHP perturbe l'application des exceptions concernant l'envoi de fichiers. Veuillez contacter l'administrateur."
    625622
    626 #: ../lib/CataBlog.class.php:3470
     623#: ../lib/CataBlog.class.php:3493
    627624msgid "An Unknown Upload Error Has Occurred"
    628625msgstr "Une erreur incinnue est apparue lors de l'envoi."
     
    640637msgstr "L'image n'a pu être envoyée au serveur, veuilles actualiser la page."
    641638
    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
    758640#: ../lib/CataBlogWidget.class.php:52
    759641#: ../templates/admin-edit.php:57
     
    764646msgstr "Titre"
    765647
     648#: ../lib/catablog.upload.php:123
     649#: ../lib/CataBlogItem.class.php:365
     650msgid "An item must have a title of at least one alphanumeric character."
     651msgstr "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
     657msgid "Description"
     658msgstr "Description"
     659
     660#: ../lib/catablog.upload.php:142
     661#: ../lib/CataBlogItem.class.php:400
     662msgid "An item's price must be a positive number."
     663msgstr "Le prix d'une image doit être un nombre positif."
     664
     665#: ../lib/catablog.upload.php:145
     666#: ../lib/CataBlogItem.class.php:393
     667msgid "An item's order value must be a positive integer."
     668msgstr "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
     673msgid "Save Changes"
     674msgstr "Enregistrer les changements"
     675
     676#: ../lib/CataBlogDirectory.class.php:12
     677#: ../lib/CataBlogDirectory.class.php:109
     678msgid "Could not open directory."
     679msgstr "Impossible d'ouvrir le dossier de destination."
     680
     681#: ../lib/CataBlogGallery.class.php:187
     682#, fuzzy
     683msgid "A gallery must have a title of at least one alphanumeric character."
     684msgstr "Une image doit comporter un titre comprenant un caractère alphanumérique au minimum."
     685
     686#: ../lib/CataBlogGallery.class.php:192
     687#, fuzzy
     688msgid "A gallery title can not be more then 200 characters long."
     689msgstr "Le titre d'une image ne peut dépasser 200 caractères."
     690
     691#: ../lib/CataBlogItem.class.php:354
     692msgid "An item must have an image associated with it."
     693msgstr ".Un élément doit impérativement être associé à une image primaire"
     694
     695#: ../lib/CataBlogItem.class.php:360
     696msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable."
     697msgstr "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
     700msgid "An item's title can not be more then 200 characters long."
     701msgstr "Le titre d'une image ne peut dépasser 200 caractères."
     702
     703#: ../lib/CataBlogItem.class.php:375
     704msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS"
     705msgstr "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
     708msgid "An item's date must be an actual day on the gregorian calendar."
     709msgstr "La date d'une image doit être un jour du calendrier grégorien."
     710
     711#: ../lib/CataBlogItem.class.php:388
     712msgid "An item's date hour must be below twenty-four."
     713msgstr "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
     717msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please."
     718msgstr "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
     722msgid "Can not write uploaded image to server, your storage space is exhausted."
     723msgstr "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
     727msgid "Please delete some media files to free up space and try again."
     728msgstr "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
     733msgid "You have %sMB of available space on your server and your image is %sMB."
     734msgstr "Il vous reste %sMB d'espace disponible sur votre serveur et votre image fait %sMB."
     735
     736#: ../lib/CataBlogItem.class.php:517
     737msgid "Could not set categories, please try again."
     738msgstr "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
     743msgid "Original image file missing, could not be located at %s"
     744msgstr "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
     748msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file."
     749msgstr "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
     753msgid "Original image could not be loaded because it is an unsupported format."
     754msgstr "L'image ne peut être chargée car son format n'est pas supporté."
     755
     756#: ../lib/CataBlogWidget.class.php:14
     757msgid "Entries from your CataBlog Library"
     758msgstr "Entrées provenant de votre Galerie CataBlog"
     759
     760#: ../lib/CataBlogWidget.class.php:15
     761msgid "CataBlog Catalog"
     762msgstr "Catalogue CataBlog"
     763
     764#: ../lib/CataBlogWidget.class.php:50
     765#: ../templates/admin-galleries.php:70
     766#: ../templates/admin-galleries.php:84
     767msgid "Date"
     768msgstr "Date"
     769
     770#: ../lib/CataBlogWidget.class.php:51
     771msgid "Order"
     772msgstr "Commande"
     773
    766774#: ../lib/CataBlogWidget.class.php:53
    767775msgid "Random"
     
    13311339msgstr "Dernière page"
    13321340
    1333 #: ../templates/admin-galleries.php:61
    1334 #: ../templates/admin-galleries.php:81
    1335 #: ../templates/admin-gallery-edit.php:17
    1336 msgid "Description"
    1337 msgstr "Description"
    1338 
    13391341#: ../templates/admin-galleries.php:62
    13401342#: ../templates/admin-galleries.php:82
     
    14531455
    14541456#: ../templates/admin-library.php:40
     1457#: ../templates/admin-screen-options-add-new.php:49
    14551458#: ../templates/admin-screen-options-galleries.php:56
    14561459#: ../templates/admin-screen-options-library.php:56
     
    15381541msgstr "Veuillez tout d'abord sélectionner au moins un objet dans le catalogue."
    15391542
    1540 #: ../templates/admin-library.php:287
     1543#: ../templates/admin-library.php:289
    15411544msgid "Are you sure you want to delete multiple items?"
    15421545msgstr "Êtes-vous sûr de vouloir supprimer plusieurs éléements?"
    15431546
    1544 #: ../templates/admin-library.php:316
     1547#: ../templates/admin-library.php:318
    15451548msgid "Are you sure you want to permanently delete this catalog items?"
    15461549msgstr "Êtes-vous sûr de vouloir définitivement supprimer ces objets du catalogue?"
     
    16051608msgid "Select Images"
    16061609msgstr "Selectionnez des Images"
     1610
     1611#: ../templates/admin-new.php:261
     1612#: ../templates/admin-options.php:601
     1613msgid "There are errors, please correct them before saving."
     1614msgstr "Des erreurs ont été trouvées, veuillez les corriger avant d'enregistrer."
    16071615
    16081616#: ../templates/admin-options.php:8
     
    20442052msgstr "ou %sundo les changements %s"
    20452053
    2046 #: ../templates/admin-options.php:601
    2047 msgid "There are errors, please correct them before saving."
    2048 msgstr "Des erreurs ont été trouvées, veuillez les corriger avant d'enregistrer."
    2049 
    20502054#: ../templates/admin-options.php:720
    20512055#: ../templates/admin-regenerate.php:43
     
    21172121msgstr "Nouvelle Image Trouvée, création des objets en cours %s"
    21182122
     2123#: ../templates/admin-screen-options-add-new.php:40
    21192124#: ../templates/admin-screen-options-galleries.php:41
    21202125#: ../templates/admin-screen-options-galleries.php:50
     
    21982203msgid "Please only use underscores, hyphens and alphanumeric characters only."
    21992204msgstr "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"
    22002208
    22012209#~ msgid "CataBlog Documentation - Making Custom Templates"
  • catablog/trunk/localization/catablog-sv_SE.po

    r524478 r530481  
    55"Project-Id-Version: CataBlog 1.2.5\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2012-03-27 14:24-0800\n"
    8 "PO-Revision-Date: 2012-03-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"
    99"Last-Translator: Zachary Segal <zac@illproductions.com>\n"
    1010"Language-Team: illProductions <zac@illproductions.com>\n"
     
    3434msgstr "<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."
    3535
    36 #: ../lib/CataBlog.class.php:210
     36#: ../lib/CataBlog.class.php:211
    3737msgid "Uncategorized"
    3838msgstr "Okatigoriserad"
    3939
    40 #: ../lib/CataBlog.class.php:231
     40#: ../lib/CataBlog.class.php:232
    4141msgid "CataBlog Item"
    4242msgstr "CataBlog Artikel"
    4343
    44 #: ../lib/CataBlog.class.php:236
     44#: ../lib/CataBlog.class.php:237
    4545msgid "A Catalog Item, generated by CataBlog."
    4646msgstr "En CataBlog artikel, skapad av CataBlog"
    4747
    48 #: ../lib/CataBlog.class.php:247
     48#: ../lib/CataBlog.class.php:248
    4949msgid "CataBlog Category"
    5050msgstr "CataBlog Kategori"
    5151
    52 #: ../lib/CataBlog.class.php:258
     52#: ../lib/CataBlog.class.php:259
    5353#, fuzzy
    5454msgid "CataBlog Gallery"
    5555msgstr "CataBlog Kategori"
    5656
    57 #: ../lib/CataBlog.class.php:263
     57#: ../lib/CataBlog.class.php:264
    5858#, fuzzy
    5959msgid "A Catalog Gallery, generated by CataBlog."
    6060msgstr "En CataBlog artikel, skapad av CataBlog"
    6161
    62 #: ../lib/CataBlog.class.php:389
     62#: ../lib/CataBlog.class.php:390
    6363#: ../templates/admin-404.php:11
    6464msgid "CataBlog Library"
    6565msgstr "CataBlog Bibliotek"
    6666
    67 #: ../lib/CataBlog.class.php:389
    68 #: ../lib/CataBlog.class.php:476
     67#: ../lib/CataBlog.class.php:390
     68#: ../lib/CataBlog.class.php:477
    6969msgid "Library"
    7070msgstr "Bibliotek"
    7171
    72 #: ../lib/CataBlog.class.php:390
     72#: ../lib/CataBlog.class.php:391
    7373msgid "Add New CataBlog Entry"
    7474msgstr "Skapa nytt CataBlog inlägg"
    7575
    76 #: ../lib/CataBlog.class.php:390
    77 #: ../lib/CataBlog.class.php:477
     76#: ../lib/CataBlog.class.php:391
     77#: ../lib/CataBlog.class.php:478
    7878msgid "Add New"
    7979msgstr "Skapa ny"
    8080
    81 #: ../lib/CataBlog.class.php:391
     81#: ../lib/CataBlog.class.php:392
    8282#: ../templates/admin-galleries.php:5
    8383#, fuzzy
     
    8585msgstr "CataBlog Kategori"
    8686
    87 #: ../lib/CataBlog.class.php:391
    88 #: ../lib/CataBlog.class.php:478
     87#: ../lib/CataBlog.class.php:392
     88#: ../lib/CataBlog.class.php:479
    8989#, fuzzy
    9090msgid "Galleries"
    9191msgstr "Kategorier"
    9292
    93 #: ../lib/CataBlog.class.php:392
     93#: ../lib/CataBlog.class.php:393
    9494#, fuzzy
    9595msgid "CataBlog Templates"
    9696msgstr "Ta bort CataBlog"
    9797
    98 #: ../lib/CataBlog.class.php:392
    99 #: ../lib/CataBlog.class.php:479
     98#: ../lib/CataBlog.class.php:393
     99#: ../lib/CataBlog.class.php:480
    100100#, fuzzy
    101101msgid "Templates"
    102102msgstr "Mall"
    103103
    104 #: ../lib/CataBlog.class.php:393
     104#: ../lib/CataBlog.class.php:394
    105105msgid "CataBlog Options"
    106106msgstr "CataBlog alternativ"
    107107
    108 #: ../lib/CataBlog.class.php:393
    109 #: ../lib/CataBlog.class.php:480
     108#: ../lib/CataBlog.class.php:394
     109#: ../lib/CataBlog.class.php:481
    110110msgid "Options"
    111111msgstr "Alternativ"
    112112
    113 #: ../lib/CataBlog.class.php:394
     113#: ../lib/CataBlog.class.php:395
    114114#: ../templates/admin-about.php:4
    115115msgid "About CataBlog"
    116116msgstr "Om CataBlog"
    117117
    118 #: ../lib/CataBlog.class.php:394
    119 #: ../lib/CataBlog.class.php:481
     118#: ../lib/CataBlog.class.php:395
     119#: ../lib/CataBlog.class.php:482
    120120msgid "About"
    121121msgstr "Om"
    122122
    123 #: ../lib/CataBlog.class.php:461
     123#: ../lib/CataBlog.class.php:462
    124124#: ../templates/admin-edit.php:4
    125125msgid "Edit CataBlog Entry"
    126126msgstr "Ändra CataBlog inlägg"
    127127
    128 #: ../lib/CataBlog.class.php:475
     128#: ../lib/CataBlog.class.php:476
    129129#: ../templates/admin-discfull.php:22
    130130msgid "CataBlog"
    131131msgstr "CataBlog"
    132132
    133 #: ../lib/CataBlog.class.php:484
     133#: ../lib/CataBlog.class.php:485
    134134msgid "CataBlog Entry"
    135135msgstr "CataBlog inlägg"
    136136
    137 #: ../lib/CataBlog.class.php:664
    138 #: ../lib/CataBlog.class.php:707
    139 #: ../lib/CataBlog.class.php:1174
     137#: ../lib/CataBlog.class.php:665
     138#: ../lib/CataBlog.class.php:708
     139#: ../lib/CataBlog.class.php:1175
    140140msgid "Changes Saved Successfully."
    141141msgstr "Ändringar sparades."
    142142
    143 #: ../lib/CataBlog.class.php:667
     143#: ../lib/CataBlog.class.php:668
    144144msgid "Catalog Item Deleted Successfully."
    145145msgstr "Katalog artikel togs bort."
    146146
    147 #: ../lib/CataBlog.class.php:670
     147#: ../lib/CataBlog.class.php:671
    148148msgid "Could Not Delete Item Because ID was non existent."
    149149msgstr "Kunde inte ta bort artikel för att ID:et inte finns."
    150150
    151 #: ../lib/CataBlog.class.php:673
     151#: ../lib/CataBlog.class.php:674
    152152msgid "Could not verify bulk edit action nonce, please refresh page and try again."
    153153msgstr "Kunde inte verifiera gruppredigering för tillfället, var god och uppdatera sidan och försök igen."
    154154
    155 #: ../lib/CataBlog.class.php:676
     155#: ../lib/CataBlog.class.php:677
    156156msgid "Bulk categories edit performed successfully."
    157157msgstr "Grupp ändring av kategorier lyckades."
    158158
    159 #: ../lib/CataBlog.class.php:679
     159#: ../lib/CataBlog.class.php:680
    160160msgid "Bulk delete performed successfully."
    161161msgstr "Lyckades göra en gruppborttagning."
    162162
    163 #: ../lib/CataBlog.class.php:682
     163#: ../lib/CataBlog.class.php:683
    164164msgid "Reset all data successfully."
    165165msgstr "Återställt all data."
    166166
    167 #: ../lib/CataBlog.class.php:685
     167#: ../lib/CataBlog.class.php:686
    168168#, fuzzy
    169169msgid "Catalog items added to Gallery successfully."
    170170msgstr "Katalog artikel togs bort."
    171171
    172 #: ../lib/CataBlog.class.php:688
     172#: ../lib/CataBlog.class.php:689
    173173msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again."
    174174msgstr ""
    175175
    176 #: ../lib/CataBlog.class.php:691
     176#: ../lib/CataBlog.class.php:692
    177177#, fuzzy
    178178msgid "Could not validate the gallery, please modify the gallery and try again."
    179179msgstr "Kunde inte verifiera gruppredigering för tillfället, var god och uppdatera sidan och försök igen."
    180180
    181 #: ../lib/CataBlog.class.php:711
     181#: ../lib/CataBlog.class.php:712
    182182msgid "View Now"
    183183msgstr "Se nu"
    184184
    185 #: ../lib/CataBlog.class.php:774
     185#: ../lib/CataBlog.class.php:775
    186186#, fuzzy
    187187msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical."
    188188msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen."
    189189
    190 #: ../lib/CataBlog.class.php:782
     190#: ../lib/CataBlog.class.php:783
    191191msgid "CataBlog Options Saved"
    192192msgstr "CataBlog alternativ sparade"
    193193
    194 #: ../lib/CataBlog.class.php:835
     194#: ../lib/CataBlog.class.php:836
    195195msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page"
    196196msgstr "Var god låt renderingen nedan avslutas innan du navigerar dig ifrån sidan"
    197197
    198 #: ../lib/CataBlog.class.php:853
    199 #: ../lib/CataBlog.class.php:904
    200 #: ../lib/CataBlog.class.php:907
    201 #: ../lib/CataBlog.class.php:1125
    202 #: ../lib/CataBlog.class.php:1180
     198#: ../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
    203203msgid "Form Validation Error. Please reload the page and try again."
    204204msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen."
    205205
    206 #: ../lib/CataBlog.class.php:898
     206#: ../lib/CataBlog.class.php:899
    207207#, fuzzy
    208208msgid "Template Changes Saved Successfully."
    209209msgstr "Ändringar sparades."
    210210
    211 #: ../lib/CataBlog.class.php:901
     211#: ../lib/CataBlog.class.php:902
    212212#, fuzzy
    213213msgid "Template Created Successfully."
    214214msgstr "Termen borttagen."
    215215
    216 #: ../lib/CataBlog.class.php:910
     216#: ../lib/CataBlog.class.php:911
    217217#, php-format
    218218msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>"
    219219msgstr ""
    220220
    221 #: ../lib/CataBlog.class.php:913
     221#: ../lib/CataBlog.class.php:914
    222222msgid "File Creation Error. A template already exists with that name."
    223223msgstr ""
    224224
    225 #: ../lib/CataBlog.class.php:916
     225#: ../lib/CataBlog.class.php:917
    226226msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters."
    227227msgstr ""
    228228
    229 #: ../lib/CataBlog.class.php:998
    230229#: ../lib/CataBlog.class.php:999
    231230#: ../lib/CataBlog.class.php:1000
     231#: ../lib/CataBlog.class.php:1001
    232232msgid "not present"
    233233msgstr "inte närvarande"
    234234
    235 #: ../lib/CataBlog.class.php:1119
     235#: ../lib/CataBlog.class.php:1120
    236236#, fuzzy
    237237msgid "Gallery Created Successfully."
    238238msgstr "Termen borttagen."
    239239
    240 #: ../lib/CataBlog.class.php:1122
     240#: ../lib/CataBlog.class.php:1123
    241241#, fuzzy
    242242msgid "Form Validation Error. Please check your gallery title and try again."
    243243msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen."
    244244
    245 #: ../lib/CataBlog.class.php:1128
     245#: ../lib/CataBlog.class.php:1129
    246246#, fuzzy
    247247msgid "Gallery Deleted Successfully."
    248248msgstr "Katalog artikel togs bort."
    249249
    250 #: ../lib/CataBlog.class.php:1131
     250#: ../lib/CataBlog.class.php:1132
    251251#, fuzzy
    252252msgid "Could Not Delete Gallery Because ID was non existent."
    253253msgstr "Kunde inte ta bort artikel för att ID:et inte finns."
    254254
    255 #: ../lib/CataBlog.class.php:1134
     255#: ../lib/CataBlog.class.php:1135
    256256#, fuzzy
    257257msgid "Multiple Galleries Deleted Successfully."
    258258msgstr "Katalog artikel togs bort."
    259259
    260 #: ../lib/CataBlog.class.php:1177
     260#: ../lib/CataBlog.class.php:1178
    261261#, fuzzy
    262262msgid "Form Validation Error: Please make sure your title is at least one character."
    263263msgstr "Validering a formuläret misslyckades. Ladda om sidan och prova igen."
    264264
    265 #: ../lib/CataBlog.class.php:1315
     265#: ../lib/CataBlog.class.php:1316
    266266msgid "The file you selected was to large or you didn't select anything at all, please try again."
    267267msgstr "Filen som du valde var antingen för stor eller så valde du inget, var god prova igen."
    268268
    269 #: ../lib/CataBlog.class.php:1319
    270 #: ../lib/CataBlog.class.php:1373
    271 #: ../lib/CataBlog.class.php:1425
    272 #: ../lib/CataBlog.class.php:1463
    273 #: ../lib/CataBlog.class.php:1596
     269#: ../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
    274274msgid "WordPress Nonce Error, please reload the form and try again."
    275275msgstr "Tillfälligt WordPress problem, var god ladda om sidan och prova igen."
    276276
    277 #: ../lib/CataBlog.class.php:1377
     277#: ../lib/CataBlog.class.php:1378
    278278msgid "full form was not submitted, please try again."
    279279msgstr "hela formuläret skickades inte, var god prova igen."
    280280
    281 #: ../lib/CataBlog.class.php:1421
    282 #: ../lib/CataBlog.class.php:1459
     281#: ../lib/CataBlog.class.php:1422
     282#: ../lib/CataBlog.class.php:1460
    283283msgid "You didn't select anything to upload, please try again."
    284284msgstr "Du valde inget att ladda upp, var god prova igen."
    285285
    286 #: ../lib/CataBlog.class.php:1429
    287 #: ../lib/CataBlog.class.php:1467
     286#: ../lib/CataBlog.class.php:1430
     287#: ../lib/CataBlog.class.php:1468
    288288msgid "No item ID posted, press back arrow and try again."
    289289msgstr "Inget artikel ID sänt, klicka på tillbaka pilen och prova igen."
    290290
    291 #: ../lib/CataBlog.class.php:1510
     291#: ../lib/CataBlog.class.php:1511
    292292msgid "Please make your selection by checking the boxes in the list below."
    293293msgstr "Var god gör dit val genom att markera i listan nedan."
    294294
    295 #: ../lib/CataBlog.class.php:1556
     295#: ../lib/CataBlog.class.php:1557
    296296#, php-format
    297297msgid "Error during set category, could not load item with id %s."
    298298msgstr "Problem under skapandet av kategorin, kunde inte ladda artiklar med id %s."
    299299
    300 #: ../lib/CataBlog.class.php:1574
     300#: ../lib/CataBlog.class.php:1575
    301301#, php-format
    302302msgid "Error during bulk delete, could not load item with id %s."
    303303msgstr "Fel under gruppbortagningen, kunde inte ladda artikel med ID %s."
    304304
    305 #: ../lib/CataBlog.class.php:1605
     305#: ../lib/CataBlog.class.php:1606
    306306msgid "No file was selected for upload, please try again."
    307307msgstr "Ingen fil vald för att laddas upp, var god försök igen."
    308308
    309 #: ../lib/CataBlog.class.php:1614
     309#: ../lib/CataBlog.class.php:1615
    310310msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML."
    311311msgstr "Uppladdad XML fil kunde inte analyseras, kolla upp så att filens innehåll är korrekt XML."
    312312
    313 #: ../lib/CataBlog.class.php:1624
     313#: ../lib/CataBlog.class.php:1625
    314314msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension."
    315315msgstr "Uppladdad fil var inte i korrekt format, var god kolla upp så att filen har xml eller csv som filändelse."
    316316
    317 #: ../lib/CataBlog.class.php:1695
     317#: ../lib/CataBlog.class.php:1696
    318318msgid "The CataBlog upload directories have been unlocked."
    319319msgstr "CataBlogs uppladdningskataloger är olåsta."
    320320
    321 #: ../lib/CataBlog.class.php:1698
    322 #: ../lib/CataBlog.class.php:1711
     321#: ../lib/CataBlog.class.php:1699
     322#: ../lib/CataBlog.class.php:1712
    323323msgid "Could not lock/unlock the directory. Are you using a unix based server?"
    324324msgstr "Kunde inte låsa/låsa upp katalogen. Använder du en UNIX baserad server?"
    325325
    326 #: ../lib/CataBlog.class.php:1708
     326#: ../lib/CataBlog.class.php:1709
    327327msgid "The CataBlog upload directories have been locked."
    328328msgstr "CataBlog uppladdningskataloger är låsta."
    329329
    330 #: ../lib/CataBlog.class.php:1827
     330#: ../lib/CataBlog.class.php:1843
    331331msgid "micro save successful"
    332332msgstr ""
    333333
    334 #: ../lib/CataBlog.class.php:1835
     334#: ../lib/CataBlog.class.php:1851
    335335msgid "Cannot save changes because the item id could not be found in the database."
    336336msgstr ""
    337337
    338 #: ../lib/CataBlog.class.php:1896
     338#: ../lib/CataBlog.class.php:1924
    339339msgid "Screen Options updated successfully."
    340340msgstr "Skärmalternativ uppdaterades."
    341341
    342 #: ../lib/CataBlog.class.php:1910
     342#: ../lib/CataBlog.class.php:1938
    343343#: ../templates/admin-edit.php:277
    344344msgid "Commas, Pipes and reserved HTML characters are not allowed in category names."
    345345msgstr "Komma, lodrätt streck och reserverade HTML tecken är inte tillåtet i kategorinamn."
    346346
    347 #: ../lib/CataBlog.class.php:1916
     347#: ../lib/CataBlog.class.php:1944
    348348msgid "Please be a little more specific with your category name."
    349349msgstr "Var lite mer specifik med namnen på dina kategorier."
    350350
    351 #: ../lib/CataBlog.class.php:1929
     351#: ../lib/CataBlog.class.php:1957
    352352msgid "There already is a category with that name."
    353353msgstr "Det finns redan en kategori med det namnet."
    354354
    355 #: ../lib/CataBlog.class.php:1966
     355#: ../lib/CataBlog.class.php:1994
    356356#, fuzzy
    357357msgid "Term Edited Successfully"
    358358msgstr "Termen borttagen."
    359359
    360 #: ../lib/CataBlog.class.php:1969
    361 #: ../lib/CataBlog.class.php:1985
     360#: ../lib/CataBlog.class.php:1997
     361#: ../lib/CataBlog.class.php:2013
    362362msgid "Term did not exist, please refresh page and try again."
    363363msgstr "Termen fanns inte, var god uppdatera sidan och prova igen."
    364364
    365 #: ../lib/CataBlog.class.php:1982
     365#: ../lib/CataBlog.class.php:2010
    366366msgid "Term Removed Successfully."
    367367msgstr "Termen borttagen."
    368368
    369 #: ../lib/CataBlog.class.php:2036
     369#: ../lib/CataBlog.class.php:2064
    370370msgid "unsupported image size type"
    371371msgstr "bildtypen stöds inte"
    372372
    373 #: ../lib/CataBlog.class.php:2046
     373#: ../lib/CataBlog.class.php:2074
    374374#, php-format
    375375msgid "Rendering... %s of %s"
    376376msgstr "Renderar... %s av %s"
    377377
    378 #: ../lib/CataBlog.class.php:2048
     378#: ../lib/CataBlog.class.php:2076
    379379msgid "Image rendering is now complete."
    380380msgstr "Bildrendering är klar."
    381381
    382 #: ../lib/CataBlog.class.php:2089
     382#: ../lib/CataBlog.class.php:2117
    383383msgid "error"
    384384msgstr "fel"
    385385
    386 #: ../lib/CataBlog.class.php:2092
     386#: ../lib/CataBlog.class.php:2120
    387387msgid "sub image deleted successfully"
    388388msgstr "ersättningsbilden togs bort"
    389389
    390 #: ../lib/CataBlog.class.php:2127
     390#: ../lib/CataBlog.class.php:2155
    391391#, php-format
    392392msgid "%s library items deleted successfully."
    393393msgstr "%s biblioteks artiklar togs bort."
    394394
    395 #: ../lib/CataBlog.class.php:2130
     395#: ../lib/CataBlog.class.php:2158
    396396msgid "CataBlog Library Cleared Successfully."
    397397msgstr "CataBlogs bibliotek rensades."
    398398
    399 #: ../lib/CataBlog.class.php:2143
     399#: ../lib/CataBlog.class.php:2171
    400400msgid "CataBlog Options, Directories and Terms Deleted Successfully."
    401401msgstr "CataBlogs inställningar, kataloger och villkor har tagits bort."
    402402
    403 #: ../lib/CataBlog.class.php:2144
     403#: ../lib/CataBlog.class.php:2172
    404404msgid "You may now go deactivate CataBlog and nothing will be left behind."
    405405msgstr "Du kan nu avaktivera CataBlog och inget kommer att var kvar."
    406406
    407 #: ../lib/CataBlog.class.php:2145
     407#: ../lib/CataBlog.class.php:2173
    408408msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings."
    409409msgstr "Om du vill fortsätta och använda CataBlog måste du gå till biblioteket och ominstallera inställningarna."
    410410
    411 #: ../lib/CataBlog.class.php:2206
     411#: ../lib/CataBlog.class.php:2234
    412412#, php-format
    413413msgid "CataBlog %s LightBox Styles | %s"
    414414msgstr "CataBlog %s LightBox stilar | %sl"
    415415
    416 #: ../lib/CataBlog.class.php:2228
     416#: ../lib/CataBlog.class.php:2256
    417417msgid "You may also press &quot;P&quot; or the left arrow on your keyboard"
    418418msgstr "Du kan också klicka på &quot;P&quot; eller på vänster pilknapp på tangentbordet"
    419419
    420 #: ../lib/CataBlog.class.php:2229
     420#: ../lib/CataBlog.class.php:2257
    421421msgid "You may also press &quot;N&quot; or the right arrow on your keyboard"
    422422msgstr "Du kan också klicka på &quot;N&quot; eller på höger pilknapp på tangentbordet"
    423423
    424 #: ../lib/CataBlog.class.php:2230
     424#: ../lib/CataBlog.class.php:2258
    425425msgid "Close LightBox Now"
    426426msgstr "Stäng LightBox nu"
    427427
    428 #: ../lib/CataBlog.class.php:2231
     428#: ../lib/CataBlog.class.php:2259
    429429msgid "PREV"
    430430msgstr "TDGR"
    431431
    432 #: ../lib/CataBlog.class.php:2232
     432#: ../lib/CataBlog.class.php:2260
    433433msgid "NEXT"
    434434msgstr "NÄSTA"
    435435
    436 #: ../lib/CataBlog.class.php:2233
     436#: ../lib/CataBlog.class.php:2261
    437437msgid "CLOSE"
    438438msgstr "STÄNG"
    439439
    440 #: ../lib/CataBlog.class.php:2237
     440#: ../lib/CataBlog.class.php:2265
    441441#, php-format
    442442msgid "CataBlog %s LightBox JavaScript | %s"
    443443msgstr "CataBlog %s LightBox JavaScript | %s"
    444444
    445 #: ../lib/CataBlog.class.php:2239
     445#: ../lib/CataBlog.class.php:2267
    446446msgid "End CataBlog LightBox JavaScript"
    447447msgstr "Slut CataBlog LightBox JavaScript"
    448448
    449 #: ../lib/CataBlog.class.php:2355
     449#: ../lib/CataBlog.class.php:2386
    450450msgid "You must use the id attribute in the catablog_gallery Shortcode"
    451451msgstr ""
    452452
    453 #: ../lib/CataBlog.class.php:2372
     453#: ../lib/CataBlog.class.php:2406
    454454#, php-format
    455455msgid "Could not find a CataBlog Gallery with id %s"
     
    457457
    458458#: ../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
     461msgid "Previous"
     462msgstr ""
     463
     464#: ../lib/CataBlog.class.php:2456
     465#: ../lib/CataBlog.class.php:2842
     466#: ../lib/CataBlog.class.php:3017
     467msgid "Next"
     468msgstr ""
     469
     470#: ../lib/CataBlog.class.php:2614
    464471#, fuzzy, php-format
    465472msgid "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."
    466473msgstr "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."
    467474
    468 #: ../lib/CataBlog.class.php:2614
     475#: ../lib/CataBlog.class.php:2637
    469476#, php-format
    470477msgid "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."
    471478msgstr "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."
    472479
    473 #: ../lib/CataBlog.class.php:2615
     480#: ../lib/CataBlog.class.php:2638
    474481msgid "Learn More"
    475482msgstr "Lär dig mer"
    476483
    477 #: ../lib/CataBlog.class.php:2667
     484#: ../lib/CataBlog.class.php:2690
    478485#, fuzzy
    479486msgid "CataBlog Error:"
    480487msgstr "CataBlog inlägg"
    481488
    482 #: ../lib/CataBlog.class.php:2669
     489#: ../lib/CataBlog.class.php:2692
    483490#, php-format
    484491msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s."
    485492msgstr ""
    486493
    487 #: ../lib/CataBlog.class.php:2689
     494#: ../lib/CataBlog.class.php:2712
    488495#, fuzzy
    489496msgid "Select Category"
    490497msgstr "Välj en färg"
    491498
    492 #: ../lib/CataBlog.class.php:2783
     499#: ../lib/CataBlog.class.php:2806
    493500#, fuzzy
    494501msgid "The CataBlog Upload Directory cannot be written. "
    495502msgstr "CataBlog uppladdningskataloger är låsta."
    496503
    497 #: ../lib/CataBlog.class.php:2783
    498 #: ../lib/CataBlog.class.php:2788
    499 #: ../lib/CataBlog.class.php:2988
     504#: ../lib/CataBlog.class.php:2806
     505#: ../lib/CataBlog.class.php:2811
     506#: ../lib/CataBlog.class.php:3011
    500507msgid "Please check your server file permissions and apache configuration."
    501508msgstr ""
    502509
    503 #: ../lib/CataBlog.class.php:2788
     510#: ../lib/CataBlog.class.php:2811
    504511#, fuzzy
    505512msgid "The CataBlog Templates Directory cannot be written. "
    506513msgstr "CataBlog uppladdningskataloger är låsta."
    507514
    508 #: ../lib/CataBlog.class.php:2794
     515#: ../lib/CataBlog.class.php:2817
    509516#, php-format
    510517msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s"
    511518msgstr "CataBlogs inställningar och kataloger har blivit installerad. Var god %suppdatera nu%s"
    512519
    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
    524521#, php-format
    525522msgid "There was an error creating the default term: %s"
    526523msgstr "Ett fel uppstod när grundtermen skulle skapas: %s"
    527524
    528 #: ../lib/CataBlog.class.php:2910
     525#: ../lib/CataBlog.class.php:2933
    529526msgid "CataBlog options and directories have been successfully upgraded."
    530527msgstr "CataBlogs inställningar och kataloger har uppgraderats."
    531528
    532 #: ../lib/CataBlog.class.php:2988
     529#: ../lib/CataBlog.class.php:3011
    533530#, fuzzy
    534531msgid "The New CataBlog Templates cannot be written. "
    535532msgstr "CataBlog uppladdningskataloger är låsta."
    536533
    537 #: ../lib/CataBlog.class.php:3175
     534#: ../lib/CataBlog.class.php:3198
    538535msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid."
    539536msgstr "Uppladdad CSV fil kunde inte analyseras, kolla så att filformatet är korrekt."
    540537
    541 #: ../lib/CataBlog.class.php:3216
     538#: ../lib/CataBlog.class.php:3239
    542539#, fuzzy, php-format
    543540msgid "There was an error parsing your CSV file on lines: %s."
    544541msgstr "Ett fel uppstod när grundtermen skulle skapas: %s"
    545542
    546 #: ../lib/CataBlog.class.php:3263
    547 #: ../lib/CataBlog.class.php:3306
    548 #: ../lib/CataBlog.class.php:3310
    549 #: ../lib/CataBlog.class.php:3313
     543#: ../lib/CataBlog.class.php:3286
     544#: ../lib/CataBlog.class.php:3329
     545#: ../lib/CataBlog.class.php:3333
     546#: ../lib/CataBlog.class.php:3336
    550547msgid "Error:"
    551548msgstr "Fel:"
    552549
    553 #: ../lib/CataBlog.class.php:3277
     550#: ../lib/CataBlog.class.php:3300
    554551msgid "Success:"
    555552msgstr "Lyckat:"
    556553
    557 #: ../lib/CataBlog.class.php:3277
     554#: ../lib/CataBlog.class.php:3300
    558555#, php-format
    559556msgid " %s inserted into catalog categories."
    560557msgstr "%s tillagt i katalog kategorierna."
    561558
    562 #: ../lib/CataBlog.class.php:3285
     559#: ../lib/CataBlog.class.php:3308
    563560msgid "All New Categories Created"
    564561msgstr "Alla nya kategorier skapades"
    565562
    566 #: ../lib/CataBlog.class.php:3289
     563#: ../lib/CataBlog.class.php:3312
    567564msgid "No New Categories Created"
    568565msgstr "Inga nya kategorier skapades"
    569566
    570 #: ../lib/CataBlog.class.php:3304
    571 #: ../lib/CataBlog.class.php:3358
     567#: ../lib/CataBlog.class.php:3327
     568#: ../lib/CataBlog.class.php:3381
    572569msgid "Insert:"
    573570msgstr "Infoga:"
    574571
    575 #: ../lib/CataBlog.class.php:3304
    576 #: ../lib/CataBlog.class.php:3358
     572#: ../lib/CataBlog.class.php:3327
     573#: ../lib/CataBlog.class.php:3381
    577574#, php-format
    578575msgid " %s inserted into the database."
    579576msgstr "%s fördes in i databasen"
    580577
    581 #: ../lib/CataBlog.class.php:3306
     578#: ../lib/CataBlog.class.php:3329
    582579#, php-format
    583580msgid " %s was not inserted into the database."
    584581msgstr "%s infördes inte i databasen."
    585582
    586 #: ../lib/CataBlog.class.php:3310
     583#: ../lib/CataBlog.class.php:3333
    587584msgid "Item had no title and could not be made."
    588585msgstr "Artikeln hade ingen titel och kunde inte skapas."
    589586
    590 #: ../lib/CataBlog.class.php:3313
     587#: ../lib/CataBlog.class.php:3336
    591588msgid "Item had no primary image name and could not be made."
    592589msgstr "Artikeln hade inget primärt bildnamn och kunde inte skapas."
    593590
    594 #: ../lib/CataBlog.class.php:3355
     591#: ../lib/CataBlog.class.php:3378
    595592msgid "Update:"
    596593msgstr "Uppdatera:"
    597594
    598 #: ../lib/CataBlog.class.php:3355
     595#: ../lib/CataBlog.class.php:3378
    599596#, php-format
    600597msgid " %s updated in database."
    601598msgstr "%s uppdaterat i databasen."
    602599
    603 #: ../lib/CataBlog.class.php:3384
     600#: ../lib/CataBlog.class.php:3407
    604601#, fuzzy, php-format
    605602msgid "%s Catalog Items Inserted"
    606603msgstr "Alla katalog artiklar bearbetades"
    607604
    608 #: ../lib/CataBlog.class.php:3449
     605#: ../lib/CataBlog.class.php:3472
    609606msgid "Uploaded File Exceeded The PHP Configurations Max File Size."
    610607msgstr "Uppladda fil översteg PHP konfigurationens max gräns."
    611608
    612 #: ../lib/CataBlog.class.php:3452
     609#: ../lib/CataBlog.class.php:3475
    613610msgid "Upload File Exceeded The HTML Form's Max File Size."
    614611msgstr "Uppladda fil översteg HTML formulärets max gräns."
    615612
    616 #: ../lib/CataBlog.class.php:3455
     613#: ../lib/CataBlog.class.php:3478
    617614msgid "File Only Partially Uploaded, Please Try Again."
    618615msgstr "Filen laddades endast upp delvis, var god försök igen."
    619616
    620 #: ../lib/CataBlog.class.php:3458
     617#: ../lib/CataBlog.class.php:3481
    621618msgid "No File Selected For Upload. Please Resubmit The Form."
    622619msgstr "Ingen fil valdes för uppladdning. Var god skicka formuläret igen."
    623620
    624 #: ../lib/CataBlog.class.php:3461
     621#: ../lib/CataBlog.class.php:3484
    625622msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin."
    626623msgstr "Din servers PHP konfiguration har ingen temporär mapp för uppladdning, var god kontakta system administratören."
    627624
    628 #: ../lib/CataBlog.class.php:3464
     625#: ../lib/CataBlog.class.php:3487
    629626msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin."
    630627msgstr "Din servers PHP konfiguration kan inte skriva till disk, var god kontakta system administratören."
    631628
    632 #: ../lib/CataBlog.class.php:3467
     629#: ../lib/CataBlog.class.php:3490
    633630msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin."
    634631msgstr "En PHP förlängning blockerar PHP från att tillåta uppladdningar, var god kontakta system administratören."
    635632
    636 #: ../lib/CataBlog.class.php:3470
     633#: ../lib/CataBlog.class.php:3493
    637634msgid "An Unknown Upload Error Has Occurred"
    638635msgstr "Ett okänt uppladdningsproblem har uppstått"
     
    651648msgstr "Kunde inte ställa in kategorierna, var god prova igen."
    652649
    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
    771651#: ../lib/CataBlogWidget.class.php:52
    772652#: ../templates/admin-edit.php:57
     
    777657msgstr "Titel"
    778658
     659#: ../lib/catablog.upload.php:123
     660#: ../lib/CataBlogItem.class.php:365
     661msgid "An item must have a title of at least one alphanumeric character."
     662msgstr "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
     668msgid "Description"
     669msgstr "Beskrivning"
     670
     671#: ../lib/catablog.upload.php:142
     672#: ../lib/CataBlogItem.class.php:400
     673msgid "An item's price must be a positive number."
     674msgstr "En artikels pris måste vara ett positivt nummer."
     675
     676#: ../lib/catablog.upload.php:145
     677#: ../lib/CataBlogItem.class.php:393
     678msgid "An item's order value must be a positive integer."
     679msgstr "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
     684msgid "Save Changes"
     685msgstr "Spara ändringar"
     686
     687#: ../lib/CataBlogDirectory.class.php:12
     688#: ../lib/CataBlogDirectory.class.php:109
     689msgid "Could not open directory."
     690msgstr "Kunde inte öppna katalogen."
     691
     692#: ../lib/CataBlogGallery.class.php:187
     693#, fuzzy
     694msgid "A gallery must have a title of at least one alphanumeric character."
     695msgstr "En artikel måste ha en titel med minst ett alfanumeriskt tecken."
     696
     697#: ../lib/CataBlogGallery.class.php:192
     698#, fuzzy
     699msgid "A gallery title can not be more then 200 characters long."
     700msgstr "En artikels titel kan inte vara mer än 200 tecken långt."
     701
     702#: ../lib/CataBlogItem.class.php:354
     703msgid "An item must have an image associated with it."
     704msgstr "En artikel måste ha en bild associerad till sig."
     705
     706#: ../lib/CataBlogItem.class.php:360
     707msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable."
     708msgstr "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
     711msgid "An item's title can not be more then 200 characters long."
     712msgstr "En artikels titel kan inte vara mer än 200 tecken långt."
     713
     714#: ../lib/CataBlogItem.class.php:375
     715msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS"
     716msgstr "En artikels datum måste matcha MySQL datumformatet exakt, ÅÅÅÅ-MM-DD TT:MM:SS"
     717
     718#: ../lib/CataBlogItem.class.php:383
     719msgid "An item's date must be an actual day on the gregorian calendar."
     720msgstr "En artikels datum måste vara en verklige dag enligt den gregorianska kalendern."
     721
     722#: ../lib/CataBlogItem.class.php:388
     723msgid "An item's date hour must be below twenty-four."
     724msgstr "En artikels timme måste vara under 24-timmar."
     725
     726#: ../lib/CataBlogItem.class.php:423
     727#: ../lib/CataBlogItem.class.php:600
     728msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please."
     729msgstr "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
     733msgid "Can not write uploaded image to server, your storage space is exhausted."
     734msgstr "Kan inte skriva uppladdad bild till servern, finns ingen plats."
     735
     736#: ../lib/CataBlogItem.class.php:437
     737#: ../lib/CataBlogItem.class.php:588
     738msgid "Please delete some media files to free up space and try again."
     739msgstr "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
     744msgid "You have %sMB of available space on your server and your image is %sMB."
     745msgstr "Du har %sMB med tillgänglig plats på servern och din bild är %sMB."
     746
     747#: ../lib/CataBlogItem.class.php:517
     748msgid "Could not set categories, please try again."
     749msgstr "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
     754msgid "Original image file missing, could not be located at %s"
     755msgstr "Orginalbilden fattas, kunde inte hittas på %s"
     756
     757#: ../lib/CataBlogItem.class.php:651
     758#: ../lib/CataBlogItem.class.php:720
     759msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file."
     760msgstr "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
     764msgid "Original image could not be loaded because it is an unsupported format."
     765msgstr "Orginalbilden kunde inte laddas för att filformatet inte stöds."
     766
     767#: ../lib/CataBlogWidget.class.php:14
     768#, fuzzy
     769msgid "Entries from your CataBlog Library"
     770msgstr "CataBlog Bibliotek"
     771
     772#: ../lib/CataBlogWidget.class.php:15
     773#, fuzzy
     774msgid "CataBlog Catalog"
     775msgstr "CataBlog Kategori"
     776
     777#: ../lib/CataBlogWidget.class.php:50
     778#: ../templates/admin-galleries.php:70
     779#: ../templates/admin-galleries.php:84
     780msgid "Date"
     781msgstr "Datum"
     782
     783#: ../lib/CataBlogWidget.class.php:51
     784msgid "Order"
     785msgstr "Beställning"
     786
    779787#: ../lib/CataBlogWidget.class.php:53
    780788msgid "Random"
     
    13561364msgstr "Gå till sista sidan"
    13571365
    1358 #: ../templates/admin-galleries.php:61
    1359 #: ../templates/admin-galleries.php:81
    1360 #: ../templates/admin-gallery-edit.php:17
    1361 msgid "Description"
    1362 msgstr "Beskrivning"
    1363 
    13641366#: ../templates/admin-galleries.php:62
    13651367#: ../templates/admin-galleries.php:82
     
    14791481
    14801482#: ../templates/admin-library.php:40
     1483#: ../templates/admin-screen-options-add-new.php:49
    14811484#: ../templates/admin-screen-options-galleries.php:56
    14821485#: ../templates/admin-screen-options-library.php:56
     
    15641567msgstr "Välj minst en katalog artikel först."
    15651568
    1566 #: ../templates/admin-library.php:287
     1569#: ../templates/admin-library.php:289
    15671570msgid "Are you sure you want to delete multiple items?"
    15681571msgstr "Är du säker på att du vill ta bort flertalet artiklar?"
    15691572
    1570 #: ../templates/admin-library.php:316
     1573#: ../templates/admin-library.php:318
    15711574msgid "Are you sure you want to permanently delete this catalog items?"
    15721575msgstr "Är du säker på att du vill ta bort dessa katalog artiklar permanent?"
     
    16371640msgid "Select Images"
    16381641msgstr "Återskapa bilder"
     1642
     1643#: ../templates/admin-new.php:261
     1644#: ../templates/admin-options.php:601
     1645msgid "There are errors, please correct them before saving."
     1646msgstr ""
    16391647
    16401648#: ../templates/admin-options.php:8
     
    20862094msgstr "eller %sångra nuvarande ändringar%s"
    20872095
    2088 #: ../templates/admin-options.php:601
    2089 msgid "There are errors, please correct them before saving."
    2090 msgstr ""
    2091 
    20922096#: ../templates/admin-options.php:720
    20932097#: ../templates/admin-regenerate.php:43
     
    21592163msgstr "Ny bild hittades, skapar katalog artikel %s"
    21602164
     2165#: ../templates/admin-screen-options-add-new.php:40
    21612166#: ../templates/admin-screen-options-galleries.php:41
    21622167#: ../templates/admin-screen-options-galleries.php:50
  • catablog/trunk/localization/catablog.po

    r524478 r530481  
    55"Project-Id-Version: CataBlog 1.2.5\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2012-03-27 14:24-0800\n"
    8 "PO-Revision-Date: 2012-03-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"
    99"Last-Translator: Zachary Segal <zac@illproductions.com>\n"
    1010"Language-Team: illProductions <zac@illproductions.com>\n"
     
    3434msgstr ""
    3535
    36 #: ../lib/CataBlog.class.php:210
     36#: ../lib/CataBlog.class.php:211
    3737msgid "Uncategorized"
    3838msgstr ""
    3939
    40 #: ../lib/CataBlog.class.php:231
     40#: ../lib/CataBlog.class.php:232
    4141msgid "CataBlog Item"
    4242msgstr ""
    4343
    44 #: ../lib/CataBlog.class.php:236
     44#: ../lib/CataBlog.class.php:237
    4545msgid "A Catalog Item, generated by CataBlog."
    4646msgstr ""
    4747
    48 #: ../lib/CataBlog.class.php:247
     48#: ../lib/CataBlog.class.php:248
    4949msgid "CataBlog Category"
    5050msgstr ""
    5151
    52 #: ../lib/CataBlog.class.php:258
     52#: ../lib/CataBlog.class.php:259
    5353msgid "CataBlog Gallery"
    5454msgstr ""
    5555
    56 #: ../lib/CataBlog.class.php:263
     56#: ../lib/CataBlog.class.php:264
    5757msgid "A Catalog Gallery, generated by CataBlog."
    5858msgstr ""
    5959
    60 #: ../lib/CataBlog.class.php:389
     60#: ../lib/CataBlog.class.php:390
    6161#: ../templates/admin-404.php:11
    6262msgid "CataBlog Library"
    6363msgstr ""
    6464
    65 #: ../lib/CataBlog.class.php:389
    66 #: ../lib/CataBlog.class.php:476
    67 msgid "Library"
    68 msgstr ""
    69 
    70 #: ../lib/CataBlog.class.php:390
    71 msgid "Add New CataBlog Entry"
    72 msgstr ""
    73 
    7465#: ../lib/CataBlog.class.php:390
    7566#: ../lib/CataBlog.class.php:477
     67msgid "Library"
     68msgstr ""
     69
     70#: ../lib/CataBlog.class.php:391
     71msgid "Add New CataBlog Entry"
     72msgstr ""
     73
     74#: ../lib/CataBlog.class.php:391
     75#: ../lib/CataBlog.class.php:478
    7676msgid "Add New"
    7777msgstr ""
    7878
    79 #: ../lib/CataBlog.class.php:391
     79#: ../lib/CataBlog.class.php:392
    8080#: ../templates/admin-galleries.php:5
    8181msgid "CataBlog Galleries"
    8282msgstr ""
    8383
    84 #: ../lib/CataBlog.class.php:391
    85 #: ../lib/CataBlog.class.php:478
    86 msgid "Galleries"
    87 msgstr ""
    88 
    89 #: ../lib/CataBlog.class.php:392
    90 msgid "CataBlog Templates"
    91 msgstr ""
    92 
    9384#: ../lib/CataBlog.class.php:392
    9485#: ../lib/CataBlog.class.php:479
    95 msgid "Templates"
     86msgid "Galleries"
    9687msgstr ""
    9788
    9889#: ../lib/CataBlog.class.php:393
    99 msgid "CataBlog Options"
     90msgid "CataBlog Templates"
    10091msgstr ""
    10192
    10293#: ../lib/CataBlog.class.php:393
    10394#: ../lib/CataBlog.class.php:480
     95msgid "Templates"
     96msgstr ""
     97
     98#: ../lib/CataBlog.class.php:394
     99msgid "CataBlog Options"
     100msgstr ""
     101
     102#: ../lib/CataBlog.class.php:394
     103#: ../lib/CataBlog.class.php:481
    104104msgid "Options"
    105105msgstr ""
    106106
    107 #: ../lib/CataBlog.class.php:394
     107#: ../lib/CataBlog.class.php:395
    108108#: ../templates/admin-about.php:4
    109109msgid "About CataBlog"
    110110msgstr ""
    111111
    112 #: ../lib/CataBlog.class.php:394
    113 #: ../lib/CataBlog.class.php:481
     112#: ../lib/CataBlog.class.php:395
     113#: ../lib/CataBlog.class.php:482
    114114msgid "About"
    115115msgstr ""
    116116
    117 #: ../lib/CataBlog.class.php:461
     117#: ../lib/CataBlog.class.php:462
    118118#: ../templates/admin-edit.php:4
    119119msgid "Edit CataBlog Entry"
    120120msgstr ""
    121121
    122 #: ../lib/CataBlog.class.php:475
     122#: ../lib/CataBlog.class.php:476
    123123#: ../templates/admin-discfull.php:22
    124124msgid "CataBlog"
    125125msgstr ""
    126126
    127 #: ../lib/CataBlog.class.php:484
     127#: ../lib/CataBlog.class.php:485
    128128msgid "CataBlog Entry"
    129129msgstr ""
    130130
    131 #: ../lib/CataBlog.class.php:664
    132 #: ../lib/CataBlog.class.php:707
    133 #: ../lib/CataBlog.class.php:1174
     131#: ../lib/CataBlog.class.php:665
     132#: ../lib/CataBlog.class.php:708
     133#: ../lib/CataBlog.class.php:1175
    134134msgid "Changes Saved Successfully."
    135135msgstr ""
    136136
    137 #: ../lib/CataBlog.class.php:667
     137#: ../lib/CataBlog.class.php:668
    138138msgid "Catalog Item Deleted Successfully."
    139139msgstr ""
    140140
    141 #: ../lib/CataBlog.class.php:670
     141#: ../lib/CataBlog.class.php:671
    142142msgid "Could Not Delete Item Because ID was non existent."
    143143msgstr ""
    144144
    145 #: ../lib/CataBlog.class.php:673
     145#: ../lib/CataBlog.class.php:674
    146146msgid "Could not verify bulk edit action nonce, please refresh page and try again."
    147147msgstr ""
    148148
    149 #: ../lib/CataBlog.class.php:676
     149#: ../lib/CataBlog.class.php:677
    150150msgid "Bulk categories edit performed successfully."
    151151msgstr ""
    152152
    153 #: ../lib/CataBlog.class.php:679
     153#: ../lib/CataBlog.class.php:680
    154154msgid "Bulk delete performed successfully."
    155155msgstr ""
    156156
    157 #: ../lib/CataBlog.class.php:682
     157#: ../lib/CataBlog.class.php:683
    158158msgid "Reset all data successfully."
    159159msgstr ""
    160160
    161 #: ../lib/CataBlog.class.php:685
     161#: ../lib/CataBlog.class.php:686
    162162msgid "Catalog items added to Gallery successfully."
    163163msgstr ""
    164164
    165 #: ../lib/CataBlog.class.php:688
     165#: ../lib/CataBlog.class.php:689
    166166msgid "Could not find the gallery to add items to, please make sure you select a gallery in the drop down menu and try again."
    167167msgstr ""
    168168
    169 #: ../lib/CataBlog.class.php:691
     169#: ../lib/CataBlog.class.php:692
    170170msgid "Could not validate the gallery, please modify the gallery and try again."
    171171msgstr ""
    172172
    173 #: ../lib/CataBlog.class.php:711
     173#: ../lib/CataBlog.class.php:712
    174174msgid "View Now"
    175175msgstr ""
    176176
    177 #: ../lib/CataBlog.class.php:774
     177#: ../lib/CataBlog.class.php:775
    178178msgid "Form Validation Error. Please make sure that the individual and category public page slugs are not identical."
    179179msgstr ""
    180180
    181 #: ../lib/CataBlog.class.php:782
     181#: ../lib/CataBlog.class.php:783
    182182msgid "CataBlog Options Saved"
    183183msgstr ""
    184184
    185 #: ../lib/CataBlog.class.php:835
     185#: ../lib/CataBlog.class.php:836
    186186msgid "Please Let The Rendering Below Complete Before Navigating Away From This Page"
    187187msgstr ""
    188188
    189 #: ../lib/CataBlog.class.php:853
    190 #: ../lib/CataBlog.class.php:904
    191 #: ../lib/CataBlog.class.php:907
    192 #: ../lib/CataBlog.class.php:1125
    193 #: ../lib/CataBlog.class.php:1180
     189#: ../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
    194194msgid "Form Validation Error. Please reload the page and try again."
    195195msgstr ""
    196196
    197 #: ../lib/CataBlog.class.php:898
     197#: ../lib/CataBlog.class.php:899
    198198msgid "Template Changes Saved Successfully."
    199199msgstr ""
    200200
    201 #: ../lib/CataBlog.class.php:901
     201#: ../lib/CataBlog.class.php:902
    202202msgid "Template Created Successfully."
    203203msgstr ""
    204204
    205 #: ../lib/CataBlog.class.php:910
     205#: ../lib/CataBlog.class.php:911
    206206#, php-format
    207207msgid "File Creation Error. Please make sure WordPress can write to this directory:<br /><code>%s</code>"
    208208msgstr ""
    209209
    210 #: ../lib/CataBlog.class.php:913
     210#: ../lib/CataBlog.class.php:914
    211211msgid "File Creation Error. A template already exists with that name."
    212212msgstr ""
    213213
    214 #: ../lib/CataBlog.class.php:916
     214#: ../lib/CataBlog.class.php:917
    215215msgid "File Creation Error. A template name may only consist of underscores, hyphens and alphanumeric characters."
    216216msgstr ""
    217217
    218 #: ../lib/CataBlog.class.php:998
    219218#: ../lib/CataBlog.class.php:999
    220219#: ../lib/CataBlog.class.php:1000
     220#: ../lib/CataBlog.class.php:1001
    221221msgid "not present"
    222222msgstr ""
    223223
    224 #: ../lib/CataBlog.class.php:1119
     224#: ../lib/CataBlog.class.php:1120
    225225msgid "Gallery Created Successfully."
    226226msgstr ""
    227227
    228 #: ../lib/CataBlog.class.php:1122
     228#: ../lib/CataBlog.class.php:1123
    229229msgid "Form Validation Error. Please check your gallery title and try again."
    230230msgstr ""
    231231
    232 #: ../lib/CataBlog.class.php:1128
     232#: ../lib/CataBlog.class.php:1129
    233233msgid "Gallery Deleted Successfully."
    234234msgstr ""
    235235
    236 #: ../lib/CataBlog.class.php:1131
     236#: ../lib/CataBlog.class.php:1132
    237237msgid "Could Not Delete Gallery Because ID was non existent."
    238238msgstr ""
    239239
    240 #: ../lib/CataBlog.class.php:1134
     240#: ../lib/CataBlog.class.php:1135
    241241msgid "Multiple Galleries Deleted Successfully."
    242242msgstr ""
    243243
    244 #: ../lib/CataBlog.class.php:1177
     244#: ../lib/CataBlog.class.php:1178
    245245msgid "Form Validation Error: Please make sure your title is at least one character."
    246246msgstr ""
    247247
    248 #: ../lib/CataBlog.class.php:1315
     248#: ../lib/CataBlog.class.php:1316
    249249msgid "The file you selected was to large or you didn't select anything at all, please try again."
    250250msgstr ""
    251251
    252 #: ../lib/CataBlog.class.php:1319
    253 #: ../lib/CataBlog.class.php:1373
    254 #: ../lib/CataBlog.class.php:1425
    255 #: ../lib/CataBlog.class.php:1463
    256 #: ../lib/CataBlog.class.php:1596
     252#: ../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
    257257msgid "WordPress Nonce Error, please reload the form and try again."
    258258msgstr ""
    259259
    260 #: ../lib/CataBlog.class.php:1377
     260#: ../lib/CataBlog.class.php:1378
    261261msgid "full form was not submitted, please try again."
    262262msgstr ""
    263263
    264 #: ../lib/CataBlog.class.php:1421
    265 #: ../lib/CataBlog.class.php:1459
     264#: ../lib/CataBlog.class.php:1422
     265#: ../lib/CataBlog.class.php:1460
    266266msgid "You didn't select anything to upload, please try again."
    267267msgstr ""
    268268
    269 #: ../lib/CataBlog.class.php:1429
    270 #: ../lib/CataBlog.class.php:1467
     269#: ../lib/CataBlog.class.php:1430
     270#: ../lib/CataBlog.class.php:1468
    271271msgid "No item ID posted, press back arrow and try again."
    272272msgstr ""
    273273
    274 #: ../lib/CataBlog.class.php:1510
     274#: ../lib/CataBlog.class.php:1511
    275275msgid "Please make your selection by checking the boxes in the list below."
    276276msgstr ""
    277277
    278 #: ../lib/CataBlog.class.php:1556
     278#: ../lib/CataBlog.class.php:1557
    279279#, php-format
    280280msgid "Error during set category, could not load item with id %s."
    281281msgstr ""
    282282
    283 #: ../lib/CataBlog.class.php:1574
     283#: ../lib/CataBlog.class.php:1575
    284284#, php-format
    285285msgid "Error during bulk delete, could not load item with id %s."
    286286msgstr ""
    287287
    288 #: ../lib/CataBlog.class.php:1605
     288#: ../lib/CataBlog.class.php:1606
    289289msgid "No file was selected for upload, please try again."
    290290msgstr ""
    291291
    292 #: ../lib/CataBlog.class.php:1614
     292#: ../lib/CataBlog.class.php:1615
    293293msgid "Uploaded XML File Could Not Be Parsed, Check That The File's Content Is Valid XML."
    294294msgstr ""
    295295
    296 #: ../lib/CataBlog.class.php:1624
     296#: ../lib/CataBlog.class.php:1625
    297297msgid "Uploaded file was not of proper format, please make sure the filename has an xml or csv extension."
    298298msgstr ""
    299299
    300 #: ../lib/CataBlog.class.php:1695
     300#: ../lib/CataBlog.class.php:1696
    301301msgid "The CataBlog upload directories have been unlocked."
    302302msgstr ""
    303303
    304 #: ../lib/CataBlog.class.php:1698
    305 #: ../lib/CataBlog.class.php:1711
     304#: ../lib/CataBlog.class.php:1699
     305#: ../lib/CataBlog.class.php:1712
    306306msgid "Could not lock/unlock the directory. Are you using a unix based server?"
    307307msgstr ""
    308308
    309 #: ../lib/CataBlog.class.php:1708
     309#: ../lib/CataBlog.class.php:1709
    310310msgid "The CataBlog upload directories have been locked."
    311311msgstr ""
    312312
    313 #: ../lib/CataBlog.class.php:1827
     313#: ../lib/CataBlog.class.php:1843
    314314msgid "micro save successful"
    315315msgstr ""
    316316
    317 #: ../lib/CataBlog.class.php:1835
     317#: ../lib/CataBlog.class.php:1851
    318318msgid "Cannot save changes because the item id could not be found in the database."
    319319msgstr ""
    320320
    321 #: ../lib/CataBlog.class.php:1896
     321#: ../lib/CataBlog.class.php:1924
    322322msgid "Screen Options updated successfully."
    323323msgstr ""
    324324
    325 #: ../lib/CataBlog.class.php:1910
     325#: ../lib/CataBlog.class.php:1938
    326326#: ../templates/admin-edit.php:277
    327327msgid "Commas, Pipes and reserved HTML characters are not allowed in category names."
    328328msgstr ""
    329329
    330 #: ../lib/CataBlog.class.php:1916
     330#: ../lib/CataBlog.class.php:1944
    331331msgid "Please be a little more specific with your category name."
    332332msgstr ""
    333333
    334 #: ../lib/CataBlog.class.php:1929
     334#: ../lib/CataBlog.class.php:1957
    335335msgid "There already is a category with that name."
    336336msgstr ""
    337337
    338 #: ../lib/CataBlog.class.php:1966
     338#: ../lib/CataBlog.class.php:1994
    339339msgid "Term Edited Successfully"
    340340msgstr ""
    341341
    342 #: ../lib/CataBlog.class.php:1969
    343 #: ../lib/CataBlog.class.php:1985
     342#: ../lib/CataBlog.class.php:1997
     343#: ../lib/CataBlog.class.php:2013
    344344msgid "Term did not exist, please refresh page and try again."
    345345msgstr ""
    346346
    347 #: ../lib/CataBlog.class.php:1982
     347#: ../lib/CataBlog.class.php:2010
    348348msgid "Term Removed Successfully."
    349349msgstr ""
    350350
    351 #: ../lib/CataBlog.class.php:2036
     351#: ../lib/CataBlog.class.php:2064
    352352msgid "unsupported image size type"
    353353msgstr ""
    354354
    355 #: ../lib/CataBlog.class.php:2046
     355#: ../lib/CataBlog.class.php:2074
    356356#, php-format
    357357msgid "Rendering... %s of %s"
    358358msgstr ""
    359359
    360 #: ../lib/CataBlog.class.php:2048
     360#: ../lib/CataBlog.class.php:2076
    361361msgid "Image rendering is now complete."
    362362msgstr ""
    363363
    364 #: ../lib/CataBlog.class.php:2089
     364#: ../lib/CataBlog.class.php:2117
    365365msgid "error"
    366366msgstr ""
    367367
    368 #: ../lib/CataBlog.class.php:2092
     368#: ../lib/CataBlog.class.php:2120
    369369msgid "sub image deleted successfully"
    370370msgstr ""
    371371
    372 #: ../lib/CataBlog.class.php:2127
     372#: ../lib/CataBlog.class.php:2155
    373373#, php-format
    374374msgid "%s library items deleted successfully."
    375375msgstr ""
    376376
    377 #: ../lib/CataBlog.class.php:2130
     377#: ../lib/CataBlog.class.php:2158
    378378msgid "CataBlog Library Cleared Successfully."
    379379msgstr ""
    380380
    381 #: ../lib/CataBlog.class.php:2143
     381#: ../lib/CataBlog.class.php:2171
    382382msgid "CataBlog Options, Directories and Terms Deleted Successfully."
    383383msgstr ""
    384384
    385 #: ../lib/CataBlog.class.php:2144
     385#: ../lib/CataBlog.class.php:2172
    386386msgid "You may now go deactivate CataBlog and nothing will be left behind."
    387387msgstr ""
    388388
    389 #: ../lib/CataBlog.class.php:2145
     389#: ../lib/CataBlog.class.php:2173
    390390msgid "If you want to continue using CataBlog, go to the library to re-install necessary settings."
    391391msgstr ""
    392392
    393 #: ../lib/CataBlog.class.php:2206
     393#: ../lib/CataBlog.class.php:2234
    394394#, php-format
    395395msgid "CataBlog %s LightBox Styles | %s"
    396396msgstr ""
    397397
    398 #: ../lib/CataBlog.class.php:2228
     398#: ../lib/CataBlog.class.php:2256
    399399msgid "You may also press &quot;P&quot; or the left arrow on your keyboard"
    400400msgstr ""
    401401
    402 #: ../lib/CataBlog.class.php:2229
     402#: ../lib/CataBlog.class.php:2257
    403403msgid "You may also press &quot;N&quot; or the right arrow on your keyboard"
    404404msgstr ""
    405405
    406 #: ../lib/CataBlog.class.php:2230
     406#: ../lib/CataBlog.class.php:2258
    407407msgid "Close LightBox Now"
    408408msgstr ""
    409409
    410 #: ../lib/CataBlog.class.php:2231
     410#: ../lib/CataBlog.class.php:2259
    411411msgid "PREV"
    412412msgstr ""
    413413
    414 #: ../lib/CataBlog.class.php:2232
     414#: ../lib/CataBlog.class.php:2260
    415415msgid "NEXT"
    416416msgstr ""
    417417
    418 #: ../lib/CataBlog.class.php:2233
     418#: ../lib/CataBlog.class.php:2261
    419419msgid "CLOSE"
    420420msgstr ""
    421421
    422 #: ../lib/CataBlog.class.php:2237
     422#: ../lib/CataBlog.class.php:2265
    423423#, php-format
    424424msgid "CataBlog %s LightBox JavaScript | %s"
    425425msgstr ""
    426426
    427 #: ../lib/CataBlog.class.php:2239
     427#: ../lib/CataBlog.class.php:2267
    428428msgid "End CataBlog LightBox JavaScript"
    429429msgstr ""
    430430
    431 #: ../lib/CataBlog.class.php:2355
     431#: ../lib/CataBlog.class.php:2386
    432432msgid "You must use the id attribute in the catablog_gallery Shortcode"
    433433msgstr ""
    434434
    435 #: ../lib/CataBlog.class.php:2372
     435#: ../lib/CataBlog.class.php:2406
    436436#, php-format
    437437msgid "Could not find a CataBlog Gallery with id %s"
     
    439439
    440440#: ../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
     443msgid "Previous"
     444msgstr ""
     445
     446#: ../lib/CataBlog.class.php:2456
     447#: ../lib/CataBlog.class.php:2842
     448#: ../lib/CataBlog.class.php:3017
     449msgid "Next"
     450msgstr ""
     451
     452#: ../lib/CataBlog.class.php:2614
    446453#, php-format
    447454msgid "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."
    448455msgstr ""
    449456
    450 #: ../lib/CataBlog.class.php:2614
     457#: ../lib/CataBlog.class.php:2637
    451458#, php-format
    452459msgid "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."
    453460msgstr ""
    454461
    455 #: ../lib/CataBlog.class.php:2615
     462#: ../lib/CataBlog.class.php:2638
    456463msgid "Learn More"
    457464msgstr ""
    458465
    459 #: ../lib/CataBlog.class.php:2667
     466#: ../lib/CataBlog.class.php:2690
    460467msgid "CataBlog Error:"
    461468msgstr ""
    462469
    463 #: ../lib/CataBlog.class.php:2669
     470#: ../lib/CataBlog.class.php:2692
    464471#, php-format
    465472msgid "CataBlog Categories require you to enable the %sCataBlog Public Option%s."
    466473msgstr ""
    467474
    468 #: ../lib/CataBlog.class.php:2689
     475#: ../lib/CataBlog.class.php:2712
    469476msgid "Select Category"
    470477msgstr ""
    471478
    472 #: ../lib/CataBlog.class.php:2783
     479#: ../lib/CataBlog.class.php:2806
    473480msgid "The CataBlog Upload Directory cannot be written. "
    474481msgstr ""
    475482
    476 #: ../lib/CataBlog.class.php:2783
    477 #: ../lib/CataBlog.class.php:2788
    478 #: ../lib/CataBlog.class.php:2988
     483#: ../lib/CataBlog.class.php:2806
     484#: ../lib/CataBlog.class.php:2811
     485#: ../lib/CataBlog.class.php:3011
    479486msgid "Please check your server file permissions and apache configuration."
    480487msgstr ""
    481488
    482 #: ../lib/CataBlog.class.php:2788
     489#: ../lib/CataBlog.class.php:2811
    483490msgid "The CataBlog Templates Directory cannot be written. "
    484491msgstr ""
    485492
    486 #: ../lib/CataBlog.class.php:2794
     493#: ../lib/CataBlog.class.php:2817
    487494#, php-format
    488495msgid "CataBlog options and directories have been successfully installed. Please, %srefresh now%s"
    489496msgstr ""
    490497
    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
    502499#, php-format
    503500msgid "There was an error creating the default term: %s"
    504501msgstr ""
    505502
    506 #: ../lib/CataBlog.class.php:2910
     503#: ../lib/CataBlog.class.php:2933
    507504msgid "CataBlog options and directories have been successfully upgraded."
    508505msgstr ""
    509506
    510 #: ../lib/CataBlog.class.php:2988
     507#: ../lib/CataBlog.class.php:3011
    511508msgid "The New CataBlog Templates cannot be written. "
    512509msgstr ""
    513510
    514 #: ../lib/CataBlog.class.php:3175
     511#: ../lib/CataBlog.class.php:3198
    515512msgid "Uploaded CSV File Could Not Be Parsed, Check That The File's Format Is Valid."
    516513msgstr ""
    517514
    518 #: ../lib/CataBlog.class.php:3216
     515#: ../lib/CataBlog.class.php:3239
    519516#, php-format
    520517msgid "There was an error parsing your CSV file on lines: %s."
    521518msgstr ""
    522519
    523 #: ../lib/CataBlog.class.php:3263
    524 #: ../lib/CataBlog.class.php:3306
    525 #: ../lib/CataBlog.class.php:3310
    526 #: ../lib/CataBlog.class.php:3313
     520#: ../lib/CataBlog.class.php:3286
     521#: ../lib/CataBlog.class.php:3329
     522#: ../lib/CataBlog.class.php:3333
     523#: ../lib/CataBlog.class.php:3336
    527524msgid "Error:"
    528525msgstr ""
    529526
    530 #: ../lib/CataBlog.class.php:3277
     527#: ../lib/CataBlog.class.php:3300
    531528msgid "Success:"
    532529msgstr ""
    533530
    534 #: ../lib/CataBlog.class.php:3277
     531#: ../lib/CataBlog.class.php:3300
    535532#, php-format
    536533msgid " %s inserted into catalog categories."
    537534msgstr ""
    538535
    539 #: ../lib/CataBlog.class.php:3285
     536#: ../lib/CataBlog.class.php:3308
    540537msgid "All New Categories Created"
    541538msgstr ""
    542539
    543 #: ../lib/CataBlog.class.php:3289
     540#: ../lib/CataBlog.class.php:3312
    544541msgid "No New Categories Created"
    545542msgstr ""
    546543
    547 #: ../lib/CataBlog.class.php:3304
    548 #: ../lib/CataBlog.class.php:3358
     544#: ../lib/CataBlog.class.php:3327
     545#: ../lib/CataBlog.class.php:3381
    549546msgid "Insert:"
    550547msgstr ""
    551548
    552 #: ../lib/CataBlog.class.php:3304
    553 #: ../lib/CataBlog.class.php:3358
     549#: ../lib/CataBlog.class.php:3327
     550#: ../lib/CataBlog.class.php:3381
    554551#, php-format
    555552msgid " %s inserted into the database."
    556553msgstr ""
    557554
    558 #: ../lib/CataBlog.class.php:3306
     555#: ../lib/CataBlog.class.php:3329
    559556#, php-format
    560557msgid " %s was not inserted into the database."
    561558msgstr ""
    562559
    563 #: ../lib/CataBlog.class.php:3310
     560#: ../lib/CataBlog.class.php:3333
    564561msgid "Item had no title and could not be made."
    565562msgstr ""
    566563
    567 #: ../lib/CataBlog.class.php:3313
     564#: ../lib/CataBlog.class.php:3336
    568565msgid "Item had no primary image name and could not be made."
    569566msgstr ""
    570567
    571 #: ../lib/CataBlog.class.php:3355
     568#: ../lib/CataBlog.class.php:3378
    572569msgid "Update:"
    573570msgstr ""
    574571
    575 #: ../lib/CataBlog.class.php:3355
     572#: ../lib/CataBlog.class.php:3378
    576573#, php-format
    577574msgid " %s updated in database."
    578575msgstr ""
    579576
    580 #: ../lib/CataBlog.class.php:3384
     577#: ../lib/CataBlog.class.php:3407
    581578#, php-format
    582579msgid "%s Catalog Items Inserted"
    583580msgstr ""
    584581
    585 #: ../lib/CataBlog.class.php:3449
     582#: ../lib/CataBlog.class.php:3472
    586583msgid "Uploaded File Exceeded The PHP Configurations Max File Size."
    587584msgstr ""
    588585
    589 #: ../lib/CataBlog.class.php:3452
     586#: ../lib/CataBlog.class.php:3475
    590587msgid "Upload File Exceeded The HTML Form's Max File Size."
    591588msgstr ""
    592589
    593 #: ../lib/CataBlog.class.php:3455
     590#: ../lib/CataBlog.class.php:3478
    594591msgid "File Only Partially Uploaded, Please Try Again."
    595592msgstr ""
    596593
    597 #: ../lib/CataBlog.class.php:3458
     594#: ../lib/CataBlog.class.php:3481
    598595msgid "No File Selected For Upload. Please Resubmit The Form."
    599596msgstr ""
    600597
    601 #: ../lib/CataBlog.class.php:3461
     598#: ../lib/CataBlog.class.php:3484
    602599msgid "Your Server's PHP Configuration Does Not Have A Temporary Folder For Uploads, Please Contact The System Admin."
    603600msgstr ""
    604601
    605 #: ../lib/CataBlog.class.php:3464
     602#: ../lib/CataBlog.class.php:3487
    606603msgid "Your Server's PHP Configuration Can Not Write To Disc, Please Contact The System Admin."
    607604msgstr ""
    608605
    609 #: ../lib/CataBlog.class.php:3467
     606#: ../lib/CataBlog.class.php:3490
    610607msgid "A PHP Extension Is Blocking PHP From Excepting Uploads, Please Contact The System Admin."
    611608msgstr ""
    612609
    613 #: ../lib/CataBlog.class.php:3470
     610#: ../lib/CataBlog.class.php:3493
    614611msgid "An Unknown Upload Error Has Occurred"
    615612msgstr ""
     
    627624msgstr ""
    628625
    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
    743627#: ../lib/CataBlogWidget.class.php:52
    744628#: ../templates/admin-edit.php:57
     
    749633msgstr ""
    750634
     635#: ../lib/catablog.upload.php:123
     636#: ../lib/CataBlogItem.class.php:365
     637msgid "An item must have a title of at least one alphanumeric character."
     638msgstr ""
     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
     644msgid "Description"
     645msgstr ""
     646
     647#: ../lib/catablog.upload.php:142
     648#: ../lib/CataBlogItem.class.php:400
     649msgid "An item's price must be a positive number."
     650msgstr ""
     651
     652#: ../lib/catablog.upload.php:145
     653#: ../lib/CataBlogItem.class.php:393
     654msgid "An item's order value must be a positive integer."
     655msgstr ""
     656
     657#: ../lib/catablog.upload.php:154
     658#: ../templates/admin-edit.php:77
     659#: ../templates/admin-gallery-edit.php:39
     660msgid "Save Changes"
     661msgstr ""
     662
     663#: ../lib/CataBlogDirectory.class.php:12
     664#: ../lib/CataBlogDirectory.class.php:109
     665msgid "Could not open directory."
     666msgstr ""
     667
     668#: ../lib/CataBlogGallery.class.php:187
     669msgid "A gallery must have a title of at least one alphanumeric character."
     670msgstr ""
     671
     672#: ../lib/CataBlogGallery.class.php:192
     673msgid "A gallery title can not be more then 200 characters long."
     674msgstr ""
     675
     676#: ../lib/CataBlogItem.class.php:354
     677msgid "An item must have an image associated with it."
     678msgstr ""
     679
     680#: ../lib/CataBlogItem.class.php:360
     681msgid "Can't write uploaded image to server, please make sure the catablog directory in you WordPress uploads folder is writable."
     682msgstr ""
     683
     684#: ../lib/CataBlogItem.class.php:370
     685msgid "An item's title can not be more then 200 characters long."
     686msgstr ""
     687
     688#: ../lib/CataBlogItem.class.php:375
     689msgid "An item's date must exactly match the MySQL date format, YYYY-MM-DD HH:MM:SS"
     690msgstr ""
     691
     692#: ../lib/CataBlogItem.class.php:383
     693msgid "An item's date must be an actual day on the gregorian calendar."
     694msgstr ""
     695
     696#: ../lib/CataBlogItem.class.php:388
     697msgid "An item's date hour must be below twenty-four."
     698msgstr ""
     699
     700#: ../lib/CataBlogItem.class.php:423
     701#: ../lib/CataBlogItem.class.php:600
     702msgid "The image could not be used because it is an unsupported format. JPEG, GIF and PNG formats only, please."
     703msgstr ""
     704
     705#: ../lib/CataBlogItem.class.php:436
     706#: ../lib/CataBlogItem.class.php:587
     707msgid "Can not write uploaded image to server, your storage space is exhausted."
     708msgstr ""
     709
     710#: ../lib/CataBlogItem.class.php:437
     711#: ../lib/CataBlogItem.class.php:588
     712msgid "Please delete some media files to free up space and try again."
     713msgstr ""
     714
     715#: ../lib/CataBlogItem.class.php:438
     716#: ../lib/CataBlogItem.class.php:589
     717#, php-format
     718msgid "You have %sMB of available space on your server and your image is %sMB."
     719msgstr ""
     720
     721#: ../lib/CataBlogItem.class.php:517
     722msgid "Could not set categories, please try again."
     723msgstr ""
     724
     725#: ../lib/CataBlogItem.class.php:644
     726#: ../lib/CataBlogItem.class.php:712
     727#, php-format
     728msgid "Original image file missing, could not be located at %s"
     729msgstr ""
     730
     731#: ../lib/CataBlogItem.class.php:651
     732#: ../lib/CataBlogItem.class.php:720
     733msgid "Original image dimensions are less then 1px. Most likely PHP does not have permission to read the original file."
     734msgstr ""
     735
     736#: ../lib/CataBlogItem.class.php:680
     737#: ../lib/CataBlogItem.class.php:734
     738msgid "Original image could not be loaded because it is an unsupported format."
     739msgstr ""
     740
     741#: ../lib/CataBlogWidget.class.php:14
     742msgid "Entries from your CataBlog Library"
     743msgstr ""
     744
     745#: ../lib/CataBlogWidget.class.php:15
     746msgid "CataBlog Catalog"
     747msgstr ""
     748
     749#: ../lib/CataBlogWidget.class.php:50
     750#: ../templates/admin-galleries.php:70
     751#: ../templates/admin-galleries.php:84
     752msgid "Date"
     753msgstr ""
     754
     755#: ../lib/CataBlogWidget.class.php:51
     756msgid "Order"
     757msgstr ""
     758
    751759#: ../lib/CataBlogWidget.class.php:53
    752760msgid "Random"
     
    13111319msgstr ""
    13121320
    1313 #: ../templates/admin-galleries.php:61
    1314 #: ../templates/admin-galleries.php:81
    1315 #: ../templates/admin-gallery-edit.php:17
    1316 msgid "Description"
    1317 msgstr ""
    1318 
    13191321#: ../templates/admin-galleries.php:62
    13201322#: ../templates/admin-galleries.php:82
     
    14281430
    14291431#: ../templates/admin-library.php:40
     1432#: ../templates/admin-screen-options-add-new.php:49
    14301433#: ../templates/admin-screen-options-galleries.php:56
    14311434#: ../templates/admin-screen-options-library.php:56
     
    15101513msgstr ""
    15111514
    1512 #: ../templates/admin-library.php:287
     1515#: ../templates/admin-library.php:289
    15131516msgid "Are you sure you want to delete multiple items?"
    15141517msgstr ""
    15151518
    1516 #: ../templates/admin-library.php:316
     1519#: ../templates/admin-library.php:318
    15171520msgid "Are you sure you want to permanently delete this catalog items?"
    15181521msgstr ""
     
    15761579#: ../templates/admin-new.php:159
    15771580msgid "Select Images"
     1581msgstr ""
     1582
     1583#: ../templates/admin-new.php:261
     1584#: ../templates/admin-options.php:601
     1585msgid "There are errors, please correct them before saving."
    15781586msgstr ""
    15791587
     
    20122020msgstr ""
    20132021
    2014 #: ../templates/admin-options.php:601
    2015 msgid "There are errors, please correct them before saving."
    2016 msgstr ""
    2017 
    20182022#: ../templates/admin-options.php:720
    20192023#: ../templates/admin-regenerate.php:43
     
    20852089msgstr ""
    20862090
     2091#: ../templates/admin-screen-options-add-new.php:40
    20872092#: ../templates/admin-screen-options-galleries.php:41
    20882093#: ../templates/admin-screen-options-galleries.php:50
  • catablog/trunk/readme.txt

    r524499 r530481  
    55Requires at least: 3.1
    66Tested up to: 3.3.1
    7 Stable tag: 1.6
     7Stable tag: 1.6.1
    88
    99CataBlog is a comprehensive and effortless tool that allows you to create catalogs, stores and galleries for your blog.
     
    103103
    104104== 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.
    105112
    106113= 1.6 =
  • catablog/trunk/templates/admin-library.php

    r524478 r530481  
    276276                jQuery('#catablog_load_curtain').fadeTo(200, 0.8);
    277277               
     278                jQuery('#catablog-add-to-gallery').children('input[name="item_ids[]"]').remove();
     279               
    278280                checked_catalog_items.each(function() {
    279281                    $('#catablog-add-to-gallery').append("<input type='hidden' name='item_ids[]' value='"+this.value+"' />");
  • catablog/trunk/templates/admin-new.php

    r524478 r530481  
    154154       
    155155            button_placeholder_id : 'upload_buttons',
    156             button_image_url : "<?php echo includes_url('images/upload.png'); ?>",
    157             button_width : 132,
     156            button_image_url : "<?php echo $this->urls['images'] . '/upload.png'; ?>",
     157            button_width : 190,
    158158            button_height: 23,
    159159            button_text : '<span class="button"><?php _e("Select Images", "catablog") ?></span>',
     
    193193        jQuery('#upload-form-right-col').addClass('right-col');
    194194    });
    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   
    196248    function catablog_micro_save(event) {
    197249        if (event.type == "keypress") {
     
    201253            }
    202254        }
    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'); ?>");
    205262            return false;
    206263        }
    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       
    214285        container.find('input').attr('readonly', true);
    215286        container.find('textarea').attr('readonly', true);
     
    221292   
    222293        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       
    230305        jQuery.post(ajaxurl, params, function(data) {
    231306            try {
     
    243318            }
    244319        });                 
    245    
     320       
    246321        return false;
    247322    }
    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   
    249331
    250332</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.