Plugin Directory

Changeset 1234996


Ignore:
Timestamp:
09/01/2015 12:30:10 AM (11 years ago)
Author:
norbusan
Message:

tagging release 2.31

Location:
piwigopress/trunk
Files:
19 edited

Legend:

Unmodified
Added
Removed
  • piwigopress/trunk/BUGS_TODO

    r1136944 r1234996  
    11TODO
    22====
     3- orderasc is not treated in adm javascript - do we need it
     4  for the shortcode generator?
     5- update shortcode generator to include ordertype and orderasc (see above)
     6
    37- double previous: PiwigoPress_previous_options and PiwigoPress_previous_url -> unify
    48- support for oembed, register as oembed provider???
  • piwigopress/trunk/PiwigoPress_options.php

    r1141552 r1234996  
    1313        'calendar' => 'true', 'tags' => 'true', 'comments' => 'true', 'allsel' => 'true',
    1414        'mbcategories' => 'true', 'filter' => 'true', 'text' => '', 'lnktype' => 'picture',
    15         'opntype' => '_blank', 'precode' => '', 'postcode' => '',
     15        'opntype' => '_blank', 'ordertype' => 'random', 'orderasc' => 'false', 'precode' => '', 'postcode' => '',
    1616         ) );
    1717
     
    4646    $lnktype = htmlspecialchars($gallery['lnktype']);
    4747    $opntype = htmlspecialchars($gallery['opntype']);
     48    $ordertype = htmlspecialchars($gallery['ordertype']);
     49    $orderasc = (htmlspecialchars($gallery['orderasc']) == 'true') ? 'checked="checked"':'';
    4850    $allsel = (htmlspecialchars($gallery['allsel']) == 'true') ? 'checked="checked"':'';
    4951    $allchk = (htmlspecialchars($gallery['allsel']) == 'true') ? 'display: none;':'';
     
    118120            <input type="radio" value="_self" id="'. $this->get_field_id('opntype') .'" class="post-format" name="'. $this->get_field_name('opntype') .'" '
    119121                . checked($opntype,'_self',false) . '>
    120         </fieldset></td>';
    121     // Orientation
    122         echo '<td>
     122        </fieldset><br>
    123123        <fieldset class="edge">
    124124            <legend><span> ' . __('Format') . ' </span></legend>
     
    132132            <input type="radio" value="landscape" id="'. $this->get_field_id('format') .'" class="post-format" name="'. $this->get_field_name('format') .'" '
    133133                . checked($format,'landscape',false) . '>
    134         </fieldset><br>
     134        </fieldset></td>';
     135    // Orientation
     136        echo '<td>
    135137        <fieldset class="edge">
    136138            <legend><span> ' . __('Link type') . ' </span></legend>
     
    147149            <input type="radio" value="albumpicture" id="'. $this->get_field_id('lnktype') .'" class="post-format" name="'. $this->get_field_name('lnktype') .'" '
    148150                . checked($lnktype,'albumpicture',false) . '>
    149         </fieldset></td>';
     151        </fieldset></br>
     152        <fieldset class="edge">
     153            <legend><span> ' . __('Sort order') . ' </span></legend>
     154            <label>' . __('Random','pwg') . ' </label>
     155            <input type="radio" value="random" id="'. $this->get_field_id('ordertype') .'" class="post-format" name="'. $this->get_field_name('ordertype') .'" '
     156                . checked($ordertype,'random',false) . '><br>
     157            <label>' . __('Creation date','pwg') . ' </label>
     158            <input type="radio" value="date_creation" id="'. $this->get_field_id('ordertype') .'" class="post-format" name="'. $this->get_field_name('ordertype') .'" '
     159                . checked($ordertype,'date_creation',false) . '><br>
     160            <label>' . __('Availability date','pwg') . ' </label>
     161            <input type="radio" value="date_available" id="'. $this->get_field_id('ordertype') .'" class="post-format" name="'. $this->get_field_name('ordertype') .'" '
     162                . checked($ordertype,'date_available',false) . '><br>
     163            <label>' . __('Rating score','pwg') . ' </label>
     164            <input type="radio" value="rating_score" id="'. $this->get_field_id('ordertype') .'" class="post-format" name="'. $this->get_field_name('ordertype') .'" '
     165                . checked($ordertype,'rating_score',false) . '><br>
     166            <label>' . __('Hits','pwg') . ' </label>
     167            <input type="radio" value="hit" id="'. $this->get_field_id('ordertype') .'" class="post-format" name="'. $this->get_field_name('ordertype') .'" '
     168                . checked($ordertype,'hit',false) . '>
     169        </fieldset>
     170        <fieldset style="text-align:right;" class="edge">
     171            <label>' . __('Ascending order','pwg') . ' <input id="' . $this->get_field_id('orderasc') . '" name="' . $this->get_field_name('orderasc')
     172            . '" type="checkbox" value="true" ' . $orderasc . '/></label>
     173        </fieldset>
     174        </td>';
    150175    // The categories menu
    151176    echo '<td>
  • piwigopress/trunk/PiwigoPress_widget.php

    r1141552 r1234996  
    4444$lnktype = empty($gallery['lnktype']) ? 'picture' : $gallery['lnktype'];
    4545$opntype = empty($gallery['opntype']) ? '_blank' : $gallery['opntype'];
     46$ordertype = empty($gallery['ordertype']) ? 'random' : $gallery['ordertype'];
     47$orderasc = empty($gallery['orderasc']) ? '' : $gallery['orderasc'];
    4648$category = empty($gallery['category']) ? 0 : $gallery['category'];
    4749if ( $category==0 and ($lnktype=='album' || $lnktype=='albumpicture')) $lnktype = 'picture';
     
    5759if ($thumbnail) {
    5860    // Make the Piwigo link
    59     $response = pwg_get_contents( $piwigo_url
    60             . 'ws.php?method=pwg.categories.getImages&format=php'
    61             . $options . '&recursive=true&order=random&f_with_thumbnail=true');
     61    $callstr = $piwigo_url . 'ws.php?method=pwg.categories.getImages&format=php' . $options . '&recursive=true&order=' . $ordertype;
     62    if ($orderasc == 'false') {
     63        $callstr .= '%20DESC';
     64    }
     65    //var_dump($callstr);
     66    $response = pwg_get_contents( $callstr );
    6267    if (!is_wp_error($response)) {
    6368        $thumbc = unserialize($response['body']);
     
    6873        if (!empty($precode)) { echo $precode; }
    6974        $pictures = $thumbc["result"]["images"];
     75        // var_dump($pictures);
    7076        foreach ($pictures as $picture) {
    7177            if (isset($picture['derivatives']['square']['url'])) {
    72                 $picture['tn_url'] = $picture['derivatives']['thumb']['url'] ;
     78                // set the default link target
     79                // since we are not sure whether there is a thumbnail (we removed f_with_thumbnail
     80                // in the API call), we set it either to the thumbnail or square, the later one
     81                // existing definitely
     82                if (isset($picture['derivatives']['thumb']['url'])) {
     83                    $picture['tn_url'] = $picture['derivatives']['thumb']['url'] ;
     84                } else {
     85                    $picture['tn_url'] = $picture['derivatives']['square']['url'] ;
     86                }
    7387                if ($thumbnail_size == 'sq') $picture['tn_url'] = $picture['derivatives']['square']['url'] ;
    7488                if ($thumbnail_size == 'sm') $picture['tn_url'] = $picture['derivatives']['small']['url'] ;
     
    8094                if ($thumbnail_size == 'xx') $picture['tn_url'] = $picture['derivatives']['xxlarge']['url'] ;
    8195            }
     96            //
     97            //var_dump($picture);
    8298            // value of alt tag: title + comment (if present)
    8399            $alt = htmlspecialchars($picture['name']);
     
    108124            }
    109125            if ( $lnktype!='none' ) echo '</a>';
    110             echo '<a class="img_selector" name="' . $picture['element_url'] . '" rel="nofollow" href="javascript:void(0);" title="'
    111             . $picture['width'] .'x' . $picture['height'] .'"></a>
    112             </div>';
     126            // if quering a remote piwigo, the "element_url" is not set
     127            // TODO ask why this is the case
     128            if (isset($picture['element_url'])) {
     129                echo '<a class="img_selector" name="' . $picture['element_url'] . '" rel="nofollow" href="javascript:void(0);" title="'
     130                . $picture['width'] .'x' . $picture['height'] .'"></a>';
     131            }
     132            echo '</div>';
    113133        }
    114134        if (!empty($postcode)) { echo $postcode; }
  • piwigopress/trunk/js/piwigopress_adm.js

    r1206199 r1234996  
    221221                    var $opntype = $('#open_type input[type=radio][name=open_type]:checked').attr('value');
    222222                    if ( $opntype != '' ) $scode += " opntype='"+$opntype+"'";
     223                    var $ordertype = $('#order_type input[type=radio][name=order_type]:checked').attr('value');
     224                    if ( $ordertype != '' ) $scode += " order='"+$ordertype+"'";
    223225
    224226                    var $scode = "\t"+$scode+"] \n\r";
  • piwigopress/trunk/js/piwigopress_adm.min.js

    r1206199 r1234996  
    1 (function(a){a.fn.extend({insertAtCaret:function(b){return this.each(function(e){if(document.selection){this.focus();sel=document.selection.createRange();sel.text=b;this.focus()}else{if(this.selectionStart||this.selectionStart=="0"){var d=this.selectionStart;var c=this.selectionEnd;var f=this.scrollTop;this.value=this.value.substring(0,d)+b+this.value.substring(c,this.value.length);this.focus();this.selectionStart=d+b.length;this.selectionEnd=d+b.length;this.scrollTop=f}else{this.value+=b;this.focus()}}})}});a(document).ready(function(){var b=true;a("a#PWGP_button").unbind().click(function(){if(b){if(a("#dashboard-widgets-wrap").size()==0){var c="#poststuff"}else{var c="#dashboard-widgets-wrap"}if(a("#PWGP_shortcoder").size()==0){var d=a("#PWGP_Gal_finder").html();a(c).before('<div id="PWGP_shortcoder" />');a("#PWGP_shortcoder").html(d);a("#PWGP_Gal_finder").remove()}else{a("#PWGP_shortcoder").show()}a("#PWGP_catscroll").on("focus",function(){current_catid=this.value}).change(function(){if(current_catid!=this.value){a("#PWGP_more").hide();a("#PWGP_hide").hide();a("#PWGP_show").hide();a("#PWGP_show_stats").hide()}});a("#PWGP_finder").focus(function(){current_url=this.value}).change(function(){if(current_url!=this.value){a("#PWGP_more").hide();a("#PWGP_hide").hide();a("#PWGP_show").hide();a("#PWGP_show_stats").hide();a("#PWGP_catscroll").hide();a("#PWGP_loadcat").show();a("#PWGP_catscroll").val(0)}});a("#PWGP_loadcat").unbind().click(function(){var e=a("#PWGP_finder").val();a("#PWGP_Load_Active").show();a.ajax({url:PwgpAjax.ajaxUrl,method:"POST",data:{action:"pwgp-categories",nonce:PwgpAjax.nonce,url:e},dataType:"json",success:function(j){var h=a("#PWGP_catscroll");a('#PWGP_catscroll option[value!="0"]').remove();if(j.stat=="ok"){var g=j.result.categories;for(var l=0;l<g.length;l++){var f=g[l].name;var k=g[l].id;h.append("<option value="+k+">"+f+"</option>")}h.select();h.focus()}},error:function(g,h,f){console.log("cannot load list of piwigo categories: "+h+" "+f+" "+g.responseText)}});a("#PWGP_Load_Active").hide();a("#PWGP_loadcat").hide();a("#PWGP_catscroll").show()});a("#PWGP_load").unbind().click(function(){var j=a("#PWGP_finder").val(),h=5,f=a("#PWGP_dragger"),k=a("#PWGP_dragger li"),e=a("#PWGP_dropping");a(".PWGP_system").show(500);a("#PWGP_Load_Active").show();var g=a("#PWGP_catscroll").val();if(!g){g=0}a.post(PwgpAjax.ajaxUrl,{action:"pwgp-thumbnails",nonce:PwgpAjax.nonce,url:j,category:g},function(l){f.empty().append(l);a("#PWGP_more").show().unbind().click(function(){m()});a("#PWGP_hide").show().unbind().click(function(){var p=Math.max(1,Math.floor(a("li:visible",f).size()/2));for(i=0;i<p;i++){f.find("li:visible").first().hide()}if(a("li:visible",f).size()==0){a("#PWGP_hide").hide()}else{a("#PWGP_show").show().unbind().click(function(){a("li:hidden",f).show();a("#PWGP_show").hide()})}});o();a("#PWGP_Load_Active").hide();function m(){a("#PWGP_Load_Active").show();g=a("#PWGP_catscroll").val();if(!g){g=0}a.ajax({url:PwgpAjax.ajaxUrl,data:{action:"pwgp-thumbnails",nonce:PwgpAjax.nonce,url:j,loaded:h,category:g,recursive:1},method:"post",success:function(q){o(q)}});var p=5;if(h>9){p=10}if(h>49){p=50}if(h>99){p=100}h+=p}function o(p){a(f).append(p);var r=(a("#PWGP_dragger img").first().height())+20;f.height(r);e.height(r+25).css("min-height",r+25);a("#PWGP_dropping ul").height(r);a("li",f).draggable({revert:true,cursor:"move",zIndex:50});var q=a("li",e).size()+a("li",f).size();a("#PWGP_show_stats").show().find("#PWGP_stats").text(" "+q+" / "+h);e.droppable({activeClass:"ui-state-highlight",drop:function(s,t){n(t.draggable)}});if(a("li:visible",f).size()>0){a("#PWGP_hide").show()}a("#PWGP_Load_Active").hide()}function n(p){p.fadeOut(function(){var q=a("ul",e);p.appendTo(q).fadeIn();a("a#PWGP_Gen").unbind().click(function(){var r=window.tinyMCE.majorVersion;a("img",e).each(function(){var t=a(this).attr("title").split("]");var s=t[0];var y=a("#thumbnail_size input[type=radio][name=thumbnail_size]:checked").attr("value");if(y!=="la"){s+=" size='"+y+"'"}var u=a("#display_name input[type=radio][name=display_name]:checked").attr("value");if(u!=="0"){s+=" name='"+u+"'"}a("input#desc_check[name=desc_check]").attr("value",0);$hdesc=0+a("input#desc_check[name=desc_check]:checked").attr("value",1).attr("value");if($hdesc==1){s+=" desc=1"}var w=a("#photo_class").val();if(w!=""){s+=" class='"+w+"'"}var v=a("#link_type input[type=radio][name=link_type]:checked").attr("value");if(v!="picture"){s+=" lnktype='"+v+"'"}var x=a("#open_type input[type=radio][name=open_type]:checked").attr("value");if(x!=""){s+=" opntype='"+x+"'"}var s="\t"+s+"] \n\r";a("#content").insertAtCaret(s);if(r>="4"){tinyMCE.execCommand("mceInsertContent",false,s)}else{tinyMCE.execInstanceCommand("content","mceInsertContent",false,s)}})});a("a#PWGP_rst").unbind().click(function(){a("li",e).appendTo(f);a("a#PWGP_Gen").hide();a("a#PWGP_rst").hide();a("#PWGP_show_stats").show().find("#PWGP_stats").text(" "+a("li",f).size()+" / "+h)})});a("a#PWGP_Gen").show();a("a#PWGP_rst").show()}})});b=false}else{a("div#PWGP_shortcoder").hide();b=true}})})}(jQuery));
     1(function(a){a.fn.extend({insertAtCaret:function(b){return this.each(function(e){if(document.selection){this.focus();sel=document.selection.createRange();sel.text=b;this.focus()}else{if(this.selectionStart||this.selectionStart=="0"){var d=this.selectionStart;var c=this.selectionEnd;var f=this.scrollTop;this.value=this.value.substring(0,d)+b+this.value.substring(c,this.value.length);this.focus();this.selectionStart=d+b.length;this.selectionEnd=d+b.length;this.scrollTop=f}else{this.value+=b;this.focus()}}})}});a(document).ready(function(){var b=true;a("a#PWGP_button").unbind().click(function(){if(b){if(a("#dashboard-widgets-wrap").size()==0){var c="#poststuff"}else{var c="#dashboard-widgets-wrap"}if(a("#PWGP_shortcoder").size()==0){var d=a("#PWGP_Gal_finder").html();a(c).before('<div id="PWGP_shortcoder" />');a("#PWGP_shortcoder").html(d);a("#PWGP_Gal_finder").remove()}else{a("#PWGP_shortcoder").show()}a("#PWGP_catscroll").on("focus",function(){current_catid=this.value}).change(function(){if(current_catid!=this.value){a("#PWGP_more").hide();a("#PWGP_hide").hide();a("#PWGP_show").hide();a("#PWGP_show_stats").hide()}});a("#PWGP_finder").focus(function(){current_url=this.value}).change(function(){if(current_url!=this.value){a("#PWGP_more").hide();a("#PWGP_hide").hide();a("#PWGP_show").hide();a("#PWGP_show_stats").hide();a("#PWGP_catscroll").hide();a("#PWGP_loadcat").show();a("#PWGP_catscroll").val(0)}});a("#PWGP_loadcat").unbind().click(function(){var e=a("#PWGP_finder").val();a("#PWGP_Load_Active").show();a.ajax({url:PwgpAjax.ajaxUrl,method:"POST",data:{action:"pwgp-categories",nonce:PwgpAjax.nonce,url:e},dataType:"json",success:function(j){var h=a("#PWGP_catscroll");a('#PWGP_catscroll option[value!="0"]').remove();if(j.stat=="ok"){var g=j.result.categories;for(var l=0;l<g.length;l++){var f=g[l].name;var k=g[l].id;h.append("<option value="+k+">"+f+"</option>")}h.select();h.focus()}},error:function(g,h,f){console.log("cannot load list of piwigo categories: "+h+" "+f+" "+g.responseText)}});a("#PWGP_Load_Active").hide();a("#PWGP_loadcat").hide();a("#PWGP_catscroll").show()});a("#PWGP_load").unbind().click(function(){var j=a("#PWGP_finder").val(),h=5,f=a("#PWGP_dragger"),k=a("#PWGP_dragger li"),e=a("#PWGP_dropping");a(".PWGP_system").show(500);a("#PWGP_Load_Active").show();var g=a("#PWGP_catscroll").val();if(!g){g=0}a.post(PwgpAjax.ajaxUrl,{action:"pwgp-thumbnails",nonce:PwgpAjax.nonce,url:j,category:g},function(l){f.empty().append(l);a("#PWGP_more").show().unbind().click(function(){m()});a("#PWGP_hide").show().unbind().click(function(){var p=Math.max(1,Math.floor(a("li:visible",f).size()/2));for(i=0;i<p;i++){f.find("li:visible").first().hide()}if(a("li:visible",f).size()==0){a("#PWGP_hide").hide()}else{a("#PWGP_show").show().unbind().click(function(){a("li:hidden",f).show();a("#PWGP_show").hide()})}});o();a("#PWGP_Load_Active").hide();function m(){a("#PWGP_Load_Active").show();g=a("#PWGP_catscroll").val();if(!g){g=0}a.ajax({url:PwgpAjax.ajaxUrl,data:{action:"pwgp-thumbnails",nonce:PwgpAjax.nonce,url:j,loaded:h,category:g,recursive:1},method:"post",success:function(q){o(q)}});var p=5;if(h>9){p=10}if(h>49){p=50}if(h>99){p=100}h+=p}function o(p){a(f).append(p);var r=(a("#PWGP_dragger img").first().height())+20;f.height(r);e.height(r+25).css("min-height",r+25);a("#PWGP_dropping ul").height(r);a("li",f).draggable({revert:true,cursor:"move",zIndex:50});var q=a("li",e).size()+a("li",f).size();a("#PWGP_show_stats").show().find("#PWGP_stats").text(" "+q+" / "+h);e.droppable({activeClass:"ui-state-highlight",drop:function(s,t){n(t.draggable)}});if(a("li:visible",f).size()>0){a("#PWGP_hide").show()}a("#PWGP_Load_Active").hide()}function n(p){p.fadeOut(function(){var q=a("ul",e);p.appendTo(q).fadeIn();a("a#PWGP_Gen").unbind().click(function(){var r=window.tinyMCE.majorVersion;a("img",e).each(function(){var t=a(this).attr("title").split("]");var s=t[0];var z=a("#thumbnail_size input[type=radio][name=thumbnail_size]:checked").attr("value");if(z!=="la"){s+=" size='"+z+"'"}var v=a("#display_name input[type=radio][name=display_name]:checked").attr("value");if(v!=="0"){s+=" name='"+v+"'"}a("input#desc_check[name=desc_check]").attr("value",0);$hdesc=0+a("input#desc_check[name=desc_check]:checked").attr("value",1).attr("value");if($hdesc==1){s+=" desc=1"}var x=a("#photo_class").val();if(x!=""){s+=" class='"+x+"'"}var w=a("#link_type input[type=radio][name=link_type]:checked").attr("value");if(w!="picture"){s+=" lnktype='"+w+"'"}var y=a("#open_type input[type=radio][name=open_type]:checked").attr("value");if(y!=""){s+=" opntype='"+y+"'"}var u=a("#order_type input[type=radio][name=order_type]:checked").attr("value");if(u!=""){s+=" order='"+u+"'"}var s="\t"+s+"] \n\r";a("#content").insertAtCaret(s);if(r>="4"){tinyMCE.execCommand("mceInsertContent",false,s)}else{tinyMCE.execInstanceCommand("content","mceInsertContent",false,s)}})});a("a#PWGP_rst").unbind().click(function(){a("li",e).appendTo(f);a("a#PWGP_Gen").hide();a("a#PWGP_rst").hide();a("#PWGP_show_stats").show().find("#PWGP_stats").text(" "+a("li",f).size()+" / "+h)})});a("a#PWGP_Gen").show();a("a#PWGP_rst").show()}})});b=false}else{a("div#PWGP_shortcoder").hide();b=true}})})}(jQuery));
  • piwigopress/trunk/languages/pwg-de_DE.po

    r1206199 r1234996  
    88"Project-Id-Version: piwigopress\n"
    99"Report-Msgid-Bugs-To: \n"
    10 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     10"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    1111"PO-Revision-Date: 2015-02-15 22:35+0900\n"
    1212"Last-Translator: Norbert Preining <norbert@preining.info>\n"
     
    2323msgstr "Zufälliges Bild"
    2424
    25 #: PiwigoPress_options.php:55
     25#: PiwigoPress_options.php:57
    2626msgid "Title"
    2727msgstr "Titel"
    2828
    29 #: PiwigoPress_options.php:59
     29#: PiwigoPress_options.php:61
    3030msgid "<strong>Local</strong> directory (if local)"
    3131msgstr "<strong>Lokaler</strong> Ordner (falls lokal)"
    3232
    33 #: PiwigoPress_options.php:63
     33#: PiwigoPress_options.php:65
    3434msgid "(or) <strong>External</strong> gallery URL"
    3535msgstr "(oder) <strong>Externe</strong> URL der Gallerie"
    3636
    37 #: PiwigoPress_options.php:72
     37#: PiwigoPress_options.php:74
    3838msgid "Size"
    3939msgstr "Größe"
    4040
    41 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     41#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4242msgid "Square"
    4343msgstr "Quadratisch"
    4444
    45 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     45#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4646msgid "Thumbnail"
    4747msgstr "Thumbnail"
    4848
    49 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     49#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    5050msgid "XXS - tiny"
    5151msgstr "XXS - winzig"
    5252
    53 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     53#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5454msgid "XS - extra small"
    5555msgstr "XS - sehr klein"
    5656
    57 #: PiwigoPress_options.php:88
     57#: PiwigoPress_options.php:90
    5858msgid "Large sizes"
    5959msgstr "Große Größen"
    6060
    61 #: PiwigoPress_options.php:88
     61#: PiwigoPress_options.php:90
    6262msgid "Select a larger sized picture"
    6363msgstr "Wählen Sien ein größeres Photo aus"
    6464
    65 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     65#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6666msgid "S - small"
    6767msgstr "S - klein"
    6868
    69 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     69#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    7070msgid "M - medium"
    7171msgstr "M - mittel"
    7272
    73 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     73#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7474msgid "L - large"
    7575msgstr "L - groß"
    7676
    77 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     77#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7878msgid "XL - extra large"
    7979msgstr "XL - sehr groß"
    8080
    81 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     81#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8282msgid "XXL - huge"
    8383msgstr "XXL - enorm"
    8484
    85 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     85#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8686msgid "Open type"
    8787msgstr "Öffnungsart"
    8888
    89 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     89#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    9090msgid "New window/tab"
    9191msgstr ""
    9292
    93 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     93#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9494#, fuzzy
    9595msgid "Same window/tab"
     
    112112msgstr "Nur Landscape"
    113113
    114 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     114#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    115115msgid "Link type"
    116116msgstr "Art des links"
    117117
    118 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     118#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    119119msgid "No link"
    120120msgstr "Kein link"
    121121
    122 #: PiwigoPress_options.php:140
     122#: PiwigoPress_options.php:142
    123123msgid "Album page if one selected"
    124124msgstr "Albumsseite falls eines selektiert ist"
    125125
    126 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     126#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    127127msgid "Picture page"
    128128msgstr "Photoseite"
    129129
    130 #: PiwigoPress_options.php:145
     130#: PiwigoPress_options.php:147
    131131msgid "Forced option if selected album id is 0 (see below)"
    132132msgstr ""
    133133"Erzwungene Opion falls die selektierte Album ID 0 ist (siehe unterhalb)"
    134134
    135 #: PiwigoPress_options.php:146
     135#: PiwigoPress_options.php:148
    136136msgid "Picture page in Album"
    137137msgstr "Photoseite innerhalb des Albums"
    138138
    139139#: PiwigoPress_options.php:153
     140msgid "Sort order"
     141msgstr ""
     142
     143#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     144#: PiwigoPress_widget.php:167
     145msgid "Random"
     146msgstr "Zufällig"
     147
     148#: PiwigoPress_options.php:157
     149#, fuzzy
     150msgid "Creation date"
     151msgstr "Beschriftung"
     152
     153#: PiwigoPress_options.php:160
     154msgid "Availability date"
     155msgstr ""
     156
     157#: PiwigoPress_options.php:163
     158msgid "Rating score"
     159msgstr ""
     160
     161#: PiwigoPress_options.php:166
     162msgid "Hits"
     163msgstr ""
     164
     165#: PiwigoPress_options.php:171
     166msgid "Ascending order"
     167msgstr ""
     168
     169#: PiwigoPress_options.php:178
    140170msgid "Menu"
    141171msgstr "Menü"
    142172
    143 #: PiwigoPress_options.php:154
     173#: PiwigoPress_options.php:179
    144174msgid "Select all"
    145175msgstr "Alle auswählen"
    146176
    147 #: PiwigoPress_options.php:154
     177#: PiwigoPress_options.php:179
    148178msgid "Unselect all"
    149179msgstr "Alle abwählen"
    150180
    151 #: PiwigoPress_options.php:157
     181#: PiwigoPress_options.php:182
    152182msgid "Album menu"
    153183msgstr ""
    154184
    155 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     185#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    156186msgid "Most visited"
    157187msgstr "Meist besucht"
    158188
    159 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     189#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    160190msgid "Best rated"
    161191msgstr "Am besten bewertet"
    162192
    163 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     193#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    164194msgid "Most commented"
    165195msgstr "Am meisten kommentiert"
    166196
    167 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    168 msgid "Random"
    169 msgstr "Zufällig"
    170 
    171 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     197#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    172198msgid "Recent pics"
    173199msgstr "Neue Photos"
    174200
    175 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     201#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    176202msgid "Calendar"
    177203msgstr "Kalendar"
    178204
    179 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     205#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    180206msgid "Tags"
    181207msgstr "Tags"
    182208
    183 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     209#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    184210msgid "Comments"
    185211msgstr "Kommentare"
    186212
    187 #: PiwigoPress_options.php:176
     213#: PiwigoPress_options.php:201
    188214msgid "Since X months (0=all)"
    189215msgstr "Seit X Monaten (0 = alle)"
    190216
    191 #: PiwigoPress_options.php:181
     217#: PiwigoPress_options.php:206
    192218msgid "Album id (0=all)"
    193219msgstr "Album id (0=alle)"
    194220
    195 #: PiwigoPress_options.php:183
     221#: PiwigoPress_options.php:208
    196222msgid ""
    197223"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
     
    199225"Falls Ablum id = 0 (alle): Link typ \"Album\" wird zu \"Photo\" gewechselt"
    200226
    201 #: PiwigoPress_options.php:186
     227#: PiwigoPress_options.php:211
    202228msgid "Number of pictures (0=none)"
    203229msgstr "Anzahl der Photos (0=keines)"
    204230
    205 #: PiwigoPress_options.php:192
     231#: PiwigoPress_options.php:217
    206232msgid "Widget photo(s) pre-code"
    207233msgstr ""
    208234
    209 #: PiwigoPress_options.php:194
     235#: PiwigoPress_options.php:219
    210236msgid "Widget photo(s) post-code"
    211237msgstr ""
    212238
    213 #: PiwigoPress_options.php:201
     239#: PiwigoPress_options.php:226
    214240msgid "Caption"
    215241msgstr "Beschriftung"
    216242
    217 #: PiwigoPress_options.php:202
     243#: PiwigoPress_options.php:227
    218244msgid "Automatically add paragraphs"
    219245msgstr ""
    220246
    221 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     247#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    222248msgid "CSS DIV class"
    223249msgstr ""
    224250
    225 #: PiwigoPress_options.php:214
     251#: PiwigoPress_options.php:239
    226252msgid "CSS IMG class"
    227253msgstr ""
    228254
    229 #: PiwigoPress_widget.php:125
     255#: PiwigoPress_widget.php:145
    230256msgid "Pictures categories"
    231257msgstr ""
     
    235261msgstr ""
    236262
    237 #: piwigopress.php:182
     263#: piwigopress.php:184
    238264msgid ""
    239265"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
    240266msgstr ""
    241267
    242 #: piwigopress.php:324
     268#: piwigopress.php:330
    243269msgid "FAQ"
    244270msgstr ""
    245271
    246 #: piwigopress.php:325
     272#: piwigopress.php:331
    247273msgid "PiwigoPress Support"
    248274msgstr ""
    249275
    250 #: piwigopress.php:326
     276#: piwigopress.php:332
    251277msgid "Piwigo site"
    252278msgstr ""
  • piwigopress/trunk/languages/pwg-es_ES.po

    r1206199 r1234996  
    33"Project-Id-Version: piwigopress\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     5"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: Norbert Preining <norbert@preining.info>\n"
     
    2222msgstr "Imágenes aleatorias"
    2323
    24 #: PiwigoPress_options.php:55
     24#: PiwigoPress_options.php:57
    2525msgid "Title"
    2626msgstr "Título"
    2727
    28 #: PiwigoPress_options.php:59
     28#: PiwigoPress_options.php:61
    2929msgid "<strong>Local</strong> directory (if local)"
    3030msgstr "Repertorio <strong>local</strong> (tan local)"
    3131
    32 #: PiwigoPress_options.php:63
     32#: PiwigoPress_options.php:65
    3333msgid "(or) <strong>External</strong> gallery URL"
    3434msgstr "(o) URL de la galería <strong>externa</strong>"
    3535
    36 #: PiwigoPress_options.php:72
     36#: PiwigoPress_options.php:74
    3737msgid "Size"
    3838msgstr ""
    3939
    40 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     40#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4141msgid "Square"
    4242msgstr "Cuadrado"
    4343
    44 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     44#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4545msgid "Thumbnail"
    4646msgstr "Diapositiva"
    4747
    48 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     48#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    4949msgid "XXS - tiny"
    5050msgstr "XXS - diminuto"
    5151
    52 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     52#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5353msgid "XS - extra small"
    5454msgstr "XS - extrapequeño"
    5555
    56 #: PiwigoPress_options.php:88
     56#: PiwigoPress_options.php:90
    5757msgid "Large sizes"
    5858msgstr "Los tamaños grandes"
    5959
    60 #: PiwigoPress_options.php:88
     60#: PiwigoPress_options.php:90
    6161msgid "Select a larger sized picture"
    6262msgstr "Seleccione una imagen de mayor tamaño"
    6363
    64 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     64#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6565msgid "S - small"
    6666msgstr "S - pequeño "
    6767
    68 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     68#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    6969msgid "M - medium"
    7070msgstr "M - mediano"
    7171
    72 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     72#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7373msgid "L - large"
    7474msgstr "L - grande"
    7575
    76 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     76#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7777msgid "XL - extra large"
    7878msgstr "XL - extragrande"
    7979
    80 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     80#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8181msgid "XXL - huge"
    8282msgstr "XXL - enorme"
    8383
    84 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     84#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8585msgid "Open type"
    8686msgstr ""
    8787
    88 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     88#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    8989msgid "New window/tab"
    9090msgstr ""
    9191
    92 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     92#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9393msgid "Same window/tab"
    9494msgstr ""
     
    110110msgstr "Paisaje sólo"
    111111
    112 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     112#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    113113msgid "Link type"
    114114msgstr ""
    115115
    116 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     116#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    117117msgid "No link"
    118118msgstr ""
    119119
    120 #: PiwigoPress_options.php:140
     120#: PiwigoPress_options.php:142
    121121msgid "Album page if one selected"
    122122msgstr ""
    123123
    124 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     124#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    125125#, fuzzy
    126126msgid "Picture page"
    127127msgstr "Categoría de imágenes"
    128128
    129 #: PiwigoPress_options.php:145
     129#: PiwigoPress_options.php:147
    130130msgid "Forced option if selected album id is 0 (see below)"
    131131msgstr ""
    132132
    133 #: PiwigoPress_options.php:146
     133#: PiwigoPress_options.php:148
    134134#, fuzzy
    135135msgid "Picture page in Album"
     
    137137
    138138#: PiwigoPress_options.php:153
     139msgid "Sort order"
     140msgstr ""
     141
     142#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     143#: PiwigoPress_widget.php:167
     144msgid "Random"
     145msgstr "Aleatorio"
     146
     147#: PiwigoPress_options.php:157
     148msgid "Creation date"
     149msgstr ""
     150
     151#: PiwigoPress_options.php:160
     152msgid "Availability date"
     153msgstr ""
     154
     155#: PiwigoPress_options.php:163
     156msgid "Rating score"
     157msgstr ""
     158
     159#: PiwigoPress_options.php:166
     160msgid "Hits"
     161msgstr ""
     162
     163#: PiwigoPress_options.php:171
     164msgid "Ascending order"
     165msgstr ""
     166
     167#: PiwigoPress_options.php:178
    139168msgid "Menu"
    140169msgstr ""
    141170
    142 #: PiwigoPress_options.php:154
     171#: PiwigoPress_options.php:179
    143172msgid "Select all"
    144173msgstr ""
    145174
    146 #: PiwigoPress_options.php:154
     175#: PiwigoPress_options.php:179
    147176msgid "Unselect all"
    148177msgstr ""
    149178
    150 #: PiwigoPress_options.php:157
     179#: PiwigoPress_options.php:182
    151180msgid "Album menu"
    152181msgstr ""
    153182
    154 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     183#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    155184msgid "Most visited"
    156185msgstr "Más populares"
    157186
    158 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     187#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    159188msgid "Best rated"
    160189msgstr "Mejor anotadas"
    161190
    162 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     191#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    163192msgid "Most commented"
    164193msgstr "Más comentadas"
    165194
    166 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    167 msgid "Random"
    168 msgstr "Aleatorio"
    169 
    170 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     195#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    171196msgid "Recent pics"
    172197msgstr "Imágenes recientes"
    173198
    174 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     199#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    175200msgid "Calendar"
    176201msgstr "Calendario"
    177202
    178 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     203#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    179204msgid "Tags"
    180205msgstr "Tags"
    181206
    182 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     207#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    183208msgid "Comments"
    184209msgstr "Comentarios"
    185210
    186 #: PiwigoPress_options.php:176
     211#: PiwigoPress_options.php:201
    187212msgid "Since X months (0=all)"
    188213msgstr "Después X mes (0=todos)"
    189214
    190 #: PiwigoPress_options.php:181
     215#: PiwigoPress_options.php:206
    191216#, fuzzy
    192217msgid "Album id (0=all)"
    193218msgstr "Id de la categoría (0=todas)"
    194219
    195 #: PiwigoPress_options.php:183
     220#: PiwigoPress_options.php:208
    196221msgid ""
    197222"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
    198223msgstr ""
    199224
    200 #: PiwigoPress_options.php:186
     225#: PiwigoPress_options.php:211
    201226msgid "Number of pictures (0=none)"
    202227msgstr "Número de imágenes (0=ninguno)"
    203228
    204 #: PiwigoPress_options.php:192
     229#: PiwigoPress_options.php:217
    205230msgid "Widget photo(s) pre-code"
    206231msgstr ""
    207232
    208 #: PiwigoPress_options.php:194
     233#: PiwigoPress_options.php:219
    209234msgid "Widget photo(s) post-code"
    210235msgstr ""
    211236
    212 #: PiwigoPress_options.php:201
     237#: PiwigoPress_options.php:226
    213238msgid "Caption"
    214239msgstr ""
    215240
    216 #: PiwigoPress_options.php:202
     241#: PiwigoPress_options.php:227
    217242msgid "Automatically add paragraphs"
    218243msgstr ""
    219244
    220 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     245#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    221246msgid "CSS DIV class"
    222247msgstr "Clasifica a CSS para DIV"
    223248
    224 #: PiwigoPress_options.php:214
     249#: PiwigoPress_options.php:239
    225250msgid "CSS IMG class"
    226251msgstr "Clasifica a CSS para IMG"
    227252
    228 #: PiwigoPress_widget.php:125
     253#: PiwigoPress_widget.php:145
    229254msgid "Pictures categories"
    230255msgstr "Categoría de imágenes"
     
    237262"positivo."
    238263
    239 #: piwigopress.php:182
     264#: piwigopress.php:184
    240265msgid ""
    241266"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
     
    244269"blog"
    245270
    246 #: piwigopress.php:324
     271#: piwigopress.php:330
    247272msgid "FAQ"
    248273msgstr ""
    249274
    250 #: piwigopress.php:325
     275#: piwigopress.php:331
    251276msgid "PiwigoPress Support"
    252277msgstr ""
    253278
    254 #: piwigopress.php:326
     279#: piwigopress.php:332
    255280msgid "Piwigo site"
    256281msgstr ""
  • piwigopress/trunk/languages/pwg-fr_FR.po

    r1206199 r1234996  
    33"Project-Id-Version: piwigopress\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     5"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: Norbert Preining <norbert@preining.info>\n"
     
    2222msgstr "Images aléatoires"
    2323
    24 #: PiwigoPress_options.php:55
     24#: PiwigoPress_options.php:57
    2525msgid "Title"
    2626msgstr "Titre"
    2727
    28 #: PiwigoPress_options.php:59
     28#: PiwigoPress_options.php:61
    2929msgid "<strong>Local</strong> directory (if local)"
    3030msgstr "Répertoire <strong>local</strong> (si local)"
    3131
    32 #: PiwigoPress_options.php:63
     32#: PiwigoPress_options.php:65
    3333msgid "(or) <strong>External</strong> gallery URL"
    3434msgstr "(ou) URL de la galerie <strong>externe</strong>"
    3535
    36 #: PiwigoPress_options.php:72
     36#: PiwigoPress_options.php:74
    3737msgid "Size"
    3838msgstr "Dimension"
    3939
    40 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     40#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4141msgid "Square"
    4242msgstr "Carré"
    4343
    44 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     44#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4545msgid "Thumbnail"
    4646msgstr "Miniature"
    4747
    48 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     48#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    4949msgid "XXS - tiny"
    5050msgstr "XXS - minuscule"
    5151
    52 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     52#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5353msgid "XS - extra small"
    5454msgstr "XS - très petit"
    5555
    56 #: PiwigoPress_options.php:88
     56#: PiwigoPress_options.php:90
    5757msgid "Large sizes"
    5858msgstr "Grandes tailles"
    5959
    60 #: PiwigoPress_options.php:88
     60#: PiwigoPress_options.php:90
    6161msgid "Select a larger sized picture"
    6262msgstr "Sélectionner une image dans une grande taille"
    6363
    64 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     64#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6565msgid "S - small"
    6666msgstr "S - petit"
    6767
    68 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     68#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    6969msgid "M - medium"
    7070msgstr "M - moyen "
    7171
    72 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     72#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7373msgid "L - large"
    7474msgstr "L - grand"
    7575
    76 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     76#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7777msgid "XL - extra large"
    7878msgstr "XL - très grand"
    7979
    80 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     80#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8181msgid "XXL - huge"
    8282msgstr "XXL - énorme"
    8383
    84 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     84#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8585#, fuzzy
    8686msgid "Open type"
    8787msgstr "Type de lien"
    8888
    89 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     89#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    9090msgid "New window/tab"
    9191msgstr ""
    9292
    93 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     93#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9494msgid "Same window/tab"
    9595msgstr ""
     
    111111msgstr "en paysage"
    112112
    113 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     113#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    114114msgid "Link type"
    115115msgstr "Type de lien"
    116116
    117 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     117#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    118118msgid "No link"
    119119msgstr "Aucun lien"
    120120
    121 #: PiwigoPress_options.php:140
     121#: PiwigoPress_options.php:142
    122122msgid "Album page if one selected"
    123123msgstr "Page de l'album (si un album est sélectionné)"
    124124
    125 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     125#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    126126msgid "Picture page"
    127127msgstr "Page de l'image"
    128128
    129 #: PiwigoPress_options.php:145
     129#: PiwigoPress_options.php:147
    130130msgid "Forced option if selected album id is 0 (see below)"
    131131msgstr "Option par défaut si l'album id, ci-dessous, est égal à 0"
    132132
    133 #: PiwigoPress_options.php:146
     133#: PiwigoPress_options.php:148
    134134#, fuzzy
    135135msgid "Picture page in Album"
     
    137137
    138138#: PiwigoPress_options.php:153
     139msgid "Sort order"
     140msgstr ""
     141
     142#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     143#: PiwigoPress_widget.php:167
     144msgid "Random"
     145msgstr "Aléatoire"
     146
     147#: PiwigoPress_options.php:157
     148#, fuzzy
     149msgid "Creation date"
     150msgstr "Description"
     151
     152#: PiwigoPress_options.php:160
     153msgid "Availability date"
     154msgstr ""
     155
     156#: PiwigoPress_options.php:163
     157msgid "Rating score"
     158msgstr ""
     159
     160#: PiwigoPress_options.php:166
     161msgid "Hits"
     162msgstr ""
     163
     164#: PiwigoPress_options.php:171
     165msgid "Ascending order"
     166msgstr ""
     167
     168#: PiwigoPress_options.php:178
    139169msgid "Menu"
    140170msgstr "Menu"
    141171
    142 #: PiwigoPress_options.php:154
     172#: PiwigoPress_options.php:179
    143173msgid "Select all"
    144174msgstr "Sélectionner tout"
    145175
    146 #: PiwigoPress_options.php:154
     176#: PiwigoPress_options.php:179
    147177msgid "Unselect all"
    148178msgstr "Désélectionner tout"
    149179
    150 #: PiwigoPress_options.php:157
     180#: PiwigoPress_options.php:182
    151181#, fuzzy
    152182msgid "Album menu"
    153183msgstr "Page de l'album"
    154184
    155 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     185#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    156186msgid "Most visited"
    157187msgstr "Plus populaires"
    158188
    159 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     189#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    160190msgid "Best rated"
    161191msgstr "Mieux notées"
    162192
    163 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     193#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    164194msgid "Most commented"
    165195msgstr "Plus commentées"
    166196
    167 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    168 msgid "Random"
    169 msgstr "Aléatoire"
    170 
    171 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     197#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    172198msgid "Recent pics"
    173199msgstr "Images récentes"
    174200
    175 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     201#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    176202msgid "Calendar"
    177203msgstr "Calendrier"
    178204
    179 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     205#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    180206msgid "Tags"
    181207msgstr "Tags"
    182208
    183 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     209#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    184210msgid "Comments"
    185211msgstr "Commentaires"
    186212
    187 #: PiwigoPress_options.php:176
     213#: PiwigoPress_options.php:201
    188214msgid "Since X months (0=all)"
    189215msgstr "Depuis X mois (0=tous)"
    190216
    191 #: PiwigoPress_options.php:181
     217#: PiwigoPress_options.php:206
    192218msgid "Album id (0=all)"
    193219msgstr "Id de l'album (0=tous)"
    194220
    195 #: PiwigoPress_options.php:183
     221#: PiwigoPress_options.php:208
    196222msgid ""
    197223"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
     
    199225"Si l'album Id = 0 (tous) alors le lien \"album\" basculera en \"picture\""
    200226
    201 #: PiwigoPress_options.php:186
     227#: PiwigoPress_options.php:211
    202228msgid "Number of pictures (0=none)"
    203229msgstr "Nombre d'images (0=aucune)"
    204230
    205 #: PiwigoPress_options.php:192
     231#: PiwigoPress_options.php:217
    206232msgid "Widget photo(s) pre-code"
    207233msgstr ""
    208234
    209 #: PiwigoPress_options.php:194
     235#: PiwigoPress_options.php:219
    210236msgid "Widget photo(s) post-code"
    211237msgstr ""
    212238
    213 #: PiwigoPress_options.php:201
     239#: PiwigoPress_options.php:226
    214240msgid "Caption"
    215241msgstr "Description"
    216242
    217 #: PiwigoPress_options.php:202
     243#: PiwigoPress_options.php:227
    218244msgid "Automatically add paragraphs"
    219245msgstr "Créer automatiquement les paragraphes"
    220246
    221 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     247#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    222248msgid "CSS DIV class"
    223249msgstr "Classe CSS pour DIV"
    224250
    225 #: PiwigoPress_options.php:214
     251#: PiwigoPress_options.php:239
    226252msgid "CSS IMG class"
    227253msgstr "Classe CSS pour IMG"
    228254
    229 #: PiwigoPress_widget.php:125
     255#: PiwigoPress_widget.php:145
    230256msgid "Pictures categories"
    231257msgstr "Catégorie d'images"
     
    238264"positif."
    239265
    240 #: piwigopress.php:182
     266#: piwigopress.php:184
    241267msgid ""
    242268"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
     
    245271"blog"
    246272
    247 #: piwigopress.php:324
     273#: piwigopress.php:330
    248274msgid "FAQ"
    249275msgstr "FAQ"
    250276
    251 #: piwigopress.php:325
     277#: piwigopress.php:331
    252278msgid "PiwigoPress Support"
    253279msgstr "Support PiwigoPress"
    254280
    255 #: piwigopress.php:326
     281#: piwigopress.php:332
    256282msgid "Piwigo site"
    257283msgstr "Site Piwigo"
  • piwigopress/trunk/languages/pwg-hu_HU.po

    r1206199 r1234996  
    33"Project-Id-Version: piwigopress HU\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     5"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: Norbert Preining <norbert@preining.info>\n"
     
    2222msgstr "Véletlen kép"
    2323
    24 #: PiwigoPress_options.php:55
     24#: PiwigoPress_options.php:57
    2525msgid "Title"
    2626msgstr "Cím"
    2727
    28 #: PiwigoPress_options.php:59
     28#: PiwigoPress_options.php:61
    2929msgid "<strong>Local</strong> directory (if local)"
    3030msgstr "<strong>Helyi</strong> könyvtár (ha helyi)"
    3131
    32 #: PiwigoPress_options.php:63
     32#: PiwigoPress_options.php:65
    3333msgid "(or) <strong>External</strong> gallery URL"
    3434msgstr "(vagy) <strong>Külső</strong> képtár URL"
    3535
    36 #: PiwigoPress_options.php:72
     36#: PiwigoPress_options.php:74
    3737msgid "Size"
    3838msgstr ""
    3939
    40 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     40#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4141msgid "Square"
    4242msgstr "Négyzetes "
    4343
    44 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     44#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4545msgid "Thumbnail"
    4646msgstr "Bélyegkép"
    4747
    48 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     48#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    4949msgid "XXS - tiny"
    5050msgstr "XXS - legkissebb \t\t"
    5151
    52 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     52#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5353msgid "XS - extra small"
    5454msgstr "XS - kissebb "
    5555
    56 #: PiwigoPress_options.php:88
     56#: PiwigoPress_options.php:90
    5757msgid "Large sizes"
    5858msgstr "Nagy méretben"
    5959
    60 #: PiwigoPress_options.php:88
     60#: PiwigoPress_options.php:90
    6161msgid "Select a larger sized picture"
    6262msgstr "Válasszon egy nagy méretű kép"
    6363
    64 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     64#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6565msgid "S - small"
    6666msgstr "S - kicsi "
    6767
    68 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     68#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    6969msgid "M - medium"
    7070msgstr "M - közepes "
    7171
    72 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     72#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7373msgid "L - large"
    7474msgstr "L - nagy"
    7575
    76 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     76#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7777msgid "XL - extra large"
    7878msgstr "XL - nagyobb"
    7979
    80 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     80#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8181msgid "XXL - huge"
    8282msgstr "XXL - legnagyobb"
    8383
    84 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     84#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8585msgid "Open type"
    8686msgstr ""
    8787
    88 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     88#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    8989msgid "New window/tab"
    9090msgstr ""
    9191
    92 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     92#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9393msgid "Same window/tab"
    9494msgstr ""
     
    110110msgstr "Fekvő csak"
    111111
    112 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     112#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    113113msgid "Link type"
    114114msgstr ""
    115115
    116 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     116#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    117117msgid "No link"
    118118msgstr ""
    119119
    120 #: PiwigoPress_options.php:140
     120#: PiwigoPress_options.php:142
    121121msgid "Album page if one selected"
    122122msgstr ""
    123123
    124 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     124#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    125125#, fuzzy
    126126msgid "Picture page"
    127127msgstr "Képek kategóriái"
    128128
    129 #: PiwigoPress_options.php:145
     129#: PiwigoPress_options.php:147
    130130msgid "Forced option if selected album id is 0 (see below)"
    131131msgstr ""
    132132
    133 #: PiwigoPress_options.php:146
     133#: PiwigoPress_options.php:148
    134134#, fuzzy
    135135msgid "Picture page in Album"
     
    137137
    138138#: PiwigoPress_options.php:153
     139msgid "Sort order"
     140msgstr ""
     141
     142#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     143#: PiwigoPress_widget.php:167
     144msgid "Random"
     145msgstr "Véletlen"
     146
     147#: PiwigoPress_options.php:157
     148msgid "Creation date"
     149msgstr ""
     150
     151#: PiwigoPress_options.php:160
     152msgid "Availability date"
     153msgstr ""
     154
     155#: PiwigoPress_options.php:163
     156msgid "Rating score"
     157msgstr ""
     158
     159#: PiwigoPress_options.php:166
     160msgid "Hits"
     161msgstr ""
     162
     163#: PiwigoPress_options.php:171
     164msgid "Ascending order"
     165msgstr ""
     166
     167#: PiwigoPress_options.php:178
    139168msgid "Menu"
    140169msgstr ""
    141170
    142 #: PiwigoPress_options.php:154
     171#: PiwigoPress_options.php:179
    143172msgid "Select all"
    144173msgstr ""
    145174
    146 #: PiwigoPress_options.php:154
     175#: PiwigoPress_options.php:179
    147176msgid "Unselect all"
    148177msgstr ""
    149178
    150 #: PiwigoPress_options.php:157
     179#: PiwigoPress_options.php:182
    151180msgid "Album menu"
    152181msgstr ""
    153182
    154 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     183#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    155184msgid "Most visited"
    156185msgstr "Legnézettebb"
    157186
    158 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     187#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    159188msgid "Best rated"
    160189msgstr "Legjobban értékelt"
    161190
    162 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     191#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    163192msgid "Most commented"
    164193msgstr "Legtöbb hozzászólás"
    165194
    166 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    167 msgid "Random"
    168 msgstr "Véletlen"
    169 
    170 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     195#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    171196msgid "Recent pics"
    172197msgstr "Legutóbbi képek"
    173198
    174 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     199#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    175200msgid "Calendar"
    176201msgstr "Naptár"
    177202
    178 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     203#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    179204msgid "Tags"
    180205msgstr "Címkék"
    181206
    182 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     207#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    183208msgid "Comments"
    184209msgstr "Hozzászólások"
    185210
    186 #: PiwigoPress_options.php:176
     211#: PiwigoPress_options.php:201
    187212msgid "Since X months (0=all)"
    188213msgstr "X hónap óta (0 = összes)"
    189214
    190 #: PiwigoPress_options.php:181
     215#: PiwigoPress_options.php:206
    191216#, fuzzy
    192217msgid "Album id (0=all)"
    193218msgstr "Kategória ID (0 = összes)"
    194219
    195 #: PiwigoPress_options.php:183
     220#: PiwigoPress_options.php:208
    196221msgid ""
    197222"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
    198223msgstr ""
    199224
    200 #: PiwigoPress_options.php:186
     225#: PiwigoPress_options.php:211
    201226msgid "Number of pictures (0=none)"
    202227msgstr "Képek száma (0 = nincs)"
    203228
    204 #: PiwigoPress_options.php:192
     229#: PiwigoPress_options.php:217
    205230msgid "Widget photo(s) pre-code"
    206231msgstr ""
    207232
    208 #: PiwigoPress_options.php:194
     233#: PiwigoPress_options.php:219
    209234msgid "Widget photo(s) post-code"
    210235msgstr ""
    211236
    212 #: PiwigoPress_options.php:201
     237#: PiwigoPress_options.php:226
    213238msgid "Caption"
    214239msgstr ""
    215240
    216 #: PiwigoPress_options.php:202
     241#: PiwigoPress_options.php:227
    217242msgid "Automatically add paragraphs"
    218243msgstr ""
    219244
    220 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     245#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    221246msgid "CSS DIV class"
    222247msgstr "CSS DIV class"
    223248
    224 #: PiwigoPress_options.php:214
     249#: PiwigoPress_options.php:239
    225250msgid "CSS IMG class"
    226251msgstr "CSS IMG class"
    227252
    228 #: PiwigoPress_widget.php:125
     253#: PiwigoPress_widget.php:145
    229254msgid "Pictures categories"
    230255msgstr "Képek kategóriái"
     
    237262"lennie."
    238263
    239 #: piwigopress.php:182
     264#: piwigopress.php:184
    240265msgid ""
    241266"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
    242267msgstr "Egy bélyegképet és linkjét adja (a képhez) a blog oldalsávján belül"
    243268
    244 #: piwigopress.php:324
     269#: piwigopress.php:330
    245270msgid "FAQ"
    246271msgstr ""
    247272
    248 #: piwigopress.php:325
     273#: piwigopress.php:331
    249274msgid "PiwigoPress Support"
    250275msgstr ""
    251276
    252 #: piwigopress.php:326
     277#: piwigopress.php:332
    253278msgid "Piwigo site"
    254279msgstr ""
  • piwigopress/trunk/languages/pwg-it_IT.po

    r1206199 r1234996  
    33"Project-Id-Version: piwigopress\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     5"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: Norbert Preining <norbert@preining.info>\n"
     
    2222msgstr "Immagini a caso"
    2323
    24 #: PiwigoPress_options.php:55
     24#: PiwigoPress_options.php:57
    2525msgid "Title"
    2626msgstr "Titolo"
    2727
    28 #: PiwigoPress_options.php:59
     28#: PiwigoPress_options.php:61
    2929msgid "<strong>Local</strong> directory (if local)"
    3030msgstr "Directory <strong>locale</strong> (se locale)"
    3131
    32 #: PiwigoPress_options.php:63
     32#: PiwigoPress_options.php:65
    3333msgid "(or) <strong>External</strong> gallery URL"
    3434msgstr "(o) URL della galleria <strong>esterna</strong>"
    3535
    36 #: PiwigoPress_options.php:72
     36#: PiwigoPress_options.php:74
    3737msgid "Size"
    3838msgstr ""
    3939
    40 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     40#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4141msgid "Square"
    4242msgstr "Quadrata"
    4343
    44 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     44#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4545msgid "Thumbnail"
    4646msgstr "Miniatura"
    4747
    48 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     48#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    4949msgid "XXS - tiny"
    5050msgstr "XXS - Minuscola"
    5151
    52 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     52#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5353msgid "XS - extra small"
    5454msgstr "XS - Piccolissima"
    5555
    56 #: PiwigoPress_options.php:88
     56#: PiwigoPress_options.php:90
    5757msgid "Large sizes"
    5858msgstr "Grandi dimensioni"
    5959
    60 #: PiwigoPress_options.php:88
     60#: PiwigoPress_options.php:90
    6161msgid "Select a larger sized picture"
    6262msgstr "Selezionare un'immagine di maggiori dimensioni"
    6363
    64 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     64#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6565msgid "S - small"
    6666msgstr "S - Piccola"
    6767
    68 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     68#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    6969msgid "M - medium"
    7070msgstr "M - media"
    7171
    72 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     72#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7373msgid "L - large"
    7474msgstr "L - grande"
    7575
    76 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     76#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7777msgid "XL - extra large"
    7878msgstr "XL - grandissima"
    7979
    80 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     80#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8181msgid "XXL - huge"
    8282msgstr "XXL - enorme"
    8383
    84 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     84#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8585msgid "Open type"
    8686msgstr ""
    8787
    88 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     88#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    8989msgid "New window/tab"
    9090msgstr ""
    9191
    92 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     92#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9393msgid "Same window/tab"
    9494msgstr ""
     
    110110msgstr "Paesaggio solo"
    111111
    112 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     112#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    113113msgid "Link type"
    114114msgstr ""
    115115
    116 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     116#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    117117msgid "No link"
    118118msgstr ""
    119119
    120 #: PiwigoPress_options.php:140
     120#: PiwigoPress_options.php:142
    121121msgid "Album page if one selected"
    122122msgstr ""
    123123
    124 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     124#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    125125#, fuzzy
    126126msgid "Picture page"
    127127msgstr "Categorie d'immagini"
    128128
    129 #: PiwigoPress_options.php:145
     129#: PiwigoPress_options.php:147
    130130msgid "Forced option if selected album id is 0 (see below)"
    131131msgstr ""
    132132
    133 #: PiwigoPress_options.php:146
     133#: PiwigoPress_options.php:148
    134134#, fuzzy
    135135msgid "Picture page in Album"
     
    137137
    138138#: PiwigoPress_options.php:153
     139msgid "Sort order"
     140msgstr ""
     141
     142#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     143#: PiwigoPress_widget.php:167
     144msgid "Random"
     145msgstr "Random"
     146
     147#: PiwigoPress_options.php:157
     148msgid "Creation date"
     149msgstr ""
     150
     151#: PiwigoPress_options.php:160
     152msgid "Availability date"
     153msgstr ""
     154
     155#: PiwigoPress_options.php:163
     156msgid "Rating score"
     157msgstr ""
     158
     159#: PiwigoPress_options.php:166
     160msgid "Hits"
     161msgstr ""
     162
     163#: PiwigoPress_options.php:171
     164msgid "Ascending order"
     165msgstr ""
     166
     167#: PiwigoPress_options.php:178
    139168msgid "Menu"
    140169msgstr ""
    141170
    142 #: PiwigoPress_options.php:154
     171#: PiwigoPress_options.php:179
    143172msgid "Select all"
    144173msgstr ""
    145174
    146 #: PiwigoPress_options.php:154
     175#: PiwigoPress_options.php:179
    147176msgid "Unselect all"
    148177msgstr ""
    149178
    150 #: PiwigoPress_options.php:157
     179#: PiwigoPress_options.php:182
    151180msgid "Album menu"
    152181msgstr ""
    153182
    154 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     183#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    155184msgid "Most visited"
    156185msgstr "Le più viste"
    157186
    158 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     187#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    159188msgid "Best rated"
    160189msgstr "Le più votate"
    161190
    162 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     191#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    163192msgid "Most commented"
    164193msgstr "Plus commentées"
    165194
    166 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    167 msgid "Random"
    168 msgstr "Random"
    169 
    170 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     195#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    171196msgid "Recent pics"
    172197msgstr "Immagini recenti"
    173198
    174 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     199#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    175200msgid "Calendar"
    176201msgstr "Calendario"
    177202
    178 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     203#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    179204msgid "Tags"
    180205msgstr "Tags"
    181206
    182 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     207#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    183208msgid "Comments"
    184209msgstr "Commenti"
    185210
    186 #: PiwigoPress_options.php:176
     211#: PiwigoPress_options.php:201
    187212msgid "Since X months (0=all)"
    188213msgstr "Da X mesi (0=tutti)"
    189214
    190 #: PiwigoPress_options.php:181
     215#: PiwigoPress_options.php:206
    191216#, fuzzy
    192217msgid "Album id (0=all)"
    193218msgstr "Id della categoria (0=tutte)"
    194219
    195 #: PiwigoPress_options.php:183
     220#: PiwigoPress_options.php:208
    196221msgid ""
    197222"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
    198223msgstr ""
    199224
    200 #: PiwigoPress_options.php:186
     225#: PiwigoPress_options.php:211
    201226msgid "Number of pictures (0=none)"
    202227msgstr "Numero d'immagini (0=nessuna)"
    203228
    204 #: PiwigoPress_options.php:192
     229#: PiwigoPress_options.php:217
    205230msgid "Widget photo(s) pre-code"
    206231msgstr ""
    207232
    208 #: PiwigoPress_options.php:194
     233#: PiwigoPress_options.php:219
    209234msgid "Widget photo(s) post-code"
    210235msgstr ""
    211236
    212 #: PiwigoPress_options.php:201
     237#: PiwigoPress_options.php:226
    213238msgid "Caption"
    214239msgstr ""
    215240
    216 #: PiwigoPress_options.php:202
     241#: PiwigoPress_options.php:227
    217242msgid "Automatically add paragraphs"
    218243msgstr ""
    219244
    220 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     245#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    221246msgid "CSS DIV class"
    222247msgstr "Classe CSS per DIV"
    223248
    224 #: PiwigoPress_options.php:214
     249#: PiwigoPress_options.php:239
    225250msgid "CSS IMG class"
    226251msgstr "Classe CSS per IMG"
    227252
    228 #: PiwigoPress_widget.php:125
     253#: PiwigoPress_widget.php:145
    229254msgid "Pictures categories"
    230255msgstr "Categorie d'immagini"
     
    237262"positivo."
    238263
    239 #: piwigopress.php:182
     264#: piwigopress.php:184
    240265msgid ""
    241266"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
     
    244269"laterale del blog"
    245270
    246 #: piwigopress.php:324
     271#: piwigopress.php:330
    247272msgid "FAQ"
    248273msgstr ""
    249274
    250 #: piwigopress.php:325
     275#: piwigopress.php:331
    251276msgid "PiwigoPress Support"
    252277msgstr ""
    253278
    254 #: piwigopress.php:326
     279#: piwigopress.php:332
    255280msgid "Piwigo site"
    256281msgstr ""
  • piwigopress/trunk/languages/pwg.pot

    r1206199 r1234996  
    99"Project-Id-Version: piwigopress\n"
    1010"Report-Msgid-Bugs-To: \n"
    11 "POT-Creation-Date: 2015-07-25 14:57+0900\n"
     11"POT-Creation-Date: 2015-09-01 09:04+0900\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    2222msgstr ""
    2323
    24 #: PiwigoPress_options.php:55
     24#: PiwigoPress_options.php:57
    2525msgid "Title"
    2626msgstr ""
    2727
    28 #: PiwigoPress_options.php:59
     28#: PiwigoPress_options.php:61
    2929msgid "<strong>Local</strong> directory (if local)"
    3030msgstr ""
    3131
    32 #: PiwigoPress_options.php:63
     32#: PiwigoPress_options.php:65
    3333msgid "(or) <strong>External</strong> gallery URL"
    3434msgstr ""
    3535
    36 #: PiwigoPress_options.php:72
     36#: PiwigoPress_options.php:74
    3737msgid "Size"
    3838msgstr ""
    3939
    40 #: PiwigoPress_options.php:73 piwigopress_admin.php:62
     40#: PiwigoPress_options.php:75 piwigopress_admin.php:62
    4141msgid "Square"
    4242msgstr ""
    4343
    44 #: PiwigoPress_options.php:76 piwigopress_admin.php:63
     44#: PiwigoPress_options.php:78 piwigopress_admin.php:63
    4545msgid "Thumbnail"
    4646msgstr ""
    4747
    48 #: PiwigoPress_options.php:79 piwigopress_admin.php:65
     48#: PiwigoPress_options.php:81 piwigopress_admin.php:65
    4949msgid "XXS - tiny"
    5050msgstr ""
    5151
    52 #: PiwigoPress_options.php:82 piwigopress_admin.php:64
     52#: PiwigoPress_options.php:84 piwigopress_admin.php:64
    5353msgid "XS - extra small"
    5454msgstr ""
    5555
    56 #: PiwigoPress_options.php:88
     56#: PiwigoPress_options.php:90
    5757msgid "Large sizes"
    5858msgstr ""
    5959
    60 #: PiwigoPress_options.php:88
     60#: PiwigoPress_options.php:90
    6161msgid "Select a larger sized picture"
    6262msgstr ""
    6363
    64 #: PiwigoPress_options.php:92 piwigopress_admin.php:66
     64#: PiwigoPress_options.php:94 piwigopress_admin.php:66
    6565msgid "S - small"
    6666msgstr ""
    6767
    68 #: PiwigoPress_options.php:95 piwigopress_admin.php:67
     68#: PiwigoPress_options.php:97 piwigopress_admin.php:67
    6969msgid "M - medium"
    7070msgstr ""
    7171
    72 #: PiwigoPress_options.php:98 piwigopress_admin.php:68
     72#: PiwigoPress_options.php:100 piwigopress_admin.php:68
    7373msgid "L - large"
    7474msgstr ""
    7575
    76 #: PiwigoPress_options.php:101 piwigopress_admin.php:69
     76#: PiwigoPress_options.php:103 piwigopress_admin.php:69
    7777msgid "XL - extra large"
    7878msgstr ""
    7979
    80 #: PiwigoPress_options.php:104 piwigopress_admin.php:70
     80#: PiwigoPress_options.php:106 piwigopress_admin.php:70
    8181msgid "XXL - huge"
    8282msgstr ""
    8383
    84 #: PiwigoPress_options.php:113 piwigopress_admin.php:109
     84#: PiwigoPress_options.php:115 piwigopress_admin.php:109
    8585msgid "Open type"
    8686msgstr ""
    8787
    88 #: PiwigoPress_options.php:114 piwigopress_admin.php:110
     88#: PiwigoPress_options.php:116 piwigopress_admin.php:110
    8989msgid "New window/tab"
    9090msgstr ""
    9191
    92 #: PiwigoPress_options.php:117 piwigopress_admin.php:111
     92#: PiwigoPress_options.php:119 piwigopress_admin.php:111
    9393msgid "Same window/tab"
    9494msgstr ""
     
    110110msgstr ""
    111111
    112 #: PiwigoPress_options.php:136 piwigopress_admin.php:100
     112#: PiwigoPress_options.php:138 piwigopress_admin.php:100
    113113msgid "Link type"
    114114msgstr ""
    115115
    116 #: PiwigoPress_options.php:137 piwigopress_admin.php:101
     116#: PiwigoPress_options.php:139 piwigopress_admin.php:101
    117117msgid "No link"
    118118msgstr ""
    119119
    120 #: PiwigoPress_options.php:140
     120#: PiwigoPress_options.php:142
    121121msgid "Album page if one selected"
    122122msgstr ""
    123123
    124 #: PiwigoPress_options.php:143 piwigopress_admin.php:103
     124#: PiwigoPress_options.php:145 piwigopress_admin.php:103
    125125msgid "Picture page"
    126126msgstr ""
    127127
    128 #: PiwigoPress_options.php:145
     128#: PiwigoPress_options.php:147
    129129msgid "Forced option if selected album id is 0 (see below)"
    130130msgstr ""
    131131
    132 #: PiwigoPress_options.php:146
     132#: PiwigoPress_options.php:148
    133133msgid "Picture page in Album"
    134134msgstr ""
    135135
    136136#: PiwigoPress_options.php:153
     137msgid "Sort order"
     138msgstr ""
     139
     140#: PiwigoPress_options.php:154 PiwigoPress_options.php:190
     141#: PiwigoPress_widget.php:167
     142msgid "Random"
     143msgstr ""
     144
     145#: PiwigoPress_options.php:157
     146msgid "Creation date"
     147msgstr ""
     148
     149#: PiwigoPress_options.php:160
     150msgid "Availability date"
     151msgstr ""
     152
     153#: PiwigoPress_options.php:163
     154msgid "Rating score"
     155msgstr ""
     156
     157#: PiwigoPress_options.php:166
     158msgid "Hits"
     159msgstr ""
     160
     161#: PiwigoPress_options.php:171
     162msgid "Ascending order"
     163msgstr ""
     164
     165#: PiwigoPress_options.php:178
    137166msgid "Menu"
    138167msgstr ""
    139168
    140 #: PiwigoPress_options.php:154
     169#: PiwigoPress_options.php:179
    141170msgid "Select all"
    142171msgstr ""
    143172
    144 #: PiwigoPress_options.php:154
     173#: PiwigoPress_options.php:179
    145174msgid "Unselect all"
    146175msgstr ""
    147176
    148 #: PiwigoPress_options.php:157
     177#: PiwigoPress_options.php:182
    149178msgid "Album menu"
    150179msgstr ""
    151180
    152 #: PiwigoPress_options.php:159 PiwigoPress_widget.php:138
     181#: PiwigoPress_options.php:184 PiwigoPress_widget.php:158
    153182msgid "Most visited"
    154183msgstr ""
    155184
    156 #: PiwigoPress_options.php:161 PiwigoPress_widget.php:141
     185#: PiwigoPress_options.php:186 PiwigoPress_widget.php:161
    157186msgid "Best rated"
    158187msgstr ""
    159188
    160 #: PiwigoPress_options.php:163 PiwigoPress_widget.php:144
     189#: PiwigoPress_options.php:188 PiwigoPress_widget.php:164
    161190msgid "Most commented"
    162191msgstr ""
    163192
    164 #: PiwigoPress_options.php:165 PiwigoPress_widget.php:147
    165 msgid "Random"
    166 msgstr ""
    167 
    168 #: PiwigoPress_options.php:167 PiwigoPress_widget.php:150
     193#: PiwigoPress_options.php:192 PiwigoPress_widget.php:170
    169194msgid "Recent pics"
    170195msgstr ""
    171196
    172 #: PiwigoPress_options.php:169 PiwigoPress_widget.php:153
     197#: PiwigoPress_options.php:194 PiwigoPress_widget.php:173
    173198msgid "Calendar"
    174199msgstr ""
    175200
    176 #: PiwigoPress_options.php:171 PiwigoPress_widget.php:156
     201#: PiwigoPress_options.php:196 PiwigoPress_widget.php:176
    177202msgid "Tags"
    178203msgstr ""
    179204
    180 #: PiwigoPress_options.php:173 PiwigoPress_widget.php:159
     205#: PiwigoPress_options.php:198 PiwigoPress_widget.php:179
    181206msgid "Comments"
    182207msgstr ""
    183208
    184 #: PiwigoPress_options.php:176
     209#: PiwigoPress_options.php:201
    185210msgid "Since X months (0=all)"
    186211msgstr ""
    187212
    188 #: PiwigoPress_options.php:181
     213#: PiwigoPress_options.php:206
    189214msgid "Album id (0=all)"
    190215msgstr ""
    191216
    192 #: PiwigoPress_options.php:183
     217#: PiwigoPress_options.php:208
    193218msgid ""
    194219"If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\""
    195220msgstr ""
    196221
    197 #: PiwigoPress_options.php:186
     222#: PiwigoPress_options.php:211
    198223msgid "Number of pictures (0=none)"
    199224msgstr ""
    200225
    201 #: PiwigoPress_options.php:192
     226#: PiwigoPress_options.php:217
    202227msgid "Widget photo(s) pre-code"
    203228msgstr ""
    204229
    205 #: PiwigoPress_options.php:194
     230#: PiwigoPress_options.php:219
    206231msgid "Widget photo(s) post-code"
    207232msgstr ""
    208233
    209 #: PiwigoPress_options.php:201
     234#: PiwigoPress_options.php:226
    210235msgid "Caption"
    211236msgstr ""
    212237
    213 #: PiwigoPress_options.php:202
     238#: PiwigoPress_options.php:227
    214239msgid "Automatically add paragraphs"
    215240msgstr ""
    216241
    217 #: PiwigoPress_options.php:211 piwigopress_admin.php:89
     242#: PiwigoPress_options.php:236 piwigopress_admin.php:89
    218243msgid "CSS DIV class"
    219244msgstr ""
    220245
    221 #: PiwigoPress_options.php:214
     246#: PiwigoPress_options.php:239
    222247msgid "CSS IMG class"
    223248msgstr ""
    224249
    225 #: PiwigoPress_widget.php:125
     250#: PiwigoPress_widget.php:145
    226251msgid "Pictures categories"
    227252msgstr ""
     
    231256msgstr ""
    232257
    233 #: piwigopress.php:182
     258#: piwigopress.php:184
    234259msgid ""
    235260"Adds a thumbnail and its link (to the picture) inside your blog sidebar."
    236261msgstr ""
    237262
    238 #: piwigopress.php:324
     263#: piwigopress.php:330
    239264msgid "FAQ"
    240265msgstr ""
    241266
    242 #: piwigopress.php:325
     267#: piwigopress.php:331
    243268msgid "PiwigoPress Support"
    244269msgstr ""
    245270
    246 #: piwigopress.php:326
     271#: piwigopress.php:332
    247272msgid "Piwigo site"
    248273msgstr ""
  • piwigopress/trunk/piwigopress.php

    r1206199 r1234996  
    44Plugin URI: http://wordpress.org/extend/plugins/piwigopress/
    55Description: PiwigoPress from any open API Piwigo gallery, swiftly includes your photos in Posts/Pages and/or add randomized thumbnails and menus in your sidebar.
    6 Version: 2.30
     6Version: 2.31
    77Author: Norbert Preining
    88Author URI: http://www.preining.info/
     
    2828*/
    2929if (!defined('PWGP_NAME')) define('PWGP_NAME','PiwigoPress');
    30 if (!defined('PWGP_VERSION')) define('PWGP_VERSION','2.3.0');
     30if (!defined('PWGP_VERSION')) define('PWGP_VERSION','2.3.1');
    3131
    3232load_plugin_textdomain('pwg', false, dirname (plugin_basename( __FILE__ ) ) . '/languages/');
     
    9595        'style' => '',  // Specific style
    9696        'lnktype' => 'picture', // Default generated link
    97         'opntype' => '_blank' // Default open type
     97        'opntype' => '_blank', // Default open type
     98        'ordertype' => 'random', // Default sort order
     99        'orderasc' => 0, // Default sort order
    98100    );
    99101  $parm = array_change_key_case( $parm );
     
    182184      'description' => __( "Adds a thumbnail and its link (to the picture) inside your blog sidebar.",'pwg') );
    183185    $control_ops = array('width' => 780, 'height' => 300);
    184     $this->WP_Widget(PWGP_NAME, PWGP_NAME, $widget_ops, $control_ops);
     186    WP_Widget::__construct(PWGP_NAME, PWGP_NAME, $widget_ops, $control_ops);
     187    // deprecated in 4.3.0
     188    // $this->WP_Widget(PWGP_NAME, PWGP_NAME, $widget_ops, $control_ops);
    185189  }
    186190  // Code generator
     
    214218    $gallery['lnktype'] = strip_tags(stripslashes($new_gallery['lnktype']));
    215219    $gallery['opntype'] = strip_tags(stripslashes($new_gallery['opntype']));
     220    $gallery['ordertype'] = strip_tags(stripslashes($new_gallery['ordertype']));
     221    $gallery['orderasc'] = (strip_tags(stripslashes($new_gallery['orderasc'])) == 'true') ? 'true':'false';
    216222    if ( current_user_can('unfiltered_html') ) {
    217223      $gallery['text'] =  $new_gallery['text'];
  • piwigopress/trunk/piwigopress_admin.php

    r1206199 r1234996  
    1515    }
    1616    function Save_options( $post_ID ) {
    17       $PWGP_options = serialize(array(
    18         'previous_url'     =>  (string) $_POST['piwigopress_url'],
    19         'thumbnail_size'   =>  (string) $_POST['thumbnail_size'],
    20         'desc_check'    =>  (bool) $_POST['desc_check'],
    21         'display_name'    =>  (string) $_POST['display_name'],
    22         'photo_class'    =>  (string) $_POST['photo_class'],
    23         'link_type'      =>  (string) $_POST['link_type'],
    24         'open_type'      =>  (string) $_POST['open_type'],
    25       ));
    26       # support local path, too
    27       if ( strlen($_POST['piwigopress_url']) > 1 ) update_option( 'PiwigoPress_previous_options', $PWGP_options );
     17      if (array_key_exists('piwigopress_url', $_POST)) {
     18        $PWGP_options = serialize(array(
     19          'previous_url'     =>  (string) $_POST['piwigopress_url'],
     20          'thumbnail_size'   =>  (string) $_POST['thumbnail_size'],
     21          'desc_check'    =>  (bool) $_POST['desc_check'],
     22          'display_name'    =>  (string) $_POST['display_name'],
     23          'photo_class'    =>  (string) $_POST['photo_class'],
     24          'link_type'      =>  (string) $_POST['link_type'],
     25          'open_type'      =>  (string) $_POST['open_type'],
     26          ));
     27        # support local path, too
     28        if ( strlen($_POST['piwigopress_url']) > 1 ) update_option( 'PiwigoPress_previous_options', $PWGP_options );
     29      }
    2830    }
    2931    function Add_new_button($context=''){
  • piwigopress/trunk/readme.txt

    r1206199 r1234996  
    44Requires at least: 2.8.4
    55Tested up to: 4.3
    6 Stable tag: 2.30
     6Stable tag: 2.31
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2121
    2222PiwigoPress generates several highly valuable links in sidebars of your
    23 WordPress blog, all of them being optional: a random thumbnail linking to
     23WordPress blog, all of them being optional: a thumbnail linking to
    2424the corresponding picture page, menus directing to all albums defined
    2525as public in the gallery, several additional links to most recent, most
     
    7070* Square, Thumbnail, XXS - tiny,... : see you Piwigo configuration [Photo sizes] admin page
    7171* Orientation criteria : Any, portrait, landscape
    72 * Where to open photos on clicks
    73 * Link type
     72* Link type: Where to open photos on clicks
     73* Sort order: select photos according to these criteria - by default descending (most recent for dates)
     74* Ascending order: if one want ascending order
    7475* Number of pictures (0=none): Number of thumbnails to get
    7576
     
    130131= Widget (Only): With Link type Album which album would be selected ? =
    131132If Album = 0 the link will remain to the picture page.
    132 Otherwise, if Number of pictures > 0 the firt picture will link the Album page, next pictures will refer to their picture page.
     133Otherwise, if Number of pictures > 0 the first picture will link the Album page, next pictures will refer to their picture page.
    133134
    134135= Shortcode (Only): With Link type Album which album would be selected ? =
     
    213214== Changelog ==
    214215
     216= 2.31 =
     217* relax requirement what image sizes galleries have to provide (Issue 21)
     218* allow selecting the order of photos for the widget (Issue 20)
     219
    215220= 2.30 =
    216221* multiple image ids can be used in the shortcode (by Anton Lavrov)
Note: See TracChangeset for help on using the changeset viewer.