Changeset 1234996
- Timestamp:
- 09/01/2015 12:30:10 AM (11 years ago)
- Location:
- piwigopress/trunk
- Files:
-
- 19 edited
-
BUGS_TODO (modified) (1 diff)
-
PiwigoPress_options.php (modified) (5 diffs)
-
PiwigoPress_widget.php (modified) (5 diffs)
-
js/piwigopress_adm.js (modified) (1 diff)
-
js/piwigopress_adm.min.js (modified) (1 diff)
-
languages/pwg-de_DE.mo (modified) (previous)
-
languages/pwg-de_DE.po (modified) (5 diffs)
-
languages/pwg-es_ES.mo (modified) (previous)
-
languages/pwg-es_ES.po (modified) (6 diffs)
-
languages/pwg-fr_FR.mo (modified) (previous)
-
languages/pwg-fr_FR.po (modified) (7 diffs)
-
languages/pwg-hu_HU.mo (modified) (previous)
-
languages/pwg-hu_HU.po (modified) (5 diffs)
-
languages/pwg-it_IT.mo (modified) (previous)
-
languages/pwg-it_IT.po (modified) (6 diffs)
-
languages/pwg.pot (modified) (4 diffs)
-
piwigopress.php (modified) (5 diffs)
-
piwigopress_admin.php (modified) (1 diff)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
piwigopress/trunk/BUGS_TODO
r1136944 r1234996 1 1 TODO 2 2 ==== 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 3 7 - double previous: PiwigoPress_previous_options and PiwigoPress_previous_url -> unify 4 8 - support for oembed, register as oembed provider??? -
piwigopress/trunk/PiwigoPress_options.php
r1141552 r1234996 13 13 'calendar' => 'true', 'tags' => 'true', 'comments' => 'true', 'allsel' => 'true', 14 14 'mbcategories' => 'true', 'filter' => 'true', 'text' => '', 'lnktype' => 'picture', 15 'opntype' => '_blank', ' precode' => '', 'postcode' => '',15 'opntype' => '_blank', 'ordertype' => 'random', 'orderasc' => 'false', 'precode' => '', 'postcode' => '', 16 16 ) ); 17 17 … … 46 46 $lnktype = htmlspecialchars($gallery['lnktype']); 47 47 $opntype = htmlspecialchars($gallery['opntype']); 48 $ordertype = htmlspecialchars($gallery['ordertype']); 49 $orderasc = (htmlspecialchars($gallery['orderasc']) == 'true') ? 'checked="checked"':''; 48 50 $allsel = (htmlspecialchars($gallery['allsel']) == 'true') ? 'checked="checked"':''; 49 51 $allchk = (htmlspecialchars($gallery['allsel']) == 'true') ? 'display: none;':''; … … 118 120 <input type="radio" value="_self" id="'. $this->get_field_id('opntype') .'" class="post-format" name="'. $this->get_field_name('opntype') .'" ' 119 121 . checked($opntype,'_self',false) . '> 120 </fieldset></td>'; 121 // Orientation 122 echo '<td> 122 </fieldset><br> 123 123 <fieldset class="edge"> 124 124 <legend><span> ' . __('Format') . ' </span></legend> … … 132 132 <input type="radio" value="landscape" id="'. $this->get_field_id('format') .'" class="post-format" name="'. $this->get_field_name('format') .'" ' 133 133 . checked($format,'landscape',false) . '> 134 </fieldset><br> 134 </fieldset></td>'; 135 // Orientation 136 echo '<td> 135 137 <fieldset class="edge"> 136 138 <legend><span> ' . __('Link type') . ' </span></legend> … … 147 149 <input type="radio" value="albumpicture" id="'. $this->get_field_id('lnktype') .'" class="post-format" name="'. $this->get_field_name('lnktype') .'" ' 148 150 . 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>'; 150 175 // The categories menu 151 176 echo '<td> -
piwigopress/trunk/PiwigoPress_widget.php
r1141552 r1234996 44 44 $lnktype = empty($gallery['lnktype']) ? 'picture' : $gallery['lnktype']; 45 45 $opntype = empty($gallery['opntype']) ? '_blank' : $gallery['opntype']; 46 $ordertype = empty($gallery['ordertype']) ? 'random' : $gallery['ordertype']; 47 $orderasc = empty($gallery['orderasc']) ? '' : $gallery['orderasc']; 46 48 $category = empty($gallery['category']) ? 0 : $gallery['category']; 47 49 if ( $category==0 and ($lnktype=='album' || $lnktype=='albumpicture')) $lnktype = 'picture'; … … 57 59 if ($thumbnail) { 58 60 // 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 ); 62 67 if (!is_wp_error($response)) { 63 68 $thumbc = unserialize($response['body']); … … 68 73 if (!empty($precode)) { echo $precode; } 69 74 $pictures = $thumbc["result"]["images"]; 75 // var_dump($pictures); 70 76 foreach ($pictures as $picture) { 71 77 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 } 73 87 if ($thumbnail_size == 'sq') $picture['tn_url'] = $picture['derivatives']['square']['url'] ; 74 88 if ($thumbnail_size == 'sm') $picture['tn_url'] = $picture['derivatives']['small']['url'] ; … … 80 94 if ($thumbnail_size == 'xx') $picture['tn_url'] = $picture['derivatives']['xxlarge']['url'] ; 81 95 } 96 // 97 //var_dump($picture); 82 98 // value of alt tag: title + comment (if present) 83 99 $alt = htmlspecialchars($picture['name']); … … 108 124 } 109 125 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>'; 113 133 } 114 134 if (!empty($postcode)) { echo $postcode; } -
piwigopress/trunk/js/piwigopress_adm.js
r1206199 r1234996 221 221 var $opntype = $('#open_type input[type=radio][name=open_type]:checked').attr('value'); 222 222 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+"'"; 223 225 224 226 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 8 8 "Project-Id-Version: piwigopress\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"10 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 11 11 "PO-Revision-Date: 2015-02-15 22:35+0900\n" 12 12 "Last-Translator: Norbert Preining <norbert@preining.info>\n" … … 23 23 msgstr "Zufälliges Bild" 24 24 25 #: PiwigoPress_options.php:5 525 #: PiwigoPress_options.php:57 26 26 msgid "Title" 27 27 msgstr "Titel" 28 28 29 #: PiwigoPress_options.php: 5929 #: PiwigoPress_options.php:61 30 30 msgid "<strong>Local</strong> directory (if local)" 31 31 msgstr "<strong>Lokaler</strong> Ordner (falls lokal)" 32 32 33 #: PiwigoPress_options.php:6 333 #: PiwigoPress_options.php:65 34 34 msgid "(or) <strong>External</strong> gallery URL" 35 35 msgstr "(oder) <strong>Externe</strong> URL der Gallerie" 36 36 37 #: PiwigoPress_options.php:7 237 #: PiwigoPress_options.php:74 38 38 msgid "Size" 39 39 msgstr "Größe" 40 40 41 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6241 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 42 42 msgid "Square" 43 43 msgstr "Quadratisch" 44 44 45 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6345 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 46 46 msgid "Thumbnail" 47 47 msgstr "Thumbnail" 48 48 49 #: PiwigoPress_options.php: 79piwigopress_admin.php:6549 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 50 50 msgid "XXS - tiny" 51 51 msgstr "XXS - winzig" 52 52 53 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6453 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 54 54 msgid "XS - extra small" 55 55 msgstr "XS - sehr klein" 56 56 57 #: PiwigoPress_options.php: 8857 #: PiwigoPress_options.php:90 58 58 msgid "Large sizes" 59 59 msgstr "Große Größen" 60 60 61 #: PiwigoPress_options.php: 8861 #: PiwigoPress_options.php:90 62 62 msgid "Select a larger sized picture" 63 63 msgstr "Wählen Sien ein größeres Photo aus" 64 64 65 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6665 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 66 66 msgid "S - small" 67 67 msgstr "S - klein" 68 68 69 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6769 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 70 70 msgid "M - medium" 71 71 msgstr "M - mittel" 72 72 73 #: PiwigoPress_options.php: 98piwigopress_admin.php:6873 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 74 74 msgid "L - large" 75 75 msgstr "L - groß" 76 76 77 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6977 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 78 78 msgid "XL - extra large" 79 79 msgstr "XL - sehr groß" 80 80 81 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7081 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 82 82 msgid "XXL - huge" 83 83 msgstr "XXL - enorm" 84 84 85 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10985 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 86 86 msgid "Open type" 87 87 msgstr "Öffnungsart" 88 88 89 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11089 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 90 90 msgid "New window/tab" 91 91 msgstr "" 92 92 93 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11193 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 94 94 #, fuzzy 95 95 msgid "Same window/tab" … … 112 112 msgstr "Nur Landscape" 113 113 114 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100114 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 115 115 msgid "Link type" 116 116 msgstr "Art des links" 117 117 118 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101118 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 119 119 msgid "No link" 120 120 msgstr "Kein link" 121 121 122 #: PiwigoPress_options.php:14 0122 #: PiwigoPress_options.php:142 123 123 msgid "Album page if one selected" 124 124 msgstr "Albumsseite falls eines selektiert ist" 125 125 126 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103126 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 127 127 msgid "Picture page" 128 128 msgstr "Photoseite" 129 129 130 #: PiwigoPress_options.php:14 5130 #: PiwigoPress_options.php:147 131 131 msgid "Forced option if selected album id is 0 (see below)" 132 132 msgstr "" 133 133 "Erzwungene Opion falls die selektierte Album ID 0 ist (siehe unterhalb)" 134 134 135 #: PiwigoPress_options.php:14 6135 #: PiwigoPress_options.php:148 136 136 msgid "Picture page in Album" 137 137 msgstr "Photoseite innerhalb des Albums" 138 138 139 139 #: PiwigoPress_options.php:153 140 msgid "Sort order" 141 msgstr "" 142 143 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 144 #: PiwigoPress_widget.php:167 145 msgid "Random" 146 msgstr "Zufällig" 147 148 #: PiwigoPress_options.php:157 149 #, fuzzy 150 msgid "Creation date" 151 msgstr "Beschriftung" 152 153 #: PiwigoPress_options.php:160 154 msgid "Availability date" 155 msgstr "" 156 157 #: PiwigoPress_options.php:163 158 msgid "Rating score" 159 msgstr "" 160 161 #: PiwigoPress_options.php:166 162 msgid "Hits" 163 msgstr "" 164 165 #: PiwigoPress_options.php:171 166 msgid "Ascending order" 167 msgstr "" 168 169 #: PiwigoPress_options.php:178 140 170 msgid "Menu" 141 171 msgstr "Menü" 142 172 143 #: PiwigoPress_options.php:1 54173 #: PiwigoPress_options.php:179 144 174 msgid "Select all" 145 175 msgstr "Alle auswählen" 146 176 147 #: PiwigoPress_options.php:1 54177 #: PiwigoPress_options.php:179 148 178 msgid "Unselect all" 149 179 msgstr "Alle abwählen" 150 180 151 #: PiwigoPress_options.php:1 57181 #: PiwigoPress_options.php:182 152 182 msgid "Album menu" 153 183 msgstr "" 154 184 155 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138185 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 156 186 msgid "Most visited" 157 187 msgstr "Meist besucht" 158 188 159 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141189 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 160 190 msgid "Best rated" 161 191 msgstr "Am besten bewertet" 162 192 163 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144193 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 164 194 msgid "Most commented" 165 195 msgstr "Am meisten kommentiert" 166 196 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 172 198 msgid "Recent pics" 173 199 msgstr "Neue Photos" 174 200 175 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153201 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 176 202 msgid "Calendar" 177 203 msgstr "Kalendar" 178 204 179 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156205 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 180 206 msgid "Tags" 181 207 msgstr "Tags" 182 208 183 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159209 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 184 210 msgid "Comments" 185 211 msgstr "Kommentare" 186 212 187 #: PiwigoPress_options.php: 176213 #: PiwigoPress_options.php:201 188 214 msgid "Since X months (0=all)" 189 215 msgstr "Seit X Monaten (0 = alle)" 190 216 191 #: PiwigoPress_options.php: 181217 #: PiwigoPress_options.php:206 192 218 msgid "Album id (0=all)" 193 219 msgstr "Album id (0=alle)" 194 220 195 #: PiwigoPress_options.php: 183221 #: PiwigoPress_options.php:208 196 222 msgid "" 197 223 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" … … 199 225 "Falls Ablum id = 0 (alle): Link typ \"Album\" wird zu \"Photo\" gewechselt" 200 226 201 #: PiwigoPress_options.php: 186227 #: PiwigoPress_options.php:211 202 228 msgid "Number of pictures (0=none)" 203 229 msgstr "Anzahl der Photos (0=keines)" 204 230 205 #: PiwigoPress_options.php: 192231 #: PiwigoPress_options.php:217 206 232 msgid "Widget photo(s) pre-code" 207 233 msgstr "" 208 234 209 #: PiwigoPress_options.php: 194235 #: PiwigoPress_options.php:219 210 236 msgid "Widget photo(s) post-code" 211 237 msgstr "" 212 238 213 #: PiwigoPress_options.php:2 01239 #: PiwigoPress_options.php:226 214 240 msgid "Caption" 215 241 msgstr "Beschriftung" 216 242 217 #: PiwigoPress_options.php:2 02243 #: PiwigoPress_options.php:227 218 244 msgid "Automatically add paragraphs" 219 245 msgstr "" 220 246 221 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89247 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 222 248 msgid "CSS DIV class" 223 249 msgstr "" 224 250 225 #: PiwigoPress_options.php:2 14251 #: PiwigoPress_options.php:239 226 252 msgid "CSS IMG class" 227 253 msgstr "" 228 254 229 #: PiwigoPress_widget.php:1 25255 #: PiwigoPress_widget.php:145 230 256 msgid "Pictures categories" 231 257 msgstr "" … … 235 261 msgstr "" 236 262 237 #: piwigopress.php:18 2263 #: piwigopress.php:184 238 264 msgid "" 239 265 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." 240 266 msgstr "" 241 267 242 #: piwigopress.php:3 24268 #: piwigopress.php:330 243 269 msgid "FAQ" 244 270 msgstr "" 245 271 246 #: piwigopress.php:3 25272 #: piwigopress.php:331 247 273 msgid "PiwigoPress Support" 248 274 msgstr "" 249 275 250 #: piwigopress.php:3 26276 #: piwigopress.php:332 251 277 msgid "Piwigo site" 252 278 msgstr "" -
piwigopress/trunk/languages/pwg-es_ES.po
r1206199 r1234996 3 3 "Project-Id-Version: piwigopress\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"5 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Norbert Preining <norbert@preining.info>\n" … … 22 22 msgstr "Imágenes aleatorias" 23 23 24 #: PiwigoPress_options.php:5 524 #: PiwigoPress_options.php:57 25 25 msgid "Title" 26 26 msgstr "Título" 27 27 28 #: PiwigoPress_options.php: 5928 #: PiwigoPress_options.php:61 29 29 msgid "<strong>Local</strong> directory (if local)" 30 30 msgstr "Repertorio <strong>local</strong> (tan local)" 31 31 32 #: PiwigoPress_options.php:6 332 #: PiwigoPress_options.php:65 33 33 msgid "(or) <strong>External</strong> gallery URL" 34 34 msgstr "(o) URL de la galería <strong>externa</strong>" 35 35 36 #: PiwigoPress_options.php:7 236 #: PiwigoPress_options.php:74 37 37 msgid "Size" 38 38 msgstr "" 39 39 40 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6240 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 41 41 msgid "Square" 42 42 msgstr "Cuadrado" 43 43 44 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6344 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 45 45 msgid "Thumbnail" 46 46 msgstr "Diapositiva" 47 47 48 #: PiwigoPress_options.php: 79piwigopress_admin.php:6548 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 49 49 msgid "XXS - tiny" 50 50 msgstr "XXS - diminuto" 51 51 52 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6452 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 53 53 msgid "XS - extra small" 54 54 msgstr "XS - extrapequeño" 55 55 56 #: PiwigoPress_options.php: 8856 #: PiwigoPress_options.php:90 57 57 msgid "Large sizes" 58 58 msgstr "Los tamaños grandes" 59 59 60 #: PiwigoPress_options.php: 8860 #: PiwigoPress_options.php:90 61 61 msgid "Select a larger sized picture" 62 62 msgstr "Seleccione una imagen de mayor tamaño" 63 63 64 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6664 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 65 65 msgid "S - small" 66 66 msgstr "S - pequeño " 67 67 68 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6768 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 69 69 msgid "M - medium" 70 70 msgstr "M - mediano" 71 71 72 #: PiwigoPress_options.php: 98piwigopress_admin.php:6872 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 73 73 msgid "L - large" 74 74 msgstr "L - grande" 75 75 76 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6976 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 77 77 msgid "XL - extra large" 78 78 msgstr "XL - extragrande" 79 79 80 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7080 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 81 81 msgid "XXL - huge" 82 82 msgstr "XXL - enorme" 83 83 84 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10984 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 85 85 msgid "Open type" 86 86 msgstr "" 87 87 88 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11088 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 89 89 msgid "New window/tab" 90 90 msgstr "" 91 91 92 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11192 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 93 93 msgid "Same window/tab" 94 94 msgstr "" … … 110 110 msgstr "Paisaje sólo" 111 111 112 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100112 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 113 113 msgid "Link type" 114 114 msgstr "" 115 115 116 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101116 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 117 117 msgid "No link" 118 118 msgstr "" 119 119 120 #: PiwigoPress_options.php:14 0120 #: PiwigoPress_options.php:142 121 121 msgid "Album page if one selected" 122 122 msgstr "" 123 123 124 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103124 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 125 125 #, fuzzy 126 126 msgid "Picture page" 127 127 msgstr "Categoría de imágenes" 128 128 129 #: PiwigoPress_options.php:14 5129 #: PiwigoPress_options.php:147 130 130 msgid "Forced option if selected album id is 0 (see below)" 131 131 msgstr "" 132 132 133 #: PiwigoPress_options.php:14 6133 #: PiwigoPress_options.php:148 134 134 #, fuzzy 135 135 msgid "Picture page in Album" … … 137 137 138 138 #: PiwigoPress_options.php:153 139 msgid "Sort order" 140 msgstr "" 141 142 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 143 #: PiwigoPress_widget.php:167 144 msgid "Random" 145 msgstr "Aleatorio" 146 147 #: PiwigoPress_options.php:157 148 msgid "Creation date" 149 msgstr "" 150 151 #: PiwigoPress_options.php:160 152 msgid "Availability date" 153 msgstr "" 154 155 #: PiwigoPress_options.php:163 156 msgid "Rating score" 157 msgstr "" 158 159 #: PiwigoPress_options.php:166 160 msgid "Hits" 161 msgstr "" 162 163 #: PiwigoPress_options.php:171 164 msgid "Ascending order" 165 msgstr "" 166 167 #: PiwigoPress_options.php:178 139 168 msgid "Menu" 140 169 msgstr "" 141 170 142 #: PiwigoPress_options.php:1 54171 #: PiwigoPress_options.php:179 143 172 msgid "Select all" 144 173 msgstr "" 145 174 146 #: PiwigoPress_options.php:1 54175 #: PiwigoPress_options.php:179 147 176 msgid "Unselect all" 148 177 msgstr "" 149 178 150 #: PiwigoPress_options.php:1 57179 #: PiwigoPress_options.php:182 151 180 msgid "Album menu" 152 181 msgstr "" 153 182 154 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138183 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 155 184 msgid "Most visited" 156 185 msgstr "Más populares" 157 186 158 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141187 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 159 188 msgid "Best rated" 160 189 msgstr "Mejor anotadas" 161 190 162 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144191 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 163 192 msgid "Most commented" 164 193 msgstr "Más comentadas" 165 194 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 171 196 msgid "Recent pics" 172 197 msgstr "Imágenes recientes" 173 198 174 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153199 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 175 200 msgid "Calendar" 176 201 msgstr "Calendario" 177 202 178 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156203 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 179 204 msgid "Tags" 180 205 msgstr "Tags" 181 206 182 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159207 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 183 208 msgid "Comments" 184 209 msgstr "Comentarios" 185 210 186 #: PiwigoPress_options.php: 176211 #: PiwigoPress_options.php:201 187 212 msgid "Since X months (0=all)" 188 213 msgstr "Después X mes (0=todos)" 189 214 190 #: PiwigoPress_options.php: 181215 #: PiwigoPress_options.php:206 191 216 #, fuzzy 192 217 msgid "Album id (0=all)" 193 218 msgstr "Id de la categoría (0=todas)" 194 219 195 #: PiwigoPress_options.php: 183220 #: PiwigoPress_options.php:208 196 221 msgid "" 197 222 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" 198 223 msgstr "" 199 224 200 #: PiwigoPress_options.php: 186225 #: PiwigoPress_options.php:211 201 226 msgid "Number of pictures (0=none)" 202 227 msgstr "Número de imágenes (0=ninguno)" 203 228 204 #: PiwigoPress_options.php: 192229 #: PiwigoPress_options.php:217 205 230 msgid "Widget photo(s) pre-code" 206 231 msgstr "" 207 232 208 #: PiwigoPress_options.php: 194233 #: PiwigoPress_options.php:219 209 234 msgid "Widget photo(s) post-code" 210 235 msgstr "" 211 236 212 #: PiwigoPress_options.php:2 01237 #: PiwigoPress_options.php:226 213 238 msgid "Caption" 214 239 msgstr "" 215 240 216 #: PiwigoPress_options.php:2 02241 #: PiwigoPress_options.php:227 217 242 msgid "Automatically add paragraphs" 218 243 msgstr "" 219 244 220 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89245 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 221 246 msgid "CSS DIV class" 222 247 msgstr "Clasifica a CSS para DIV" 223 248 224 #: PiwigoPress_options.php:2 14249 #: PiwigoPress_options.php:239 225 250 msgid "CSS IMG class" 226 251 msgstr "Clasifica a CSS para IMG" 227 252 228 #: PiwigoPress_widget.php:1 25253 #: PiwigoPress_widget.php:145 229 254 msgid "Pictures categories" 230 255 msgstr "Categoría de imágenes" … … 237 262 "positivo." 238 263 239 #: piwigopress.php:18 2264 #: piwigopress.php:184 240 265 msgid "" 241 266 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." … … 244 269 "blog" 245 270 246 #: piwigopress.php:3 24271 #: piwigopress.php:330 247 272 msgid "FAQ" 248 273 msgstr "" 249 274 250 #: piwigopress.php:3 25275 #: piwigopress.php:331 251 276 msgid "PiwigoPress Support" 252 277 msgstr "" 253 278 254 #: piwigopress.php:3 26279 #: piwigopress.php:332 255 280 msgid "Piwigo site" 256 281 msgstr "" -
piwigopress/trunk/languages/pwg-fr_FR.po
r1206199 r1234996 3 3 "Project-Id-Version: piwigopress\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"5 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Norbert Preining <norbert@preining.info>\n" … … 22 22 msgstr "Images aléatoires" 23 23 24 #: PiwigoPress_options.php:5 524 #: PiwigoPress_options.php:57 25 25 msgid "Title" 26 26 msgstr "Titre" 27 27 28 #: PiwigoPress_options.php: 5928 #: PiwigoPress_options.php:61 29 29 msgid "<strong>Local</strong> directory (if local)" 30 30 msgstr "Répertoire <strong>local</strong> (si local)" 31 31 32 #: PiwigoPress_options.php:6 332 #: PiwigoPress_options.php:65 33 33 msgid "(or) <strong>External</strong> gallery URL" 34 34 msgstr "(ou) URL de la galerie <strong>externe</strong>" 35 35 36 #: PiwigoPress_options.php:7 236 #: PiwigoPress_options.php:74 37 37 msgid "Size" 38 38 msgstr "Dimension" 39 39 40 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6240 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 41 41 msgid "Square" 42 42 msgstr "Carré" 43 43 44 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6344 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 45 45 msgid "Thumbnail" 46 46 msgstr "Miniature" 47 47 48 #: PiwigoPress_options.php: 79piwigopress_admin.php:6548 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 49 49 msgid "XXS - tiny" 50 50 msgstr "XXS - minuscule" 51 51 52 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6452 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 53 53 msgid "XS - extra small" 54 54 msgstr "XS - très petit" 55 55 56 #: PiwigoPress_options.php: 8856 #: PiwigoPress_options.php:90 57 57 msgid "Large sizes" 58 58 msgstr "Grandes tailles" 59 59 60 #: PiwigoPress_options.php: 8860 #: PiwigoPress_options.php:90 61 61 msgid "Select a larger sized picture" 62 62 msgstr "Sélectionner une image dans une grande taille" 63 63 64 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6664 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 65 65 msgid "S - small" 66 66 msgstr "S - petit" 67 67 68 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6768 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 69 69 msgid "M - medium" 70 70 msgstr "M - moyen " 71 71 72 #: PiwigoPress_options.php: 98piwigopress_admin.php:6872 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 73 73 msgid "L - large" 74 74 msgstr "L - grand" 75 75 76 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6976 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 77 77 msgid "XL - extra large" 78 78 msgstr "XL - très grand" 79 79 80 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7080 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 81 81 msgid "XXL - huge" 82 82 msgstr "XXL - énorme" 83 83 84 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10984 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 85 85 #, fuzzy 86 86 msgid "Open type" 87 87 msgstr "Type de lien" 88 88 89 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11089 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 90 90 msgid "New window/tab" 91 91 msgstr "" 92 92 93 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11193 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 94 94 msgid "Same window/tab" 95 95 msgstr "" … … 111 111 msgstr "en paysage" 112 112 113 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100113 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 114 114 msgid "Link type" 115 115 msgstr "Type de lien" 116 116 117 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101117 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 118 118 msgid "No link" 119 119 msgstr "Aucun lien" 120 120 121 #: PiwigoPress_options.php:14 0121 #: PiwigoPress_options.php:142 122 122 msgid "Album page if one selected" 123 123 msgstr "Page de l'album (si un album est sélectionné)" 124 124 125 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103125 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 126 126 msgid "Picture page" 127 127 msgstr "Page de l'image" 128 128 129 #: PiwigoPress_options.php:14 5129 #: PiwigoPress_options.php:147 130 130 msgid "Forced option if selected album id is 0 (see below)" 131 131 msgstr "Option par défaut si l'album id, ci-dessous, est égal à 0" 132 132 133 #: PiwigoPress_options.php:14 6133 #: PiwigoPress_options.php:148 134 134 #, fuzzy 135 135 msgid "Picture page in Album" … … 137 137 138 138 #: PiwigoPress_options.php:153 139 msgid "Sort order" 140 msgstr "" 141 142 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 143 #: PiwigoPress_widget.php:167 144 msgid "Random" 145 msgstr "Aléatoire" 146 147 #: PiwigoPress_options.php:157 148 #, fuzzy 149 msgid "Creation date" 150 msgstr "Description" 151 152 #: PiwigoPress_options.php:160 153 msgid "Availability date" 154 msgstr "" 155 156 #: PiwigoPress_options.php:163 157 msgid "Rating score" 158 msgstr "" 159 160 #: PiwigoPress_options.php:166 161 msgid "Hits" 162 msgstr "" 163 164 #: PiwigoPress_options.php:171 165 msgid "Ascending order" 166 msgstr "" 167 168 #: PiwigoPress_options.php:178 139 169 msgid "Menu" 140 170 msgstr "Menu" 141 171 142 #: PiwigoPress_options.php:1 54172 #: PiwigoPress_options.php:179 143 173 msgid "Select all" 144 174 msgstr "Sélectionner tout" 145 175 146 #: PiwigoPress_options.php:1 54176 #: PiwigoPress_options.php:179 147 177 msgid "Unselect all" 148 178 msgstr "Désélectionner tout" 149 179 150 #: PiwigoPress_options.php:1 57180 #: PiwigoPress_options.php:182 151 181 #, fuzzy 152 182 msgid "Album menu" 153 183 msgstr "Page de l'album" 154 184 155 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138185 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 156 186 msgid "Most visited" 157 187 msgstr "Plus populaires" 158 188 159 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141189 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 160 190 msgid "Best rated" 161 191 msgstr "Mieux notées" 162 192 163 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144193 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 164 194 msgid "Most commented" 165 195 msgstr "Plus commentées" 166 196 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 172 198 msgid "Recent pics" 173 199 msgstr "Images récentes" 174 200 175 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153201 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 176 202 msgid "Calendar" 177 203 msgstr "Calendrier" 178 204 179 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156205 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 180 206 msgid "Tags" 181 207 msgstr "Tags" 182 208 183 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159209 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 184 210 msgid "Comments" 185 211 msgstr "Commentaires" 186 212 187 #: PiwigoPress_options.php: 176213 #: PiwigoPress_options.php:201 188 214 msgid "Since X months (0=all)" 189 215 msgstr "Depuis X mois (0=tous)" 190 216 191 #: PiwigoPress_options.php: 181217 #: PiwigoPress_options.php:206 192 218 msgid "Album id (0=all)" 193 219 msgstr "Id de l'album (0=tous)" 194 220 195 #: PiwigoPress_options.php: 183221 #: PiwigoPress_options.php:208 196 222 msgid "" 197 223 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" … … 199 225 "Si l'album Id = 0 (tous) alors le lien \"album\" basculera en \"picture\"" 200 226 201 #: PiwigoPress_options.php: 186227 #: PiwigoPress_options.php:211 202 228 msgid "Number of pictures (0=none)" 203 229 msgstr "Nombre d'images (0=aucune)" 204 230 205 #: PiwigoPress_options.php: 192231 #: PiwigoPress_options.php:217 206 232 msgid "Widget photo(s) pre-code" 207 233 msgstr "" 208 234 209 #: PiwigoPress_options.php: 194235 #: PiwigoPress_options.php:219 210 236 msgid "Widget photo(s) post-code" 211 237 msgstr "" 212 238 213 #: PiwigoPress_options.php:2 01239 #: PiwigoPress_options.php:226 214 240 msgid "Caption" 215 241 msgstr "Description" 216 242 217 #: PiwigoPress_options.php:2 02243 #: PiwigoPress_options.php:227 218 244 msgid "Automatically add paragraphs" 219 245 msgstr "Créer automatiquement les paragraphes" 220 246 221 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89247 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 222 248 msgid "CSS DIV class" 223 249 msgstr "Classe CSS pour DIV" 224 250 225 #: PiwigoPress_options.php:2 14251 #: PiwigoPress_options.php:239 226 252 msgid "CSS IMG class" 227 253 msgstr "Classe CSS pour IMG" 228 254 229 #: PiwigoPress_widget.php:1 25255 #: PiwigoPress_widget.php:145 230 256 msgid "Pictures categories" 231 257 msgstr "Catégorie d'images" … … 238 264 "positif." 239 265 240 #: piwigopress.php:18 2266 #: piwigopress.php:184 241 267 msgid "" 242 268 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." … … 245 271 "blog" 246 272 247 #: piwigopress.php:3 24273 #: piwigopress.php:330 248 274 msgid "FAQ" 249 275 msgstr "FAQ" 250 276 251 #: piwigopress.php:3 25277 #: piwigopress.php:331 252 278 msgid "PiwigoPress Support" 253 279 msgstr "Support PiwigoPress" 254 280 255 #: piwigopress.php:3 26281 #: piwigopress.php:332 256 282 msgid "Piwigo site" 257 283 msgstr "Site Piwigo" -
piwigopress/trunk/languages/pwg-hu_HU.po
r1206199 r1234996 3 3 "Project-Id-Version: piwigopress HU\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"5 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Norbert Preining <norbert@preining.info>\n" … … 22 22 msgstr "Véletlen kép" 23 23 24 #: PiwigoPress_options.php:5 524 #: PiwigoPress_options.php:57 25 25 msgid "Title" 26 26 msgstr "Cím" 27 27 28 #: PiwigoPress_options.php: 5928 #: PiwigoPress_options.php:61 29 29 msgid "<strong>Local</strong> directory (if local)" 30 30 msgstr "<strong>Helyi</strong> könyvtár (ha helyi)" 31 31 32 #: PiwigoPress_options.php:6 332 #: PiwigoPress_options.php:65 33 33 msgid "(or) <strong>External</strong> gallery URL" 34 34 msgstr "(vagy) <strong>Külső</strong> képtár URL" 35 35 36 #: PiwigoPress_options.php:7 236 #: PiwigoPress_options.php:74 37 37 msgid "Size" 38 38 msgstr "" 39 39 40 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6240 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 41 41 msgid "Square" 42 42 msgstr "Négyzetes " 43 43 44 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6344 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 45 45 msgid "Thumbnail" 46 46 msgstr "Bélyegkép" 47 47 48 #: PiwigoPress_options.php: 79piwigopress_admin.php:6548 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 49 49 msgid "XXS - tiny" 50 50 msgstr "XXS - legkissebb \t\t" 51 51 52 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6452 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 53 53 msgid "XS - extra small" 54 54 msgstr "XS - kissebb " 55 55 56 #: PiwigoPress_options.php: 8856 #: PiwigoPress_options.php:90 57 57 msgid "Large sizes" 58 58 msgstr "Nagy méretben" 59 59 60 #: PiwigoPress_options.php: 8860 #: PiwigoPress_options.php:90 61 61 msgid "Select a larger sized picture" 62 62 msgstr "Válasszon egy nagy méretű kép" 63 63 64 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6664 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 65 65 msgid "S - small" 66 66 msgstr "S - kicsi " 67 67 68 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6768 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 69 69 msgid "M - medium" 70 70 msgstr "M - közepes " 71 71 72 #: PiwigoPress_options.php: 98piwigopress_admin.php:6872 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 73 73 msgid "L - large" 74 74 msgstr "L - nagy" 75 75 76 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6976 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 77 77 msgid "XL - extra large" 78 78 msgstr "XL - nagyobb" 79 79 80 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7080 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 81 81 msgid "XXL - huge" 82 82 msgstr "XXL - legnagyobb" 83 83 84 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10984 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 85 85 msgid "Open type" 86 86 msgstr "" 87 87 88 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11088 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 89 89 msgid "New window/tab" 90 90 msgstr "" 91 91 92 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11192 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 93 93 msgid "Same window/tab" 94 94 msgstr "" … … 110 110 msgstr "Fekvő csak" 111 111 112 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100112 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 113 113 msgid "Link type" 114 114 msgstr "" 115 115 116 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101116 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 117 117 msgid "No link" 118 118 msgstr "" 119 119 120 #: PiwigoPress_options.php:14 0120 #: PiwigoPress_options.php:142 121 121 msgid "Album page if one selected" 122 122 msgstr "" 123 123 124 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103124 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 125 125 #, fuzzy 126 126 msgid "Picture page" 127 127 msgstr "Képek kategóriái" 128 128 129 #: PiwigoPress_options.php:14 5129 #: PiwigoPress_options.php:147 130 130 msgid "Forced option if selected album id is 0 (see below)" 131 131 msgstr "" 132 132 133 #: PiwigoPress_options.php:14 6133 #: PiwigoPress_options.php:148 134 134 #, fuzzy 135 135 msgid "Picture page in Album" … … 137 137 138 138 #: PiwigoPress_options.php:153 139 msgid "Sort order" 140 msgstr "" 141 142 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 143 #: PiwigoPress_widget.php:167 144 msgid "Random" 145 msgstr "Véletlen" 146 147 #: PiwigoPress_options.php:157 148 msgid "Creation date" 149 msgstr "" 150 151 #: PiwigoPress_options.php:160 152 msgid "Availability date" 153 msgstr "" 154 155 #: PiwigoPress_options.php:163 156 msgid "Rating score" 157 msgstr "" 158 159 #: PiwigoPress_options.php:166 160 msgid "Hits" 161 msgstr "" 162 163 #: PiwigoPress_options.php:171 164 msgid "Ascending order" 165 msgstr "" 166 167 #: PiwigoPress_options.php:178 139 168 msgid "Menu" 140 169 msgstr "" 141 170 142 #: PiwigoPress_options.php:1 54171 #: PiwigoPress_options.php:179 143 172 msgid "Select all" 144 173 msgstr "" 145 174 146 #: PiwigoPress_options.php:1 54175 #: PiwigoPress_options.php:179 147 176 msgid "Unselect all" 148 177 msgstr "" 149 178 150 #: PiwigoPress_options.php:1 57179 #: PiwigoPress_options.php:182 151 180 msgid "Album menu" 152 181 msgstr "" 153 182 154 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138183 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 155 184 msgid "Most visited" 156 185 msgstr "Legnézettebb" 157 186 158 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141187 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 159 188 msgid "Best rated" 160 189 msgstr "Legjobban értékelt" 161 190 162 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144191 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 163 192 msgid "Most commented" 164 193 msgstr "Legtöbb hozzászólás" 165 194 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 171 196 msgid "Recent pics" 172 197 msgstr "Legutóbbi képek" 173 198 174 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153199 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 175 200 msgid "Calendar" 176 201 msgstr "Naptár" 177 202 178 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156203 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 179 204 msgid "Tags" 180 205 msgstr "Címkék" 181 206 182 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159207 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 183 208 msgid "Comments" 184 209 msgstr "Hozzászólások" 185 210 186 #: PiwigoPress_options.php: 176211 #: PiwigoPress_options.php:201 187 212 msgid "Since X months (0=all)" 188 213 msgstr "X hónap óta (0 = összes)" 189 214 190 #: PiwigoPress_options.php: 181215 #: PiwigoPress_options.php:206 191 216 #, fuzzy 192 217 msgid "Album id (0=all)" 193 218 msgstr "Kategória ID (0 = összes)" 194 219 195 #: PiwigoPress_options.php: 183220 #: PiwigoPress_options.php:208 196 221 msgid "" 197 222 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" 198 223 msgstr "" 199 224 200 #: PiwigoPress_options.php: 186225 #: PiwigoPress_options.php:211 201 226 msgid "Number of pictures (0=none)" 202 227 msgstr "Képek száma (0 = nincs)" 203 228 204 #: PiwigoPress_options.php: 192229 #: PiwigoPress_options.php:217 205 230 msgid "Widget photo(s) pre-code" 206 231 msgstr "" 207 232 208 #: PiwigoPress_options.php: 194233 #: PiwigoPress_options.php:219 209 234 msgid "Widget photo(s) post-code" 210 235 msgstr "" 211 236 212 #: PiwigoPress_options.php:2 01237 #: PiwigoPress_options.php:226 213 238 msgid "Caption" 214 239 msgstr "" 215 240 216 #: PiwigoPress_options.php:2 02241 #: PiwigoPress_options.php:227 217 242 msgid "Automatically add paragraphs" 218 243 msgstr "" 219 244 220 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89245 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 221 246 msgid "CSS DIV class" 222 247 msgstr "CSS DIV class" 223 248 224 #: PiwigoPress_options.php:2 14249 #: PiwigoPress_options.php:239 225 250 msgid "CSS IMG class" 226 251 msgstr "CSS IMG class" 227 252 228 #: PiwigoPress_widget.php:1 25253 #: PiwigoPress_widget.php:145 229 254 msgid "Pictures categories" 230 255 msgstr "Képek kategóriái" … … 237 262 "lennie." 238 263 239 #: piwigopress.php:18 2264 #: piwigopress.php:184 240 265 msgid "" 241 266 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." 242 267 msgstr "Egy bélyegképet és linkjét adja (a képhez) a blog oldalsávján belül" 243 268 244 #: piwigopress.php:3 24269 #: piwigopress.php:330 245 270 msgid "FAQ" 246 271 msgstr "" 247 272 248 #: piwigopress.php:3 25273 #: piwigopress.php:331 249 274 msgid "PiwigoPress Support" 250 275 msgstr "" 251 276 252 #: piwigopress.php:3 26277 #: piwigopress.php:332 253 278 msgid "Piwigo site" 254 279 msgstr "" -
piwigopress/trunk/languages/pwg-it_IT.po
r1206199 r1234996 3 3 "Project-Id-Version: piwigopress\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"5 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Norbert Preining <norbert@preining.info>\n" … … 22 22 msgstr "Immagini a caso" 23 23 24 #: PiwigoPress_options.php:5 524 #: PiwigoPress_options.php:57 25 25 msgid "Title" 26 26 msgstr "Titolo" 27 27 28 #: PiwigoPress_options.php: 5928 #: PiwigoPress_options.php:61 29 29 msgid "<strong>Local</strong> directory (if local)" 30 30 msgstr "Directory <strong>locale</strong> (se locale)" 31 31 32 #: PiwigoPress_options.php:6 332 #: PiwigoPress_options.php:65 33 33 msgid "(or) <strong>External</strong> gallery URL" 34 34 msgstr "(o) URL della galleria <strong>esterna</strong>" 35 35 36 #: PiwigoPress_options.php:7 236 #: PiwigoPress_options.php:74 37 37 msgid "Size" 38 38 msgstr "" 39 39 40 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6240 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 41 41 msgid "Square" 42 42 msgstr "Quadrata" 43 43 44 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6344 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 45 45 msgid "Thumbnail" 46 46 msgstr "Miniatura" 47 47 48 #: PiwigoPress_options.php: 79piwigopress_admin.php:6548 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 49 49 msgid "XXS - tiny" 50 50 msgstr "XXS - Minuscola" 51 51 52 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6452 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 53 53 msgid "XS - extra small" 54 54 msgstr "XS - Piccolissima" 55 55 56 #: PiwigoPress_options.php: 8856 #: PiwigoPress_options.php:90 57 57 msgid "Large sizes" 58 58 msgstr "Grandi dimensioni" 59 59 60 #: PiwigoPress_options.php: 8860 #: PiwigoPress_options.php:90 61 61 msgid "Select a larger sized picture" 62 62 msgstr "Selezionare un'immagine di maggiori dimensioni" 63 63 64 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6664 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 65 65 msgid "S - small" 66 66 msgstr "S - Piccola" 67 67 68 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6768 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 69 69 msgid "M - medium" 70 70 msgstr "M - media" 71 71 72 #: PiwigoPress_options.php: 98piwigopress_admin.php:6872 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 73 73 msgid "L - large" 74 74 msgstr "L - grande" 75 75 76 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6976 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 77 77 msgid "XL - extra large" 78 78 msgstr "XL - grandissima" 79 79 80 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7080 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 81 81 msgid "XXL - huge" 82 82 msgstr "XXL - enorme" 83 83 84 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10984 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 85 85 msgid "Open type" 86 86 msgstr "" 87 87 88 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11088 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 89 89 msgid "New window/tab" 90 90 msgstr "" 91 91 92 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11192 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 93 93 msgid "Same window/tab" 94 94 msgstr "" … … 110 110 msgstr "Paesaggio solo" 111 111 112 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100112 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 113 113 msgid "Link type" 114 114 msgstr "" 115 115 116 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101116 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 117 117 msgid "No link" 118 118 msgstr "" 119 119 120 #: PiwigoPress_options.php:14 0120 #: PiwigoPress_options.php:142 121 121 msgid "Album page if one selected" 122 122 msgstr "" 123 123 124 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103124 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 125 125 #, fuzzy 126 126 msgid "Picture page" 127 127 msgstr "Categorie d'immagini" 128 128 129 #: PiwigoPress_options.php:14 5129 #: PiwigoPress_options.php:147 130 130 msgid "Forced option if selected album id is 0 (see below)" 131 131 msgstr "" 132 132 133 #: PiwigoPress_options.php:14 6133 #: PiwigoPress_options.php:148 134 134 #, fuzzy 135 135 msgid "Picture page in Album" … … 137 137 138 138 #: PiwigoPress_options.php:153 139 msgid "Sort order" 140 msgstr "" 141 142 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 143 #: PiwigoPress_widget.php:167 144 msgid "Random" 145 msgstr "Random" 146 147 #: PiwigoPress_options.php:157 148 msgid "Creation date" 149 msgstr "" 150 151 #: PiwigoPress_options.php:160 152 msgid "Availability date" 153 msgstr "" 154 155 #: PiwigoPress_options.php:163 156 msgid "Rating score" 157 msgstr "" 158 159 #: PiwigoPress_options.php:166 160 msgid "Hits" 161 msgstr "" 162 163 #: PiwigoPress_options.php:171 164 msgid "Ascending order" 165 msgstr "" 166 167 #: PiwigoPress_options.php:178 139 168 msgid "Menu" 140 169 msgstr "" 141 170 142 #: PiwigoPress_options.php:1 54171 #: PiwigoPress_options.php:179 143 172 msgid "Select all" 144 173 msgstr "" 145 174 146 #: PiwigoPress_options.php:1 54175 #: PiwigoPress_options.php:179 147 176 msgid "Unselect all" 148 177 msgstr "" 149 178 150 #: PiwigoPress_options.php:1 57179 #: PiwigoPress_options.php:182 151 180 msgid "Album menu" 152 181 msgstr "" 153 182 154 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138183 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 155 184 msgid "Most visited" 156 185 msgstr "Le più viste" 157 186 158 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141187 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 159 188 msgid "Best rated" 160 189 msgstr "Le più votate" 161 190 162 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144191 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 163 192 msgid "Most commented" 164 193 msgstr "Plus commentées" 165 194 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 171 196 msgid "Recent pics" 172 197 msgstr "Immagini recenti" 173 198 174 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153199 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 175 200 msgid "Calendar" 176 201 msgstr "Calendario" 177 202 178 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156203 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 179 204 msgid "Tags" 180 205 msgstr "Tags" 181 206 182 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159207 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 183 208 msgid "Comments" 184 209 msgstr "Commenti" 185 210 186 #: PiwigoPress_options.php: 176211 #: PiwigoPress_options.php:201 187 212 msgid "Since X months (0=all)" 188 213 msgstr "Da X mesi (0=tutti)" 189 214 190 #: PiwigoPress_options.php: 181215 #: PiwigoPress_options.php:206 191 216 #, fuzzy 192 217 msgid "Album id (0=all)" 193 218 msgstr "Id della categoria (0=tutte)" 194 219 195 #: PiwigoPress_options.php: 183220 #: PiwigoPress_options.php:208 196 221 msgid "" 197 222 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" 198 223 msgstr "" 199 224 200 #: PiwigoPress_options.php: 186225 #: PiwigoPress_options.php:211 201 226 msgid "Number of pictures (0=none)" 202 227 msgstr "Numero d'immagini (0=nessuna)" 203 228 204 #: PiwigoPress_options.php: 192229 #: PiwigoPress_options.php:217 205 230 msgid "Widget photo(s) pre-code" 206 231 msgstr "" 207 232 208 #: PiwigoPress_options.php: 194233 #: PiwigoPress_options.php:219 209 234 msgid "Widget photo(s) post-code" 210 235 msgstr "" 211 236 212 #: PiwigoPress_options.php:2 01237 #: PiwigoPress_options.php:226 213 238 msgid "Caption" 214 239 msgstr "" 215 240 216 #: PiwigoPress_options.php:2 02241 #: PiwigoPress_options.php:227 217 242 msgid "Automatically add paragraphs" 218 243 msgstr "" 219 244 220 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89245 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 221 246 msgid "CSS DIV class" 222 247 msgstr "Classe CSS per DIV" 223 248 224 #: PiwigoPress_options.php:2 14249 #: PiwigoPress_options.php:239 225 250 msgid "CSS IMG class" 226 251 msgstr "Classe CSS per IMG" 227 252 228 #: PiwigoPress_widget.php:1 25253 #: PiwigoPress_widget.php:145 229 254 msgid "Pictures categories" 230 255 msgstr "Categorie d'immagini" … … 237 262 "positivo." 238 263 239 #: piwigopress.php:18 2264 #: piwigopress.php:184 240 265 msgid "" 241 266 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." … … 244 269 "laterale del blog" 245 270 246 #: piwigopress.php:3 24271 #: piwigopress.php:330 247 272 msgid "FAQ" 248 273 msgstr "" 249 274 250 #: piwigopress.php:3 25275 #: piwigopress.php:331 251 276 msgid "PiwigoPress Support" 252 277 msgstr "" 253 278 254 #: piwigopress.php:3 26279 #: piwigopress.php:332 255 280 msgid "Piwigo site" 256 281 msgstr "" -
piwigopress/trunk/languages/pwg.pot
r1206199 r1234996 9 9 "Project-Id-Version: piwigopress\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2015-0 7-25 14:57+0900\n"11 "POT-Creation-Date: 2015-09-01 09:04+0900\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 22 22 msgstr "" 23 23 24 #: PiwigoPress_options.php:5 524 #: PiwigoPress_options.php:57 25 25 msgid "Title" 26 26 msgstr "" 27 27 28 #: PiwigoPress_options.php: 5928 #: PiwigoPress_options.php:61 29 29 msgid "<strong>Local</strong> directory (if local)" 30 30 msgstr "" 31 31 32 #: PiwigoPress_options.php:6 332 #: PiwigoPress_options.php:65 33 33 msgid "(or) <strong>External</strong> gallery URL" 34 34 msgstr "" 35 35 36 #: PiwigoPress_options.php:7 236 #: PiwigoPress_options.php:74 37 37 msgid "Size" 38 38 msgstr "" 39 39 40 #: PiwigoPress_options.php:7 3piwigopress_admin.php:6240 #: PiwigoPress_options.php:75 piwigopress_admin.php:62 41 41 msgid "Square" 42 42 msgstr "" 43 43 44 #: PiwigoPress_options.php:7 6piwigopress_admin.php:6344 #: PiwigoPress_options.php:78 piwigopress_admin.php:63 45 45 msgid "Thumbnail" 46 46 msgstr "" 47 47 48 #: PiwigoPress_options.php: 79piwigopress_admin.php:6548 #: PiwigoPress_options.php:81 piwigopress_admin.php:65 49 49 msgid "XXS - tiny" 50 50 msgstr "" 51 51 52 #: PiwigoPress_options.php:8 2piwigopress_admin.php:6452 #: PiwigoPress_options.php:84 piwigopress_admin.php:64 53 53 msgid "XS - extra small" 54 54 msgstr "" 55 55 56 #: PiwigoPress_options.php: 8856 #: PiwigoPress_options.php:90 57 57 msgid "Large sizes" 58 58 msgstr "" 59 59 60 #: PiwigoPress_options.php: 8860 #: PiwigoPress_options.php:90 61 61 msgid "Select a larger sized picture" 62 62 msgstr "" 63 63 64 #: PiwigoPress_options.php:9 2piwigopress_admin.php:6664 #: PiwigoPress_options.php:94 piwigopress_admin.php:66 65 65 msgid "S - small" 66 66 msgstr "" 67 67 68 #: PiwigoPress_options.php:9 5piwigopress_admin.php:6768 #: PiwigoPress_options.php:97 piwigopress_admin.php:67 69 69 msgid "M - medium" 70 70 msgstr "" 71 71 72 #: PiwigoPress_options.php: 98piwigopress_admin.php:6872 #: PiwigoPress_options.php:100 piwigopress_admin.php:68 73 73 msgid "L - large" 74 74 msgstr "" 75 75 76 #: PiwigoPress_options.php:10 1piwigopress_admin.php:6976 #: PiwigoPress_options.php:103 piwigopress_admin.php:69 77 77 msgid "XL - extra large" 78 78 msgstr "" 79 79 80 #: PiwigoPress_options.php:10 4piwigopress_admin.php:7080 #: PiwigoPress_options.php:106 piwigopress_admin.php:70 81 81 msgid "XXL - huge" 82 82 msgstr "" 83 83 84 #: PiwigoPress_options.php:11 3piwigopress_admin.php:10984 #: PiwigoPress_options.php:115 piwigopress_admin.php:109 85 85 msgid "Open type" 86 86 msgstr "" 87 87 88 #: PiwigoPress_options.php:11 4piwigopress_admin.php:11088 #: PiwigoPress_options.php:116 piwigopress_admin.php:110 89 89 msgid "New window/tab" 90 90 msgstr "" 91 91 92 #: PiwigoPress_options.php:11 7piwigopress_admin.php:11192 #: PiwigoPress_options.php:119 piwigopress_admin.php:111 93 93 msgid "Same window/tab" 94 94 msgstr "" … … 110 110 msgstr "" 111 111 112 #: PiwigoPress_options.php:13 6piwigopress_admin.php:100112 #: PiwigoPress_options.php:138 piwigopress_admin.php:100 113 113 msgid "Link type" 114 114 msgstr "" 115 115 116 #: PiwigoPress_options.php:13 7piwigopress_admin.php:101116 #: PiwigoPress_options.php:139 piwigopress_admin.php:101 117 117 msgid "No link" 118 118 msgstr "" 119 119 120 #: PiwigoPress_options.php:14 0120 #: PiwigoPress_options.php:142 121 121 msgid "Album page if one selected" 122 122 msgstr "" 123 123 124 #: PiwigoPress_options.php:14 3piwigopress_admin.php:103124 #: PiwigoPress_options.php:145 piwigopress_admin.php:103 125 125 msgid "Picture page" 126 126 msgstr "" 127 127 128 #: PiwigoPress_options.php:14 5128 #: PiwigoPress_options.php:147 129 129 msgid "Forced option if selected album id is 0 (see below)" 130 130 msgstr "" 131 131 132 #: PiwigoPress_options.php:14 6132 #: PiwigoPress_options.php:148 133 133 msgid "Picture page in Album" 134 134 msgstr "" 135 135 136 136 #: PiwigoPress_options.php:153 137 msgid "Sort order" 138 msgstr "" 139 140 #: PiwigoPress_options.php:154 PiwigoPress_options.php:190 141 #: PiwigoPress_widget.php:167 142 msgid "Random" 143 msgstr "" 144 145 #: PiwigoPress_options.php:157 146 msgid "Creation date" 147 msgstr "" 148 149 #: PiwigoPress_options.php:160 150 msgid "Availability date" 151 msgstr "" 152 153 #: PiwigoPress_options.php:163 154 msgid "Rating score" 155 msgstr "" 156 157 #: PiwigoPress_options.php:166 158 msgid "Hits" 159 msgstr "" 160 161 #: PiwigoPress_options.php:171 162 msgid "Ascending order" 163 msgstr "" 164 165 #: PiwigoPress_options.php:178 137 166 msgid "Menu" 138 167 msgstr "" 139 168 140 #: PiwigoPress_options.php:1 54169 #: PiwigoPress_options.php:179 141 170 msgid "Select all" 142 171 msgstr "" 143 172 144 #: PiwigoPress_options.php:1 54173 #: PiwigoPress_options.php:179 145 174 msgid "Unselect all" 146 175 msgstr "" 147 176 148 #: PiwigoPress_options.php:1 57177 #: PiwigoPress_options.php:182 149 178 msgid "Album menu" 150 179 msgstr "" 151 180 152 #: PiwigoPress_options.php:1 59 PiwigoPress_widget.php:138181 #: PiwigoPress_options.php:184 PiwigoPress_widget.php:158 153 182 msgid "Most visited" 154 183 msgstr "" 155 184 156 #: PiwigoPress_options.php:1 61 PiwigoPress_widget.php:141185 #: PiwigoPress_options.php:186 PiwigoPress_widget.php:161 157 186 msgid "Best rated" 158 187 msgstr "" 159 188 160 #: PiwigoPress_options.php:1 63 PiwigoPress_widget.php:144189 #: PiwigoPress_options.php:188 PiwigoPress_widget.php:164 161 190 msgid "Most commented" 162 191 msgstr "" 163 192 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 169 194 msgid "Recent pics" 170 195 msgstr "" 171 196 172 #: PiwigoPress_options.php:1 69 PiwigoPress_widget.php:153197 #: PiwigoPress_options.php:194 PiwigoPress_widget.php:173 173 198 msgid "Calendar" 174 199 msgstr "" 175 200 176 #: PiwigoPress_options.php:1 71 PiwigoPress_widget.php:156201 #: PiwigoPress_options.php:196 PiwigoPress_widget.php:176 177 202 msgid "Tags" 178 203 msgstr "" 179 204 180 #: PiwigoPress_options.php:1 73 PiwigoPress_widget.php:159205 #: PiwigoPress_options.php:198 PiwigoPress_widget.php:179 181 206 msgid "Comments" 182 207 msgstr "" 183 208 184 #: PiwigoPress_options.php: 176209 #: PiwigoPress_options.php:201 185 210 msgid "Since X months (0=all)" 186 211 msgstr "" 187 212 188 #: PiwigoPress_options.php: 181213 #: PiwigoPress_options.php:206 189 214 msgid "Album id (0=all)" 190 215 msgstr "" 191 216 192 #: PiwigoPress_options.php: 183217 #: PiwigoPress_options.php:208 193 218 msgid "" 194 219 "If Album id = 0 (all): Link type \"album\" is going to switch to \"picture\"" 195 220 msgstr "" 196 221 197 #: PiwigoPress_options.php: 186222 #: PiwigoPress_options.php:211 198 223 msgid "Number of pictures (0=none)" 199 224 msgstr "" 200 225 201 #: PiwigoPress_options.php: 192226 #: PiwigoPress_options.php:217 202 227 msgid "Widget photo(s) pre-code" 203 228 msgstr "" 204 229 205 #: PiwigoPress_options.php: 194230 #: PiwigoPress_options.php:219 206 231 msgid "Widget photo(s) post-code" 207 232 msgstr "" 208 233 209 #: PiwigoPress_options.php:2 01234 #: PiwigoPress_options.php:226 210 235 msgid "Caption" 211 236 msgstr "" 212 237 213 #: PiwigoPress_options.php:2 02238 #: PiwigoPress_options.php:227 214 239 msgid "Automatically add paragraphs" 215 240 msgstr "" 216 241 217 #: PiwigoPress_options.php:2 11piwigopress_admin.php:89242 #: PiwigoPress_options.php:236 piwigopress_admin.php:89 218 243 msgid "CSS DIV class" 219 244 msgstr "" 220 245 221 #: PiwigoPress_options.php:2 14246 #: PiwigoPress_options.php:239 222 247 msgid "CSS IMG class" 223 248 msgstr "" 224 249 225 #: PiwigoPress_widget.php:1 25250 #: PiwigoPress_widget.php:145 226 251 msgid "Pictures categories" 227 252 msgstr "" … … 231 256 msgstr "" 232 257 233 #: piwigopress.php:18 2258 #: piwigopress.php:184 234 259 msgid "" 235 260 "Adds a thumbnail and its link (to the picture) inside your blog sidebar." 236 261 msgstr "" 237 262 238 #: piwigopress.php:3 24263 #: piwigopress.php:330 239 264 msgid "FAQ" 240 265 msgstr "" 241 266 242 #: piwigopress.php:3 25267 #: piwigopress.php:331 243 268 msgid "PiwigoPress Support" 244 269 msgstr "" 245 270 246 #: piwigopress.php:3 26271 #: piwigopress.php:332 247 272 msgid "Piwigo site" 248 273 msgstr "" -
piwigopress/trunk/piwigopress.php
r1206199 r1234996 4 4 Plugin URI: http://wordpress.org/extend/plugins/piwigopress/ 5 5 Description: 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.3 06 Version: 2.31 7 7 Author: Norbert Preining 8 8 Author URI: http://www.preining.info/ … … 28 28 */ 29 29 if (!defined('PWGP_NAME')) define('PWGP_NAME','PiwigoPress'); 30 if (!defined('PWGP_VERSION')) define('PWGP_VERSION','2.3. 0');30 if (!defined('PWGP_VERSION')) define('PWGP_VERSION','2.3.1'); 31 31 32 32 load_plugin_textdomain('pwg', false, dirname (plugin_basename( __FILE__ ) ) . '/languages/'); … … 95 95 'style' => '', // Specific style 96 96 '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 98 100 ); 99 101 $parm = array_change_key_case( $parm ); … … 182 184 'description' => __( "Adds a thumbnail and its link (to the picture) inside your blog sidebar.",'pwg') ); 183 185 $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); 185 189 } 186 190 // Code generator … … 214 218 $gallery['lnktype'] = strip_tags(stripslashes($new_gallery['lnktype'])); 215 219 $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'; 216 222 if ( current_user_can('unfiltered_html') ) { 217 223 $gallery['text'] = $new_gallery['text']; -
piwigopress/trunk/piwigopress_admin.php
r1206199 r1234996 15 15 } 16 16 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 } 28 30 } 29 31 function Add_new_button($context=''){ -
piwigopress/trunk/readme.txt
r1206199 r1234996 4 4 Requires at least: 2.8.4 5 5 Tested up to: 4.3 6 Stable tag: 2.3 06 Stable tag: 2.31 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 21 22 22 PiwigoPress generates several highly valuable links in sidebars of your 23 WordPress blog, all of them being optional: a randomthumbnail linking to23 WordPress blog, all of them being optional: a thumbnail linking to 24 24 the corresponding picture page, menus directing to all albums defined 25 25 as public in the gallery, several additional links to most recent, most … … 70 70 * Square, Thumbnail, XXS - tiny,... : see you Piwigo configuration [Photo sizes] admin page 71 71 * 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 74 75 * Number of pictures (0=none): Number of thumbnails to get 75 76 … … 130 131 = Widget (Only): With Link type Album which album would be selected ? = 131 132 If Album = 0 the link will remain to the picture page. 132 Otherwise, if Number of pictures > 0 the fir t picture will link the Album page, next pictures will refer to their picture page.133 Otherwise, if Number of pictures > 0 the first picture will link the Album page, next pictures will refer to their picture page. 133 134 134 135 = Shortcode (Only): With Link type Album which album would be selected ? = … … 213 214 == Changelog == 214 215 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 215 220 = 2.30 = 216 221 * multiple image ids can be used in the shortcode (by Anton Lavrov)
Note: See TracChangeset
for help on using the changeset viewer.