WP Photo Album Plus - Version 6.3.18

Version Description

Download this release

Release Info

Developer opajaap
Plugin Icon wp plugin WP Photo Album Plus
Version 6.3.18
Comparing to
See all releases

Code changes from version 6.3.17 to 6.3.18

Files changed (55) hide show
  1. js/wppa-lightbox.js +5 -3
  2. js/wppa-lightbox.min.js +4 -3
  3. js/wppa-slideshow.js +2 -2
  4. js/wppa-slideshow.min.js +4 -3
  5. languages/wp-photo-album-plus-da_DK.mo +0 -0
  6. languages/wp-photo-album-plus-da_DK.po +54 -44
  7. languages/wp-photo-album-plus-de_DE.mo +0 -0
  8. languages/wp-photo-album-plus-de_DE.po +53 -44
  9. languages/wp-photo-album-plus-es_CA.mo +0 -0
  10. languages/wp-photo-album-plus-es_CA.po +131 -43
  11. languages/wp-photo-album-plus-es_ES.mo +0 -0
  12. languages/wp-photo-album-plus-es_ES.po +126 -43
  13. languages/wp-photo-album-plus-fi.mo +0 -0
  14. languages/wp-photo-album-plus-fi.po +144 -43
  15. languages/wp-photo-album-plus-fr_FR.mo +0 -0
  16. languages/wp-photo-album-plus-fr_FR.po +1809 -1790
  17. languages/wp-photo-album-plus-he_IL.mo +0 -0
  18. languages/wp-photo-album-plus-he_IL.po +126 -45
  19. languages/wp-photo-album-plus-hu_HU.mo +0 -0
  20. languages/wp-photo-album-plus-hu_HU.po +131 -45
  21. languages/wp-photo-album-plus-it_IT.mo +0 -0
  22. languages/wp-photo-album-plus-it_IT.po +53 -44
  23. languages/wp-photo-album-plus-ja.mo +0 -0
  24. languages/wp-photo-album-plus-ja.po +52 -43
  25. languages/wp-photo-album-plus-pl_PL.mo +0 -0
  26. languages/wp-photo-album-plus-pl_PL.po +53 -44
  27. languages/wp-photo-album-plus-pt_BR.mo +0 -0
  28. languages/wp-photo-album-plus-pt_BR.po +138 -44
  29. languages/wp-photo-album-plus-pt_PT.mo +0 -0
  30. languages/wp-photo-album-plus-pt_PT.po +138 -44
  31. languages/wp-photo-album-plus-ru_RU.mo +0 -0
  32. languages/wp-photo-album-plus-ru_RU.po +138 -44
  33. languages/wp-photo-album-plus-sk_SK.mo +0 -0
  34. languages/wp-photo-album-plus-sk_SK.po +54 -44
  35. languages/wp-photo-album-plus-tr_TR.mo +0 -0
  36. languages/wp-photo-album-plus-tr_TR.po +138 -44
  37. languages/wp-photo-album-plus-uk_UA.mo +0 -0
  38. languages/wp-photo-album-plus-uk_UA.po +138 -44
  39. languages/wp-photo-album-plus-zh_CN.mo +0 -0
  40. languages/wp-photo-album-plus-zh_CN.po +136 -44
  41. languages/wp-photo-album-plus-zh_TW.mo +0 -0
  42. languages/wp-photo-album-plus-zh_TW.po +136 -44
  43. readme.txt +18 -2
  44. wppa-boxes-html.php +5 -5
  45. wppa-breadcrumb.php +41 -20
  46. wppa-functions.php +1 -1
  47. wppa-links.php +19 -1
  48. wppa-non-admin.php +3 -1
  49. wppa-potd-widget.php +1 -1
  50. wppa-settings-autosave.php +25 -6
  51. wppa-setup.php +3 -1
  52. wppa-slideshow.php +9 -6
  53. wppa-widget-admin.php +33 -33
  54. wppa-widget-functions.php +30 -3
  55. wppa.php +3 -3
js/wppa-lightbox.js CHANGED
@@ -3,7 +3,7 @@
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaLightboxVersion = '6.2.15.003';
7
 
8
  // Global inits
9
  var wppaNormsBtnOpac = 1;
@@ -419,6 +419,7 @@ wppaConsoleLog( '_wppaOvlShow, idx='+idx );
419
  html += '<img' +
420
  ' id="wppa-norms-btn"' +
421
  ' src="' + wppaImageDirectory + 'norms.png"' +
 
422
  ' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"' +
423
  ' onclick="wppaOvlNorm()"' +
424
  ' ontouchstart="wppaOvlNorm()"' +
@@ -1100,7 +1101,6 @@ wppaConsoleLog( 'wppaOvlHide' );
1100
 
1101
  // Clear image container
1102
  jQuery( '#wppa-overlay-ic' ).html( '' );
1103
- // jQuery( '#wppa-overlay-ic' ).css( {paddingTop: 0});
1104
 
1105
  // Remove background
1106
  jQuery( '#wppa-overlay-bg' ).fadeOut( 300 );
@@ -1124,7 +1124,9 @@ wppaConsoleLog( 'wppaOvlOnClick' );
1124
  case 'none':
1125
  break;
1126
  case 'close':
1127
- wppaOvlHide();
 
 
1128
  break;
1129
  case 'browse':
1130
  var x = event.screenX - window.screenX;
3
  // Conatins lightbox modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaLightboxVersion = '6.2.18';
7
 
8
  // Global inits
9
  var wppaNormsBtnOpac = 1;
419
  html += '<img' +
420
  ' id="wppa-norms-btn"' +
421
  ' src="' + wppaImageDirectory + 'norms.png"' +
422
+ ' alt="' + wppaToggleFullScreen + '"' +
423
  ' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"' +
424
  ' onclick="wppaOvlNorm()"' +
425
  ' ontouchstart="wppaOvlNorm()"' +
1101
 
1102
  // Clear image container
1103
  jQuery( '#wppa-overlay-ic' ).html( '' );
 
1104
 
1105
  // Remove background
1106
  jQuery( '#wppa-overlay-bg' ).fadeOut( 300 );
1124
  case 'none':
1125
  break;
1126
  case 'close':
1127
+ if ( wppaOvlMode == 'normal' ) {
1128
+ wppaOvlHide();
1129
+ }
1130
  break;
1131
  case 'browse':
1132
  var x = event.screenX - window.screenX;
js/wppa-lightbox.min.js CHANGED
@@ -4,7 +4,7 @@
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
- var wppaLightboxVersion='6.2.15.003';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize(10);});function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
8
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
9
  wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
10
  switch(key){case'p':wppaOvlShowPrev();break;case'n':wppaOvlShowNext();break;case's':wppaOvlStartStop();break;case'd':jQuery('#wppa-ovl-legenda-1').css('visibility','hidden');jQuery('#wppa-ovl-legenda-2').css('visibility','hidden');wppaShowLegenda='hidden';break;case'f':wppaOvlFull();break;case'q':case'x':wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
@@ -49,7 +49,7 @@ else{html='<div id="wppa-ovl-full-bg" style="position:fixed; width:'+jQuery(wind
49
  wppaOvlAudioHtmls[idx]+'</audio>';}
50
  html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
51
  html+='</div>';'</div>';}
52
- html+='<img'+' id="wppa-norms-btn"'+' src="'+wppaImageDirectory+'norms.png"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"'+' onclick="wppaOvlNorm()"'+' ontouchstart="wppaOvlNorm()"'+' onmouseover="jQuery(this).fadeTo(600,1);"'+' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"'+' >';if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
53
  wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlFormatFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
54
  else{wppaOvlFsPhotoId=0;}
55
  wppaOvlFirst=false;return false;}
@@ -114,7 +114,8 @@ wppaOvlShow(wppaOvlIdx-1);return false;}
114
  function wppaOvlShowNext(){wppaConsoleLog('wppaOvlShowNext');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx>=(wppaOvlUrls.length-1)){wppaOvlIdx=-1;}
115
  wppaOvlShow(wppaOvlIdx+1);return false;}
116
  function wppaOvlHide(){wppaConsoleLog('wppaOvlHide');wppaStopAudio();jQuery('#wppa-overlay-ic').html('');jQuery('#wppa-overlay-bg').fadeOut(300);jQuery(document).off('keydown',wppaOvlKeyboardHandler);wppaKbHandlerInstalled=false;wppaOvlFirst=true;wppaOvlRunning=false;wppaOvlMode='normal';jQuery('#wppa-overlay-sp').css({visibility:'hidden'});}
117
- function wppaOvlOnclick(event){wppaConsoleLog('wppaOvlOnClick');switch(wppaOvlOnclickType){case'none':break;case'close':wppaOvlHide();break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
 
118
  return true;}
119
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
120
  else if(anchor.rel){temp=anchor.rel.split("[");}
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
 
7
+ var wppaLightboxVersion='6.2.18';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize(10);});function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
8
  var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
9
  wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
10
  switch(key){case'p':wppaOvlShowPrev();break;case'n':wppaOvlShowNext();break;case's':wppaOvlStartStop();break;case'd':jQuery('#wppa-ovl-legenda-1').css('visibility','hidden');jQuery('#wppa-ovl-legenda-2').css('visibility','hidden');wppaShowLegenda='hidden';break;case'f':wppaOvlFull();break;case'q':case'x':wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
49
  wppaOvlAudioHtmls[idx]+'</audio>';}
50
  html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
51
  html+='</div>';'</div>';}
52
+ html+='<img'+' id="wppa-norms-btn"'+' src="'+wppaImageDirectory+'norms.png"'+' alt="'+wppaToggleFullScreen+'"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"'+' onclick="wppaOvlNorm()"'+' ontouchstart="wppaOvlNorm()"'+' onmouseover="jQuery(this).fadeTo(600,1);"'+' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"'+' >';if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
53
  wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlFormatFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
54
  else{wppaOvlFsPhotoId=0;}
55
  wppaOvlFirst=false;return false;}
114
  function wppaOvlShowNext(){wppaConsoleLog('wppaOvlShowNext');wppaOvlFsPhotoId=0;wppaPhotoId=0;if(wppaOvlIsSingle)return false;if(wppaOvlIdx>=(wppaOvlUrls.length-1)){wppaOvlIdx=-1;}
115
  wppaOvlShow(wppaOvlIdx+1);return false;}
116
  function wppaOvlHide(){wppaConsoleLog('wppaOvlHide');wppaStopAudio();jQuery('#wppa-overlay-ic').html('');jQuery('#wppa-overlay-bg').fadeOut(300);jQuery(document).off('keydown',wppaOvlKeyboardHandler);wppaKbHandlerInstalled=false;wppaOvlFirst=true;wppaOvlRunning=false;wppaOvlMode='normal';jQuery('#wppa-overlay-sp').css({visibility:'hidden'});}
117
+ function wppaOvlOnclick(event){wppaConsoleLog('wppaOvlOnClick');switch(wppaOvlOnclickType){case'none':break;case'close':if(wppaOvlMode=='normal'){wppaOvlHide();}
118
+ break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
119
  return true;}
120
  function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
121
  else if(anchor.rel){temp=anchor.rel.split("[");}
js/wppa-slideshow.js CHANGED
@@ -3,7 +3,7 @@
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
- var wppaJsSlideshowVersion = '6.3.17';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
@@ -1639,7 +1639,7 @@ function _wppaUbb( mocc,where,act ) {
1639
  // jQuery( elm ).stop().fadeTo( 400, 0 );
1640
  jQuery( '.ubb-'+mocc ).removeAttr( 'title' );
1641
  jQuery( '.ubb-'+mocc ).css( 'cursor', 'default' );
1642
- jQuery( '.ubb-'+mocc ).fadeTo( 200, 0.2 );
1643
  break;
1644
  case 'click':
1645
  var idx;
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
  //
6
+ var wppaJsSlideshowVersion = '6.3.18';
7
 
8
  // This is an entrypoint to load the slide data
9
  function wppaStoreSlideInfo(
1639
  // jQuery( elm ).stop().fadeTo( 400, 0 );
1640
  jQuery( '.ubb-'+mocc ).removeAttr( 'title' );
1641
  jQuery( '.ubb-'+mocc ).css( 'cursor', 'default' );
1642
+ jQuery( '.ubb-'+mocc ).fadeTo( 1000, 0 );
1643
  break;
1644
  case 'click':
1645
  var idx;
js/wppa-slideshow.min.js CHANGED
@@ -2,9 +2,10 @@
2
  //
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
- //
 
6
 
7
- var wppaJsSlideshowVersion='6.3.17';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;}
8
  cursor='default';if(linkurl!=''){cursor='pointer';}
9
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
10
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+wppaTrimAlt(name)+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}}
@@ -176,7 +177,7 @@ var text=jQuery('#wppa-comment-'+mocc).val();if(text.length<1){alert(wppaPleaseC
176
  return true;}
177
  function _wppaGo(url){document.location=url;}
178
  function _wppaBbb(mocc,where,act){if(_wppaSSRuns[mocc])return;var elm='#bbb-'+mocc+'-'+where;switch(act){case'show':if(where=='l')jQuery(elm).attr('title',wppaPreviousPhoto);if(where=='r')jQuery(elm).attr('title',wppaNextPhoto);jQuery('.bbb-'+mocc).css('cursor','pointer');break;case'hide':jQuery('.bbb-'+mocc).removeAttr('title');jQuery('.bbb-'+mocc).css('cursor','default');break;case'click':if(where=='l')wppaPrev(mocc);if(where=='r')wppaNext(mocc);break;default:alert('Unimplemented instruction: '+act+' on: '+elm);}}
179
- function _wppaUbb(mocc,where,act){var elm='#ubb-'+mocc+'-'+where;switch(act){case'show':if(where=='l')jQuery(elm).attr('title',wppaPreviousPhoto);if(where=='r')jQuery(elm).attr('title',wppaNextPhoto);jQuery('.ubb-'+mocc).css('cursor','pointer');jQuery('.ubb-'+mocc).fadeTo(200,0.8);break;case'hide':jQuery('.ubb-'+mocc).removeAttr('title');jQuery('.ubb-'+mocc).css('cursor','default');jQuery('.ubb-'+mocc).fadeTo(200,0.2);break;case'click':var idx;if(where=='l'){idx=_wppaCurIdx[mocc]-1;if(idx<0){if(!wppaSlideWrap){return;}
180
  idx=_wppaSlides[mocc].length-1;}}
181
  if(where=='r'){idx=_wppaCurIdx[mocc]+1;if(idx==_wppaSlides[mocc].length){if(!wppaSlideWrap){return;}
182
  idx=0;}}
2
  //
3
  // Contains slideshow modules
4
  // Dependancies: wppa.js and default wp jQuery library
5
+ //
6
+ var wppaJsSlideshowVersion = '6.3.18';
7
 
8
+ var wppaJsSlideshowVersion='6.3.18';function wppaStoreSlideInfo(mocc,id,url,size,width,height,fullname,name,desc,photoid,avgrat,discount,myrat,rateurl,linkurl,linktitle,linktarget,iwtimeout,commenthtml,iptchtml,exifhtml,lbtitle,shareurl,smhtml,ogdsc,hiresurl,videohtml,audiohtml){var cursor;desc=wppaRepairScriptTags(desc);if(!_wppaSlides[mocc]||'0'==id){_wppaSlides[mocc]=[];_wppaNames[mocc]=[];_wppaFullNames[mocc]=[];_wppaDsc[mocc]=[];_wppaOgDsc[mocc]=[];_wppaCurIdx[mocc]=-1;_wppaNxtIdx[mocc]=0;if(parseInt(iwtimeout)>0)_wppaTimeOut[mocc]=parseInt(iwtimeout);else _wppaTimeOut[mocc]=wppaSlideShowTimeOut;_wppaSSRuns[mocc]=false;_wppaTP[mocc]=-2;_wppaFg[mocc]=0;_wppaIsBusy[mocc]=false;_wppaFirst[mocc]=true;_wppaId[mocc]=[];_wppaAvg[mocc]=[];_wppaDisc[mocc]=[];_wppaMyr[mocc]=[];_wppaVRU[mocc]=[];_wppaLinkUrl[mocc]=[];_wppaLinkTitle[mocc]=[];_wppaLinkTarget[mocc]=[];_wppaCommentHtml[mocc]=[];_wppaIptcHtml[mocc]=[];_wppaExifHtml[mocc]=[];_wppaUrl[mocc]=[];_wppaSkipRated[mocc]=false;_wppaLbTitle[mocc]=[];_wppaDidGoto[mocc]=false;wppaSlidePause[mocc]=false;_wppaShareUrl[mocc]=[];_wppaShareHtml[mocc]=[];_wppaFilmNoMove[mocc]=false;_wppaHiresUrl[mocc]=[];_wppaIsVideo[mocc]=[];_wppaVideoHtml[mocc]=[];_wppaAudioHtml[mocc]=[];_wppaVideoNatWidth[mocc]=[];_wppaVideoNatHeight[mocc]=[];wppaVideoPlaying[mocc]=false;wppaAudioPlaying[mocc]=false;}
9
  cursor='default';if(linkurl!=''){cursor='pointer';}
10
  else if(wppaLightBox[mocc]!=''){cursor='url( '+wppaImageDirectory+wppaMagnifierCursor+' ),pointer';}
11
  _wppaIsVideo[mocc][id]=(''!=videohtml);if(_wppaIsVideo[mocc][id]){_wppaSlides[mocc][id]=' alt="'+wppaTrimAlt(name)+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}}
177
  return true;}
178
  function _wppaGo(url){document.location=url;}
179
  function _wppaBbb(mocc,where,act){if(_wppaSSRuns[mocc])return;var elm='#bbb-'+mocc+'-'+where;switch(act){case'show':if(where=='l')jQuery(elm).attr('title',wppaPreviousPhoto);if(where=='r')jQuery(elm).attr('title',wppaNextPhoto);jQuery('.bbb-'+mocc).css('cursor','pointer');break;case'hide':jQuery('.bbb-'+mocc).removeAttr('title');jQuery('.bbb-'+mocc).css('cursor','default');break;case'click':if(where=='l')wppaPrev(mocc);if(where=='r')wppaNext(mocc);break;default:alert('Unimplemented instruction: '+act+' on: '+elm);}}
180
+ function _wppaUbb(mocc,where,act){var elm='#ubb-'+mocc+'-'+where;switch(act){case'show':if(where=='l')jQuery(elm).attr('title',wppaPreviousPhoto);if(where=='r')jQuery(elm).attr('title',wppaNextPhoto);jQuery('.ubb-'+mocc).css('cursor','pointer');jQuery('.ubb-'+mocc).fadeTo(200,0.8);break;case'hide':jQuery('.ubb-'+mocc).removeAttr('title');jQuery('.ubb-'+mocc).css('cursor','default');jQuery('.ubb-'+mocc).fadeTo(1000,0);break;case'click':var idx;if(where=='l'){idx=_wppaCurIdx[mocc]-1;if(idx<0){if(!wppaSlideWrap){return;}
181
  idx=_wppaSlides[mocc].length-1;}}
182
  if(where=='r'){idx=_wppaCurIdx[mocc]+1;if(idx==_wppaSlides[mocc].length){if(!wppaSlideWrap){return;}
183
  idx=0;}}
languages/wp-photo-album-plus-da_DK.mo CHANGED
Binary file
languages/wp-photo-album-plus-da_DK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:09+0100\n"
5
- "PO-Revision-Date: 2015-12-25 13:09+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: da_DK\n"
@@ -112,7 +112,7 @@ msgstr "Nyt!"
112
  msgid "New"
113
  msgstr "Ny"
114
 
115
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
116
  msgid "Slideshow"
117
  msgstr "Slideshow"
118
 
@@ -529,16 +529,16 @@ msgid_plural "%d max ratings"
529
  msgstr[0] "Min vurdering:"
530
  msgstr[1] "Min vurdering:"
531
 
532
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
- #, php-format
541
- msgid "Mean value: %4.2f."
542
  msgstr "Middelværdi: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
@@ -546,6 +546,11 @@ msgstr "Middelværdi: %4.2f."
546
  msgid "Photo %s not found."
547
  msgstr "Foto %s ikke fundet."
548
 
 
 
 
 
 
549
  #: wppa-boxes-html.php:3695
550
  msgid "Refresh"
551
  msgstr "Opdater"
@@ -1221,7 +1226,7 @@ msgid "You can upload after"
1221
  msgstr "Du kan indsende efter"
1222
 
1223
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1224
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1225
  msgid "Download"
1226
  msgstr "Download"
1227
 
@@ -1233,7 +1238,12 @@ msgstr "Zoom ind"
1233
  msgid "Press f for fullscreen."
1234
  msgstr "Tryk på f for fuldskærm."
1235
 
1236
- #: wppa-non-admin.php:422
 
 
 
 
 
1237
  msgid ""
1238
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1239
  "dismiss this notice."
@@ -1241,151 +1251,151 @@ msgstr ""
1241
  "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
1242
  "stop, d = afvise denne meddelelse."
1243
 
1244
- #: wppa-non-admin.php:423
1245
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1246
  msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
1247
 
1248
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1249
  msgid "Start"
1250
  msgstr "Start"
1251
 
1252
- #: wppa-non-admin.php:663
1253
  msgid "Stop"
1254
  msgstr "Stop"
1255
 
1256
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1257
  msgid "Slower"
1258
  msgstr "Langsommere"
1259
 
1260
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1261
  msgid "Faster"
1262
  msgstr "Hurtigere"
1263
 
1264
- #: wppa-non-admin.php:666
1265
  msgid "Photo"
1266
  msgstr "Foto"
1267
 
1268
- #: wppa-non-admin.php:667
1269
  msgid "of"
1270
  msgstr "af"
1271
 
1272
- #: wppa-non-admin.php:668
1273
  msgid "Previous photo"
1274
  msgstr "Forrige foto"
1275
 
1276
- #: wppa-non-admin.php:669
1277
  msgid "Next photo"
1278
  msgstr "Næste foto"
1279
 
1280
- #: wppa-non-admin.php:670
1281
  msgid "Prev."
1282
  msgstr "Forrige"
1283
 
1284
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1285
  msgid "Next"
1286
  msgstr "N&aelig;ste"
1287
 
1288
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1289
  #: wppa-slideshow.php:832
1290
  msgid "Average&nbsp;rating"
1291
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
1292
 
1293
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1294
  #: wppa-slideshow.php:814
1295
  msgid "My&nbsp;rating"
1296
  msgstr "Min&nbsp;bed&oslash;mmelse"
1297
 
1298
- #: wppa-non-admin.php:674
1299
  msgid "Avg."
1300
  msgstr "Gns."
1301
 
1302
- #: wppa-non-admin.php:675
1303
  msgid "Mine"
1304
  msgstr "Mine"
1305
 
1306
- #: wppa-non-admin.php:676
1307
  msgid "You marked this image as inappropriate."
1308
  msgstr "Du markeret billedet som upassende."
1309
 
1310
- #: wppa-non-admin.php:679
1311
  msgid "Please enter your name"
1312
  msgstr "Indtast venligst dit navn."
1313
 
1314
- #: wppa-non-admin.php:680
1315
  msgid "Please enter a valid email address"
1316
  msgstr "Indtast venligst en gyldig e-mail adresse"
1317
 
1318
- #: wppa-non-admin.php:681
1319
  msgid "Please enter a comment"
1320
  msgstr "Indtast venligst en kommentar"
1321
 
1322
- #: wppa-non-admin.php:715
1323
  msgid "Double click to start/stop slideshow running"
1324
  msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
1325
 
1326
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1327
  msgid "wrote"
1328
  msgstr "skrev"
1329
 
1330
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1331
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1332
  #, fuzzy
1333
  msgid "Photo not found"
1334
  msgstr "Foto %s ikke fundet."
1335
 
1336
- #: wppa-non-admin.php:794
1337
  #, fuzzy
1338
  msgid "There are no commented photos (yet)"
1339
  msgstr "Nyligt kommenterede fotos"
1340
 
1341
- #: wppa-non-admin.php:797
1342
  #, fuzzy
1343
  msgid "View the featured photos"
1344
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1345
 
1346
- #: wppa-non-admin.php:799
1347
  msgid "There are no featured photos (yet)"
1348
  msgstr ""
1349
 
1350
- #: wppa-non-admin.php:802
1351
  #, fuzzy
1352
  msgid "View the most recent uploaded photos"
1353
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1354
 
1355
- #: wppa-non-admin.php:804
1356
  #, fuzzy
1357
  msgid "There are no uploaded photos (yet)"
1358
  msgstr "Nyligt kommenterede fotos"
1359
 
1360
- #: wppa-non-admin.php:808
1361
  msgid "By:"
1362
  msgstr ""
1363
 
1364
- #: wppa-non-admin.php:811
1365
  msgid "No album defined (yet)"
1366
  msgstr ""
1367
 
1368
- #: wppa-non-admin.php:815
1369
  msgid "There are no photos (yet)"
1370
  msgstr ""
1371
 
1372
- #: wppa-non-admin.php:818
1373
  msgid "There are too many registered users in the system for this widget"
1374
  msgstr ""
1375
 
1376
- #: wppa-non-admin.php:819
1377
  #, fuzzy
1378
  msgid "Photos uploaded by"
1379
  msgstr "Foto upload"
1380
 
1381
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1382
  #, php-format
1383
  msgid "%d view"
1384
  msgid_plural "%d views"
1385
  msgstr[0] ""
1386
  msgstr[1] ""
1387
 
1388
- #: wppa-non-admin.php:825
1389
  #, fuzzy
1390
  msgid "There are no rated photos (yet)"
1391
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:45+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:45+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: da_DK\n"
112
  msgid "New"
113
  msgstr "Ny"
114
 
115
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
116
  msgid "Slideshow"
117
  msgstr "Slideshow"
118
 
529
  msgstr[0] "Min vurdering:"
530
  msgstr[1] "Min vurdering:"
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
+ #: wppa-boxes-html.php:3280
540
+ #, fuzzy, php-format
541
+ msgid "Rating: %4.2f."
542
  msgstr "Middelværdi: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
546
  msgid "Photo %s not found."
547
  msgstr "Foto %s ikke fundet."
548
 
549
+ #: wppa-boxes-html.php:3343
550
+ #, php-format
551
+ msgid "Mean value: %4.2f."
552
+ msgstr "Middelværdi: %4.2f."
553
+
554
  #: wppa-boxes-html.php:3695
555
  msgid "Refresh"
556
  msgstr "Opdater"
1226
  msgstr "Du kan indsende efter"
1227
 
1228
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1229
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1230
  msgid "Download"
1231
  msgstr "Download"
1232
 
1238
  msgid "Press f for fullscreen."
1239
  msgstr "Tryk på f for fuldskærm."
1240
 
1241
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1242
+ #, fuzzy
1243
+ msgid "Toggle fullscreen"
1244
+ msgstr "Tryk på f for fuldskærm."
1245
+
1246
+ #: wppa-non-admin.php:423
1247
  msgid ""
1248
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1249
  "dismiss this notice."
1251
  "Nøgler: f = næste tilstand; q, x = exit; p = forrige, n = næste, s = start / "
1252
  "stop, d = afvise denne meddelelse."
1253
 
1254
+ #: wppa-non-admin.php:424
1255
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1256
  msgstr "Nøgler: f = næste tilstand; q, x = exit; d = afvise denne meddelelse."
1257
 
1258
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1259
  msgid "Start"
1260
  msgstr "Start"
1261
 
1262
+ #: wppa-non-admin.php:665
1263
  msgid "Stop"
1264
  msgstr "Stop"
1265
 
1266
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1267
  msgid "Slower"
1268
  msgstr "Langsommere"
1269
 
1270
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1271
  msgid "Faster"
1272
  msgstr "Hurtigere"
1273
 
1274
+ #: wppa-non-admin.php:668
1275
  msgid "Photo"
1276
  msgstr "Foto"
1277
 
1278
+ #: wppa-non-admin.php:669
1279
  msgid "of"
1280
  msgstr "af"
1281
 
1282
+ #: wppa-non-admin.php:670
1283
  msgid "Previous photo"
1284
  msgstr "Forrige foto"
1285
 
1286
+ #: wppa-non-admin.php:671
1287
  msgid "Next photo"
1288
  msgstr "Næste foto"
1289
 
1290
+ #: wppa-non-admin.php:672
1291
  msgid "Prev."
1292
  msgstr "Forrige"
1293
 
1294
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1295
  msgid "Next"
1296
  msgstr "N&aelig;ste"
1297
 
1298
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1299
  #: wppa-slideshow.php:832
1300
  msgid "Average&nbsp;rating"
1301
  msgstr "Bed&oslash;mmelse&nbsp;gennemsnitlig"
1302
 
1303
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1304
  #: wppa-slideshow.php:814
1305
  msgid "My&nbsp;rating"
1306
  msgstr "Min&nbsp;bed&oslash;mmelse"
1307
 
1308
+ #: wppa-non-admin.php:676
1309
  msgid "Avg."
1310
  msgstr "Gns."
1311
 
1312
+ #: wppa-non-admin.php:677
1313
  msgid "Mine"
1314
  msgstr "Mine"
1315
 
1316
+ #: wppa-non-admin.php:678
1317
  msgid "You marked this image as inappropriate."
1318
  msgstr "Du markeret billedet som upassende."
1319
 
1320
+ #: wppa-non-admin.php:681
1321
  msgid "Please enter your name"
1322
  msgstr "Indtast venligst dit navn."
1323
 
1324
+ #: wppa-non-admin.php:682
1325
  msgid "Please enter a valid email address"
1326
  msgstr "Indtast venligst en gyldig e-mail adresse"
1327
 
1328
+ #: wppa-non-admin.php:683
1329
  msgid "Please enter a comment"
1330
  msgstr "Indtast venligst en kommentar"
1331
 
1332
+ #: wppa-non-admin.php:717
1333
  msgid "Double click to start/stop slideshow running"
1334
  msgstr "Dobbeltklik for at starte / stoppe diasshowet kører"
1335
 
1336
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1337
  msgid "wrote"
1338
  msgstr "skrev"
1339
 
1340
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1341
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1342
  #, fuzzy
1343
  msgid "Photo not found"
1344
  msgstr "Foto %s ikke fundet."
1345
 
1346
+ #: wppa-non-admin.php:796
1347
  #, fuzzy
1348
  msgid "There are no commented photos (yet)"
1349
  msgstr "Nyligt kommenterede fotos"
1350
 
1351
+ #: wppa-non-admin.php:799
1352
  #, fuzzy
1353
  msgid "View the featured photos"
1354
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1355
 
1356
+ #: wppa-non-admin.php:801
1357
  msgid "There are no featured photos (yet)"
1358
  msgstr ""
1359
 
1360
+ #: wppa-non-admin.php:804
1361
  #, fuzzy
1362
  msgid "View the most recent uploaded photos"
1363
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
1364
 
1365
+ #: wppa-non-admin.php:806
1366
  #, fuzzy
1367
  msgid "There are no uploaded photos (yet)"
1368
  msgstr "Nyligt kommenterede fotos"
1369
 
1370
+ #: wppa-non-admin.php:810
1371
  msgid "By:"
1372
  msgstr ""
1373
 
1374
+ #: wppa-non-admin.php:813
1375
  msgid "No album defined (yet)"
1376
  msgstr ""
1377
 
1378
+ #: wppa-non-admin.php:817
1379
  msgid "There are no photos (yet)"
1380
  msgstr ""
1381
 
1382
+ #: wppa-non-admin.php:820
1383
  msgid "There are too many registered users in the system for this widget"
1384
  msgstr ""
1385
 
1386
+ #: wppa-non-admin.php:821
1387
  #, fuzzy
1388
  msgid "Photos uploaded by"
1389
  msgstr "Foto upload"
1390
 
1391
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1392
  #, php-format
1393
  msgid "%d view"
1394
  msgid_plural "%d views"
1395
  msgstr[0] ""
1396
  msgstr[1] ""
1397
 
1398
+ #: wppa-non-admin.php:827
1399
  #, fuzzy
1400
  msgid "There are no rated photos (yet)"
1401
  msgstr "Se fotos med h&oslash;jeste bed&oslash;mmelse"
languages/wp-photo-album-plus-de_DE.mo CHANGED
Binary file
languages/wp-photo-album-plus-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:09+0100\n"
5
- "PO-Revision-Date: 2015-12-27 11:36+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: de_DE\n"
@@ -113,7 +113,7 @@ msgstr "Neu!"
113
  msgid "New"
114
  msgstr "Neu"
115
 
116
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
117
  msgid "Slideshow"
118
  msgstr "Diaschau"
119
 
@@ -529,23 +529,28 @@ msgid_plural "%d max ratings"
529
  msgstr[0] "%d max Bewertung"
530
  msgstr[1] "%d max Bewertungen"
531
 
532
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] "%d Stimme"
537
  msgstr[1] "%d Stimmen"
538
 
539
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
  #, php-format
541
- msgid "Mean value: %4.2f."
542
- msgstr "Mittelwert: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
545
  #, php-format
546
  msgid "Photo %s not found."
547
  msgstr "Foto %s nicht gefunden."
548
 
 
 
 
 
 
549
  #: wppa-boxes-html.php:3695
550
  msgid "Refresh"
551
  msgstr "Aktualisieren"
@@ -1219,7 +1224,7 @@ msgid "You can upload after"
1219
  msgstr "Sie können Hochladen nach"
1220
 
1221
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1222
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1223
  msgid "Download"
1224
  msgstr "Herunterladen"
1225
 
@@ -1231,7 +1236,11 @@ msgstr "Hineinzoomen"
1231
  msgid "Press f for fullscreen."
1232
  msgstr "Drücken Sie f für Vollbild."
1233
 
1234
- #: wppa-non-admin.php:422
 
 
 
 
1235
  msgid ""
1236
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1237
  "dismiss this notice."
@@ -1239,146 +1248,146 @@ msgstr ""
1239
  "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
1240
  "= Start / Stop, d = entlassen diesen Hinweis."
1241
 
1242
- #: wppa-non-admin.php:423
1243
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1244
  msgstr ""
1245
  "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
1246
 
1247
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1248
  msgid "Start"
1249
  msgstr "Starte"
1250
 
1251
- #: wppa-non-admin.php:663
1252
  msgid "Stop"
1253
  msgstr "Stop"
1254
 
1255
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1256
  msgid "Slower"
1257
  msgstr "Langsamer"
1258
 
1259
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1260
  msgid "Faster"
1261
  msgstr "Schneller"
1262
 
1263
- #: wppa-non-admin.php:666
1264
  msgid "Photo"
1265
  msgstr "Foto"
1266
 
1267
- #: wppa-non-admin.php:667
1268
  msgid "of"
1269
  msgstr "von"
1270
 
1271
- #: wppa-non-admin.php:668
1272
  msgid "Previous photo"
1273
  msgstr "Vorheriges Foto"
1274
 
1275
- #: wppa-non-admin.php:669
1276
  msgid "Next photo"
1277
  msgstr "Nächstes Foto"
1278
 
1279
- #: wppa-non-admin.php:670
1280
  msgid "Prev."
1281
  msgstr "Vorheriges"
1282
 
1283
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1284
  msgid "Next"
1285
  msgstr "Nächstes"
1286
 
1287
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1288
  #: wppa-slideshow.php:832
1289
  msgid "Average&nbsp;rating"
1290
  msgstr "Durchschnittliche Bewertung"
1291
 
1292
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1293
  #: wppa-slideshow.php:814
1294
  msgid "My&nbsp;rating"
1295
  msgstr "Meine&nbsp;Bewertung"
1296
 
1297
- #: wppa-non-admin.php:674
1298
  msgid "Avg."
1299
  msgstr "Durchs."
1300
 
1301
- #: wppa-non-admin.php:675
1302
  msgid "Mine"
1303
  msgstr "Meine"
1304
 
1305
- #: wppa-non-admin.php:676
1306
  msgid "You marked this image as inappropriate."
1307
  msgstr "Sie markiert das Bild als unangemessen."
1308
 
1309
- #: wppa-non-admin.php:679
1310
  msgid "Please enter your name"
1311
  msgstr "Bitte geben Sie Ihren Namen ein"
1312
 
1313
- #: wppa-non-admin.php:680
1314
  msgid "Please enter a valid email address"
1315
  msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
1316
 
1317
- #: wppa-non-admin.php:681
1318
  msgid "Please enter a comment"
1319
  msgstr "Bitte geben Sie einen Kommentar ein."
1320
 
1321
- #: wppa-non-admin.php:715
1322
  msgid "Double click to start/stop slideshow running"
1323
  msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
1324
 
1325
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1326
  msgid "wrote"
1327
  msgstr "schrieb"
1328
 
1329
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1330
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1331
  msgid "Photo not found"
1332
  msgstr "Foto nicht gefunden"
1333
 
1334
- #: wppa-non-admin.php:794
1335
  msgid "There are no commented photos (yet)"
1336
  msgstr "Es sind (noch) keine kommentierte Fotos"
1337
 
1338
- #: wppa-non-admin.php:797
1339
  msgid "View the featured photos"
1340
  msgstr "Sehen Sie die best bewertesten Fotos"
1341
 
1342
- #: wppa-non-admin.php:799
1343
  msgid "There are no featured photos (yet)"
1344
  msgstr "Es sind (noch) keine vorgestellten Fotos"
1345
 
1346
- #: wppa-non-admin.php:802
1347
  msgid "View the most recent uploaded photos"
1348
  msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
1349
 
1350
- #: wppa-non-admin.php:804
1351
  msgid "There are no uploaded photos (yet)"
1352
  msgstr "Es sind (noch) keine hochgeladene Fotos"
1353
 
1354
- #: wppa-non-admin.php:808
1355
  msgid "By:"
1356
  msgstr "Durch:"
1357
 
1358
- #: wppa-non-admin.php:811
1359
  msgid "No album defined (yet)"
1360
  msgstr "Noch kein Album definiert"
1361
 
1362
- #: wppa-non-admin.php:815
1363
  msgid "There are no photos (yet)"
1364
  msgstr "Es sind (noch) keine Fotos"
1365
 
1366
- #: wppa-non-admin.php:818
1367
  msgid "There are too many registered users in the system for this widget"
1368
  msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
1369
 
1370
- #: wppa-non-admin.php:819
1371
  msgid "Photos uploaded by"
1372
  msgstr "Fotos hochgeladen durch"
1373
 
1374
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1375
  #, php-format
1376
  msgid "%d view"
1377
  msgid_plural "%d views"
1378
  msgstr[0] "%d Ansicht"
1379
  msgstr[1] "%d Ansichte"
1380
 
1381
- #: wppa-non-admin.php:825
1382
  msgid "There are no rated photos (yet)"
1383
  msgstr "Es sind (noch) keine bewertesten Fotos"
1384
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:45+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:45+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: de_DE\n"
113
  msgid "New"
114
  msgstr "Neu"
115
 
116
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
117
  msgid "Slideshow"
118
  msgstr "Diaschau"
119
 
529
  msgstr[0] "%d max Bewertung"
530
  msgstr[1] "%d max Bewertungen"
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] "%d Stimme"
537
  msgstr[1] "%d Stimmen"
538
 
539
+ #: wppa-boxes-html.php:3280
540
  #, php-format
541
+ msgid "Rating: %4.2f."
542
+ msgstr "Bewertung: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
545
  #, php-format
546
  msgid "Photo %s not found."
547
  msgstr "Foto %s nicht gefunden."
548
 
549
+ #: wppa-boxes-html.php:3343
550
+ #, php-format
551
+ msgid "Mean value: %4.2f."
552
+ msgstr "Mittelwert: %4.2f."
553
+
554
  #: wppa-boxes-html.php:3695
555
  msgid "Refresh"
556
  msgstr "Aktualisieren"
1224
  msgstr "Sie können Hochladen nach"
1225
 
1226
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1227
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1228
  msgid "Download"
1229
  msgstr "Herunterladen"
1230
 
1236
  msgid "Press f for fullscreen."
1237
  msgstr "Drücken Sie f für Vollbild."
1238
 
1239
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1240
+ msgid "Toggle fullscreen"
1241
+ msgstr "Wechsel zwischen Vollbild"
1242
+
1243
+ #: wppa-non-admin.php:423
1244
  msgid ""
1245
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1246
  "dismiss this notice."
1248
  "Tasten: f = nächsten Modus; q,x = verlassen; p = vorheriges, n = nächstes, s "
1249
  "= Start / Stop, d = entlassen diesen Hinweis."
1250
 
1251
+ #: wppa-non-admin.php:424
1252
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1253
  msgstr ""
1254
  "Tasten: f = nächsten Modus; q,x = verlassen; d = entlassen diesen Hinweis."
1255
 
1256
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1257
  msgid "Start"
1258
  msgstr "Starte"
1259
 
1260
+ #: wppa-non-admin.php:665
1261
  msgid "Stop"
1262
  msgstr "Stop"
1263
 
1264
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1265
  msgid "Slower"
1266
  msgstr "Langsamer"
1267
 
1268
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1269
  msgid "Faster"
1270
  msgstr "Schneller"
1271
 
1272
+ #: wppa-non-admin.php:668
1273
  msgid "Photo"
1274
  msgstr "Foto"
1275
 
1276
+ #: wppa-non-admin.php:669
1277
  msgid "of"
1278
  msgstr "von"
1279
 
1280
+ #: wppa-non-admin.php:670
1281
  msgid "Previous photo"
1282
  msgstr "Vorheriges Foto"
1283
 
1284
+ #: wppa-non-admin.php:671
1285
  msgid "Next photo"
1286
  msgstr "Nächstes Foto"
1287
 
1288
+ #: wppa-non-admin.php:672
1289
  msgid "Prev."
1290
  msgstr "Vorheriges"
1291
 
1292
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1293
  msgid "Next"
1294
  msgstr "Nächstes"
1295
 
1296
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1297
  #: wppa-slideshow.php:832
1298
  msgid "Average&nbsp;rating"
1299
  msgstr "Durchschnittliche Bewertung"
1300
 
1301
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1302
  #: wppa-slideshow.php:814
1303
  msgid "My&nbsp;rating"
1304
  msgstr "Meine&nbsp;Bewertung"
1305
 
1306
+ #: wppa-non-admin.php:676
1307
  msgid "Avg."
1308
  msgstr "Durchs."
1309
 
1310
+ #: wppa-non-admin.php:677
1311
  msgid "Mine"
1312
  msgstr "Meine"
1313
 
1314
+ #: wppa-non-admin.php:678
1315
  msgid "You marked this image as inappropriate."
1316
  msgstr "Sie markiert das Bild als unangemessen."
1317
 
1318
+ #: wppa-non-admin.php:681
1319
  msgid "Please enter your name"
1320
  msgstr "Bitte geben Sie Ihren Namen ein"
1321
 
1322
+ #: wppa-non-admin.php:682
1323
  msgid "Please enter a valid email address"
1324
  msgstr "Bitte geben Sie eine gültige eMail-Adresse ein"
1325
 
1326
+ #: wppa-non-admin.php:683
1327
  msgid "Please enter a comment"
1328
  msgstr "Bitte geben Sie einen Kommentar ein."
1329
 
1330
+ #: wppa-non-admin.php:717
1331
  msgid "Double click to start/stop slideshow running"
1332
  msgstr "Doppelklicken Sie zum Starten / Stoppen Diashow Lauf"
1333
 
1334
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1335
  msgid "wrote"
1336
  msgstr "schrieb"
1337
 
1338
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1339
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1340
  msgid "Photo not found"
1341
  msgstr "Foto nicht gefunden"
1342
 
1343
+ #: wppa-non-admin.php:796
1344
  msgid "There are no commented photos (yet)"
1345
  msgstr "Es sind (noch) keine kommentierte Fotos"
1346
 
1347
+ #: wppa-non-admin.php:799
1348
  msgid "View the featured photos"
1349
  msgstr "Sehen Sie die best bewertesten Fotos"
1350
 
1351
+ #: wppa-non-admin.php:801
1352
  msgid "There are no featured photos (yet)"
1353
  msgstr "Es sind (noch) keine vorgestellten Fotos"
1354
 
1355
+ #: wppa-non-admin.php:804
1356
  msgid "View the most recent uploaded photos"
1357
  msgstr "Sehen Sie die neuesten hochgeladenen Fotos"
1358
 
1359
+ #: wppa-non-admin.php:806
1360
  msgid "There are no uploaded photos (yet)"
1361
  msgstr "Es sind (noch) keine hochgeladene Fotos"
1362
 
1363
+ #: wppa-non-admin.php:810
1364
  msgid "By:"
1365
  msgstr "Durch:"
1366
 
1367
+ #: wppa-non-admin.php:813
1368
  msgid "No album defined (yet)"
1369
  msgstr "Noch kein Album definiert"
1370
 
1371
+ #: wppa-non-admin.php:817
1372
  msgid "There are no photos (yet)"
1373
  msgstr "Es sind (noch) keine Fotos"
1374
 
1375
+ #: wppa-non-admin.php:820
1376
  msgid "There are too many registered users in the system for this widget"
1377
  msgstr "Es gibt zu viele registrierte Benutzer im System für dieses Widget"
1378
 
1379
+ #: wppa-non-admin.php:821
1380
  msgid "Photos uploaded by"
1381
  msgstr "Fotos hochgeladen durch"
1382
 
1383
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1384
  #, php-format
1385
  msgid "%d view"
1386
  msgid_plural "%d views"
1387
  msgstr[0] "%d Ansicht"
1388
  msgstr[1] "%d Ansichte"
1389
 
1390
+ #: wppa-non-admin.php:827
1391
  msgid "There are no rated photos (yet)"
1392
  msgstr "Es sind (noch) keine bewertesten Fotos"
1393
 
languages/wp-photo-album-plus-es_CA.mo CHANGED
Binary file
languages/wp-photo-album-plus-es_CA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:11+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:03+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_CA\n"
@@ -116,7 +116,7 @@ msgstr "Novo álbum"
116
  msgid "New"
117
  msgstr "Novo álbum"
118
 
119
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
120
  msgid "Slideshow"
121
  msgstr "Presentació"
122
 
@@ -573,16 +573,16 @@ msgid_plural "%d max ratings"
573
  msgstr[0] "Valoració mitjana"
574
  msgstr[1] "Valoració mitjana"
575
 
576
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
577
  #, php-format
578
  msgid "%d vote"
579
  msgid_plural "%d votes"
580
  msgstr[0] ""
581
  msgstr[1] ""
582
 
583
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
584
  #, fuzzy, php-format
585
- msgid "Mean value: %4.2f."
586
  msgstr "Por favor escriba un valor numérico mayor o igual a"
587
 
588
  #: wppa-boxes-html.php:3288
@@ -590,6 +590,11 @@ msgstr "Por favor escriba un valor numérico mayor o igual a"
590
  msgid "Photo %s not found."
591
  msgstr "Foto no trobada."
592
 
 
 
 
 
 
593
  #: wppa-boxes-html.php:3695
594
  #, fuzzy
595
  msgid "Refresh"
@@ -1315,7 +1320,7 @@ msgid "You can upload after"
1315
  msgstr "Podeu pujar fins a"
1316
 
1317
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1318
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1319
  msgid "Download"
1320
  msgstr ""
1321
 
@@ -1327,164 +1332,168 @@ msgstr "Augmenta"
1327
  msgid "Press f for fullscreen."
1328
  msgstr ""
1329
 
1330
- #: wppa-non-admin.php:422
 
 
 
 
1331
  msgid ""
1332
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1333
  "dismiss this notice."
1334
  msgstr ""
1335
 
1336
- #: wppa-non-admin.php:423
1337
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1338
  msgstr ""
1339
 
1340
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1341
  msgid "Start"
1342
  msgstr "Inicia"
1343
 
1344
- #: wppa-non-admin.php:663
1345
  msgid "Stop"
1346
  msgstr ""
1347
 
1348
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1349
  msgid "Slower"
1350
  msgstr "Més lent"
1351
 
1352
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1353
  msgid "Faster"
1354
  msgstr "Més ràpid"
1355
 
1356
- #: wppa-non-admin.php:666
1357
  #, fuzzy
1358
  msgid "Photo"
1359
  msgstr "Foto"
1360
 
1361
- #: wppa-non-admin.php:667
1362
  msgid "of"
1363
  msgstr ""
1364
 
1365
- #: wppa-non-admin.php:668
1366
  #, fuzzy
1367
  msgid "Previous photo"
1368
  msgstr "Anterior"
1369
 
1370
- #: wppa-non-admin.php:669
1371
  #, fuzzy
1372
  msgid "Next photo"
1373
  msgstr "Editar la foto"
1374
 
1375
- #: wppa-non-admin.php:670
1376
  #, fuzzy
1377
  msgid "Prev."
1378
  msgstr "Anterior"
1379
 
1380
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1381
  msgid "Next"
1382
  msgstr "Seg."
1383
 
1384
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1385
  #: wppa-slideshow.php:832
1386
  msgid "Average&nbsp;rating"
1387
  msgstr "Valoració mitjana"
1388
 
1389
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1390
  #: wppa-slideshow.php:814
1391
  msgid "My&nbsp;rating"
1392
  msgstr "La meva valoració"
1393
 
1394
- #: wppa-non-admin.php:674
1395
  msgid "Avg."
1396
  msgstr ""
1397
 
1398
- #: wppa-non-admin.php:675
1399
  msgid "Mine"
1400
  msgstr ""
1401
 
1402
- #: wppa-non-admin.php:676
1403
  #, fuzzy
1404
  msgid "You marked this image as inappropriate."
1405
  msgstr "Esteu segur que voleu marcar aquesta foto com a inapropiada?"
1406
 
1407
- #: wppa-non-admin.php:679
1408
  msgid "Please enter your name"
1409
  msgstr ""
1410
 
1411
- #: wppa-non-admin.php:680
1412
  msgid "Please enter a valid email address"
1413
  msgstr ""
1414
 
1415
- #: wppa-non-admin.php:681
1416
  #, fuzzy
1417
  msgid "Please enter a comment"
1418
  msgstr "Deixeu un comentari"
1419
 
1420
- #: wppa-non-admin.php:715
1421
  msgid "Double click to start/stop slideshow running"
1422
  msgstr ""
1423
 
1424
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1425
  #, fuzzy
1426
  msgid "wrote"
1427
  msgstr "va escriure:"
1428
 
1429
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1430
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1431
  #, fuzzy
1432
  msgid "Photo not found"
1433
  msgstr "Foto no trobada."
1434
 
1435
- #: wppa-non-admin.php:794
1436
  #, fuzzy
1437
  msgid "There are no commented photos (yet)"
1438
  msgstr "Fotos comentades recentment"
1439
 
1440
- #: wppa-non-admin.php:797
1441
  #, fuzzy
1442
  msgid "View the featured photos"
1443
  msgstr "Veure les fotos millor valorades"
1444
 
1445
- #: wppa-non-admin.php:799
1446
  msgid "There are no featured photos (yet)"
1447
  msgstr ""
1448
 
1449
- #: wppa-non-admin.php:802
1450
  #, fuzzy
1451
  msgid "View the most recent uploaded photos"
1452
  msgstr "Veure les fotos millor valorades"
1453
 
1454
- #: wppa-non-admin.php:804
1455
  #, fuzzy
1456
  msgid "There are no uploaded photos (yet)"
1457
  msgstr "Fotos pujades recentment"
1458
 
1459
- #: wppa-non-admin.php:808
1460
  msgid "By:"
1461
  msgstr ""
1462
 
1463
- #: wppa-non-admin.php:811
1464
  msgid "No album defined (yet)"
1465
  msgstr ""
1466
 
1467
- #: wppa-non-admin.php:815
1468
  msgid "There are no photos (yet)"
1469
  msgstr ""
1470
 
1471
- #: wppa-non-admin.php:818
1472
  msgid "There are too many registered users in the system for this widget"
1473
  msgstr ""
1474
 
1475
- #: wppa-non-admin.php:819
1476
  #, fuzzy
1477
  msgid "Photos uploaded by"
1478
  msgstr "Las fotos subidas en el álbum No."
1479
 
1480
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1481
  #, php-format
1482
  msgid "%d view"
1483
  msgid_plural "%d views"
1484
  msgstr[0] ""
1485
  msgstr[1] ""
1486
 
1487
- #: wppa-non-admin.php:825
1488
  #, fuzzy
1489
  msgid "There are no rated photos (yet)"
1490
  msgstr "Veure les fotos millor valorades"
@@ -1655,3 +1664,82 @@ msgstr ""
1655
  #. Author URI of the plugin/theme
1656
  msgid "http://wppa.opajaap.nl/"
1657
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:46+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_CA\n"
116
  msgid "New"
117
  msgstr "Novo álbum"
118
 
119
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
120
  msgid "Slideshow"
121
  msgstr "Presentació"
122
 
573
  msgstr[0] "Valoració mitjana"
574
  msgstr[1] "Valoració mitjana"
575
 
576
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
577
  #, php-format
578
  msgid "%d vote"
579
  msgid_plural "%d votes"
580
  msgstr[0] ""
581
  msgstr[1] ""
582
 
583
+ #: wppa-boxes-html.php:3280
584
  #, fuzzy, php-format
585
+ msgid "Rating: %4.2f."
586
  msgstr "Por favor escriba un valor numérico mayor o igual a"
587
 
588
  #: wppa-boxes-html.php:3288
590
  msgid "Photo %s not found."
591
  msgstr "Foto no trobada."
592
 
593
+ #: wppa-boxes-html.php:3343
594
+ #, fuzzy, php-format
595
+ msgid "Mean value: %4.2f."
596
+ msgstr "Por favor escriba un valor numérico mayor o igual a"
597
+
598
  #: wppa-boxes-html.php:3695
599
  #, fuzzy
600
  msgid "Refresh"
1320
  msgstr "Podeu pujar fins a"
1321
 
1322
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1323
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1324
  msgid "Download"
1325
  msgstr ""
1326
 
1332
  msgid "Press f for fullscreen."
1333
  msgstr ""
1334
 
1335
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1336
+ msgid "Toggle fullscreen"
1337
+ msgstr ""
1338
+
1339
+ #: wppa-non-admin.php:423
1340
  msgid ""
1341
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1342
  "dismiss this notice."
1343
  msgstr ""
1344
 
1345
+ #: wppa-non-admin.php:424
1346
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1347
  msgstr ""
1348
 
1349
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1350
  msgid "Start"
1351
  msgstr "Inicia"
1352
 
1353
+ #: wppa-non-admin.php:665
1354
  msgid "Stop"
1355
  msgstr ""
1356
 
1357
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1358
  msgid "Slower"
1359
  msgstr "Més lent"
1360
 
1361
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1362
  msgid "Faster"
1363
  msgstr "Més ràpid"
1364
 
1365
+ #: wppa-non-admin.php:668
1366
  #, fuzzy
1367
  msgid "Photo"
1368
  msgstr "Foto"
1369
 
1370
+ #: wppa-non-admin.php:669
1371
  msgid "of"
1372
  msgstr ""
1373
 
1374
+ #: wppa-non-admin.php:670
1375
  #, fuzzy
1376
  msgid "Previous photo"
1377
  msgstr "Anterior"
1378
 
1379
+ #: wppa-non-admin.php:671
1380
  #, fuzzy
1381
  msgid "Next photo"
1382
  msgstr "Editar la foto"
1383
 
1384
+ #: wppa-non-admin.php:672
1385
  #, fuzzy
1386
  msgid "Prev."
1387
  msgstr "Anterior"
1388
 
1389
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1390
  msgid "Next"
1391
  msgstr "Seg."
1392
 
1393
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1394
  #: wppa-slideshow.php:832
1395
  msgid "Average&nbsp;rating"
1396
  msgstr "Valoració mitjana"
1397
 
1398
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1399
  #: wppa-slideshow.php:814
1400
  msgid "My&nbsp;rating"
1401
  msgstr "La meva valoració"
1402
 
1403
+ #: wppa-non-admin.php:676
1404
  msgid "Avg."
1405
  msgstr ""
1406
 
1407
+ #: wppa-non-admin.php:677
1408
  msgid "Mine"
1409
  msgstr ""
1410
 
1411
+ #: wppa-non-admin.php:678
1412
  #, fuzzy
1413
  msgid "You marked this image as inappropriate."
1414
  msgstr "Esteu segur que voleu marcar aquesta foto com a inapropiada?"
1415
 
1416
+ #: wppa-non-admin.php:681
1417
  msgid "Please enter your name"
1418
  msgstr ""
1419
 
1420
+ #: wppa-non-admin.php:682
1421
  msgid "Please enter a valid email address"
1422
  msgstr ""
1423
 
1424
+ #: wppa-non-admin.php:683
1425
  #, fuzzy
1426
  msgid "Please enter a comment"
1427
  msgstr "Deixeu un comentari"
1428
 
1429
+ #: wppa-non-admin.php:717
1430
  msgid "Double click to start/stop slideshow running"
1431
  msgstr ""
1432
 
1433
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1434
  #, fuzzy
1435
  msgid "wrote"
1436
  msgstr "va escriure:"
1437
 
1438
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1439
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1440
  #, fuzzy
1441
  msgid "Photo not found"
1442
  msgstr "Foto no trobada."
1443
 
1444
+ #: wppa-non-admin.php:796
1445
  #, fuzzy
1446
  msgid "There are no commented photos (yet)"
1447
  msgstr "Fotos comentades recentment"
1448
 
1449
+ #: wppa-non-admin.php:799
1450
  #, fuzzy
1451
  msgid "View the featured photos"
1452
  msgstr "Veure les fotos millor valorades"
1453
 
1454
+ #: wppa-non-admin.php:801
1455
  msgid "There are no featured photos (yet)"
1456
  msgstr ""
1457
 
1458
+ #: wppa-non-admin.php:804
1459
  #, fuzzy
1460
  msgid "View the most recent uploaded photos"
1461
  msgstr "Veure les fotos millor valorades"
1462
 
1463
+ #: wppa-non-admin.php:806
1464
  #, fuzzy
1465
  msgid "There are no uploaded photos (yet)"
1466
  msgstr "Fotos pujades recentment"
1467
 
1468
+ #: wppa-non-admin.php:810
1469
  msgid "By:"
1470
  msgstr ""
1471
 
1472
+ #: wppa-non-admin.php:813
1473
  msgid "No album defined (yet)"
1474
  msgstr ""
1475
 
1476
+ #: wppa-non-admin.php:817
1477
  msgid "There are no photos (yet)"
1478
  msgstr ""
1479
 
1480
+ #: wppa-non-admin.php:820
1481
  msgid "There are too many registered users in the system for this widget"
1482
  msgstr ""
1483
 
1484
+ #: wppa-non-admin.php:821
1485
  #, fuzzy
1486
  msgid "Photos uploaded by"
1487
  msgstr "Las fotos subidas en el álbum No."
1488
 
1489
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1490
  #, php-format
1491
  msgid "%d view"
1492
  msgid_plural "%d views"
1493
  msgstr[0] ""
1494
  msgstr[1] ""
1495
 
1496
+ #: wppa-non-admin.php:827
1497
  #, fuzzy
1498
  msgid "There are no rated photos (yet)"
1499
  msgstr "Veure les fotos millor valorades"
1664
  #. Author URI of the plugin/theme
1665
  msgid "http://wppa.opajaap.nl/"
1666
  msgstr ""
1667
+
1668
+ #, fuzzy
1669
+ #~ msgid "%d Comment"
1670
+ #~ msgid_plural "%d Comments"
1671
+ #~ msgstr[0] "%d comentaris"
1672
+ #~ msgstr[1] "%d comentaris"
1673
+
1674
+ #, fuzzy
1675
+ #~ msgid "%d View"
1676
+ #~ msgid_plural "%d Views"
1677
+ #~ msgstr[0] "Veure"
1678
+ #~ msgstr[1] "Veure"
1679
+
1680
+ #~ msgid "albums"
1681
+ #~ msgstr "àlbums"
1682
+
1683
+ #~ msgid "photo"
1684
+ #~ msgstr "foto"
1685
+
1686
+ #~ msgid "photos"
1687
+ #~ msgstr "fotos"
1688
+
1689
+ #~ msgid "Categories:"
1690
+ #~ msgstr "Categorías:"
1691
+
1692
+ #~ msgid ""
1693
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1694
+ #~ "multiple file upload"
1695
+ #~ msgstr ""
1696
+ #~ "Pots pujar fins a %s fotos a la vegada si el teu navegador suporta "
1697
+ #~ "pujades de fitxers múltiples HTML-5 "
1698
+
1699
+ #, fuzzy
1700
+ #~ msgid "Max ratings: %s."
1701
+ #~ msgstr "Máxima altura."
1702
+
1703
+ #, fuzzy
1704
+ #~ msgid "Votes: %s."
1705
+ #~ msgstr "Foto %s de %s"
1706
+
1707
+ #~ msgid "Home"
1708
+ #~ msgstr "Inici"
1709
+
1710
+ #~ msgid "seconds"
1711
+ #~ msgstr "segons"
1712
+
1713
+ #~ msgid "minutes"
1714
+ #~ msgstr "minuts"
1715
+
1716
+ #~ msgid "hours"
1717
+ #~ msgstr "hores"
1718
+
1719
+ #~ msgid "days"
1720
+ #~ msgstr "dies"
1721
+
1722
+ #~ msgid "weeks"
1723
+ #~ msgstr "setmanes"
1724
+
1725
+ #~ msgid "months"
1726
+ #~ msgstr "mesos"
1727
+
1728
+ #~ msgid "years"
1729
+ #~ msgstr "anys"
1730
+
1731
+ #, fuzzy
1732
+ #~ msgid "1 Comment"
1733
+ #~ msgid_plural "%s Comments"
1734
+ #~ msgstr[0] "1 Comentari"
1735
+ #~ msgstr[1] "1 Comentari"
1736
+
1737
+ #~ msgid "There are"
1738
+ #~ msgstr "Existeixen"
1739
+
1740
+ #, fuzzy
1741
+ #~ msgid "Comments:"
1742
+ #~ msgstr "Comentaris"
1743
+
1744
+ #~ msgid "Views:"
1745
+ #~ msgstr "Vistas:"
languages/wp-photo-album-plus-es_ES.mo CHANGED
Binary file
languages/wp-photo-album-plus-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:11+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:03+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_ES\n"
@@ -116,7 +116,7 @@ msgstr "Novo álbum"
116
  msgid "New"
117
  msgstr "Novo álbum"
118
 
119
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
120
  msgid "Slideshow"
121
  msgstr "Presentación"
122
 
@@ -571,16 +571,16 @@ msgid_plural "%d max ratings"
571
  msgstr[0] "Valoració mitjana"
572
  msgstr[1] "Valoració mitjana"
573
 
574
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
575
  #, php-format
576
  msgid "%d vote"
577
  msgid_plural "%d votes"
578
  msgstr[0] ""
579
  msgstr[1] ""
580
 
581
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
582
  #, fuzzy, php-format
583
- msgid "Mean value: %4.2f."
584
  msgstr "Por favor escriba un valor numérico mayor o igual a"
585
 
586
  #: wppa-boxes-html.php:3288
@@ -588,6 +588,11 @@ msgstr "Por favor escriba un valor numérico mayor o igual a"
588
  msgid "Photo %s not found."
589
  msgstr "Foto no trobada."
590
 
 
 
 
 
 
591
  #: wppa-boxes-html.php:3695
592
  #, fuzzy
593
  msgid "Refresh"
@@ -1310,7 +1315,7 @@ msgid "You can upload after"
1310
  msgstr "Puede subir hasta."
1311
 
1312
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1313
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1314
  msgid "Download"
1315
  msgstr ""
1316
 
@@ -1322,164 +1327,168 @@ msgstr "Augmentar"
1322
  msgid "Press f for fullscreen."
1323
  msgstr ""
1324
 
1325
- #: wppa-non-admin.php:422
 
 
 
 
1326
  msgid ""
1327
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1328
  "dismiss this notice."
1329
  msgstr ""
1330
 
1331
- #: wppa-non-admin.php:423
1332
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1333
  msgstr ""
1334
 
1335
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1336
  msgid "Start"
1337
  msgstr "Comenzar"
1338
 
1339
- #: wppa-non-admin.php:663
1340
  msgid "Stop"
1341
  msgstr ""
1342
 
1343
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1344
  msgid "Slower"
1345
  msgstr "Más lento"
1346
 
1347
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1348
  msgid "Faster"
1349
  msgstr "Más rápido"
1350
 
1351
- #: wppa-non-admin.php:666
1352
  #, fuzzy
1353
  msgid "Photo"
1354
  msgstr "Foto"
1355
 
1356
- #: wppa-non-admin.php:667
1357
  msgid "of"
1358
  msgstr ""
1359
 
1360
- #: wppa-non-admin.php:668
1361
  #, fuzzy
1362
  msgid "Previous photo"
1363
  msgstr "Atrás"
1364
 
1365
- #: wppa-non-admin.php:669
1366
  #, fuzzy
1367
  msgid "Next photo"
1368
  msgstr "Editar foto"
1369
 
1370
- #: wppa-non-admin.php:670
1371
  #, fuzzy
1372
  msgid "Prev."
1373
  msgstr "Atrás"
1374
 
1375
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1376
  msgid "Next"
1377
  msgstr "Sig."
1378
 
1379
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1380
  #: wppa-slideshow.php:832
1381
  msgid "Average&nbsp;rating"
1382
  msgstr "Calificacion media"
1383
 
1384
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1385
  #: wppa-slideshow.php:814
1386
  msgid "My&nbsp;rating"
1387
  msgstr "Mi calificacion"
1388
 
1389
- #: wppa-non-admin.php:674
1390
  msgid "Avg."
1391
  msgstr ""
1392
 
1393
- #: wppa-non-admin.php:675
1394
  msgid "Mine"
1395
  msgstr ""
1396
 
1397
- #: wppa-non-admin.php:676
1398
  #, fuzzy
1399
  msgid "You marked this image as inappropriate."
1400
  msgstr "Está seguro que quiere marcar esta imagen como inapropiada?"
1401
 
1402
- #: wppa-non-admin.php:679
1403
  msgid "Please enter your name"
1404
  msgstr ""
1405
 
1406
- #: wppa-non-admin.php:680
1407
  msgid "Please enter a valid email address"
1408
  msgstr ""
1409
 
1410
- #: wppa-non-admin.php:681
1411
  #, fuzzy
1412
  msgid "Please enter a comment"
1413
  msgstr "Deje su comentario"
1414
 
1415
- #: wppa-non-admin.php:715
1416
  msgid "Double click to start/stop slideshow running"
1417
  msgstr ""
1418
 
1419
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1420
  #, fuzzy
1421
  msgid "wrote"
1422
  msgstr "escribió:"
1423
 
1424
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1425
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1426
  #, fuzzy
1427
  msgid "Photo not found"
1428
  msgstr "Foto no trobada."
1429
 
1430
- #: wppa-non-admin.php:794
1431
  #, fuzzy
1432
  msgid "There are no commented photos (yet)"
1433
  msgstr "Fotos recientemente comentadas"
1434
 
1435
- #: wppa-non-admin.php:797
1436
  #, fuzzy
1437
  msgid "View the featured photos"
1438
  msgstr "Ver las fotos mejor calificadas"
1439
 
1440
- #: wppa-non-admin.php:799
1441
  msgid "There are no featured photos (yet)"
1442
  msgstr ""
1443
 
1444
- #: wppa-non-admin.php:802
1445
  #, fuzzy
1446
  msgid "View the most recent uploaded photos"
1447
  msgstr "Ver las fotos mejor calificadas"
1448
 
1449
- #: wppa-non-admin.php:804
1450
  #, fuzzy
1451
  msgid "There are no uploaded photos (yet)"
1452
  msgstr "Fotos recientemente subidas"
1453
 
1454
- #: wppa-non-admin.php:808
1455
  msgid "By:"
1456
  msgstr ""
1457
 
1458
- #: wppa-non-admin.php:811
1459
  msgid "No album defined (yet)"
1460
  msgstr ""
1461
 
1462
- #: wppa-non-admin.php:815
1463
  msgid "There are no photos (yet)"
1464
  msgstr ""
1465
 
1466
- #: wppa-non-admin.php:818
1467
  msgid "There are too many registered users in the system for this widget"
1468
  msgstr ""
1469
 
1470
- #: wppa-non-admin.php:819
1471
  #, fuzzy
1472
  msgid "Photos uploaded by"
1473
  msgstr "Las fotos subidas en el álbum No."
1474
 
1475
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1476
  #, php-format
1477
  msgid "%d view"
1478
  msgid_plural "%d views"
1479
  msgstr[0] ""
1480
  msgstr[1] ""
1481
 
1482
- #: wppa-non-admin.php:825
1483
  #, fuzzy
1484
  msgid "There are no rated photos (yet)"
1485
  msgstr "Ver las fotos mejor calificadas"
@@ -1650,3 +1659,77 @@ msgstr ""
1650
  #. Author URI of the plugin/theme
1651
  msgid "http://wppa.opajaap.nl/"
1652
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: es_ES\n"
116
  msgid "New"
117
  msgstr "Novo álbum"
118
 
119
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
120
  msgid "Slideshow"
121
  msgstr "Presentación"
122
 
571
  msgstr[0] "Valoració mitjana"
572
  msgstr[1] "Valoració mitjana"
573
 
574
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
575
  #, php-format
576
  msgid "%d vote"
577
  msgid_plural "%d votes"
578
  msgstr[0] ""
579
  msgstr[1] ""
580
 
581
+ #: wppa-boxes-html.php:3280
582
  #, fuzzy, php-format
583
+ msgid "Rating: %4.2f."
584
  msgstr "Por favor escriba un valor numérico mayor o igual a"
585
 
586
  #: wppa-boxes-html.php:3288
588
  msgid "Photo %s not found."
589
  msgstr "Foto no trobada."
590
 
591
+ #: wppa-boxes-html.php:3343
592
+ #, fuzzy, php-format
593
+ msgid "Mean value: %4.2f."
594
+ msgstr "Por favor escriba un valor numérico mayor o igual a"
595
+
596
  #: wppa-boxes-html.php:3695
597
  #, fuzzy
598
  msgid "Refresh"
1315
  msgstr "Puede subir hasta."
1316
 
1317
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1318
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1319
  msgid "Download"
1320
  msgstr ""
1321
 
1327
  msgid "Press f for fullscreen."
1328
  msgstr ""
1329
 
1330
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1331
+ msgid "Toggle fullscreen"
1332
+ msgstr ""
1333
+
1334
+ #: wppa-non-admin.php:423
1335
  msgid ""
1336
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1337
  "dismiss this notice."
1338
  msgstr ""
1339
 
1340
+ #: wppa-non-admin.php:424
1341
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1342
  msgstr ""
1343
 
1344
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1345
  msgid "Start"
1346
  msgstr "Comenzar"
1347
 
1348
+ #: wppa-non-admin.php:665
1349
  msgid "Stop"
1350
  msgstr ""
1351
 
1352
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1353
  msgid "Slower"
1354
  msgstr "Más lento"
1355
 
1356
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1357
  msgid "Faster"
1358
  msgstr "Más rápido"
1359
 
1360
+ #: wppa-non-admin.php:668
1361
  #, fuzzy
1362
  msgid "Photo"
1363
  msgstr "Foto"
1364
 
1365
+ #: wppa-non-admin.php:669
1366
  msgid "of"
1367
  msgstr ""
1368
 
1369
+ #: wppa-non-admin.php:670
1370
  #, fuzzy
1371
  msgid "Previous photo"
1372
  msgstr "Atrás"
1373
 
1374
+ #: wppa-non-admin.php:671
1375
  #, fuzzy
1376
  msgid "Next photo"
1377
  msgstr "Editar foto"
1378
 
1379
+ #: wppa-non-admin.php:672
1380
  #, fuzzy
1381
  msgid "Prev."
1382
  msgstr "Atrás"
1383
 
1384
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1385
  msgid "Next"
1386
  msgstr "Sig."
1387
 
1388
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1389
  #: wppa-slideshow.php:832
1390
  msgid "Average&nbsp;rating"
1391
  msgstr "Calificacion media"
1392
 
1393
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1394
  #: wppa-slideshow.php:814
1395
  msgid "My&nbsp;rating"
1396
  msgstr "Mi calificacion"
1397
 
1398
+ #: wppa-non-admin.php:676
1399
  msgid "Avg."
1400
  msgstr ""
1401
 
1402
+ #: wppa-non-admin.php:677
1403
  msgid "Mine"
1404
  msgstr ""
1405
 
1406
+ #: wppa-non-admin.php:678
1407
  #, fuzzy
1408
  msgid "You marked this image as inappropriate."
1409
  msgstr "Está seguro que quiere marcar esta imagen como inapropiada?"
1410
 
1411
+ #: wppa-non-admin.php:681
1412
  msgid "Please enter your name"
1413
  msgstr ""
1414
 
1415
+ #: wppa-non-admin.php:682
1416
  msgid "Please enter a valid email address"
1417
  msgstr ""
1418
 
1419
+ #: wppa-non-admin.php:683
1420
  #, fuzzy
1421
  msgid "Please enter a comment"
1422
  msgstr "Deje su comentario"
1423
 
1424
+ #: wppa-non-admin.php:717
1425
  msgid "Double click to start/stop slideshow running"
1426
  msgstr ""
1427
 
1428
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1429
  #, fuzzy
1430
  msgid "wrote"
1431
  msgstr "escribió:"
1432
 
1433
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1434
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1435
  #, fuzzy
1436
  msgid "Photo not found"
1437
  msgstr "Foto no trobada."
1438
 
1439
+ #: wppa-non-admin.php:796
1440
  #, fuzzy
1441
  msgid "There are no commented photos (yet)"
1442
  msgstr "Fotos recientemente comentadas"
1443
 
1444
+ #: wppa-non-admin.php:799
1445
  #, fuzzy
1446
  msgid "View the featured photos"
1447
  msgstr "Ver las fotos mejor calificadas"
1448
 
1449
+ #: wppa-non-admin.php:801
1450
  msgid "There are no featured photos (yet)"
1451
  msgstr ""
1452
 
1453
+ #: wppa-non-admin.php:804
1454
  #, fuzzy
1455
  msgid "View the most recent uploaded photos"
1456
  msgstr "Ver las fotos mejor calificadas"
1457
 
1458
+ #: wppa-non-admin.php:806
1459
  #, fuzzy
1460
  msgid "There are no uploaded photos (yet)"
1461
  msgstr "Fotos recientemente subidas"
1462
 
1463
+ #: wppa-non-admin.php:810
1464
  msgid "By:"
1465
  msgstr ""
1466
 
1467
+ #: wppa-non-admin.php:813
1468
  msgid "No album defined (yet)"
1469
  msgstr ""
1470
 
1471
+ #: wppa-non-admin.php:817
1472
  msgid "There are no photos (yet)"
1473
  msgstr ""
1474
 
1475
+ #: wppa-non-admin.php:820
1476
  msgid "There are too many registered users in the system for this widget"
1477
  msgstr ""
1478
 
1479
+ #: wppa-non-admin.php:821
1480
  #, fuzzy
1481
  msgid "Photos uploaded by"
1482
  msgstr "Las fotos subidas en el álbum No."
1483
 
1484
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1485
  #, php-format
1486
  msgid "%d view"
1487
  msgid_plural "%d views"
1488
  msgstr[0] ""
1489
  msgstr[1] ""
1490
 
1491
+ #: wppa-non-admin.php:827
1492
  #, fuzzy
1493
  msgid "There are no rated photos (yet)"
1494
  msgstr "Ver las fotos mejor calificadas"
1659
  #. Author URI of the plugin/theme
1660
  msgid "http://wppa.opajaap.nl/"
1661
  msgstr ""
1662
+
1663
+ #, fuzzy
1664
+ #~ msgid "%d Comment"
1665
+ #~ msgid_plural "%d Comments"
1666
+ #~ msgstr[0] "%d comentarios"
1667
+ #~ msgstr[1] "%d comentarios"
1668
+
1669
+ #, fuzzy
1670
+ #~ msgid "%d View"
1671
+ #~ msgid_plural "%d Views"
1672
+ #~ msgstr[0] "Ver"
1673
+ #~ msgstr[1] "Ver"
1674
+
1675
+ #~ msgid "albums"
1676
+ #~ msgstr "álbumes"
1677
+
1678
+ #~ msgid "photo"
1679
+ #~ msgstr "foto"
1680
+
1681
+ #~ msgid "photos"
1682
+ #~ msgstr "fotos"
1683
+
1684
+ #~ msgid ""
1685
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1686
+ #~ "multiple file upload"
1687
+ #~ msgstr "Puede subir hasta %s fotos a la vez si su navegador soporta HTML-5"
1688
+
1689
+ #, fuzzy
1690
+ #~ msgid "Max ratings: %s."
1691
+ #~ msgstr "Máxima altura."
1692
+
1693
+ #, fuzzy
1694
+ #~ msgid "Votes: %s."
1695
+ #~ msgstr "Foto %s de %s"
1696
+
1697
+ #~ msgid "Home"
1698
+ #~ msgstr "Inicio"
1699
+
1700
+ #~ msgid "seconds"
1701
+ #~ msgstr "segundos"
1702
+
1703
+ #~ msgid "minutes"
1704
+ #~ msgstr "minutos"
1705
+
1706
+ #~ msgid "hours"
1707
+ #~ msgstr "horas"
1708
+
1709
+ #~ msgid "days"
1710
+ #~ msgstr "días"
1711
+
1712
+ #~ msgid "weeks"
1713
+ #~ msgstr "semanas"
1714
+
1715
+ #~ msgid "months"
1716
+ #~ msgstr "meses"
1717
+
1718
+ #~ msgid "years"
1719
+ #~ msgstr "años"
1720
+
1721
+ #, fuzzy
1722
+ #~ msgid "1 Comment"
1723
+ #~ msgid_plural "%s Comments"
1724
+ #~ msgstr[0] "1 Comentario"
1725
+ #~ msgstr[1] "1 Comentario"
1726
+
1727
+ #~ msgid "There are"
1728
+ #~ msgstr "Existen"
1729
+
1730
+ #, fuzzy
1731
+ #~ msgid "Comments:"
1732
+ #~ msgstr "Comentarios"
1733
+
1734
+ #~ msgid "Views:"
1735
+ #~ msgstr "Vistas:"
languages/wp-photo-album-plus-fi.mo CHANGED
Binary file
languages/wp-photo-album-plus-fi.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:12+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:03+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: fi_FI\n"
@@ -119,7 +119,7 @@ msgstr "Neues Album"
119
  msgid "New"
120
  msgstr "Neues Album"
121
 
122
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
123
  msgid "Slideshow"
124
  msgstr "Esitys"
125
 
@@ -597,16 +597,16 @@ msgid_plural "%d max ratings"
597
  msgstr[0] "Der Raum zwischen avg und meine Bewertungssterne"
598
  msgstr[1] "Der Raum zwischen avg und meine Bewertungssterne"
599
 
600
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
601
  #, php-format
602
  msgid "%d vote"
603
  msgid_plural "%d votes"
604
  msgstr[0] ""
605
  msgstr[1] ""
606
 
607
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
608
  #, fuzzy, php-format
609
- msgid "Mean value: %4.2f."
610
  msgstr "Mittelwert:"
611
 
612
  #: wppa-boxes-html.php:3288
@@ -614,6 +614,11 @@ msgstr "Mittelwert:"
614
  msgid "Photo %s not found."
615
  msgstr "Kuvaa ei löytynyt"
616
 
 
 
 
 
 
617
  #: wppa-boxes-html.php:3695
618
  #, fuzzy
619
  msgid "Refresh"
@@ -1402,7 +1407,7 @@ msgid "You can upload after"
1402
  msgstr "bevor Du Deine Fotos hochladen kannst."
1403
 
1404
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1405
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1406
  #, fuzzy
1407
  msgid "Download"
1408
  msgstr "Popup Download Link"
@@ -1416,164 +1421,168 @@ msgstr "Zeigt Zoom in"
1416
  msgid "Press f for fullscreen."
1417
  msgstr ""
1418
 
1419
- #: wppa-non-admin.php:422
 
 
 
 
1420
  msgid ""
1421
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1422
  "dismiss this notice."
1423
  msgstr ""
1424
 
1425
- #: wppa-non-admin.php:423
1426
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1427
  msgstr ""
1428
 
1429
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1430
  msgid "Start"
1431
  msgstr "Aloita"
1432
 
1433
- #: wppa-non-admin.php:663
1434
  msgid "Stop"
1435
  msgstr ""
1436
 
1437
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1438
  msgid "Slower"
1439
  msgstr "Hitaammin"
1440
 
1441
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1442
  msgid "Faster"
1443
  msgstr "Nopeammin"
1444
 
1445
- #: wppa-non-admin.php:666
1446
  #, fuzzy
1447
  msgid "Photo"
1448
  msgstr "Kuva"
1449
 
1450
- #: wppa-non-admin.php:667
1451
  msgid "of"
1452
  msgstr ""
1453
 
1454
- #: wppa-non-admin.php:668
1455
  #, fuzzy
1456
  msgid "Previous photo"
1457
  msgstr "Vorheriges Foto"
1458
 
1459
- #: wppa-non-admin.php:669
1460
  #, fuzzy
1461
  msgid "Next photo"
1462
  msgstr "Foto bearbeiten"
1463
 
1464
- #: wppa-non-admin.php:670
1465
  #, fuzzy
1466
  msgid "Prev."
1467
  msgstr "Vorheriges Foto"
1468
 
1469
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1470
  #, fuzzy
1471
  msgid "Next"
1472
  msgstr "Nächstes"
1473
 
1474
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1475
  #: wppa-slideshow.php:832
1476
  msgid "Average&nbsp;rating"
1477
  msgstr "Keskiarvo"
1478
 
1479
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1480
  #: wppa-slideshow.php:814
1481
  msgid "My&nbsp;rating"
1482
  msgstr "Oma&nbsp;arvosana"
1483
 
1484
- #: wppa-non-admin.php:674
1485
  msgid "Avg."
1486
  msgstr ""
1487
 
1488
- #: wppa-non-admin.php:675
1489
  msgid "Mine"
1490
  msgstr ""
1491
 
1492
- #: wppa-non-admin.php:676
1493
  #, fuzzy
1494
  msgid "You marked this image as inappropriate."
1495
  msgstr "Möchtest Du Bewertung dieses Album wirklich löschen willst?"
1496
 
1497
- #: wppa-non-admin.php:679
1498
  msgid "Please enter your name"
1499
  msgstr ""
1500
 
1501
- #: wppa-non-admin.php:680
1502
  msgid "Please enter a valid email address"
1503
  msgstr ""
1504
 
1505
- #: wppa-non-admin.php:681
1506
  #, fuzzy
1507
  msgid "Please enter a comment"
1508
  msgstr "Jätä kommentti"
1509
 
1510
- #: wppa-non-admin.php:715
1511
  msgid "Double click to start/stop slideshow running"
1512
  msgstr ""
1513
 
1514
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1515
  msgid "wrote"
1516
  msgstr ""
1517
 
1518
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1519
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1520
  #, fuzzy
1521
  msgid "Photo not found"
1522
  msgstr "Kuvaa ei löytynyt"
1523
 
1524
- #: wppa-non-admin.php:794
1525
  #, fuzzy
1526
  msgid "There are no commented photos (yet)"
1527
  msgstr "--- Die zuletzt kommentierten Fotos ---"
1528
 
1529
- #: wppa-non-admin.php:797
1530
  #, fuzzy
1531
  msgid "View the featured photos"
1532
  msgstr "Betrachte die best bewertesten Fotos"
1533
 
1534
- #: wppa-non-admin.php:799
1535
  msgid "There are no featured photos (yet)"
1536
  msgstr ""
1537
 
1538
- #: wppa-non-admin.php:802
1539
  #, fuzzy
1540
  msgid "View the most recent uploaded photos"
1541
  msgstr "Betrachte die best bewertesten Fotos"
1542
 
1543
- #: wppa-non-admin.php:804
1544
  #, fuzzy
1545
  msgid "There are no uploaded photos (yet)"
1546
  msgstr "--- Die zuletzt hochgeladenen Fotos---"
1547
 
1548
- #: wppa-non-admin.php:808
1549
  msgid "By:"
1550
  msgstr ""
1551
 
1552
- #: wppa-non-admin.php:811
1553
  msgid "No album defined (yet)"
1554
  msgstr ""
1555
 
1556
- #: wppa-non-admin.php:815
1557
  msgid "There are no photos (yet)"
1558
  msgstr ""
1559
 
1560
- #: wppa-non-admin.php:818
1561
  msgid "There are too many registered users in the system for this widget"
1562
  msgstr ""
1563
 
1564
- #: wppa-non-admin.php:819
1565
  #, fuzzy
1566
  msgid "Photos uploaded by"
1567
  msgstr "Fotos hochgeladen zu Album Nr"
1568
 
1569
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1570
  #, php-format
1571
  msgid "%d view"
1572
  msgid_plural "%d views"
1573
  msgstr[0] ""
1574
  msgstr[1] ""
1575
 
1576
- #: wppa-non-admin.php:825
1577
  #, fuzzy
1578
  msgid "There are no rated photos (yet)"
1579
  msgstr "Betrachte die best bewertesten Fotos"
@@ -1758,3 +1767,95 @@ msgstr ""
1758
  #. Author URI of the plugin/theme
1759
  msgid "http://wppa.opajaap.nl/"
1760
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: fi_FI\n"
119
  msgid "New"
120
  msgstr "Neues Album"
121
 
122
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
123
  msgid "Slideshow"
124
  msgstr "Esitys"
125
 
597
  msgstr[0] "Der Raum zwischen avg und meine Bewertungssterne"
598
  msgstr[1] "Der Raum zwischen avg und meine Bewertungssterne"
599
 
600
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
601
  #, php-format
602
  msgid "%d vote"
603
  msgid_plural "%d votes"
604
  msgstr[0] ""
605
  msgstr[1] ""
606
 
607
+ #: wppa-boxes-html.php:3280
608
  #, fuzzy, php-format
609
+ msgid "Rating: %4.2f."
610
  msgstr "Mittelwert:"
611
 
612
  #: wppa-boxes-html.php:3288
614
  msgid "Photo %s not found."
615
  msgstr "Kuvaa ei löytynyt"
616
 
617
+ #: wppa-boxes-html.php:3343
618
+ #, fuzzy, php-format
619
+ msgid "Mean value: %4.2f."
620
+ msgstr "Mittelwert:"
621
+
622
  #: wppa-boxes-html.php:3695
623
  #, fuzzy
624
  msgid "Refresh"
1407
  msgstr "bevor Du Deine Fotos hochladen kannst."
1408
 
1409
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1410
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1411
  #, fuzzy
1412
  msgid "Download"
1413
  msgstr "Popup Download Link"
1421
  msgid "Press f for fullscreen."
1422
  msgstr ""
1423
 
1424
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1425
+ msgid "Toggle fullscreen"
1426
+ msgstr ""
1427
+
1428
+ #: wppa-non-admin.php:423
1429
  msgid ""
1430
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1431
  "dismiss this notice."
1432
  msgstr ""
1433
 
1434
+ #: wppa-non-admin.php:424
1435
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1436
  msgstr ""
1437
 
1438
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1439
  msgid "Start"
1440
  msgstr "Aloita"
1441
 
1442
+ #: wppa-non-admin.php:665
1443
  msgid "Stop"
1444
  msgstr ""
1445
 
1446
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1447
  msgid "Slower"
1448
  msgstr "Hitaammin"
1449
 
1450
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1451
  msgid "Faster"
1452
  msgstr "Nopeammin"
1453
 
1454
+ #: wppa-non-admin.php:668
1455
  #, fuzzy
1456
  msgid "Photo"
1457
  msgstr "Kuva"
1458
 
1459
+ #: wppa-non-admin.php:669
1460
  msgid "of"
1461
  msgstr ""
1462
 
1463
+ #: wppa-non-admin.php:670
1464
  #, fuzzy
1465
  msgid "Previous photo"
1466
  msgstr "Vorheriges Foto"
1467
 
1468
+ #: wppa-non-admin.php:671
1469
  #, fuzzy
1470
  msgid "Next photo"
1471
  msgstr "Foto bearbeiten"
1472
 
1473
+ #: wppa-non-admin.php:672
1474
  #, fuzzy
1475
  msgid "Prev."
1476
  msgstr "Vorheriges Foto"
1477
 
1478
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1479
  #, fuzzy
1480
  msgid "Next"
1481
  msgstr "Nächstes"
1482
 
1483
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1484
  #: wppa-slideshow.php:832
1485
  msgid "Average&nbsp;rating"
1486
  msgstr "Keskiarvo"
1487
 
1488
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1489
  #: wppa-slideshow.php:814
1490
  msgid "My&nbsp;rating"
1491
  msgstr "Oma&nbsp;arvosana"
1492
 
1493
+ #: wppa-non-admin.php:676
1494
  msgid "Avg."
1495
  msgstr ""
1496
 
1497
+ #: wppa-non-admin.php:677
1498
  msgid "Mine"
1499
  msgstr ""
1500
 
1501
+ #: wppa-non-admin.php:678
1502
  #, fuzzy
1503
  msgid "You marked this image as inappropriate."
1504
  msgstr "Möchtest Du Bewertung dieses Album wirklich löschen willst?"
1505
 
1506
+ #: wppa-non-admin.php:681
1507
  msgid "Please enter your name"
1508
  msgstr ""
1509
 
1510
+ #: wppa-non-admin.php:682
1511
  msgid "Please enter a valid email address"
1512
  msgstr ""
1513
 
1514
+ #: wppa-non-admin.php:683
1515
  #, fuzzy
1516
  msgid "Please enter a comment"
1517
  msgstr "Jätä kommentti"
1518
 
1519
+ #: wppa-non-admin.php:717
1520
  msgid "Double click to start/stop slideshow running"
1521
  msgstr ""
1522
 
1523
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1524
  msgid "wrote"
1525
  msgstr ""
1526
 
1527
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1528
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1529
  #, fuzzy
1530
  msgid "Photo not found"
1531
  msgstr "Kuvaa ei löytynyt"
1532
 
1533
+ #: wppa-non-admin.php:796
1534
  #, fuzzy
1535
  msgid "There are no commented photos (yet)"
1536
  msgstr "--- Die zuletzt kommentierten Fotos ---"
1537
 
1538
+ #: wppa-non-admin.php:799
1539
  #, fuzzy
1540
  msgid "View the featured photos"
1541
  msgstr "Betrachte die best bewertesten Fotos"
1542
 
1543
+ #: wppa-non-admin.php:801
1544
  msgid "There are no featured photos (yet)"
1545
  msgstr ""
1546
 
1547
+ #: wppa-non-admin.php:804
1548
  #, fuzzy
1549
  msgid "View the most recent uploaded photos"
1550
  msgstr "Betrachte die best bewertesten Fotos"
1551
 
1552
+ #: wppa-non-admin.php:806
1553
  #, fuzzy
1554
  msgid "There are no uploaded photos (yet)"
1555
  msgstr "--- Die zuletzt hochgeladenen Fotos---"
1556
 
1557
+ #: wppa-non-admin.php:810
1558
  msgid "By:"
1559
  msgstr ""
1560
 
1561
+ #: wppa-non-admin.php:813
1562
  msgid "No album defined (yet)"
1563
  msgstr ""
1564
 
1565
+ #: wppa-non-admin.php:817
1566
  msgid "There are no photos (yet)"
1567
  msgstr ""
1568
 
1569
+ #: wppa-non-admin.php:820
1570
  msgid "There are too many registered users in the system for this widget"
1571
  msgstr ""
1572
 
1573
+ #: wppa-non-admin.php:821
1574
  #, fuzzy
1575
  msgid "Photos uploaded by"
1576
  msgstr "Fotos hochgeladen zu Album Nr"
1577
 
1578
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1579
  #, php-format
1580
  msgid "%d view"
1581
  msgid_plural "%d views"
1582
  msgstr[0] ""
1583
  msgstr[1] ""
1584
 
1585
+ #: wppa-non-admin.php:827
1586
  #, fuzzy
1587
  msgid "There are no rated photos (yet)"
1588
  msgstr "Betrachte die best bewertesten Fotos"
1767
  #. Author URI of the plugin/theme
1768
  msgid "http://wppa.opajaap.nl/"
1769
  msgstr ""
1770
+
1771
+ #, fuzzy
1772
+ #~ msgid "%d Comment"
1773
+ #~ msgid_plural "%d Comments"
1774
+ #~ msgstr[0] "%d Kommentare"
1775
+ #~ msgstr[1] "%d Kommentare"
1776
+
1777
+ #, fuzzy
1778
+ #~ msgid "%d View"
1779
+ #~ msgid_plural "%d Views"
1780
+ #~ msgstr[0] "Katso"
1781
+ #~ msgstr[1] "Katso"
1782
+
1783
+ #~ msgid "albums"
1784
+ #~ msgstr "albumit"
1785
+
1786
+ #~ msgid "photo"
1787
+ #~ msgstr "kuva"
1788
+
1789
+ #~ msgid "photos"
1790
+ #~ msgstr "kuvaa"
1791
+
1792
+ #~ msgid "Categories:"
1793
+ #~ msgstr "Kategoriat:"
1794
+
1795
+ #, fuzzy
1796
+ #~ msgid ""
1797
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1798
+ #~ "multiple file upload"
1799
+ #~ msgstr ""
1800
+ #~ "Du benötigst einen modernen Browser, der HTML-5 unterstützt, um mehrere "
1801
+ #~ "Dateien auszuwählen"
1802
+
1803
+ #, fuzzy
1804
+ #~ msgid "Max ratings: %s."
1805
+ #~ msgstr "auto selekt max %s zufällig"
1806
+
1807
+ #, fuzzy
1808
+ #~ msgid "Votes: %s."
1809
+ #~ msgstr "%s Stimme(n)"
1810
+
1811
+ #~ msgid "Home"
1812
+ #~ msgstr "Etusivu"
1813
+
1814
+ #, fuzzy
1815
+ #~ msgid "seconds"
1816
+ #~ msgstr "Sekunden"
1817
+
1818
+ #, fuzzy
1819
+ #~ msgid "minutes"
1820
+ #~ msgstr "Minuten"
1821
+
1822
+ #, fuzzy
1823
+ #~ msgid "hours"
1824
+ #~ msgstr "Stunden"
1825
+
1826
+ #, fuzzy
1827
+ #~ msgid "days"
1828
+ #~ msgstr "Tage"
1829
+
1830
+ #, fuzzy
1831
+ #~ msgid "weeks"
1832
+ #~ msgstr "Wochen"
1833
+
1834
+ #, fuzzy
1835
+ #~ msgid "months"
1836
+ #~ msgstr "Monate"
1837
+
1838
+ #, fuzzy
1839
+ #~ msgid "years"
1840
+ #~ msgstr "Jahr"
1841
+
1842
+ #, fuzzy
1843
+ #~ msgid "1 Comment"
1844
+ #~ msgid_plural "%s Comments"
1845
+ #~ msgstr[0] "Kommentar:"
1846
+ #~ msgstr[1] "Kommentar:"
1847
+
1848
+ #, fuzzy
1849
+ #~ msgid "Download:"
1850
+ #~ msgstr "Popup Download Link"
1851
+
1852
+ #~ msgid "There are"
1853
+ #~ msgstr "Käytettävissä on"
1854
+
1855
+ #, fuzzy
1856
+ #~ msgid "Comments:"
1857
+ #~ msgstr "Kommentare"
1858
+
1859
+ #, fuzzy
1860
+ #~ msgid "Views:"
1861
+ #~ msgstr "Katso"
languages/wp-photo-album-plus-fr_FR.mo CHANGED
Binary file
languages/wp-photo-album-plus-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-12-28 16:06+0100\n"
6
- "PO-Revision-Date: 2015-12-28 16:08+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: French <kde-i18n-doc@kde.org>\n"
9
  "Language: fr_FR\n"
@@ -43,7 +43,7 @@ msgid "Warning. No page defined for search results!"
43
  msgstr "Attention. Aucune page définie pour les résultats de recherche!"
44
 
45
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:168
46
- #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3135
47
  msgid "Search"
48
  msgstr "Chercher"
49
 
@@ -231,11 +231,11 @@ msgstr "ERREUR: Album ou fichier inconnu."
231
  msgid "Photo&thinsp;Albums"
232
  msgstr "Albums&thinsp;Photo"
233
 
234
- #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5665
235
  msgid "Album Admin"
236
  msgstr "Administration de l'album"
237
 
238
- #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5666
239
  #: wppa-upload-widget.php:71 wppa-upload.php:88
240
  msgid "Upload Photos"
241
  msgstr "Charger des photos"
@@ -244,7 +244,7 @@ msgstr "Charger des photos"
244
  msgid "Edit Photos"
245
  msgstr "Modifier les photos"
246
 
247
- #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5667
248
  #: wppa-upload.php:459
249
  msgid "Import Photos"
250
  msgstr "Importer des photos"
@@ -254,12 +254,12 @@ msgid "Moderate Photos"
254
  msgstr "Modérez les photos"
255
 
256
  #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
257
- #: wppa-settings-autosave.php:5669
258
  msgid "Export Photos"
259
  msgstr "Exporter des photos"
260
 
261
  #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
262
- #: wppa-settings-autosave.php:5670
263
  msgid "Settings"
264
  msgstr "Réglages"
265
 
@@ -268,7 +268,7 @@ msgid "Photo of the day Widget"
268
  msgstr "Widget \"Photo du jour\""
269
 
270
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
271
- #: wppa-settings-autosave.php:5671 wppa-setup.php:1413
272
  msgid "Photo of the day"
273
  msgstr "Photo du jour"
274
 
@@ -277,8 +277,8 @@ msgid "Manage comments"
277
  msgstr "Gérer les commentaires"
278
 
279
  #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
280
- #: wppa-settings-autosave.php:2964 wppa-settings-autosave.php:7857
281
- #: wppa-settings-autosave.php:7902
282
  msgid "Comments"
283
  msgstr "Commentaires"
284
 
@@ -302,11 +302,11 @@ msgstr "L'importation est temporairement désactivée pour vous"
302
  msgid "Import"
303
  msgstr "Importer"
304
 
305
- #: wppa-admin.php:122 wppa-settings-autosave.php:8936
306
  msgid "Update"
307
  msgstr "Mettre à jour"
308
 
309
- #: wppa-adminbar.php:103 wppa-settings-autosave.php:5673
310
  msgid "Help & Info"
311
  msgstr "Aide & Information"
312
 
@@ -524,15 +524,15 @@ msgstr ""
524
  #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
525
  #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
526
  #: wppa-settings-autosave.php:1355 wppa-settings-autosave.php:1376
527
- #: wppa-settings-autosave.php:2861 wppa-settings-autosave.php:2882
528
- #: wppa-settings-autosave.php:3193 wppa-settings-autosave.php:3217
529
- #: wppa-settings-autosave.php:3686 wppa-settings-autosave.php:3800
530
- #: wppa-settings-autosave.php:4368 wppa-settings-autosave.php:4389
531
- #: wppa-settings-autosave.php:4565 wppa-settings-autosave.php:4589
532
- #: wppa-settings-autosave.php:5631 wppa-settings-autosave.php:6153
533
- #: wppa-settings-autosave.php:6175 wppa-settings-autosave.php:6755
534
- #: wppa-settings-autosave.php:6779 wppa-settings-autosave.php:7851
535
- #: wppa-settings-autosave.php:8483 wppa-settings-autosave.php:8639
536
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
537
  msgid "Name"
538
  msgstr "Nom"
@@ -543,16 +543,16 @@ msgstr "Nom"
543
  #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
544
  #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
545
  #: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:1377
546
- #: wppa-settings-autosave.php:2862 wppa-settings-autosave.php:2883
547
- #: wppa-settings-autosave.php:3194 wppa-settings-autosave.php:3218
548
- #: wppa-settings-autosave.php:4369 wppa-settings-autosave.php:4390
549
- #: wppa-settings-autosave.php:4566 wppa-settings-autosave.php:4590
550
- #: wppa-settings-autosave.php:5632 wppa-settings-autosave.php:6154
551
- #: wppa-settings-autosave.php:6176 wppa-settings-autosave.php:6756
552
- #: wppa-settings-autosave.php:6780 wppa-settings-autosave.php:8484
553
- #: wppa-settings-autosave.php:8506 wppa-settings-autosave.php:8546
554
- #: wppa-settings-autosave.php:8568 wppa-settings-autosave.php:8614
555
- #: wppa-settings-autosave.php:8640 wppa-widget-admin.php:256
556
  msgid "Description"
557
  msgstr "Description"
558
 
@@ -572,7 +572,7 @@ msgstr "Photo de couverture"
572
  msgid "Parent album"
573
  msgstr "Album Parent"
574
 
575
- #: wppa-ajax.php:847 wppa-settings-autosave.php:3680
576
  msgid "Photo order"
577
  msgstr "Ordre des photos"
578
 
@@ -584,8 +584,8 @@ msgstr ""
584
  msgid "Cover Type"
585
  msgstr "Type de couverture"
586
 
587
- #: wppa-ajax.php:856 wppa-settings-autosave.php:4591
588
- #: wppa-settings-autosave.php:5633
589
  msgid "Link type"
590
  msgstr "Type de lien"
591
 
@@ -733,7 +733,7 @@ msgid "Could not remake thumbnail"
733
  msgstr "Impossible de recréer les vignette"
734
 
735
  #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:183
736
- #: wppa-settings-autosave.php:3496 wppa-tinymce-scripts.php:288
737
  #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:84
738
  msgid "left"
739
  msgstr "gauche"
@@ -743,7 +743,7 @@ msgid "180&deg;"
743
  msgstr "180&deg;"
744
 
745
  #: wppa-ajax.php:1144 wppa-photo-admin-autosave.php:187
746
- #: wppa-settings-autosave.php:3496 wppa-tinymce-scripts.php:290
747
  #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:86
748
  msgid "right"
749
  msgstr "droite"
@@ -816,9 +816,9 @@ msgstr "Tags de la photo"
816
 
817
  #: wppa-ajax.php:1266 wppa-comment-admin.php:309 wppa-comment-admin.php:396
818
  #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
819
- #: wppa-settings-autosave.php:6179 wppa-settings-autosave.php:6759
820
- #: wppa-settings-autosave.php:8507 wppa-settings-autosave.php:8547
821
- #: wppa-settings-autosave.php:8569 wppa-settings-autosave.php:8615
822
  msgid "Status"
823
  msgstr "Statut"
824
 
@@ -1016,15 +1016,15 @@ msgstr "Opacité du filigrane"
1016
  msgid "Number of text lines"
1017
  msgstr ""
1018
 
1019
- #: wppa-ajax.php:1636 wppa-settings-autosave.php:4267
1020
  msgid "Overlay opacity"
1021
  msgstr ""
1022
 
1023
- #: wppa-ajax.php:1639 wppa-settings-autosave.php:7310
1024
  msgid "Upload limit"
1025
  msgstr "Limite d'upload"
1026
 
1027
- #: wppa-ajax.php:1642 wppa-settings-autosave.php:3975
1028
  msgid "Notify inappropriate"
1029
  msgstr ""
1030
 
@@ -1036,7 +1036,7 @@ msgstr "Avis négatif en attente"
1036
  msgid "Dislike delete"
1037
  msgstr "Effacer les avis négatifs"
1038
 
1039
- #: wppa-ajax.php:1651 wppa-settings-autosave.php:6855
1040
  msgid "Max execution time"
1041
  msgstr ""
1042
 
@@ -1048,11 +1048,11 @@ msgstr ""
1048
  msgid "JPG Image quality"
1049
  msgstr ""
1050
 
1051
- #: wppa-ajax.php:1665 wppa-settings-autosave.php:3889
1052
  msgid "Number of coverphotos"
1053
  msgstr "Nombre de photos de couverture"
1054
 
1055
- #: wppa-ajax.php:1668 wppa-settings-autosave.php:3946
1056
  msgid "Dislike value"
1057
  msgstr ""
1058
 
@@ -1064,19 +1064,19 @@ msgstr "Taille de page du diaporama"
1064
  msgid "Max Pagelinks"
1065
  msgstr "Nb max. de liens de page"
1066
 
1067
- #: wppa-ajax.php:1677 wppa-settings-autosave.php:2800
1068
  msgid "Start/pause symbol size"
1069
  msgstr ""
1070
 
1071
- #: wppa-ajax.php:1680 wppa-settings-autosave.php:2809
1072
  msgid "Start/pause symbol border radius"
1073
  msgstr ""
1074
 
1075
- #: wppa-ajax.php:1683 wppa-settings-autosave.php:2818
1076
  msgid "Stop symbol size"
1077
  msgstr ""
1078
 
1079
- #: wppa-ajax.php:1686 wppa-settings-autosave.php:2827
1080
  msgid "Stop symbol border radius"
1081
  msgstr ""
1082
 
@@ -1268,7 +1268,7 @@ msgid "Top of page"
1268
  msgstr "Haut de page"
1269
 
1270
  #: wppa-album-admin-autosave.php:114 wppa-functions.php:3890
1271
- #: wppa-settings-autosave.php:7167 wppa-wpdb-insert.php:329
1272
  msgid "New Album"
1273
  msgstr "Nouvel album"
1274
 
@@ -1407,67 +1407,67 @@ msgid "Photo order:"
1407
  msgstr "Ordre des photos:"
1408
 
1409
  #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1410
- #: wppa-settings-autosave.php:3723 wppa-settings-autosave.php:3747
1411
  msgid "--- default ---"
1412
  msgstr "--- défaut ---"
1413
 
1414
  #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1415
- #: wppa-settings-autosave.php:3685 wppa-settings-autosave.php:3799
1416
  #: wppa-thumbnail-widget.php:201
1417
  msgid "Order #"
1418
  msgstr "Order #"
1419
 
1420
  #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1421
- #: wppa-settings-autosave.php:3687 wppa-settings-autosave.php:3801
1422
  #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:149
1423
  msgid "Random"
1424
  msgstr "Aléatoire"
1425
 
1426
- #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3688
1427
  msgid "Rating mean value"
1428
  msgstr ""
1429
 
1430
  #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1431
- #: wppa-settings-autosave.php:3689 wppa-topten-widget.php:292
1432
  msgid "Number of votes"
1433
  msgstr ""
1434
 
1435
  #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1436
- #: wppa-settings-autosave.php:3690 wppa-settings-autosave.php:3802
1437
  msgid "Timestamp"
1438
  msgstr "Timstamp"
1439
 
1440
  #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1441
- #: wppa-settings-autosave.php:3691
1442
  msgid "EXIF Date"
1443
  msgstr "Date EXIF"
1444
 
1445
- #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3692
1446
- #: wppa-settings-autosave.php:3803
1447
  msgid "Order # desc"
1448
  msgstr "Ordre # desc"
1449
 
1450
- #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3693
1451
- #: wppa-settings-autosave.php:3804
1452
  msgid "Name desc"
1453
  msgstr "Nom desc"
1454
 
1455
- #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3694
1456
  #: wppa-thumbnail-widget.php:204
1457
  msgid "Rating mean value desc"
1458
  msgstr ""
1459
 
1460
- #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3695
1461
  #: wppa-thumbnail-widget.php:205
1462
  msgid "Number of votes desc"
1463
  msgstr ""
1464
 
1465
- #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3696
1466
- #: wppa-settings-autosave.php:3805 wppa-thumbnail-widget.php:206
1467
  msgid "Timestamp desc"
1468
  msgstr ""
1469
 
1470
- #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3697
1471
  msgid "EXIF Date desc"
1472
  msgstr ""
1473
 
@@ -1539,27 +1539,27 @@ msgid "Cover Type:"
1539
  msgstr "Type de couverture:"
1540
 
1541
  #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1915
1542
- #: wppa-settings-autosave.php:3869
1543
  msgid "Standard"
1544
  msgstr "Standard"
1545
 
1546
- #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3870
1547
  msgid "Long Descriptions"
1548
  msgstr "Description longues"
1549
 
1550
- #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3871
1551
  msgid "Image Factory"
1552
  msgstr ""
1553
 
1554
- #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3872
1555
  msgid "Standard mcr"
1556
  msgstr ""
1557
 
1558
- #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3873
1559
  msgid "Long Descriptions mcr"
1560
  msgstr ""
1561
 
1562
- #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3874
1563
  msgid "Image Factory mcr"
1564
  msgstr ""
1565
 
@@ -1587,33 +1587,33 @@ msgstr ""
1587
  msgid "Upload limit:"
1588
  msgstr "Limite d'upload:"
1589
 
1590
- #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5758
1591
- #: wppa-settings-autosave.php:7317
1592
  msgid "for ever"
1593
  msgstr "illimité"
1594
 
1595
  #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1596
- #: wppa-settings-autosave.php:5759 wppa-settings-autosave.php:7318
1597
  msgid "per hour"
1598
  msgstr "par heure"
1599
 
1600
  #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1601
- #: wppa-settings-autosave.php:5760 wppa-settings-autosave.php:7319
1602
  msgid "per day"
1603
  msgstr "par jour"
1604
 
1605
  #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1606
- #: wppa-settings-autosave.php:5761 wppa-settings-autosave.php:7320
1607
  msgid "per week"
1608
  msgstr "par semaine"
1609
 
1610
  #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1611
- #: wppa-settings-autosave.php:5762 wppa-settings-autosave.php:7321
1612
  msgid "per month"
1613
  msgstr "par mois"
1614
 
1615
  #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1616
- #: wppa-settings-autosave.php:5763 wppa-settings-autosave.php:7322
1617
  msgid "per year"
1618
  msgstr "par an"
1619
 
@@ -1692,19 +1692,19 @@ msgstr "Ajoute les tags par défaut à toutes les photo de l'album."
1692
  msgid "Link type:"
1693
  msgstr "Type de lien:"
1694
 
1695
- #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7478
1696
  msgid "the sub-albums and thumbnails"
1697
  msgstr ""
1698
 
1699
- #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7479
1700
  msgid "the sub-albums"
1701
  msgstr "les albums fils"
1702
 
1703
- #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7480
1704
  msgid "the thumbnails"
1705
  msgstr "les vignettes"
1706
 
1707
- #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7481
1708
  msgid "the album photos as slideshow"
1709
  msgstr ""
1710
 
@@ -1712,7 +1712,7 @@ msgstr ""
1712
  msgid "the link page with a clean url"
1713
  msgstr ""
1714
 
1715
- #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7482
1716
  msgid "no link at all"
1717
  msgstr "Pas de lien du tout"
1718
 
@@ -1734,8 +1734,8 @@ msgstr ""
1734
  msgid "Link to:"
1735
  msgstr "Lien vers:"
1736
 
1737
- #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:9084
1738
- #: wppa-settings-autosave.php:9133
1739
  msgid "There are no pages (yet) to link to."
1740
  msgstr ""
1741
 
@@ -1827,9 +1827,9 @@ msgid "Delete Album"
1827
  msgstr "Supprimer l'album"
1828
 
1829
  #: wppa-album-admin-autosave.php:813 wppa-boxes-html.php:804
1830
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
1831
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:404 wppa-breadcrumb.php:429
1832
- #: wppa-breadcrumb.php:577 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1833
  #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1834
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:273
1835
  #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
@@ -1855,8 +1855,8 @@ msgstr ""
1855
  #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1376
1856
  #: wppa-album-admin-autosave.php:1471 wppa-album-admin-autosave.php:1657
1857
  #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1858
- #: wppa-comment-admin.php:398 wppa-functions.php:1926 wppa-links.php:740
1859
- #: wppa-links.php:758 wppa-photo-admin-autosave.php:1283
1860
  #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1861
  msgid "Delete"
1862
  msgstr "Supprimer"
@@ -1865,7 +1865,7 @@ msgstr "Supprimer"
1865
  msgid "Move to:"
1866
  msgstr "Déplacer vers:"
1867
 
1868
- #: wppa-album-admin-autosave.php:829 wppa-settings-autosave.php:2695
1869
  msgid "Cancel"
1870
  msgstr "Annuler"
1871
 
@@ -2132,8 +2132,8 @@ msgstr[0] "%d album"
2132
  msgstr[1] "%d albums"
2133
 
2134
  #: wppa-album-covers.php:1371 wppa-boxes-html.php:1159 wppa-breadcrumb.php:148
2135
- #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:368
2136
- #: wppa-breadcrumb.php:379 wppa-utils.php:1620
2137
  msgid "and"
2138
  msgstr "et"
2139
 
@@ -2152,9 +2152,9 @@ msgstr "Nouveau!"
2152
  msgid "New"
2153
  msgstr "Nouveau"
2154
 
2155
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
2156
- #: wppa-settings-autosave.php:2165 wppa-settings-autosave.php:5213
2157
- #: wppa-settings-autosave.php:7637
2158
  msgid "Slideshow"
2159
  msgstr "Diaporama"
2160
 
@@ -2162,7 +2162,7 @@ msgstr "Diaporama"
2162
  msgid "Browse photos"
2163
  msgstr "Visualiser les photos"
2164
 
2165
- #: wppa-album-covers.php:1719 wppa-breadcrumb.php:389 wppa-breadcrumb.php:394
2166
  msgid "Category:"
2167
  msgid_plural "Categories:"
2168
  msgstr[0] "Catégorie:"
@@ -2329,13 +2329,13 @@ msgstr "Moyenne des votes:"
2329
  msgid "Rating count:"
2330
  msgstr "Nombre de votes:"
2331
 
2332
- #: wppa-bestof-widget.php:198 wppa-common-functions.php:1995 wppa-items.php:365
2333
  #: wppa-settings-autosave.php:1301 wppa-settings-autosave.php:1650
2334
- #: wppa-settings-autosave.php:3482 wppa-settings-autosave.php:3496
2335
- #: wppa-settings-autosave.php:3684 wppa-settings-autosave.php:3798
2336
- #: wppa-settings-autosave.php:5284 wppa-settings-autosave.php:7123
2337
- #: wppa-settings-autosave.php:7333 wppa-settings-autosave.php:7389
2338
- #: wppa-settings-autosave.php:8243 wppa-settings-autosave.php:8400
2339
  #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2340
  #: wppa-tinymce-shortcodes.php:513 wppa-upload.php:1521 wppa-watermark.php:520
2341
  #: wppa-widget-admin.php:83 wppa-widget-admin.php:254
@@ -2372,7 +2372,7 @@ msgid "Category"
2372
  msgstr "Catégorie"
2373
 
2374
  #: wppa-boxes-html.php:405 wppa-boxes-html.php:538
2375
- #: wppa-settings-autosave.php:7238 wppa-settings-autosave.php:7249
2376
  msgid "Text"
2377
  msgstr "Texte"
2378
 
@@ -2386,9 +2386,9 @@ msgstr "CTRL+Clic pour ajouter/supprimer des options."
2386
  msgid "Items must meet all selected options."
2387
  msgstr "Les entités doivent répondre à toutes les options sélectionnées."
2388
 
2389
- #: wppa-boxes-html.php:530 wppa-settings-autosave.php:8504
2390
- #: wppa-settings-autosave.php:8544 wppa-settings-autosave.php:8566
2391
- #: wppa-settings-autosave.php:8612
2392
  msgid "Tag"
2393
  msgstr "Tag"
2394
 
@@ -2410,7 +2410,7 @@ msgid "Super View Photos"
2410
  msgstr "Photos en Super View"
2411
 
2412
  #: wppa-boxes-html.php:820 wppa-settings-autosave.php:400
2413
- #: wppa-settings-autosave.php:4475
2414
  msgid "Thumbnails"
2415
  msgstr "Vignettes"
2416
 
@@ -2636,7 +2636,7 @@ msgstr "a écrit:"
2636
  msgid "Avatar"
2637
  msgstr "Avatar"
2638
 
2639
- #: wppa-boxes-html.php:2581 wppa-links.php:784
2640
  msgid "Awaiting moderation"
2641
  msgstr "En attente de modération"
2642
 
@@ -2744,7 +2744,7 @@ msgid_plural "%d max ratings"
2744
  msgstr[0] "Moyenne des votes:"
2745
  msgstr[1] "Moyenne des votes:"
2746
 
2747
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
2748
  #: wppa-topten-widget.php:147 wppa-topten-widget.php:164
2749
  #: wppa-topten-widget.php:200
2750
  #, php-format
@@ -2753,16 +2753,21 @@ msgid_plural "%d votes"
2753
  msgstr[0] ""
2754
  msgstr[1] ""
2755
 
2756
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
2757
  #, php-format
2758
- msgid "Mean value: %4.2f."
2759
- msgstr "Valeur moyenne: %4.2f."
2760
 
2761
  #: wppa-boxes-html.php:3288
2762
  #, php-format
2763
  msgid "Photo %s not found."
2764
  msgstr "Photo %s non trouvée."
2765
 
 
 
 
 
 
2766
  #: wppa-boxes-html.php:3695 wppa-photo-admin-autosave.php:195
2767
  msgid "Refresh"
2768
  msgstr "Rafraichir"
@@ -2771,7 +2776,7 @@ msgstr "Rafraichir"
2771
  msgid "Post:"
2772
  msgstr "Article:"
2773
 
2774
- #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:604
2775
  msgid "Page:"
2776
  msgstr "Page:"
2777
 
@@ -2807,116 +2812,116 @@ msgstr "avec le contenu:"
2807
  msgid "with exif tag:"
2808
  msgstr "avec le tag EXIF:"
2809
 
2810
- #: wppa-breadcrumb.php:183 wppa-breadcrumb.php:207 wppa-breadcrumb.php:264
2811
- #: wppa-breadcrumb.php:282 wppa-breadcrumb.php:305 wppa-breadcrumb.php:328
2812
- #: wppa-breadcrumb.php:346 wppa-breadcrumb.php:358 wppa-breadcrumb.php:376
2813
- #: wppa-breadcrumb.php:391 wppa-breadcrumb.php:410
2814
  msgid "View the thumbnails"
2815
  msgstr "Voir les vignettes"
2816
 
2817
- #: wppa-breadcrumb.php:201
2818
  #, php-format
2819
  msgid "Searchresults from album %s and its subalbums"
2820
  msgstr "Résultats de recherche de l'album %s et ses albums fils"
2821
 
2822
- #: wppa-breadcrumb.php:205 wppa-breadcrumb.php:210
2823
  msgid "Searchstring:"
2824
  msgstr "Chaîne de recherche:"
2825
 
2826
- #: wppa-breadcrumb.php:219 wppa-breadcrumb.php:237
2827
  msgid "Photos by EXIF date"
2828
  msgstr "Photos par date EXIF"
2829
 
2830
- #: wppa-breadcrumb.php:223 wppa-breadcrumb.php:241
2831
  msgid "Photos by date of upload"
2832
  msgstr "Photos par date de chargement"
2833
 
2834
- #: wppa-breadcrumb.php:227 wppa-breadcrumb.php:245
2835
  msgid "Photos by date last modified"
2836
  msgstr "Photos par date de dernière modification"
2837
 
2838
- #: wppa-breadcrumb.php:257 wppa-breadcrumb.php:267
2839
  #, php-format
2840
  msgid "Photos by %s"
2841
  msgstr "Photo de %s"
2842
 
2843
- #: wppa-breadcrumb.php:274 wppa-breadcrumb.php:292 wppa-breadcrumb.php:320
2844
- #: wppa-breadcrumb.php:338 wppa-breadcrumb.php:425
2845
  msgid "Various albums"
2846
  msgstr "Divers albums"
2847
 
2848
- #: wppa-breadcrumb.php:276 wppa-breadcrumb.php:294 wppa-breadcrumb.php:322
2849
- #: wppa-breadcrumb.php:340 wppa-breadcrumb.php:429 wppa-lasten-widget.php:185
2850
  msgid "Albums:"
2851
  msgstr "Albums:"
2852
 
2853
- #: wppa-breadcrumb.php:280 wppa-breadcrumb.php:285
2854
  msgid "Top rated photos"
2855
  msgstr "Photos les mieux notées"
2856
 
2857
- #: wppa-breadcrumb.php:299 wppa-breadcrumb.php:309
2858
  msgid "Recently modified photos"
2859
  msgstr "Photos récemment modifiées"
2860
 
2861
- #: wppa-breadcrumb.php:302 wppa-breadcrumb.php:312
2862
  msgid "Recently uploaded photos"
2863
  msgstr "Photos chargées récemment"
2864
 
2865
- #: wppa-breadcrumb.php:326 wppa-breadcrumb.php:331 wppa-comment-widget.php:40
2866
  msgid "Recently commented photos"
2867
  msgstr "Photos commentées récemment"
2868
 
2869
- #: wppa-breadcrumb.php:344 wppa-breadcrumb.php:349 wppa-featen-widget.php:38
2870
  msgid "Featured photos"
2871
  msgstr "Photos à la une"
2872
 
2873
- #: wppa-breadcrumb.php:356 wppa-breadcrumb.php:361
2874
  msgid "Related photos"
2875
  msgstr "Photos apparentées"
2876
 
2877
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
2878
  msgid "Tagged photos:"
2879
  msgstr "Photo taguées:"
2880
 
2881
- #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:379
2882
  msgid "or"
2883
  msgstr "ou"
2884
 
2885
- #: wppa-breadcrumb.php:370 wppa-breadcrumb.php:381
2886
  msgid "Inverted"
2887
  msgstr "Inversé"
2888
 
2889
- #: wppa-breadcrumb.php:408 wppa-breadcrumb.php:413
2890
  msgid "Recently updated albums"
2891
  msgstr "Photos mises à jour récemment"
2892
 
2893
- #: wppa-breadcrumb.php:423
2894
  #, php-format
2895
  msgid "Various albums by %s"
2896
  msgstr "Divers albums de %s"
2897
 
2898
- #: wppa-breadcrumb.php:450 wppa-breadcrumb.php:465
2899
  msgid "Thumbnail view"
2900
  msgstr "Vue vignette"
2901
 
2902
- #: wppa-breadcrumb.php:454 wppa-breadcrumb.php:455 wppa-breadcrumb.php:470
2903
- #: wppa-breadcrumb.php:471
2904
  msgid "Thumbs"
2905
  msgstr "Miniatures"
2906
 
2907
- #: wppa-breadcrumb.php:602
2908
  msgid "Unpublished"
2909
  msgstr "Dé-publiés"
2910
 
2911
- #: wppa-breadcrumb.php:632
2912
  msgid "Found photos will meet the search criteria as follows:"
2913
  msgstr "Photos trouvées répondra aux critères de recherche comme suit :"
2914
 
2915
- #: wppa-breadcrumb.php:635
2916
  msgid "AND"
2917
  msgstr "ET"
2918
 
2919
- #: wppa-breadcrumb.php:639
2920
  msgid "OR"
2921
  msgstr "OU"
2922
 
@@ -3013,8 +3018,8 @@ msgstr "Spam effacé auto:"
3013
  msgid "Linkpage:"
3014
  msgstr "Page lien:"
3015
 
3016
- #: wppa-comment-admin.php:223 wppa-settings-autosave.php:4646
3017
- #: wppa-settings-autosave.php:7507
3018
  msgid "--- Please select a page ---"
3019
  msgstr "--- Choisir une page ---"
3020
 
@@ -3078,7 +3083,7 @@ msgstr "Supprimer tout le spam"
3078
  msgid "Save Settings / Perform bulk action"
3079
  msgstr "Sauver / Action groupée"
3080
 
3081
- #: wppa-comment-admin.php:301 wppa-comment-admin.php:388 wppa-non-admin.php:666
3082
  msgid "Photo"
3083
  msgstr "Photo"
3084
 
@@ -3089,16 +3094,16 @@ msgstr "(Album)"
3089
  #: wppa-comment-admin.php:303 wppa-comment-admin.php:390
3090
  #: wppa-settings-autosave.php:451 wppa-settings-autosave.php:613
3091
  #: wppa-settings-autosave.php:635 wppa-settings-autosave.php:1354
3092
- #: wppa-settings-autosave.php:1375 wppa-settings-autosave.php:2860
3093
- #: wppa-settings-autosave.php:2881 wppa-settings-autosave.php:3192
3094
- #: wppa-settings-autosave.php:3216 wppa-settings-autosave.php:4367
3095
- #: wppa-settings-autosave.php:4388 wppa-settings-autosave.php:4564
3096
- #: wppa-settings-autosave.php:4588 wppa-settings-autosave.php:5630
3097
- #: wppa-settings-autosave.php:6152 wppa-settings-autosave.php:6174
3098
- #: wppa-settings-autosave.php:6754 wppa-settings-autosave.php:6778
3099
- #: wppa-settings-autosave.php:8482 wppa-settings-autosave.php:8503
3100
- #: wppa-settings-autosave.php:8543 wppa-settings-autosave.php:8565
3101
- #: wppa-settings-autosave.php:8611
3102
  msgid "#"
3103
  msgstr "#"
3104
 
@@ -3168,19 +3173,19 @@ msgstr "WPPA+ Commentaires sur les photos"
3168
  msgid "Comments on Photos"
3169
  msgstr "Commentaires sur les photos"
3170
 
3171
- #: wppa-comment-widget.php:73 wppa-non-admin.php:792 wppa-thumbnails.php:493
3172
  msgid "wrote"
3173
  msgstr "a écrit"
3174
 
3175
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:95
3176
- #: wppa-lasten-widget.php:125 wppa-non-admin.php:793 wppa-non-admin.php:798
3177
- #: wppa-non-admin.php:803 wppa-non-admin.php:807 wppa-non-admin.php:814
3178
- #: wppa-non-admin.php:824 wppa-potd-widget.php:133
3179
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:208
3180
  msgid "Photo not found"
3181
  msgstr "Photo non trouvée"
3182
 
3183
- #: wppa-comment-widget.php:93 wppa-non-admin.php:794
3184
  msgid "There are no commented photos (yet)"
3185
  msgstr "Il n'y pas encore de photos commentariés"
3186
 
@@ -3196,7 +3201,7 @@ msgstr[0] "%d seconde"
3196
  msgstr[1] "%d secondes"
3197
 
3198
  #: wppa-common-functions.php:607 wppa-functions.php:4298
3199
- #: wppa-settings-autosave.php:6050 wppa-settings-autosave.php:6051
3200
  #, php-format
3201
  msgid "%d minute"
3202
  msgid_plural "%d minutes"
@@ -3204,7 +3209,7 @@ msgstr[0] "%d minute"
3204
  msgstr[1] "%d minutes"
3205
 
3206
  #: wppa-common-functions.php:611 wppa-functions.php:4294
3207
- #: wppa-settings-autosave.php:6052 wppa-settings-autosave.php:7133
3208
  #, php-format
3209
  msgid "%d hour"
3210
  msgid_plural "%d hours"
@@ -3212,12 +3217,12 @@ msgstr[0] "%d heure"
3212
  msgstr[1] "%d heures"
3213
 
3214
  #: wppa-common-functions.php:615 wppa-functions.php:4290
3215
- #: wppa-settings-autosave.php:6053 wppa-settings-autosave.php:7134
3216
- #: wppa-settings-autosave.php:7135 wppa-settings-autosave.php:7136
3217
- #: wppa-settings-autosave.php:7137 wppa-settings-autosave.php:7138
3218
- #: wppa-settings-autosave.php:7139 wppa-settings-autosave.php:7141
3219
- #: wppa-settings-autosave.php:7142 wppa-settings-autosave.php:7143
3220
- #: wppa-settings-autosave.php:8303
3221
  #, php-format
3222
  msgid "%d day"
3223
  msgid_plural "%d days"
@@ -3225,27 +3230,27 @@ msgstr[0] "%d jour"
3225
  msgstr[1] "%d jours"
3226
 
3227
  #: wppa-common-functions.php:619 wppa-functions.php:4286
3228
- #: wppa-settings-autosave.php:6054 wppa-settings-autosave.php:7140
3229
- #: wppa-settings-autosave.php:7144 wppa-settings-autosave.php:7145
3230
- #: wppa-settings-autosave.php:7146 wppa-settings-autosave.php:8304
3231
  #, php-format
3232
  msgid "%d week"
3233
  msgid_plural "%d weeks"
3234
  msgstr[0] "%d semaine"
3235
  msgstr[1] "%d semaines"
3236
 
3237
- #: wppa-common-functions.php:623 wppa-settings-autosave.php:7147
3238
- #: wppa-settings-autosave.php:8305 wppa-settings-autosave.php:8306
3239
- #: wppa-settings-autosave.php:8307 wppa-settings-autosave.php:8308
3240
- #: wppa-settings-autosave.php:8309 wppa-settings-autosave.php:8311
3241
  #, php-format
3242
  msgid "%d month"
3243
  msgid_plural "%d months"
3244
  msgstr[0] "%d mois"
3245
  msgstr[1] "%d mois"
3246
 
3247
- #: wppa-common-functions.php:626 wppa-settings-autosave.php:8310
3248
- #: wppa-settings-autosave.php:8312
3249
  #, php-format
3250
  msgid "%d year"
3251
  msgid_plural "%d years"
@@ -3275,7 +3280,7 @@ msgstr ""
3275
  msgid "- select an album -"
3276
  msgstr "- Choisir un album -"
3277
 
3278
- #: wppa-common-functions.php:2001 wppa-items.php:373
3279
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3280
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3281
  #: wppa-tagcloud-widget.php:79
@@ -3294,8 +3299,8 @@ msgstr "--- multiples voir ci-dessous ---"
3294
  msgid "--- a selection box ---"
3295
  msgstr "--- une sélection ---"
3296
 
3297
- #: wppa-common-functions.php:2058 wppa-items.php:369
3298
- #: wppa-settings-autosave.php:7333 wppa-settings-autosave.php:7389
3299
  #: wppa-upload.php:1522
3300
  msgid "--- separate ---"
3301
  msgstr "--- séparé ---"
@@ -3424,7 +3429,7 @@ msgstr "Multi-segments"
3424
  msgid "Partial"
3425
  msgstr "Partiel"
3426
 
3427
- #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4492
3428
  #: wppa-utils.php:2428
3429
  msgid "Other"
3430
  msgstr "Autre"
@@ -3643,11 +3648,11 @@ msgstr "WPPA+ Photos à la une"
3643
  msgid "Featured Photos"
3644
  msgstr "Photos en vedette"
3645
 
3646
- #: wppa-featen-widget.php:73 wppa-non-admin.php:797
3647
  msgid "View the featured photos"
3648
  msgstr "Voir les photos à la une"
3649
 
3650
- #: wppa-featen-widget.php:104 wppa-non-admin.php:799
3651
  #, fuzzy
3652
  msgid "There are no featured photos (yet)"
3653
  msgstr "Il n'y pas encore de photos"
@@ -3665,7 +3670,7 @@ msgstr ""
3665
  "Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. "
3666
  "Veuillez redéfinir vos critères de recherche."
3667
 
3668
- #: wppa-functions.php:1923 wppa-links.php:733 wppa-links.php:750
3669
  #: wppa-thumbnails.php:588
3670
  msgid "Are you sure you want to remove this photo?"
3671
  msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
@@ -3741,7 +3746,7 @@ msgstr ""
3741
  msgid "Could not process comment.\\nProbably timed out."
3742
  msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
3743
 
3744
- #: wppa-functions.php:2362 wppa-links.php:1423
3745
  msgid "A video can not be printed or downloaded"
3746
  msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
3747
 
@@ -3866,7 +3871,7 @@ msgid "You can upload after"
3866
  msgstr "Vous pouvez charger après"
3867
 
3868
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
3869
- #: wppa-functions.php:4341 wppa-links.php:1053 wppa-non-admin.php:720
3870
  msgid "Download"
3871
  msgstr "Télécharger"
3872
 
@@ -4426,52 +4431,52 @@ msgstr "WP Photo Album est distribué sous"
4426
  msgid "licence."
4427
  msgstr ""
4428
 
4429
- #: wppa-items.php:226 wppa-thumbnails.php:1841
4430
  msgid "Gold medal"
4431
  msgstr "Médaille d'or"
4432
 
4433
- #: wppa-items.php:226 wppa-photo-admin-autosave.php:837
4434
  #: wppa-photo-admin-autosave.php:859 wppa-photo-admin-autosave.php:1302
4435
  #: wppa-photo-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1430
4436
  #: wppa-widget-admin.php:133
4437
  msgid "Gold"
4438
  msgstr "Or"
4439
 
4440
- #: wppa-items.php:227 wppa-thumbnails.php:1842
4441
  msgid "Silver medal"
4442
  msgstr "Médaille d'argent"
4443
 
4444
- #: wppa-items.php:227 wppa-photo-admin-autosave.php:838
4445
  #: wppa-photo-admin-autosave.php:860 wppa-photo-admin-autosave.php:1303
4446
  #: wppa-photo-admin-autosave.php:1420 wppa-photo-admin-autosave.php:1431
4447
  #: wppa-widget-admin.php:134
4448
  msgid "Silver"
4449
  msgstr "Argent"
4450
 
4451
- #: wppa-items.php:228 wppa-thumbnails.php:1843
4452
  msgid "Bronze medal"
4453
  msgstr "Médaille de bronze"
4454
 
4455
- #: wppa-items.php:228 wppa-photo-admin-autosave.php:839
4456
  #: wppa-photo-admin-autosave.php:861 wppa-photo-admin-autosave.php:1304
4457
  #: wppa-photo-admin-autosave.php:1421 wppa-photo-admin-autosave.php:1432
4458
  #: wppa-widget-admin.php:135
4459
  msgid "Bronze"
4460
  msgstr "Bronze"
4461
 
4462
- #: wppa-items.php:277 wppa-items.php:431 wppa-settings-autosave.php:3349
4463
  msgid "none"
4464
  msgstr "aucun"
4465
 
4466
- #: wppa-items.php:307 wppa-items.php:442 wppa-upload.php:99 wppa-upload.php:104
4467
  msgid "unknown"
4468
  msgstr "inconnu"
4469
 
4470
- #: wppa-items.php:377 wppa-items.php:398
4471
  msgid "--- deleted ---"
4472
  msgstr "--- supprimé ---"
4473
 
4474
- #: wppa-items.php:387
4475
  msgid "All Albums"
4476
  msgstr "Tous les albums"
4477
 
@@ -4487,11 +4492,11 @@ msgstr "Dix dernières photos chargées"
4487
  msgid "Last Ten Uploaded Photos"
4488
  msgstr "Dix dernières photos chargées"
4489
 
4490
- #: wppa-lasten-widget.php:108 wppa-non-admin.php:802
4491
  msgid "View the most recent uploaded photos"
4492
  msgstr "Voir les photos chargées les plus récentes"
4493
 
4494
- #: wppa-lasten-widget.php:132 wppa-non-admin.php:804
4495
  #, fuzzy
4496
  msgid "There are no uploaded photos (yet)"
4497
  msgstr "Il n'y pas encore de photos"
@@ -4524,65 +4529,65 @@ msgstr "noms des photos"
4524
  msgid "Show time since:"
4525
  msgstr "Montrer la durée depuis:"
4526
 
4527
- #: wppa-links.php:721
4528
  msgid "App"
4529
  msgstr "App"
4530
 
4531
- #: wppa-links.php:722
4532
  msgid "Mod"
4533
  msgstr "Mod"
4534
 
4535
- #: wppa-links.php:723
4536
  msgid "Del"
4537
  msgstr "Del"
4538
 
4539
- #: wppa-links.php:727 wppa-links.php:744
4540
  msgid "Are you sure you want to publish this photo?"
4541
  msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
4542
 
4543
- #: wppa-links.php:738 wppa-links.php:755
4544
  msgid "Approve"
4545
  msgstr "Approuver"
4546
 
4547
- #: wppa-links.php:739
4548
  msgid "Moderate"
4549
  msgstr "Modérer"
4550
 
4551
- #: wppa-links.php:756
4552
  msgid "PhotoAdmin"
4553
  msgstr "Admin Photo"
4554
 
4555
- #: wppa-links.php:757
4556
  msgid "CommentAdmin"
4557
  msgstr "Admin Commentaires"
4558
 
4559
- #: wppa-links.php:761
4560
  msgid "Are you sure you want to publish this comment?"
4561
  msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
4562
 
4563
- #: wppa-links.php:773
4564
  msgid "Are you sure you want to remove this comment?"
4565
  msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
4566
 
4567
- #: wppa-links.php:787
4568
  #, php-format
4569
  msgid "Scheduled for %s"
4570
  msgstr "Planifié pour %s"
4571
 
4572
- #: wppa-links.php:994 wppa-links.php:997 wppa-slideshow.php:977
4573
  msgid "Previous"
4574
  msgstr "Préc."
4575
 
4576
- #: wppa-links.php:1004 wppa-links.php:1007 wppa-non-admin.php:671
4577
- #: wppa-slideshow.php:990
4578
  msgid "Next"
4579
  msgstr "Suiv."
4580
 
4581
- #: wppa-links.php:1053
4582
  msgid "Download album"
4583
  msgstr "Télécharger l'album"
4584
 
4585
- #: wppa-links.php:1189
4586
  msgid "View thumbnails"
4587
  msgstr "Visualiser les vignettes"
4588
 
@@ -4644,7 +4649,12 @@ msgstr ""
4644
  msgid "Press f for fullscreen."
4645
  msgstr "Appuyez sur f pour le plein écran."
4646
 
4647
- #: wppa-non-admin.php:422
 
 
 
 
 
4648
  msgid ""
4649
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
4650
  "dismiss this notice."
@@ -4652,103 +4662,103 @@ msgstr ""
4652
  "Touches: f = mode suiv.; q,x = sortir; p = préc., n = next, s = lancer/"
4653
  "arrêter, d = abandonner cette note."
4654
 
4655
- #: wppa-non-admin.php:423
4656
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
4657
  msgstr "Touches: f = mode suiv.; q,x = sortir; d = abandonner cette note."
4658
 
4659
- #: wppa-non-admin.php:662 wppa-settings-autosave.php:3503
4660
  #: wppa-slideshow.php:228
4661
  msgid "Start"
4662
  msgstr "Démarrer"
4663
 
4664
- #: wppa-non-admin.php:663
4665
  msgid "Stop"
4666
  msgstr "Arrêter"
4667
 
4668
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
4669
  msgid "Slower"
4670
  msgstr "Ralentir"
4671
 
4672
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
4673
  msgid "Faster"
4674
  msgstr "Accélérer"
4675
 
4676
- #: wppa-non-admin.php:667
4677
  msgid "of"
4678
  msgstr "de"
4679
 
4680
- #: wppa-non-admin.php:668
4681
  msgid "Previous photo"
4682
  msgstr "Photo précédente"
4683
 
4684
- #: wppa-non-admin.php:669
4685
  msgid "Next photo"
4686
  msgstr "Photo suivante"
4687
 
4688
- #: wppa-non-admin.php:670
4689
  msgid "Prev."
4690
  msgstr "Préc."
4691
 
4692
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
4693
- #: wppa-slideshow.php:832
4694
  msgid "Average&nbsp;rating"
4695
  msgstr "Vote&nbsp;moyen"
4696
 
4697
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
4698
- #: wppa-slideshow.php:814
4699
  msgid "My&nbsp;rating"
4700
  msgstr "Mon&nbsp;vote"
4701
 
4702
- #: wppa-non-admin.php:674
4703
  msgid "Avg."
4704
  msgstr "Moyen"
4705
 
4706
- #: wppa-non-admin.php:675
4707
  msgid "Mine"
4708
  msgstr "Mon"
4709
 
4710
- #: wppa-non-admin.php:676
4711
  msgid "You marked this image as inappropriate."
4712
  msgstr "Vous avez marqué cette image comme inappropriée."
4713
 
4714
- #: wppa-non-admin.php:679
4715
  msgid "Please enter your name"
4716
  msgstr "Entrer votre nom"
4717
 
4718
- #: wppa-non-admin.php:680
4719
  msgid "Please enter a valid email address"
4720
  msgstr "Entrer une adresse email valide"
4721
 
4722
- #: wppa-non-admin.php:681
4723
  msgid "Please enter a comment"
4724
  msgstr "Entrer un commentaire"
4725
 
4726
- #: wppa-non-admin.php:715
4727
  msgid "Double click to start/stop slideshow running"
4728
  msgstr "Double-cliquez pour lancer/arrêter le diaporama"
4729
 
4730
- #: wppa-non-admin.php:808 wppa-photo-admin-autosave.php:264
4731
  #: wppa-potd-widget.php:156
4732
  msgid "By:"
4733
  msgstr "Par:"
4734
 
4735
- #: wppa-non-admin.php:811 wppa-slideshow-widget.php:124
4736
  msgid "No album defined (yet)"
4737
  msgstr "Pas encore d'album défini"
4738
 
4739
- #: wppa-non-admin.php:815 wppa-thumbnail-widget.php:121
4740
  msgid "There are no photos (yet)"
4741
  msgstr "Il n'y pas encore de photos"
4742
 
4743
- #: wppa-non-admin.php:818 wppa-upldr-widget.php:90
4744
  msgid "There are too many registered users in the system for this widget"
4745
  msgstr "Il y a trop d'utilisateurs enregistrés dans le système pour ce widget"
4746
 
4747
- #: wppa-non-admin.php:819 wppa-upldr-widget.php:124 wppa-upldr-widget.php:131
4748
  msgid "Photos uploaded by"
4749
  msgstr "Photos chargées par"
4750
 
4751
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
4752
  #: wppa-topten-widget.php:154 wppa-topten-widget.php:177
4753
  #: wppa-topten-widget.php:187
4754
  #, php-format
@@ -4757,7 +4767,7 @@ msgid_plural "%d views"
4757
  msgstr[0] ""
4758
  msgstr[1] ""
4759
 
4760
- #: wppa-non-admin.php:825 wppa-topten-widget.php:212
4761
  #, fuzzy
4762
  msgid "There are no rated photos (yet)"
4763
  msgstr "Il n'y pas encore de photos"
@@ -4961,8 +4971,8 @@ msgstr "URL du lien:"
4961
  msgid "Same tab"
4962
  msgstr "Même onglet"
4963
 
4964
- #: wppa-photo-admin-autosave.php:409 wppa-settings-autosave.php:4593
4965
- #: wppa-settings-autosave.php:5635
4966
  msgid "New tab"
4967
  msgstr "Nouvel onglet"
4968
 
@@ -4988,7 +4998,7 @@ msgstr "Nom du fichier:"
4988
  msgid "Update file"
4989
  msgstr "Mettre à jour le fichier"
4990
 
4991
- #: wppa-photo-admin-autosave.php:474 wppa-settings-autosave.php:3083
4992
  msgid "Upload"
4993
  msgstr "Charger"
4994
 
@@ -5054,7 +5064,7 @@ msgstr "Fichier vignette:"
5054
  msgid "Remake thumbnail file"
5055
  msgstr "Refaire la vignette"
5056
 
5057
- #: wppa-photo-admin-autosave.php:630 wppa-settings-autosave.php:6367
5058
  msgid "Remake"
5059
  msgstr "Refaire"
5060
 
@@ -5287,7 +5297,7 @@ msgid ""
5287
  msgstr "Cliquer sur ce bouton rechargera la page après l'action demandée"
5288
 
5289
  #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5290
- #: wppa-settings-autosave.php:7822
5291
  msgid "Preview"
5292
  msgstr "Prévisualiser"
5293
 
@@ -5567,7 +5577,7 @@ msgid "Legenda:"
5567
  msgstr "Légende:"
5568
 
5569
  #: wppa-settings-autosave.php:363 wppa-settings-autosave.php:365
5570
- #: wppa-settings-autosave.php:1915 wppa-settings-autosave.php:5314
5571
  msgid "Button"
5572
  msgstr "Bouton"
5573
 
@@ -5575,8 +5585,8 @@ msgstr "Bouton"
5575
  msgid "action that causes page reload."
5576
  msgstr "action qui provoque le rechargement de la page."
5577
 
5578
- #: wppa-settings-autosave.php:365 wppa-settings-autosave.php:9202
5579
- #: wppa-settings-autosave.php:9221
5580
  msgid "Are you sure?"
5581
  msgstr "Êtes-vous sûr ?"
5582
 
@@ -5584,13 +5594,13 @@ msgstr "Êtes-vous sûr ?"
5584
  msgid "action that does not cause page reload."
5585
  msgstr "action qui ne provoque pas le rechargement de la page."
5586
 
5587
- #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:7711
5588
- #: wppa-settings-autosave.php:7713 wppa-settings-autosave.php:8905
5589
- #: wppa-settings-autosave.php:8921 wppa-settings-autosave.php:8949
5590
- #: wppa-settings-autosave.php:8973 wppa-settings-autosave.php:9003
5591
- #: wppa-settings-autosave.php:9030 wppa-settings-autosave.php:9056
5592
- #: wppa-settings-autosave.php:9072 wppa-settings-autosave.php:9125
5593
- #: wppa-settings-autosave.php:9155
5594
  msgid "Setting unmodified"
5595
  msgstr "Configuration inchangée"
5596
 
@@ -5630,7 +5640,7 @@ msgstr "Couvertures"
5630
  msgid "Layout"
5631
  msgstr ""
5632
 
5633
- #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:4543
5634
  msgid "Lightbox"
5635
  msgstr ""
5636
 
@@ -5647,12 +5657,12 @@ msgid "Navigation"
5647
  msgstr "Navigation"
5648
 
5649
  #: wppa-settings-autosave.php:394 wppa-settings-autosave.php:1489
5650
- #: wppa-settings-autosave.php:8058
5651
  msgid "Page"
5652
  msgstr "Page"
5653
 
5654
- #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:7854
5655
- #: wppa-settings-autosave.php:7899
5656
  msgid "Rating"
5657
  msgstr "Vote"
5658
 
@@ -5676,7 +5686,7 @@ msgstr "Chargements"
5676
  msgid "Widgets"
5677
  msgstr "Widgets"
5678
 
5679
- #: wppa-settings-autosave.php:403 wppa-settings-autosave.php:7692
5680
  msgid "Watermark"
5681
  msgstr "Filigrane"
5682
 
@@ -5718,25 +5728,25 @@ msgstr "Cette table permet de faire une configuration initiale rapide."
5718
 
5719
  #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:616
5720
  #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:1357
5721
- #: wppa-settings-autosave.php:1378 wppa-settings-autosave.php:2863
5722
- #: wppa-settings-autosave.php:3219 wppa-settings-autosave.php:4370
5723
- #: wppa-settings-autosave.php:6155 wppa-settings-autosave.php:6781
5724
- #: wppa-settings-autosave.php:8485
5725
  msgid "Setting"
5726
  msgstr "Réglages"
5727
 
5728
  #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5729
  #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1358
5730
- #: wppa-settings-autosave.php:1379 wppa-settings-autosave.php:2864
5731
- #: wppa-settings-autosave.php:2888 wppa-settings-autosave.php:3199
5732
- #: wppa-settings-autosave.php:3220 wppa-settings-autosave.php:4371
5733
- #: wppa-settings-autosave.php:4395 wppa-settings-autosave.php:4571
5734
- #: wppa-settings-autosave.php:4595 wppa-settings-autosave.php:5637
5735
- #: wppa-settings-autosave.php:6157 wppa-settings-autosave.php:6181
5736
- #: wppa-settings-autosave.php:6761 wppa-settings-autosave.php:6782
5737
- #: wppa-settings-autosave.php:8486 wppa-settings-autosave.php:8508
5738
- #: wppa-settings-autosave.php:8548 wppa-settings-autosave.php:8570
5739
- #: wppa-settings-autosave.php:8616
5740
  msgid "Help"
5741
  msgstr "Aide"
5742
 
@@ -6078,14 +6088,14 @@ msgstr ""
6078
  #: wppa-settings-autosave.php:1272 wppa-settings-autosave.php:1281
6079
  #: wppa-settings-autosave.php:1314 wppa-settings-autosave.php:1323
6080
  #: wppa-settings-autosave.php:1335 wppa-settings-autosave.php:1344
6081
- #: wppa-settings-autosave.php:2707 wppa-settings-autosave.php:4416
6082
- #: wppa-settings-autosave.php:4433 wppa-settings-autosave.php:4450
6083
- #: wppa-settings-autosave.php:4467 wppa-settings-autosave.php:4484
6084
- #: wppa-settings-autosave.php:4501 wppa-settings-autosave.php:4518
6085
- #: wppa-settings-autosave.php:4535 wppa-settings-autosave.php:4552
6086
- #: wppa-settings-autosave.php:5854 wppa-settings-autosave.php:8216
6087
- #: wppa-settings-autosave.php:8412 wppa-settings-autosave.php:8454
6088
- #: wppa-settings-autosave.php:8472
6089
  msgid "pixels"
6090
  msgstr "pixels"
6091
 
@@ -6112,8 +6122,8 @@ msgstr ""
6112
  #: wppa-settings-autosave.php:698 wppa-settings-autosave.php:737
6113
  #: wppa-settings-autosave.php:1152 wppa-settings-autosave.php:1192
6114
  #: wppa-settings-autosave.php:1212 wppa-settings-autosave.php:1252
6115
- #: wppa-settings-autosave.php:3893 wppa-settings-autosave.php:5779
6116
- #: wppa-settings-autosave.php:7315
6117
  msgid "photos"
6118
  msgstr "photos"
6119
 
@@ -6543,8 +6553,8 @@ msgid ""
6543
  "indicates no pagination."
6544
  msgstr ""
6545
 
6546
- #: wppa-settings-autosave.php:983 wppa-settings-autosave.php:5385
6547
- #: wppa-settings-autosave.php:5416 wppa-settings-autosave.php:5511
6548
  msgid "thumbnails"
6549
  msgstr "Vignettes"
6550
 
@@ -6942,7 +6952,7 @@ msgid ""
6942
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
6943
  msgstr ""
6944
 
6945
- #: wppa-settings-autosave.php:1232 wppa-settings-autosave.php:5795
6946
  msgid "albums"
6947
  msgstr "albums"
6948
 
@@ -7293,11 +7303,11 @@ msgstr "Position du lien de page"
7293
  msgid "The location for the pagelinks bar."
7294
  msgstr ""
7295
 
7296
- #: wppa-settings-autosave.php:1535 wppa-settings-autosave.php:3838
7297
  msgid "Top"
7298
  msgstr "Haut"
7299
 
7300
- #: wppa-settings-autosave.php:1535 wppa-settings-autosave.php:3838
7301
  msgid "Bottom"
7302
  msgstr "Bas"
7303
 
@@ -7623,7 +7633,7 @@ msgstr ""
7623
  msgid "Display the share social media buttons box."
7624
  msgstr ""
7625
 
7626
- #: wppa-settings-autosave.php:1799 wppa-settings-autosave.php:8459
7627
  msgid "Hide when running"
7628
  msgstr ""
7629
 
@@ -7995,12 +8005,12 @@ msgid "None"
7995
  msgstr "Aucun"
7996
 
7997
  #: wppa-settings-autosave.php:2117 wppa-settings-autosave.php:2128
7998
- #: wppa-settings-autosave.php:3349
7999
  msgid "At the top"
8000
  msgstr "En haut"
8001
 
8002
  #: wppa-settings-autosave.php:2117 wppa-settings-autosave.php:2128
8003
- #: wppa-settings-autosave.php:3349
8004
  msgid "At the bottom"
8005
  msgstr "En bas"
8006
 
@@ -8149,7 +8159,7 @@ msgstr ""
8149
  msgid "Show the album description on hoovering thumbnail in album widget"
8150
  msgstr ""
8151
 
8152
- #: wppa-settings-autosave.php:2252 wppa-settings-autosave.php:4265
8153
  msgid ""
8154
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8155
  "is set to wppa"
@@ -8651,5869 +8661,5878 @@ msgstr "Aperçu tags"
8651
  msgid "Show a preview of all tags that will be added to the photo info."
8652
  msgstr ""
8653
 
 
 
 
 
 
8654
  #: wppa-settings-autosave.php:2689
 
 
 
 
8655
  msgid "Miscellaneous visibility settings"
8656
  msgstr ""
8657
 
8658
- #: wppa-settings-autosave.php:2691
8659
  msgid "Frontend ending label"
8660
  msgstr ""
8661
 
8662
- #: wppa-settings-autosave.php:2692
8663
  msgid "Frontend upload / create / edit dialog closing label text."
8664
  msgstr ""
8665
 
8666
- #: wppa-settings-autosave.php:2695
8667
  msgid "Abort"
8668
  msgstr "Abandonner"
8669
 
8670
- #: wppa-settings-autosave.php:2695
8671
  msgid "Close"
8672
  msgstr "Fermer"
8673
 
8674
- #: wppa-settings-autosave.php:2695
8675
  msgid "Exit"
8676
  msgstr "Sortie"
8677
 
8678
- #: wppa-settings-autosave.php:2695
8679
  msgid "Quit"
8680
  msgstr "Quitter"
8681
 
8682
- #: wppa-settings-autosave.php:2703
8683
  msgid "Widget thumbs fontsize"
8684
  msgstr ""
8685
 
8686
- #: wppa-settings-autosave.php:2704
8687
  msgid "Font size for thumbnail subtext in widgets."
8688
  msgstr ""
8689
 
8690
- #: wppa-settings-autosave.php:2712
8691
  msgid "Arrow color"
8692
  msgstr ""
8693
 
8694
- #: wppa-settings-autosave.php:2713
8695
  msgid "Left/right browsing arrow color."
8696
  msgstr ""
8697
 
8698
- #: wppa-settings-autosave.php:2714
8699
  msgid "Enter the color of the filmstrip navigation arrows."
8700
  msgstr ""
8701
 
8702
- #: wppa-settings-autosave.php:2721
8703
  msgid "Owner on new line"
8704
  msgstr ""
8705
 
8706
- #: wppa-settings-autosave.php:2722
8707
  msgid "Place the (owner) text on a new line."
8708
  msgstr ""
8709
 
8710
- #: wppa-settings-autosave.php:2730
8711
  msgid "Custom datafields"
8712
  msgstr ""
8713
 
8714
- #: wppa-settings-autosave.php:2731
8715
  msgid "Define up to 10 custom data fields for photos."
8716
  msgstr ""
8717
 
8718
- #: wppa-settings-autosave.php:2741
8719
  #, php-format
8720
  msgid "Name and visibility %s"
8721
  msgstr ""
8722
 
8723
- #: wppa-settings-autosave.php:2742
8724
  #, php-format
8725
  msgid "The caption for field %s and visibility at frontend."
8726
  msgstr ""
8727
 
8728
- #: wppa-settings-autosave.php:2743
8729
  #, php-format
8730
  msgid ""
8731
  "If you check the box, the value of this field is displayable in photo "
8732
  "descriptions at the frontend with keyword w#c%s"
8733
  msgstr ""
8734
 
8735
- #: wppa-settings-autosave.php:2753
8736
  msgid "Navigation symbols for slideshows and lighbox"
8737
  msgstr ""
8738
 
8739
- #: wppa-settings-autosave.php:2755
8740
  msgid "Start symbol url"
8741
  msgstr ""
8742
 
8743
- #: wppa-settings-autosave.php:2756
8744
  msgid "Supply the url of an image for the start symbol"
8745
  msgstr ""
8746
 
8747
- #: wppa-settings-autosave.php:2764
8748
  msgid "Pause symbol url"
8749
  msgstr ""
8750
 
8751
- #: wppa-settings-autosave.php:2765
8752
  msgid "Supply the url of an image for the pause symbol"
8753
  msgstr ""
8754
 
8755
- #: wppa-settings-autosave.php:2773
8756
  msgid "Stop symbol url"
8757
  msgstr ""
8758
 
8759
- #: wppa-settings-autosave.php:2774
8760
  msgid "Supply the url of an image for the stop symbol"
8761
  msgstr ""
8762
 
8763
- #: wppa-settings-autosave.php:2782
8764
  msgid "Left (prev) symbol url"
8765
  msgstr ""
8766
 
8767
- #: wppa-settings-autosave.php:2783
8768
  msgid "Supply the url of an image for the left symbol, if not default"
8769
  msgstr ""
8770
 
8771
- #: wppa-settings-autosave.php:2791
8772
  msgid "Right (next) symbol url"
8773
  msgstr ""
8774
 
8775
- #: wppa-settings-autosave.php:2792
8776
  msgid "Supply the url of an image for the right symbol, if not default"
8777
  msgstr ""
8778
 
8779
- #: wppa-settings-autosave.php:2801
8780
  msgid "The size of the start/pause symbols."
8781
  msgstr ""
8782
 
8783
- #: wppa-settings-autosave.php:2810 wppa-settings-autosave.php:2828
8784
  msgid "The border radius if the symbol is round"
8785
  msgstr ""
8786
 
8787
- #: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:2837
8788
  msgid "The size of the stop symbols."
8789
  msgstr ""
8790
 
8791
- #: wppa-settings-autosave.php:2836
8792
  msgid "Left/right symbol size"
8793
  msgstr ""
8794
 
8795
- #: wppa-settings-autosave.php:2845
8796
  msgid "Left/right symbol border radius"
8797
  msgstr ""
8798
 
8799
- #: wppa-settings-autosave.php:2846
8800
  msgid "The border radius"
8801
  msgstr ""
8802
 
8803
- #: wppa-settings-autosave.php:2873
8804
  msgid "Table III:"
8805
  msgstr "Table III:"
8806
 
8807
- #: wppa-settings-autosave.php:2873
8808
  msgid "Backgrounds:"
8809
  msgstr ""
8810
 
8811
- #: wppa-settings-autosave.php:2874
8812
  msgid "This table describes the backgrounds of wppa+ elements."
8813
  msgstr ""
8814
 
8815
- #: wppa-settings-autosave.php:2884 wppa-settings-autosave.php:3195
8816
  msgid "Background color"
8817
  msgstr ""
8818
 
8819
- #: wppa-settings-autosave.php:2885 wppa-settings-autosave.php:2887
8820
- #: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:3198
8821
  msgid "Sample"
8822
  msgstr ""
8823
 
8824
- #: wppa-settings-autosave.php:2886 wppa-settings-autosave.php:3197
8825
  msgid "Border color"
8826
  msgstr ""
8827
 
8828
- #: wppa-settings-autosave.php:2895
8829
  msgid "Slideshow elements backgrounds"
8830
  msgstr ""
8831
 
8832
- #: wppa-settings-autosave.php:2897
8833
  msgid "Nav"
8834
  msgstr "Nav"
8835
 
8836
- #: wppa-settings-autosave.php:2898
8837
  msgid "Navigation bars."
8838
  msgstr ""
8839
 
8840
- #: wppa-settings-autosave.php:2899
8841
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8842
  msgstr ""
8843
 
8844
- #: wppa-settings-autosave.php:2910
8845
  msgid "SlideImg"
8846
  msgstr ""
8847
 
8848
- #: wppa-settings-autosave.php:2911
8849
  msgid "Fullsize Slideshow Photos."
8850
  msgstr "Photos diaporama en taille max."
8851
 
8852
- #: wppa-settings-autosave.php:2912
8853
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8854
  msgstr ""
8855
 
8856
- #: wppa-settings-autosave.php:2913
8857
  msgid "The colors may be equal or \"transparent\""
8858
  msgstr ""
8859
 
8860
- #: wppa-settings-autosave.php:2914
8861
  msgid ""
8862
  "For more information about slideshow image borders see the help on Table I-B4"
8863
  msgstr ""
8864
 
8865
- #: wppa-settings-autosave.php:2925 wppa-settings-autosave.php:4509
8866
  msgid "Numbar"
8867
  msgstr "Numbar"
8868
 
8869
- #: wppa-settings-autosave.php:2926
8870
  msgid "Number bar box background."
8871
  msgstr ""
8872
 
8873
- #: wppa-settings-autosave.php:2927
8874
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8875
  msgstr ""
8876
 
8877
- #: wppa-settings-autosave.php:2938
8878
  msgid "Numbar active"
8879
  msgstr ""
8880
 
8881
- #: wppa-settings-autosave.php:2939
8882
  msgid "Number bar active box background."
8883
  msgstr ""
8884
 
8885
- #: wppa-settings-autosave.php:2940
8886
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8887
  msgstr ""
8888
 
8889
- #: wppa-settings-autosave.php:2951
8890
  msgid "Name/desc"
8891
  msgstr "Nom/desc"
8892
 
8893
- #: wppa-settings-autosave.php:2952
8894
  msgid "Name and Description bars."
8895
  msgstr ""
8896
 
8897
- #: wppa-settings-autosave.php:2953
8898
  msgid ""
8899
  "Enter valid CSS colors for name and description box backgrounds and borders."
8900
  msgstr ""
8901
 
8902
- #: wppa-settings-autosave.php:2965
8903
  msgid "Comment input and display areas."
8904
  msgstr ""
8905
 
8906
- #: wppa-settings-autosave.php:2966
8907
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
8908
  msgstr ""
8909
 
8910
- #: wppa-settings-autosave.php:2977 wppa-settings-autosave.php:7853
8911
- #: wppa-settings-autosave.php:7898
8912
  msgid "Custom"
8913
  msgstr "Personalisé"
8914
 
8915
- #: wppa-settings-autosave.php:2978
8916
  msgid "Custom box background."
8917
  msgstr ""
8918
 
8919
- #: wppa-settings-autosave.php:2979
8920
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
8921
  msgstr ""
8922
 
8923
- #: wppa-settings-autosave.php:2990
8924
  msgid "IPTC"
8925
  msgstr "IPTC"
8926
 
8927
- #: wppa-settings-autosave.php:2991
8928
  msgid "IPTC display box background."
8929
  msgstr ""
8930
 
8931
- #: wppa-settings-autosave.php:2992
8932
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8933
  msgstr ""
8934
 
8935
- #: wppa-settings-autosave.php:3003
8936
  msgid "EXIF"
8937
  msgstr "EXIF"
8938
 
8939
- #: wppa-settings-autosave.php:3004
8940
  msgid "EXIF display box background."
8941
  msgstr ""
8942
 
8943
- #: wppa-settings-autosave.php:3005
8944
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
8945
  msgstr ""
8946
 
8947
- #: wppa-settings-autosave.php:3016
8948
  msgid "Share"
8949
  msgstr "Partager"
8950
 
8951
- #: wppa-settings-autosave.php:3017
8952
  msgid "Share box display background."
8953
  msgstr ""
8954
 
8955
- #: wppa-settings-autosave.php:3018
8956
  msgid "Enter valid CSS colors for share box backgrounds and borders."
8957
  msgstr ""
8958
 
8959
- #: wppa-settings-autosave.php:3029
8960
  msgid "Other backgrounds"
8961
  msgstr ""
8962
 
8963
- #: wppa-settings-autosave.php:3031
8964
  msgid "Even"
8965
  msgstr ""
8966
 
8967
- #: wppa-settings-autosave.php:3032
8968
  msgid "Even background."
8969
  msgstr ""
8970
 
8971
- #: wppa-settings-autosave.php:3033
8972
  msgid ""
8973
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
8974
  "covers and thumbnail displays 'As covers'."
8975
  msgstr ""
8976
 
8977
- #: wppa-settings-autosave.php:3044
8978
  msgid "Odd"
8979
  msgstr ""
8980
 
8981
- #: wppa-settings-autosave.php:3045
8982
  msgid "Odd background."
8983
  msgstr ""
8984
 
8985
- #: wppa-settings-autosave.php:3046
8986
  msgid ""
8987
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
8988
  "covers and thumbnail displays 'As covers'."
8989
  msgstr ""
8990
 
8991
- #: wppa-settings-autosave.php:3057
8992
  msgid "Thumbnail padding"
8993
  msgstr ""
8994
 
8995
- #: wppa-settings-autosave.php:3058
8996
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
8997
  msgstr ""
8998
 
8999
- #: wppa-settings-autosave.php:3059
9000
  msgid ""
9001
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9002
  "white for the padded thumbnails."
9003
  msgstr ""
9004
 
9005
- #: wppa-settings-autosave.php:3070
9006
  msgid "Img"
9007
  msgstr "IMG"
9008
 
9009
- #: wppa-settings-autosave.php:3071
9010
  msgid "Cover Photos and popups."
9011
  msgstr ""
9012
 
9013
- #: wppa-settings-autosave.php:3072
9014
  msgid ""
9015
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9016
  msgstr ""
9017
 
9018
- #: wppa-settings-autosave.php:3084
9019
  msgid "Upload box background."
9020
  msgstr ""
9021
 
9022
- #: wppa-settings-autosave.php:3085
9023
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
9024
  msgstr ""
9025
 
9026
- #: wppa-settings-autosave.php:3096
9027
  msgid "Multitag"
9028
  msgstr ""
9029
 
9030
- #: wppa-settings-autosave.php:3097
9031
  msgid "Multitag box background."
9032
  msgstr ""
9033
 
9034
- #: wppa-settings-autosave.php:3098
9035
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9036
  msgstr ""
9037
 
9038
- #: wppa-settings-autosave.php:3109
9039
  msgid "Tagcloud"
9040
  msgstr ""
9041
 
9042
- #: wppa-settings-autosave.php:3110
9043
  msgid "Tagcloud box background."
9044
  msgstr ""
9045
 
9046
- #: wppa-settings-autosave.php:3111
9047
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9048
  msgstr ""
9049
 
9050
- #: wppa-settings-autosave.php:3122
9051
  msgid "Superview"
9052
  msgstr "SuperView"
9053
 
9054
- #: wppa-settings-autosave.php:3123
9055
  msgid "Superview box background."
9056
  msgstr ""
9057
 
9058
- #: wppa-settings-autosave.php:3124
9059
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9060
  msgstr ""
9061
 
9062
- #: wppa-settings-autosave.php:3136
9063
  msgid "Search box background."
9064
  msgstr ""
9065
 
9066
- #: wppa-settings-autosave.php:3137
9067
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9068
  msgstr ""
9069
 
9070
- #: wppa-settings-autosave.php:3148
9071
  msgid "BestOf"
9072
  msgstr "BestOf"
9073
 
9074
- #: wppa-settings-autosave.php:3149
9075
  msgid "BestOf box background."
9076
  msgstr ""
9077
 
9078
- #: wppa-settings-autosave.php:3150
9079
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9080
  msgstr ""
9081
 
9082
- #: wppa-settings-autosave.php:3161
9083
  msgid "Calendar"
9084
  msgstr "Calendrier"
9085
 
9086
- #: wppa-settings-autosave.php:3162
9087
  msgid "Calendar box background."
9088
  msgstr ""
9089
 
9090
- #: wppa-settings-autosave.php:3163
9091
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9092
  msgstr ""
9093
 
9094
- #: wppa-settings-autosave.php:3174
9095
  msgid "Stereo"
9096
  msgstr "Stéréo"
9097
 
9098
- #: wppa-settings-autosave.php:3175
9099
  msgid "Stereo mode selection box background."
9100
  msgstr ""
9101
 
9102
- #: wppa-settings-autosave.php:3176
9103
  msgid ""
9104
  "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9105
  msgstr ""
9106
 
9107
- #: wppa-settings-autosave.php:3208
9108
  msgid "Table IV:"
9109
  msgstr "Table IV:"
9110
 
9111
- #: wppa-settings-autosave.php:3208
9112
  msgid "Behaviour:"
9113
  msgstr "Comportement:"
9114
 
9115
- #: wppa-settings-autosave.php:3209
9116
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9117
  msgstr ""
9118
 
9119
- #: wppa-settings-autosave.php:3227
9120
  msgid "System related settings"
9121
  msgstr ""
9122
 
9123
- #: wppa-settings-autosave.php:3229
9124
  msgid "Use Ajax"
9125
  msgstr "Utiliser AJAX"
9126
 
9127
- #: wppa-settings-autosave.php:3230
9128
  msgid "Use Ajax as much as is possible and implemented."
9129
  msgstr ""
9130
 
9131
- #: wppa-settings-autosave.php:3231
9132
  msgid ""
9133
  "If this box is ticked, page content updates from within wppa+ displays will "
9134
  "be Ajax based as much as possible."
9135
  msgstr ""
9136
 
9137
- #: wppa-settings-autosave.php:3239
9138
  msgid "Ajax NON Admin"
9139
  msgstr ""
9140
 
9141
- #: wppa-settings-autosave.php:3240
9142
  msgid "Frontend ajax use no admin files."
9143
  msgstr ""
9144
 
9145
- #: wppa-settings-autosave.php:3241
9146
  msgid "If you want to password protect wp-admin, check this box."
9147
  msgstr ""
9148
 
9149
- #: wppa-settings-autosave.php:3242
9150
  msgid ""
9151
  "In rare cases changing page content does not work when this box is checked. "
9152
  "Verify the functionality!"
9153
  msgstr ""
9154
 
9155
- #: wppa-settings-autosave.php:3249
9156
  msgid "Photo names in urls"
9157
  msgstr ""
9158
 
9159
- #: wppa-settings-autosave.php:3250
9160
  msgid "Display photo names in urls."
9161
  msgstr ""
9162
 
9163
- #: wppa-settings-autosave.php:3251
9164
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9165
  msgstr ""
9166
 
9167
- #: wppa-settings-autosave.php:3252
9168
  msgid ""
9169
  "It is your responsability to avoid duplicate names of photos in the same "
9170
  "album."
9171
  msgstr ""
9172
 
9173
- #: wppa-settings-autosave.php:3259
9174
  msgid "Album names in urls"
9175
  msgstr ""
9176
 
9177
- #: wppa-settings-autosave.php:3260
9178
  msgid "Display album names in urls."
9179
  msgstr ""
9180
 
9181
- #: wppa-settings-autosave.php:3261
9182
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9183
  msgstr ""
9184
 
9185
- #: wppa-settings-autosave.php:3262
9186
  msgid ""
9187
  "It is your responsability to avoid duplicate names of albums in the system."
9188
  msgstr ""
9189
 
9190
- #: wppa-settings-autosave.php:3269
9191
  msgid "Use short query args"
9192
  msgstr ""
9193
 
9194
- #: wppa-settings-autosave.php:3270
9195
  msgid "Use &album=... &photo=..."
9196
  msgstr ""
9197
 
9198
- #: wppa-settings-autosave.php:3271
9199
  msgid ""
9200
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9201
  "album=... &wppa-photo=..."
9202
  msgstr ""
9203
 
9204
- #: wppa-settings-autosave.php:3272
9205
  msgid ""
9206
  "Use this setting only when there are no conflicts with other plugins that "
9207
  "may interprete arguments like &album= etc."
9208
  msgstr ""
9209
 
9210
- #: wppa-settings-autosave.php:3279
9211
  msgid "Enable pretty links"
9212
  msgstr ""
9213
 
9214
- #: wppa-settings-autosave.php:3280
9215
  msgid "Enable the generation and understanding of pretty links."
9216
  msgstr ""
9217
 
9218
- #: wppa-settings-autosave.php:3281
9219
  msgid ""
9220
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9221
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9222
  msgstr ""
9223
 
9224
- #: wppa-settings-autosave.php:3282
9225
  msgid ""
9226
  "These types of links will be interpreted and cause a redirection on entering."
9227
  msgstr ""
9228
 
9229
- #: wppa-settings-autosave.php:3283
9230
  msgid ""
9231
  "It is recommended to check this box. It shortens links dramatically and "
9232
  "simplifies qr codes."
9233
  msgstr ""
9234
 
9235
- #: wppa-settings-autosave.php:3284
9236
  msgid ""
9237
  "However, you may encounter conflicts with themes and/or other plugins, so "
9238
  "test it troughly!"
9239
  msgstr ""
9240
 
9241
- #: wppa-settings-autosave.php:3285
9242
  msgid ""
9243
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9244
  msgstr ""
9245
 
9246
- #: wppa-settings-autosave.php:3292
9247
  msgid "Update addressline"
9248
  msgstr "Mettre à jour la ligne d'adresse"
9249
 
9250
- #: wppa-settings-autosave.php:3293
9251
  msgid "Update the addressline after an ajax action or next slide."
9252
  msgstr ""
9253
 
9254
- #: wppa-settings-autosave.php:3294
9255
  msgid ""
9256
  "If checked, refreshing the page will show the current content and the "
9257
  "browsers back and forth arrows will browse the history on the page."
9258
  msgstr ""
9259
 
9260
- #: wppa-settings-autosave.php:3295
9261
  msgid ""
9262
  "If unchecked, refreshing the page will re-display the content of the "
9263
  "original page."
9264
  msgstr ""
9265
 
9266
- #: wppa-settings-autosave.php:3296
9267
  msgid ""
9268
  "This will only work on browsers that support history.pushState() and "
9269
  "therefor NOT in IE"
9270
  msgstr ""
9271
 
9272
- #: wppa-settings-autosave.php:3297
9273
  msgid "Switching this off will affect the browsers behaviour."
9274
  msgstr ""
9275
 
9276
- #: wppa-settings-autosave.php:3304
9277
  msgid "Render shortcode always"
9278
  msgstr ""
9279
 
9280
- #: wppa-settings-autosave.php:3305
9281
  msgid "This will skip the check on proper initialisation."
9282
  msgstr ""
9283
 
9284
- #: wppa-settings-autosave.php:3306
9285
  msgid ""
9286
  "This setting is required for certain themes like Gantry to prevent the "
9287
  "display of wppa placeholders like [WPPA+ Photo display]."
9288
  msgstr ""
9289
 
9290
- #: wppa-settings-autosave.php:3307
9291
  #, php-format
9292
  msgid ""
9293
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9294
  "scripts like %%wppa%%."
9295
  msgstr ""
9296
 
9297
- #: wppa-settings-autosave.php:3314
9298
  msgid "Track viewcounts"
9299
  msgstr ""
9300
 
9301
- #: wppa-settings-autosave.php:3315
9302
  msgid "Register number of views of albums and photos."
9303
  msgstr ""
9304
 
9305
- #: wppa-settings-autosave.php:3323
9306
  msgid "Auto page"
9307
  msgstr ""
9308
 
9309
- #: wppa-settings-autosave.php:3324
9310
  msgid "Create a wp page for every fullsize image."
9311
  msgstr ""
9312
 
9313
- #: wppa-settings-autosave.php:3328
9314
  msgid "Please reload this page after changing!"
9315
  msgstr ""
9316
 
9317
- #: wppa-settings-autosave.php:3334
9318
  msgid "Auto page display"
9319
  msgstr ""
9320
 
9321
- #: wppa-settings-autosave.php:3335
9322
  msgid "The type of display on the autopage pages."
9323
  msgstr ""
9324
 
9325
- #: wppa-settings-autosave.php:3338
9326
  msgid "Single photo"
9327
  msgstr "Photo seule"
9328
 
9329
- #: wppa-settings-autosave.php:3338
9330
  msgid "Media type photo"
9331
  msgstr "Media type photo"
9332
 
9333
- #: wppa-settings-autosave.php:3338
9334
  msgid "In the style of a slideshow"
9335
  msgstr ""
9336
 
9337
- #: wppa-settings-autosave.php:3345
9338
  msgid "Auto page links"
9339
  msgstr ""
9340
 
9341
- #: wppa-settings-autosave.php:3346
9342
  msgid "The location for the pagelinks."
9343
  msgstr ""
9344
 
9345
- #: wppa-settings-autosave.php:3349
9346
  msgid "At top and bottom"
9347
  msgstr ""
9348
 
9349
- #: wppa-settings-autosave.php:3356
9350
  msgid "Defer javascript"
9351
  msgstr ""
9352
 
9353
- #: wppa-settings-autosave.php:3357
9354
  msgid "Put javascript near the end of the page."
9355
  msgstr ""
9356
 
9357
- #: wppa-settings-autosave.php:3358
9358
  msgid ""
9359
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9360
  "slow down page appearing."
9361
  msgstr ""
9362
 
9363
- #: wppa-settings-autosave.php:3365
9364
  msgid "Inline styles"
9365
  msgstr ""
9366
 
9367
- #: wppa-settings-autosave.php:3366
9368
  msgid "Set style specifications inline."
9369
  msgstr ""
9370
 
9371
- #: wppa-settings-autosave.php:3367
9372
  msgid "If checked: May fix layout problems, but slows down page appearing."
9373
  msgstr ""
9374
 
9375
- #: wppa-settings-autosave.php:3374
9376
  msgid "Custom style"
9377
  msgstr "Style personalisé"
9378
 
9379
- #: wppa-settings-autosave.php:3375
9380
  msgid "Enter custom style specs here."
9381
  msgstr ""
9382
 
9383
- #: wppa-settings-autosave.php:3383
9384
  msgid "Use customized style file"
9385
  msgstr ""
9386
 
9387
- #: wppa-settings-autosave.php:3384 wppa-settings-autosave.php:3393
9388
  msgid "This feature is highly discouraged."
9389
  msgstr ""
9390
 
9391
- #: wppa-settings-autosave.php:3392
9392
  msgid "Use customized theme file"
9393
  msgstr ""
9394
 
9395
- #: wppa-settings-autosave.php:3401
9396
  msgid "Enable photo html access"
9397
  msgstr ""
9398
 
9399
- #: wppa-settings-autosave.php:3402
9400
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9401
  msgstr ""
9402
 
9403
- #: wppa-settings-autosave.php:3403
9404
  msgid ""
9405
  "If checked: assures http access to your wppa photo files, despite other ."
9406
  "htaccess settings that may protect these files."
9407
  msgstr ""
9408
 
9409
- #: wppa-settings-autosave.php:3410
9410
  msgid "Lazy or HTML comp"
9411
  msgstr ""
9412
 
9413
- #: wppa-settings-autosave.php:3411
9414
  msgid "Tick this box when you use lazy load or html compression."
9415
  msgstr ""
9416
 
9417
- #: wppa-settings-autosave.php:3412
9418
  msgid ""
9419
  "If the filmstrip images do not show up and you have a lazy load or html "
9420
  "optimizing plugin active: Check this box"
9421
  msgstr ""
9422
 
9423
- #: wppa-settings-autosave.php:3419
9424
  msgid "Thumbs first"
9425
  msgstr "Vignettes en premier"
9426
 
9427
- #: wppa-settings-autosave.php:3420
9428
  msgid "When displaying album content: thumbnails before subalbums."
9429
  msgstr ""
9430
 
9431
- #: wppa-settings-autosave.php:3428
9432
  msgid "Login links"
9433
  msgstr ""
9434
 
9435
- #: wppa-settings-autosave.php:3429
9436
  msgid "You must login to... links to login page."
9437
  msgstr ""
9438
 
9439
- #: wppa-settings-autosave.php:3437
9440
  msgid "Enable Video"
9441
  msgstr ""
9442
 
9443
- #: wppa-settings-autosave.php:3438
9444
  msgid "Enables video support."
9445
  msgstr ""
9446
 
9447
- #: wppa-settings-autosave.php:3447
9448
  msgid "Enable Audio"
9449
  msgstr ""
9450
 
9451
- #: wppa-settings-autosave.php:3448
9452
  msgid "Enables audio support."
9453
  msgstr ""
9454
 
9455
- #: wppa-settings-autosave.php:3456
9456
  msgid "Enable 3D Stereo"
9457
  msgstr ""
9458
 
9459
- #: wppa-settings-autosave.php:3457
9460
  msgid "Enables 3D stereo photo support."
9461
  msgstr ""
9462
 
9463
- #: wppa-settings-autosave.php:3465
9464
  msgid "Relative urls"
9465
  msgstr ""
9466
 
9467
- #: wppa-settings-autosave.php:3466
9468
  msgid "Use relative urls only."
9469
  msgstr ""
9470
 
9471
- #: wppa-settings-autosave.php:3475
9472
  msgid "Slideshow related settings"
9473
  msgstr ""
9474
 
9475
- #: wppa-settings-autosave.php:3477
9476
  msgid "V align"
9477
  msgstr ""
9478
 
9479
- #: wppa-settings-autosave.php:3478
9480
  msgid "Vertical alignment of slideshow images."
9481
  msgstr ""
9482
 
9483
- #: wppa-settings-autosave.php:3479
9484
  msgid "Specify the vertical alignment of slideshow images."
9485
  msgstr ""
9486
 
9487
- #: wppa-settings-autosave.php:3480
9488
  msgid ""
9489
  "If you select --- none ---, the photos will not be centered horizontally "
9490
  "either."
9491
  msgstr ""
9492
 
9493
- #: wppa-settings-autosave.php:3482 wppa-settings-autosave.php:3747
9494
  #: wppa-slideshow-widget.php:214
9495
  msgid "top"
9496
  msgstr "haut"
9497
 
9498
- #: wppa-settings-autosave.php:3482 wppa-settings-autosave.php:3496
9499
- #: wppa-settings-autosave.php:3747 wppa-slideshow-widget.php:215
9500
  #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:515
9501
  #: wppa-widget-admin.php:85
9502
  msgid "center"
9503
  msgstr "Centre"
9504
 
9505
- #: wppa-settings-autosave.php:3482 wppa-settings-autosave.php:3747
9506
  #: wppa-slideshow-widget.php:216
9507
  msgid "bottom"
9508
  msgstr "Bas"
9509
 
9510
- #: wppa-settings-autosave.php:3482 wppa-slideshow-widget.php:217
9511
  msgid "fit"
9512
  msgstr "auto adaptation"
9513
 
9514
- #: wppa-settings-autosave.php:3490
9515
  msgid "H align"
9516
  msgstr ""
9517
 
9518
- #: wppa-settings-autosave.php:3491
9519
  msgid "Horizontal alignment of slideshow images."
9520
  msgstr ""
9521
 
9522
- #: wppa-settings-autosave.php:3492
9523
  msgid ""
9524
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9525
  "none --- , no horizontal alignment will take place."
9526
  msgstr ""
9527
 
9528
- #: wppa-settings-autosave.php:3493
9529
  msgid ""
9530
  "This setting is only usefull when the Column Width differs from the Maximum "
9531
  "Width."
9532
  msgstr ""
9533
 
9534
- #: wppa-settings-autosave.php:3494
9535
  msgid "(Settings I-A1 and I-B1)"
9536
  msgstr ""
9537
 
9538
- #: wppa-settings-autosave.php:3504
9539
  msgid "Start slideshow running."
9540
  msgstr ""
9541
 
9542
- #: wppa-settings-autosave.php:3505
9543
  msgid ""
9544
  "If you select \"running\", the slideshow will start running immediately, if "
9545
  "you select \"still at first photo\", the first photo will be displayed in "
9546
  "browse mode."
9547
  msgstr ""
9548
 
9549
- #: wppa-settings-autosave.php:3506
9550
  msgid ""
9551
  "If you select \"still at first norated\", the first photo that the visitor "
9552
  "did not gave a rating will be displayed in browse mode."
9553
  msgstr ""
9554
 
9555
- #: wppa-settings-autosave.php:3508
9556
  msgid "running"
9557
  msgstr ""
9558
 
9559
- #: wppa-settings-autosave.php:3509
9560
  msgid "still at first photo"
9561
  msgstr ""
9562
 
9563
- #: wppa-settings-autosave.php:3510
9564
  msgid "still at first norated"
9565
  msgstr ""
9566
 
9567
- #: wppa-settings-autosave.php:3521
9568
  msgid "Start slideonly"
9569
  msgstr ""
9570
 
9571
- #: wppa-settings-autosave.php:3522
9572
  msgid "Start slideonly slideshow running."
9573
  msgstr ""
9574
 
9575
- #: wppa-settings-autosave.php:3530 wppa-settings-autosave.php:4345
9576
  msgid "Video autostart"
9577
  msgstr ""
9578
 
9579
- #: wppa-settings-autosave.php:3531
9580
  msgid "Autoplay videos in slideshows."
9581
  msgstr ""
9582
 
9583
- #: wppa-settings-autosave.php:3540 wppa-settings-autosave.php:4354
9584
  msgid "Audio autostart"
9585
  msgstr ""
9586
 
9587
- #: wppa-settings-autosave.php:3541
9588
  msgid "Autoplay audios in slideshows."
9589
  msgstr ""
9590
 
9591
- #: wppa-settings-autosave.php:3549
9592
  msgid "Animation type"
9593
  msgstr ""
9594
 
9595
- #: wppa-settings-autosave.php:3550
9596
  msgid "The way successive slides appear."
9597
  msgstr ""
9598
 
9599
- #: wppa-settings-autosave.php:3551
9600
  msgid ""
9601
  "Select the way the old slide is to be replaced by the new one in the "
9602
  "slideshow/browse fullsize display."
9603
  msgstr ""
9604
 
9605
- #: wppa-settings-autosave.php:3553
9606
  msgid "Fade out and in simultaneous"
9607
  msgstr ""
9608
 
9609
- #: wppa-settings-autosave.php:3554
9610
  msgid "Fade in after fade out"
9611
  msgstr ""
9612
 
9613
- #: wppa-settings-autosave.php:3555
9614
  msgid "Shift adjacent"
9615
  msgstr ""
9616
 
9617
- #: wppa-settings-autosave.php:3556
9618
  msgid "Stack on"
9619
  msgstr ""
9620
 
9621
- #: wppa-settings-autosave.php:3557
9622
  msgid "Stack off"
9623
  msgstr ""
9624
 
9625
- #: wppa-settings-autosave.php:3558
9626
  msgid "Turn over"
9627
  msgstr ""
9628
 
9629
- #: wppa-settings-autosave.php:3572
9630
  msgid "Timeout"
9631
  msgstr "Timeout"
9632
 
9633
- #: wppa-settings-autosave.php:3573
9634
  msgid "Slideshow timeout."
9635
  msgstr "Timeout du diaporama."
9636
 
9637
- #: wppa-settings-autosave.php:3574
9638
  msgid ""
9639
  "Select the time a single slide will be visible when the slideshow is started."
9640
  msgstr ""
9641
 
9642
- #: wppa-settings-autosave.php:3576
9643
  msgid "very short (1 s.)"
9644
  msgstr ""
9645
 
9646
- #: wppa-settings-autosave.php:3576
9647
  msgid "short (1.5 s.)"
9648
  msgstr ""
9649
 
9650
- #: wppa-settings-autosave.php:3576
9651
  msgid "normal (2.5 s.)"
9652
  msgstr ""
9653
 
9654
- #: wppa-settings-autosave.php:3576
9655
  msgid "long (4 s.)"
9656
  msgstr ""
9657
 
9658
- #: wppa-settings-autosave.php:3576
9659
  msgid "very long (6 s.)"
9660
  msgstr ""
9661
 
9662
- #: wppa-settings-autosave.php:3583
9663
  msgid "Speed"
9664
  msgstr ""
9665
 
9666
- #: wppa-settings-autosave.php:3584
9667
  msgid "Slideshow animation speed."
9668
  msgstr ""
9669
 
9670
- #: wppa-settings-autosave.php:3585
9671
  msgid "Specify the animation speed to be used in slideshows."
9672
  msgstr ""
9673
 
9674
- #: wppa-settings-autosave.php:3586
9675
  msgid "This is the time it takes a photo to fade in or out."
9676
  msgstr ""
9677
 
9678
- #: wppa-settings-autosave.php:3588 wppa-settings-autosave.php:4291
9679
- #: wppa-settings-autosave.php:6049 wppa-settings-autosave.php:6959
9680
- #: wppa-settings-autosave.php:6970 wppa-settings-autosave.php:7132
9681
  msgid "--- off ---"
9682
  msgstr "--- désactivé ---"
9683
 
9684
- #: wppa-settings-autosave.php:3588
9685
  msgid "very fast (200 ms.)"
9686
  msgstr ""
9687
 
9688
- #: wppa-settings-autosave.php:3588
9689
  msgid "fast (400 ms.)"
9690
  msgstr ""
9691
 
9692
- #: wppa-settings-autosave.php:3588
9693
  msgid "normal (800 ms.)"
9694
  msgstr ""
9695
 
9696
- #: wppa-settings-autosave.php:3588
9697
  msgid "slow (1.2 s.)"
9698
  msgstr ""
9699
 
9700
- #: wppa-settings-autosave.php:3588
9701
  msgid "very slow (2 s.)"
9702
  msgstr "très lent (2 s.)"
9703
 
9704
- #: wppa-settings-autosave.php:3588
9705
  msgid "extremely slow (4 s.)"
9706
  msgstr ""
9707
 
9708
- #: wppa-settings-autosave.php:3595
9709
  msgid "Slide hover pause"
9710
  msgstr ""
9711
 
9712
- #: wppa-settings-autosave.php:3596
9713
  msgid "Running Slideshow suspends during mouse hover."
9714
  msgstr ""
9715
 
9716
- #: wppa-settings-autosave.php:3604
9717
  msgid "Slideshow wrap around"
9718
  msgstr ""
9719
 
9720
- #: wppa-settings-autosave.php:3605
9721
  msgid "The slideshow wraps around the start and end"
9722
  msgstr ""
9723
 
9724
- #: wppa-settings-autosave.php:3613
9725
  msgid "Full desc align"
9726
  msgstr ""
9727
 
9728
- #: wppa-settings-autosave.php:3614
9729
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9730
  msgstr ""
9731
 
9732
- #: wppa-settings-autosave.php:3617 wppa-settings-autosave.php:3735
9733
- #: wppa-settings-autosave.php:3838
9734
  msgid "Left"
9735
  msgstr "Gauche"
9736
 
9737
- #: wppa-settings-autosave.php:3617
9738
  msgid "Center"
9739
  msgstr "Centre"
9740
 
9741
- #: wppa-settings-autosave.php:3617 wppa-settings-autosave.php:3735
9742
- #: wppa-settings-autosave.php:3838
9743
  msgid "Right"
9744
  msgstr "Droite"
9745
 
9746
- #: wppa-settings-autosave.php:3624
9747
  msgid "Remove redundant space"
9748
  msgstr ""
9749
 
9750
- #: wppa-settings-autosave.php:3625
9751
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9752
  msgstr ""
9753
 
9754
- #: wppa-settings-autosave.php:3626
9755
  msgid ""
9756
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9757
  "checked."
9758
  msgstr ""
9759
 
9760
- #: wppa-settings-autosave.php:3633
9761
  msgid "Run wpautop on description"
9762
  msgstr ""
9763
 
9764
- #: wppa-settings-autosave.php:3634
9765
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9766
  msgstr ""
9767
 
9768
- #: wppa-settings-autosave.php:3642
9769
  msgid "Auto open comments"
9770
  msgstr "Ouverture auto des commentaires"
9771
 
9772
- #: wppa-settings-autosave.php:3643
9773
  msgid "Automatic opens comments box when slideshow does not run."
9774
  msgstr ""
9775
 
9776
- #: wppa-settings-autosave.php:3651
9777
  msgid "Film hover goto"
9778
  msgstr ""
9779
 
9780
- #: wppa-settings-autosave.php:3652
9781
  msgid "Go to slide when hovering filmstrip thumbnail."
9782
  msgstr ""
9783
 
9784
- #: wppa-settings-autosave.php:3653
9785
  msgid "Do not use this setting when slides have different aspect ratios!"
9786
  msgstr ""
9787
 
9788
- #: wppa-settings-autosave.php:3660
9789
  msgid "Slide swipe"
9790
  msgstr ""
9791
 
9792
- #: wppa-settings-autosave.php:3661
9793
  msgid "Enable touch events swipe left-right on slides on touch screens."
9794
  msgstr ""
9795
 
9796
- #: wppa-settings-autosave.php:3669
9797
  msgid "Slide page Ajax"
9798
  msgstr ""
9799
 
9800
- #: wppa-settings-autosave.php:3670
9801
  msgid "Pagelinks slideshow use Ajax"
9802
  msgstr ""
9803
 
9804
- #: wppa-settings-autosave.php:3671
9805
  msgid "On some systems you need to disable ajax here."
9806
  msgstr ""
9807
 
9808
- #: wppa-settings-autosave.php:3678
9809
  msgid "Thumbnail related settings"
9810
  msgstr ""
9811
 
9812
- #: wppa-settings-autosave.php:3681
9813
  msgid "Photo ordering sequence method."
9814
  msgstr ""
9815
 
9816
- #: wppa-settings-autosave.php:3682
9817
  msgid ""
9818
  "Specify the way the photos should be ordered. This is the default setting. "
9819
  "You can overrule the default sorting order on a per album basis."
9820
  msgstr ""
9821
 
9822
- #: wppa-settings-autosave.php:3719
9823
  msgid "Thumbnail type"
9824
  msgstr "Type de vignette"
9825
 
9826
- #: wppa-settings-autosave.php:3720
9827
  msgid "The way the thumbnail images are displayed."
9828
  msgstr ""
9829
 
9830
- #: wppa-settings-autosave.php:3721
9831
  msgid ""
9832
  "You may select an altenative display method for thumbnails. Note that some "
9833
  "of the thumbnail settings do not apply to all available display methods."
9834
  msgstr ""
9835
 
9836
- #: wppa-settings-autosave.php:3723
9837
  msgid "like album covers"
9838
  msgstr ""
9839
 
9840
- #: wppa-settings-autosave.php:3723
9841
  msgid "like album covers mcr"
9842
  msgstr ""
9843
 
9844
- #: wppa-settings-autosave.php:3723
9845
  msgid "masonry style columns"
9846
  msgstr ""
9847
 
9848
- #: wppa-settings-autosave.php:3723
9849
  msgid "masonry style rows"
9850
  msgstr ""
9851
 
9852
- #: wppa-settings-autosave.php:3731 wppa-settings-autosave.php:3832
9853
  msgid "Placement"
9854
  msgstr "Placement"
9855
 
9856
- #: wppa-settings-autosave.php:3732
9857
  msgid "Thumbnail image left or right."
9858
  msgstr ""
9859
 
9860
- #: wppa-settings-autosave.php:3733
9861
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9862
  msgstr ""
9863
 
9864
- #: wppa-settings-autosave.php:3742
9865
  msgid "Vertical alignment"
9866
  msgstr "Alignement vertical"
9867
 
9868
- #: wppa-settings-autosave.php:3743
9869
  msgid "Vertical alignment of thumbnails."
9870
  msgstr ""
9871
 
9872
- #: wppa-settings-autosave.php:3744
9873
  msgid ""
9874
  "Specify the vertical alignment of thumbnail images. Use this setting when "
9875
  "albums contain both portrait and landscape photos."
9876
  msgstr ""
9877
 
9878
- #: wppa-settings-autosave.php:3745
9879
  msgid ""
9880
  "It is NOT recommended to use the value --- default ---; it will affect the "
9881
  "horizontal alignment also and is meant to be used with custom css."
9882
  msgstr ""
9883
 
9884
- #: wppa-settings-autosave.php:3754
9885
  msgid "Thumb mouseover"
9886
  msgstr ""
9887
 
9888
- #: wppa-settings-autosave.php:3755
9889
  msgid "Apply thumbnail mouseover effect."
9890
  msgstr ""
9891
 
9892
- #: wppa-settings-autosave.php:3756
9893
  msgid "Check this box to use mouseover effect on thumbnail images."
9894
  msgstr ""
9895
 
9896
- #: wppa-settings-autosave.php:3764
9897
  msgid "Thumb opacity"
9898
  msgstr "Opacité des vignettes"
9899
 
9900
- #: wppa-settings-autosave.php:3765 wppa-settings-autosave.php:3857
9901
  msgid "Initial opacity value."
9902
  msgstr "Valeur d'opacité initiale."
9903
 
9904
- #: wppa-settings-autosave.php:3766 wppa-settings-autosave.php:3858
9905
- #: wppa-settings-autosave.php:3967
9906
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9907
  msgstr ""
9908
 
9909
- #: wppa-settings-autosave.php:3768 wppa-settings-autosave.php:3860
9910
- #: wppa-settings-autosave.php:3970 wppa-settings-autosave.php:4271
9911
  msgid "%"
9912
  msgstr "%"
9913
 
9914
- #: wppa-settings-autosave.php:3773
9915
  msgid "Thumb popup"
9916
  msgstr ""
9917
 
9918
- #: wppa-settings-autosave.php:3774
9919
  msgid "Use popup effect on thumbnail images."
9920
  msgstr ""
9921
 
9922
- #: wppa-settings-autosave.php:3775
9923
  msgid "Thumbnails pop-up to a larger image when hovered."
9924
  msgstr ""
9925
 
9926
- #: wppa-settings-autosave.php:3783
9927
  msgid "Align subtext"
9928
  msgstr ""
9929
 
9930
- #: wppa-settings-autosave.php:3784
9931
  msgid "Set thumbnail subtext on equal height."
9932
  msgstr ""
9933
 
9934
- #: wppa-settings-autosave.php:3792
9935
  msgid "Album and covers related settings"
9936
  msgstr ""
9937
 
9938
- #: wppa-settings-autosave.php:3794
9939
  msgid "Album order"
9940
  msgstr "Tri des albums"
9941
 
9942
- #: wppa-settings-autosave.php:3795
9943
  msgid "Album ordering sequence method."
9944
  msgstr ""
9945
 
9946
- #: wppa-settings-autosave.php:3796
9947
  msgid "Specify the way the albums should be ordered."
9948
  msgstr ""
9949
 
9950
- #: wppa-settings-autosave.php:3821
9951
  msgid "Default coverphoto selection"
9952
  msgstr "Sélection de la photo de couverture par défaut"
9953
 
9954
- #: wppa-settings-autosave.php:3822
9955
  msgid "Default select cover photo method."
9956
  msgstr ""
9957
 
9958
- #: wppa-settings-autosave.php:3823
9959
  msgid ""
9960
  "This is the initial value on album creation only. It can be overruled on the "
9961
  "edit album page."
9962
  msgstr ""
9963
 
9964
- #: wppa-settings-autosave.php:3824
9965
  msgid "Random from album"
9966
  msgstr ""
9967
 
9968
- #: wppa-settings-autosave.php:3824
9969
  msgid "Random featured from album"
9970
  msgstr ""
9971
 
9972
- #: wppa-settings-autosave.php:3824
9973
  msgid "Most recently added to album"
9974
  msgstr "Dernières photos mises à jour"
9975
 
9976
- #: wppa-settings-autosave.php:3824
9977
  msgid "Random from album or any sub album"
9978
  msgstr "Aléatoire depuis un album ou (fils)"
9979
 
9980
- #: wppa-settings-autosave.php:3833
9981
  msgid "Cover image position."
9982
  msgstr "Position de l'image de couverture."
9983
 
9984
- #: wppa-settings-autosave.php:3834
9985
  msgid ""
9986
  "Enter the position that you want to be used for the default album cover "
9987
  "selected in Table IV-D6."
9988
  msgstr ""
9989
 
9990
- #: wppa-settings-autosave.php:3835
9991
  msgid ""
9992
  "For covertype Image Factory: left will be treated as top and right will be "
9993
  "treted as bottom."
9994
  msgstr ""
9995
 
9996
- #: wppa-settings-autosave.php:3836
9997
  msgid ""
9998
  "For covertype Long Descriptions: top will be treated as left and bottom will "
9999
  "be treted as right."
10000
  msgstr ""
10001
 
10002
- #: wppa-settings-autosave.php:3846
10003
  msgid "Cover mouseover"
10004
  msgstr ""
10005
 
10006
- #: wppa-settings-autosave.php:3847
10007
  msgid "Apply coverphoto mouseover effect."
10008
  msgstr ""
10009
 
10010
- #: wppa-settings-autosave.php:3848
10011
  msgid "Check this box to use mouseover effect on cover images."
10012
  msgstr ""
10013
 
10014
- #: wppa-settings-autosave.php:3856
10015
  msgid "Cover opacity"
10016
  msgstr "Opacité de la couverture"
10017
 
10018
- #: wppa-settings-autosave.php:3865
10019
  msgid "Cover type"
10020
  msgstr "Type de couverture"
10021
 
10022
- #: wppa-settings-autosave.php:3866
10023
  msgid "Select the default cover type."
10024
  msgstr ""
10025
 
10026
- #: wppa-settings-autosave.php:3867
10027
  msgid ""
10028
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10029
  "theme"
10030
  msgstr ""
10031
 
10032
- #: wppa-settings-autosave.php:3890
10033
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10034
  msgstr ""
10035
 
10036
- #: wppa-settings-autosave.php:3898
10037
  msgid "Rating related settings"
10038
  msgstr ""
10039
 
10040
- #: wppa-settings-autosave.php:3900
10041
  msgid "Rating login"
10042
  msgstr ""
10043
 
10044
- #: wppa-settings-autosave.php:3901
10045
  msgid "Users must login to rate photos."
10046
  msgstr "Les utilisateurs doivent se connecter pour voter."
10047
 
10048
- #: wppa-settings-autosave.php:3902
10049
  msgid ""
10050
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10051
  "The avarage rating will always be displayed as long as the rating system is "
10052
  "enabled."
10053
  msgstr ""
10054
 
10055
- #: wppa-settings-autosave.php:3909
10056
  msgid "Rating change"
10057
  msgstr ""
10058
 
10059
- #: wppa-settings-autosave.php:3910 wppa-settings-autosave.php:3911
10060
  msgid "Users may change their ratings."
10061
  msgstr ""
10062
 
10063
- #: wppa-settings-autosave.php:3912 wppa-settings-autosave.php:3949
10064
- #: wppa-settings-autosave.php:3968 wppa-settings-autosave.php:3981
10065
- #: wppa-settings-autosave.php:3991 wppa-settings-autosave.php:4001
10066
- #: wppa-settings-autosave.php:4011 wppa-settings-autosave.php:4020
10067
  msgid ""
10068
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10069
  msgstr ""
10070
 
10071
- #: wppa-settings-autosave.php:3919
10072
  msgid "Rating multi"
10073
  msgstr ""
10074
 
10075
- #: wppa-settings-autosave.php:3920
10076
  msgid "Users may give multiple votes."
10077
  msgstr ""
10078
 
10079
- #: wppa-settings-autosave.php:3921
10080
  msgid ""
10081
  "Users may give multiple votes. (This has no effect when users may change "
10082
  "their votes.)"
10083
  msgstr ""
10084
 
10085
- #: wppa-settings-autosave.php:3928
10086
  msgid "Rate own photos"
10087
  msgstr ""
10088
 
10089
- #: wppa-settings-autosave.php:3929
10090
  msgid "It is allowed to rate photos by the uploader himself."
10091
  msgstr ""
10092
 
10093
- #: wppa-settings-autosave.php:3937
10094
  msgid "Rating requires comment"
10095
  msgstr ""
10096
 
10097
- #: wppa-settings-autosave.php:3938
10098
  msgid "Users must clarify their vote in a comment."
10099
  msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
10100
 
10101
- #: wppa-settings-autosave.php:3947
10102
  msgid "This value counts dislike rating."
10103
  msgstr ""
10104
 
10105
- #: wppa-settings-autosave.php:3948
10106
  msgid ""
10107
  "This value will be used for a dislike rating on calculation of avarage "
10108
  "ratings."
10109
  msgstr ""
10110
 
10111
- #: wppa-settings-autosave.php:3951
10112
  msgid "points"
10113
  msgstr "points"
10114
 
10115
- #: wppa-settings-autosave.php:3956
10116
  msgid "Next after vote"
10117
  msgstr ""
10118
 
10119
- #: wppa-settings-autosave.php:3957
10120
  msgid "Goto next slide after voting"
10121
  msgstr ""
10122
 
10123
- #: wppa-settings-autosave.php:3958
10124
  msgid ""
10125
  "If checked, the visitor goes straight to the slide following the slide he "
10126
  "voted. This will speed up mass voting."
10127
  msgstr ""
10128
 
10129
- #: wppa-settings-autosave.php:3965
10130
  msgid "Star off opacity"
10131
  msgstr ""
10132
 
10133
- #: wppa-settings-autosave.php:3966
10134
  msgid "Rating star off state opacity value."
10135
  msgstr ""
10136
 
10137
- #: wppa-settings-autosave.php:3976
10138
  msgid "Notify admin every x times."
10139
  msgstr ""
10140
 
10141
- #: wppa-settings-autosave.php:3977
10142
  msgid ""
10143
  "If this number is positive, there will be a thumb down icon in the rating "
10144
  "bar."
10145
  msgstr ""
10146
 
10147
- #: wppa-settings-autosave.php:3978
10148
  msgid ""
10149
  "Cicking the icon indicates a user wants to report that an image is "
10150
  "inappropiate."
10151
  msgstr ""
10152
 
10153
- #: wppa-settings-autosave.php:3979
10154
  msgid "Admin will be notified by email after every x reports."
10155
  msgstr ""
10156
 
10157
- #: wppa-settings-autosave.php:3980 wppa-settings-autosave.php:3990
10158
- #: wppa-settings-autosave.php:4000
10159
  msgid "A value of 0 disables this feature."
10160
  msgstr ""
10161
 
10162
- #: wppa-settings-autosave.php:3983 wppa-settings-autosave.php:3993
10163
- #: wppa-settings-autosave.php:4003
10164
  msgid "reports"
10165
  msgstr ""
10166
 
10167
- #: wppa-settings-autosave.php:3988
10168
  msgid "Pending after"
10169
  msgstr "En attente après"
10170
 
10171
- #: wppa-settings-autosave.php:3989
10172
  msgid "Set status to pending after xx dislike votes."
10173
  msgstr ""
10174
 
10175
- #: wppa-settings-autosave.php:3998
10176
  msgid "Delete after"
10177
  msgstr "Supprimer après"
10178
 
10179
- #: wppa-settings-autosave.php:3999
10180
  msgid "Deete photo after xx dislike votes."
10181
  msgstr ""
10182
 
10183
- #: wppa-settings-autosave.php:4008
10184
  msgid "Show dislike count"
10185
  msgstr "Montrer comptage des avis négatifs"
10186
 
10187
- #: wppa-settings-autosave.php:4009
10188
  msgid "Show the number of dislikes in the rating bar."
10189
  msgstr ""
10190
 
10191
- #: wppa-settings-autosave.php:4010
10192
  msgid "Displayes the total number of dislike votes for the current photo."
10193
  msgstr ""
10194
 
10195
- #: wppa-settings-autosave.php:4018
10196
  msgid "Rating display type"
10197
  msgstr ""
10198
 
10199
- #: wppa-settings-autosave.php:4019
10200
  msgid "Specify the type of the rating display."
10201
  msgstr ""
10202
 
10203
- #: wppa-settings-autosave.php:4022
10204
  msgid "Graphic"
10205
  msgstr "Graphique"
10206
 
10207
- #: wppa-settings-autosave.php:4022
10208
  msgid "Numeric"
10209
  msgstr "Numérique"
10210
 
10211
- #: wppa-settings-autosave.php:4029
10212
  msgid "Show average rating"
10213
  msgstr "Montrer le vote moyen"
10214
 
10215
- #: wppa-settings-autosave.php:4030
10216
  msgid "Display the avarage rating and/or vote count on the rating bar"
10217
  msgstr ""
10218
 
10219
- #: wppa-settings-autosave.php:4031
10220
  msgid ""
10221
  "If checked, the average rating as well as the current users rating is "
10222
  "displayed in max 5 or 10 stars."
10223
  msgstr ""
10224
 
10225
- #: wppa-settings-autosave.php:4032
10226
  msgid "If unchecked, only the current users rating is displayed (if any)."
10227
  msgstr ""
10228
 
10229
- #: wppa-settings-autosave.php:4033
10230
  msgid ""
10231
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10232
  "display the vote count."
10233
  msgstr ""
10234
 
10235
- #: wppa-settings-autosave.php:4040
10236
  msgid "Single vote button text"
10237
  msgstr ""
10238
 
10239
- #: wppa-settings-autosave.php:4041
10240
  msgid "The text on the voting button."
10241
  msgstr ""
10242
 
10243
- #: wppa-settings-autosave.php:4042 wppa-settings-autosave.php:4051
10244
  msgid "This text may contain qTranslate compatible language tags."
10245
  msgstr ""
10246
 
10247
- #: wppa-settings-autosave.php:4049
10248
  msgid "Single vote button text voted"
10249
  msgstr ""
10250
 
10251
- #: wppa-settings-autosave.php:4050
10252
  msgid "The text on the voting button when voted."
10253
  msgstr ""
10254
 
10255
- #: wppa-settings-autosave.php:4058
10256
  msgid "Single vote button thumbnail"
10257
  msgstr "Single vote button thumbnail"
10258
 
10259
- #: wppa-settings-autosave.php:4059
10260
  msgid "Display single vote button below thumbnails."
10261
  msgstr ""
10262
 
10263
- #: wppa-settings-autosave.php:4060
10264
  msgid ""
10265
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10266
  msgstr ""
10267
 
10268
- #: wppa-settings-autosave.php:4067
10269
  msgid "Medal bronze when"
10270
  msgstr ""
10271
 
10272
- #: wppa-settings-autosave.php:4068 wppa-settings-autosave.php:4086
10273
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10274
  msgstr ""
10275
 
10276
- #: wppa-settings-autosave.php:4069 wppa-settings-autosave.php:4087
10277
  msgid ""
10278
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10279
  "bronze medal. A value of 0 indicates that you do not want this feature."
10280
  msgstr ""
10281
 
10282
- #: wppa-settings-autosave.php:4071 wppa-settings-autosave.php:4080
10283
- #: wppa-settings-autosave.php:4089
10284
  msgid "Topscores"
10285
  msgstr ""
10286
 
10287
- #: wppa-settings-autosave.php:4076
10288
  msgid "Medal silver when"
10289
  msgstr ""
10290
 
10291
- #: wppa-settings-autosave.php:4077
10292
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10293
  msgstr ""
10294
 
10295
- #: wppa-settings-autosave.php:4078
10296
  msgid ""
10297
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10298
  "silver medal. A value of 0 indicates that you do not want this feature."
10299
  msgstr ""
10300
 
10301
- #: wppa-settings-autosave.php:4085
10302
  msgid "Medal gold when"
10303
  msgstr ""
10304
 
10305
- #: wppa-settings-autosave.php:4094
10306
  msgid "Medal tag color"
10307
  msgstr ""
10308
 
10309
- #: wppa-settings-autosave.php:4095
10310
  msgid "The color of the tag on the medal."
10311
  msgstr ""
10312
 
10313
- #: wppa-settings-autosave.php:4098 wppa-settings-autosave.php:7215
10314
  msgid "Red"
10315
  msgstr "Rouge"
10316
 
10317
- #: wppa-settings-autosave.php:4098 wppa-settings-autosave.php:7218
10318
  msgid "Green"
10319
  msgstr "Vert"
10320
 
10321
- #: wppa-settings-autosave.php:4098 wppa-settings-autosave.php:7219
10322
  msgid "Blue"
10323
  msgstr "Bleu"
10324
 
10325
- #: wppa-settings-autosave.php:4105
10326
  msgid "Medal position"
10327
  msgstr "Position médaille"
10328
 
10329
- #: wppa-settings-autosave.php:4106
10330
  msgid "The position of the medal on the image."
10331
  msgstr ""
10332
 
10333
- #: wppa-settings-autosave.php:4109
10334
  msgid "Top left"
10335
  msgstr ""
10336
 
10337
- #: wppa-settings-autosave.php:4109
10338
  msgid "Top right"
10339
  msgstr ""
10340
 
10341
- #: wppa-settings-autosave.php:4109
10342
  msgid "Bottom left"
10343
  msgstr ""
10344
 
10345
- #: wppa-settings-autosave.php:4109
10346
  msgid "Bottom right"
10347
  msgstr ""
10348
 
10349
- #: wppa-settings-autosave.php:4116
10350
  msgid "Top criterium"
10351
  msgstr ""
10352
 
10353
- #: wppa-settings-autosave.php:4117
10354
  msgid "The top sort item used for topten results from shortcodes."
10355
  msgstr ""
10356
 
10357
- #: wppa-settings-autosave.php:4120
10358
  msgid "Mean raiting"
10359
  msgstr "Moyenne votes"
10360
 
10361
- #: wppa-settings-autosave.php:4120
10362
  msgid "Rating count"
10363
  msgstr "Compteur votes"
10364
 
10365
- #: wppa-settings-autosave.php:4120
10366
  msgid "Viewcount"
10367
  msgstr "Compteur vues"
10368
 
10369
- #: wppa-settings-autosave.php:4127
10370
  msgid "Comments related settings"
10371
  msgstr "Comments related settings"
10372
 
10373
- #: wppa-settings-autosave.php:4129
10374
  msgid "Commenting login"
10375
  msgstr "Commenting login"
10376
 
10377
- #: wppa-settings-autosave.php:4130
10378
  msgid "Users must be logged in to comment on photos."
10379
  msgstr ""
10380
 
10381
- #: wppa-settings-autosave.php:4131
10382
  msgid ""
10383
  "Check this box if you want users to be logged in to be able to enter "
10384
  "comments on individual photos."
10385
  msgstr ""
10386
 
10387
- #: wppa-settings-autosave.php:4138
10388
  msgid "Comments view login"
10389
  msgstr "Comments view login"
10390
 
10391
- #: wppa-settings-autosave.php:4139
10392
  msgid "Users must be logged in to see comments on photos."
10393
  msgstr "L'utilisateur doit être connecté pour voir les commentaires."
10394
 
10395
- #: wppa-settings-autosave.php:4140
10396
  msgid ""
10397
  "Check this box if you want users to be logged in to be able to see existing "
10398
  "comments on individual photos."
10399
  msgstr ""
10400
 
10401
- #: wppa-settings-autosave.php:4147
10402
  msgid "Last comment first"
10403
  msgstr "Dernier commentaire en premier"
10404
 
10405
- #: wppa-settings-autosave.php:4148
10406
  msgid "Display the newest comment on top."
10407
  msgstr ""
10408
 
10409
- #: wppa-settings-autosave.php:4149
10410
  msgid "If checked: Display the newest comment on top."
10411
  msgstr ""
10412
 
10413
- #: wppa-settings-autosave.php:4150
10414
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10415
  msgstr ""
10416
 
10417
- #: wppa-settings-autosave.php:4157
10418
  msgid "Comment moderation"
10419
  msgstr "Modération du commentaire"
10420
 
10421
- #: wppa-settings-autosave.php:4158
10422
  msgid "Comments from what users need approval."
10423
  msgstr ""
10424
 
10425
- #: wppa-settings-autosave.php:4159
10426
  msgid "Select the desired users of which the comments need approval."
10427
  msgstr ""
10428
 
10429
- #: wppa-settings-autosave.php:4161 wppa-settings-autosave.php:6035
10430
  msgid "All users"
10431
  msgstr "Tous les utilisateurs"
10432
 
10433
- #: wppa-settings-autosave.php:4161 wppa-settings-autosave.php:6035
10434
  msgid "Logged out users"
10435
  msgstr ""
10436
 
10437
- #: wppa-settings-autosave.php:4161 wppa-settings-autosave.php:6035
10438
  msgid "No users"
10439
  msgstr "Pas d'utilisateurs"
10440
 
10441
- #: wppa-settings-autosave.php:4168
10442
  msgid "Comment email required"
10443
  msgstr "Comment email required"
10444
 
10445
- #: wppa-settings-autosave.php:4169
10446
  msgid "Commenting users must enter their email addresses."
10447
  msgstr ""
10448
 
10449
- #: wppa-settings-autosave.php:4177
10450
  msgid "Comment notify"
10451
  msgstr "Notification de commentaire"
10452
 
10453
- #: wppa-settings-autosave.php:4178
10454
  msgid "Select who must receive an e-mail notification of a new comment."
10455
  msgstr ""
10456
 
10457
- #: wppa-settings-autosave.php:4181
10458
  msgid "--- None ---"
10459
  msgstr "--- Aucun ---"
10460
 
10461
- #: wppa-settings-autosave.php:4182
10462
  msgid "--- Admin ---"
10463
  msgstr "--- Admin ---"
10464
 
10465
- #: wppa-settings-autosave.php:4183
10466
  msgid "--- Album owner ---"
10467
  msgstr "--- Propriétaire album ---"
10468
 
10469
- #: wppa-settings-autosave.php:4184
10470
  msgid "--- Admin & Owner ---"
10471
  msgstr "--- Admin & Propriétaire ---"
10472
 
10473
- #: wppa-settings-autosave.php:4185
10474
  msgid "--- Uploader ---"
10475
  msgstr ""
10476
 
10477
- #: wppa-settings-autosave.php:4186
10478
  msgid "--- Up & admin ---"
10479
  msgstr "--- Up & Admin ---"
10480
 
10481
- #: wppa-settings-autosave.php:4187
10482
  msgid "--- Up & Owner ---"
10483
  msgstr "--- Up & Propriétaire ---"
10484
 
10485
- #: wppa-settings-autosave.php:4210
10486
  msgid "Comment notify previous"
10487
  msgstr ""
10488
 
10489
- #: wppa-settings-autosave.php:4211
10490
  msgid "Notify users who has commented this photo earlier."
10491
  msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
10492
 
10493
- #: wppa-settings-autosave.php:4219
10494
  msgid "Comment ntfy added"
10495
  msgstr ""
10496
 
10497
- #: wppa-settings-autosave.php:4220
10498
  msgid "Show \"Comment added\" after successfull adding a comment."
10499
  msgstr ""
10500
 
10501
- #: wppa-settings-autosave.php:4228
10502
  msgid "ComTen alt display"
10503
  msgstr ""
10504
 
10505
- #: wppa-settings-autosave.php:4229
10506
  msgid "Display comments at comten thumbnails."
10507
  msgstr ""
10508
 
10509
- #: wppa-settings-autosave.php:4237
10510
  msgid "Comten Thumbnail width"
10511
  msgstr "Largeur du widget commentaire"
10512
 
10513
- #: wppa-settings-autosave.php:4238
10514
  msgid "The width of the thumbnail in the alt comment display."
10515
  msgstr ""
10516
 
10517
- #: wppa-settings-autosave.php:4241
10518
  msgid "Pixels"
10519
  msgstr "Pixels"
10520
 
10521
- #: wppa-settings-autosave.php:4246
10522
  msgid "Show smiley picker"
10523
  msgstr ""
10524
 
10525
- #: wppa-settings-autosave.php:4247
10526
  msgid "Display a clickable row of smileys."
10527
  msgstr ""
10528
 
10529
- #: wppa-settings-autosave.php:4255
10530
  msgid "Show commenter email"
10531
  msgstr "Montrer l'email du commentateur"
10532
 
10533
- #: wppa-settings-autosave.php:4256
10534
  msgid "Show the commenter's email in the notify emails."
10535
  msgstr ""
10536
 
10537
- #: wppa-settings-autosave.php:4257
10538
  msgid "Shows the email address of the commenter in all notify emails."
10539
  msgstr ""
10540
 
10541
- #: wppa-settings-autosave.php:4258
10542
  msgid ""
10543
  "If switched off, admin will still receive the senders email in the "
10544
  "notification mail"
10545
  msgstr ""
10546
 
10547
- #: wppa-settings-autosave.php:4268
10548
  msgid "The opacity of the lightbox overlay background."
10549
  msgstr ""
10550
 
10551
- #: wppa-settings-autosave.php:4276
10552
  msgid "Click on background"
10553
  msgstr ""
10554
 
10555
- #: wppa-settings-autosave.php:4277
10556
  msgid "Select the action to be taken on click on background."
10557
  msgstr ""
10558
 
10559
- #: wppa-settings-autosave.php:4280
10560
  msgid "Nothing"
10561
  msgstr "Rien"
10562
 
10563
- #: wppa-settings-autosave.php:4280
10564
  msgid "Exit (close)"
10565
  msgstr "Sortir (fermer)"
10566
 
10567
- #: wppa-settings-autosave.php:4280
10568
  msgid "Browse (left/right)"
10569
  msgstr ""
10570
 
10571
- #: wppa-settings-autosave.php:4287
10572
  msgid "Overlay animation speed"
10573
  msgstr ""
10574
 
10575
- #: wppa-settings-autosave.php:4288
10576
  msgid "The fade-in time of the lightbox images"
10577
  msgstr ""
10578
 
10579
- #: wppa-settings-autosave.php:4291
10580
  msgid "very fast (100 ms.)"
10581
  msgstr ""
10582
 
10583
- #: wppa-settings-autosave.php:4291
10584
  msgid "fast (200 ms.)"
10585
  msgstr ""
10586
 
10587
- #: wppa-settings-autosave.php:4291
10588
  msgid "normal (300 ms.)"
10589
  msgstr ""
10590
 
10591
- #: wppa-settings-autosave.php:4291
10592
  msgid "slow (500 ms.)"
10593
  msgstr ""
10594
 
10595
- #: wppa-settings-autosave.php:4291
10596
  msgid "very slow (1 s.)"
10597
  msgstr "Très lent (1 s.)"
10598
 
10599
- #: wppa-settings-autosave.php:4291
10600
  msgid "extremely slow (2 s.)"
10601
  msgstr ""
10602
 
10603
- #: wppa-settings-autosave.php:4298
10604
  msgid "Overlay slideshow speed"
10605
  msgstr ""
10606
 
10607
- #: wppa-settings-autosave.php:4299
10608
  msgid "The time the lightbox images stay"
10609
  msgstr ""
10610
 
10611
- #: wppa-settings-autosave.php:4302
10612
  msgid "fast (3 s.)"
10613
  msgstr ""
10614
 
10615
- #: wppa-settings-autosave.php:4302
10616
  msgid "normal (5 s.)"
10617
  msgstr ""
10618
 
10619
- #: wppa-settings-autosave.php:4302
10620
  msgid "slow (8 s.)"
10621
  msgstr ""
10622
 
10623
- #: wppa-settings-autosave.php:4302
10624
  msgid "very slow (13 s.)"
10625
  msgstr "Très lent (13 s.)"
10626
 
10627
- #: wppa-settings-autosave.php:4302
10628
  msgid "extremely slow (20 s.)"
10629
  msgstr ""
10630
 
10631
- #: wppa-settings-autosave.php:4309
10632
  msgid "Overlay at top in Chrome"
10633
  msgstr ""
10634
 
10635
- #: wppa-settings-autosave.php:4310
10636
  msgid ""
10637
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10638
  msgstr ""
10639
 
10640
- #: wppa-settings-autosave.php:4311
10641
  msgid "This is required for certain mobile devices."
10642
  msgstr ""
10643
 
10644
- #: wppa-settings-autosave.php:4318
10645
  msgid "WPPA+ Lightbox global"
10646
  msgstr ""
10647
 
10648
- #: wppa-settings-autosave.php:4319
10649
  msgid "Use the wppa+ lightbox also for non-wppa images."
10650
  msgstr ""
10651
 
10652
- #: wppa-settings-autosave.php:4327
10653
  msgid "WPPA+ Lightbox global is a set"
10654
  msgstr ""
10655
 
10656
- #: wppa-settings-autosave.php:4328
10657
  msgid "Treat the other images as a set."
10658
  msgstr ""
10659
 
10660
- #: wppa-settings-autosave.php:4329
10661
  msgid ""
10662
  "If checked, you can scroll through the images in the lightbox view. Requires "
10663
  "item 5 to be checked."
10664
  msgstr ""
10665
 
10666
- #: wppa-settings-autosave.php:4336
10667
  msgid "Use hires files"
10668
  msgstr ""
10669
 
10670
- #: wppa-settings-autosave.php:4337
10671
  msgid "Use the highest resolution available for lightbox."
10672
  msgstr ""
10673
 
10674
- #: wppa-settings-autosave.php:4338
10675
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10676
  msgstr ""
10677
 
10678
- #: wppa-settings-autosave.php:4346
10679
  msgid "Videos on lightbox start automaticly."
10680
  msgstr ""
10681
 
10682
- #: wppa-settings-autosave.php:4355
10683
  msgid "Audio on lightbox start automaticly."
10684
  msgstr ""
10685
 
10686
- #: wppa-settings-autosave.php:4380
10687
  msgid "Table V:"
10688
  msgstr "Table V:"
10689
 
10690
- #: wppa-settings-autosave.php:4380
10691
  msgid "Fonts:"
10692
  msgstr "Polices:"
10693
 
10694
- #: wppa-settings-autosave.php:4381
10695
  msgid "This table describes the Fonts used for the wppa+ elements."
10696
  msgstr ""
10697
 
10698
- #: wppa-settings-autosave.php:4391 wppa-settings-autosave.php:4567
10699
  msgid "Font family"
10700
  msgstr "Famille de police"
10701
 
10702
- #: wppa-settings-autosave.php:4392 wppa-settings-autosave.php:4568
10703
  msgid "Font size"
10704
  msgstr "Taille de la police"
10705
 
10706
- #: wppa-settings-autosave.php:4393 wppa-settings-autosave.php:4569
10707
  msgid "Font color"
10708
  msgstr "Couleur de la police"
10709
 
10710
- #: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4570
10711
  msgid "Font weight"
10712
  msgstr "Poids de la police"
10713
 
10714
- #: wppa-settings-autosave.php:4404
10715
  msgid "normal"
10716
  msgstr "norma"
10717
 
10718
- #: wppa-settings-autosave.php:4404
10719
  msgid "bold"
10720
  msgstr "gras"
10721
 
10722
- #: wppa-settings-autosave.php:4404
10723
  msgid "bolder"
10724
  msgstr "plus gras"
10725
 
10726
- #: wppa-settings-autosave.php:4404
10727
  msgid "lighter"
10728
  msgstr "plus fin"
10729
 
10730
- #: wppa-settings-autosave.php:4407
10731
  msgid "Album titles"
10732
  msgstr "Titres albums"
10733
 
10734
- #: wppa-settings-autosave.php:4408
10735
  msgid "Font used for Album titles."
10736
  msgstr "Police utilisée pour les titres d'album."
10737
 
10738
- #: wppa-settings-autosave.php:4409
10739
  msgid "Enter font name, size, color and weight for album cover titles."
10740
  msgstr ""
10741
 
10742
- #: wppa-settings-autosave.php:4424
10743
  msgid "Slideshow desc"
10744
  msgstr "Description du diaporama"
10745
 
10746
- #: wppa-settings-autosave.php:4425
10747
  msgid "Font for slideshow photo descriptions."
10748
  msgstr "Police pour la description des photos."
10749
 
10750
- #: wppa-settings-autosave.php:4426
10751
  msgid ""
10752
  "Enter font name, size, color and weight for slideshow photo descriptions."
10753
  msgstr ""
10754
 
10755
- #: wppa-settings-autosave.php:4441
10756
  msgid "Slideshow name"
10757
  msgstr "Nom du diaporama"
10758
 
10759
- #: wppa-settings-autosave.php:4442
10760
  msgid "Font for slideshow photo names."
10761
  msgstr "Police pour le nom des photos du diaporama."
10762
 
10763
- #: wppa-settings-autosave.php:4443
10764
  msgid "Enter font name, size, color and weight for slideshow photo names."
10765
  msgstr ""
10766
 
10767
- #: wppa-settings-autosave.php:4458
10768
  msgid "Navigations"
10769
  msgstr "Navigations"
10770
 
10771
- #: wppa-settings-autosave.php:4459
10772
  msgid "Font for navigations."
10773
  msgstr "Police pour navigations."
10774
 
10775
- #: wppa-settings-autosave.php:4460
10776
  msgid "Enter font name, size, color and weight for navigation items."
10777
  msgstr ""
10778
 
10779
- #: wppa-settings-autosave.php:4476
10780
  msgid "Font for text under thumbnails."
10781
  msgstr "Police pour les textes sous les vignettes."
10782
 
10783
- #: wppa-settings-autosave.php:4477
10784
  msgid ""
10785
  "Enter font name, size, color and weight for text under thumbnail images."
10786
  msgstr ""
10787
 
10788
- #: wppa-settings-autosave.php:4493
10789
  msgid "General font in wppa boxes."
10790
  msgstr ""
10791
 
10792
- #: wppa-settings-autosave.php:4494
10793
  msgid "Enter font name, size, color and weight for all other items."
10794
  msgstr ""
10795
 
10796
- #: wppa-settings-autosave.php:4510
10797
  msgid "Font in wppa number bars."
10798
  msgstr ""
10799
 
10800
- #: wppa-settings-autosave.php:4511 wppa-settings-autosave.php:4528
10801
  msgid "Enter font name, size, color and weight for numberbar navigation."
10802
  msgstr ""
10803
 
10804
- #: wppa-settings-autosave.php:4526
10805
  msgid "Numbar Active"
10806
  msgstr ""
10807
 
10808
- #: wppa-settings-autosave.php:4527
10809
  msgid "Font in wppa number bars, active item."
10810
  msgstr ""
10811
 
10812
- #: wppa-settings-autosave.php:4544
10813
  msgid "Font in wppa lightbox overlays."
10814
  msgstr ""
10815
 
10816
- #: wppa-settings-autosave.php:4545
10817
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10818
  msgstr ""
10819
 
10820
- #: wppa-settings-autosave.php:4580
10821
  msgid "Table VI:"
10822
  msgstr "Table VI:"
10823
 
10824
- #: wppa-settings-autosave.php:4580
10825
  msgid "Links:"
10826
  msgstr "Liens:"
10827
 
10828
- #: wppa-settings-autosave.php:4581
10829
  msgid "This table defines the link types and pages."
10830
  msgstr ""
10831
 
10832
- #: wppa-settings-autosave.php:4592 wppa-settings-autosave.php:5634
10833
  msgid "Link page"
10834
  msgstr "Page lien"
10835
 
10836
- #: wppa-settings-autosave.php:4594 wppa-settings-autosave.php:5636
10837
  msgid "Photo specific link overrules"
10838
  msgstr ""
10839
 
10840
- #: wppa-settings-autosave.php:4594 wppa-settings-autosave.php:5636
10841
  msgid "PSO"
10842
  msgstr "PSO"
10843
 
10844
- #: wppa-settings-autosave.php:4644
10845
  msgid "--- The same post or page ---"
10846
  msgstr "--- Même article ou page ---"
10847
 
10848
- #: wppa-settings-autosave.php:4675
10849
  msgid "--- No page to link to (yet) ---"
10850
  msgstr ""
10851
 
10852
- #: wppa-settings-autosave.php:4680
10853
  msgid "--- Will be auto created ---"
10854
  msgstr "--- Sera créé automatiquement ---"
10855
 
10856
- #: wppa-settings-autosave.php:4682
10857
  msgid "Links from images in WPPA+ Widgets"
10858
  msgstr ""
10859
 
10860
- #: wppa-settings-autosave.php:4684
10861
  msgid "PotdWidget"
10862
  msgstr "Widget Photo du jour"
10863
 
10864
- #: wppa-settings-autosave.php:4685
10865
  msgid "Photo Of The Day widget link."
10866
  msgstr ""
10867
 
10868
- #: wppa-settings-autosave.php:4686
10869
  msgid "Select the type of link the photo of the day points to."
10870
  msgstr ""
10871
 
10872
- #: wppa-settings-autosave.php:4687
10873
  msgid ""
10874
  "If you select 'defined on widget admin page' you can manually enter a link "
10875
  "and title on the Photo of the day Widget Admin page."
10876
  msgstr ""
10877
 
10878
- #: wppa-settings-autosave.php:4696 wppa-settings-autosave.php:4739
10879
- #: wppa-settings-autosave.php:4817 wppa-settings-autosave.php:4860
10880
- #: wppa-settings-autosave.php:4908 wppa-settings-autosave.php:4955
10881
- #: wppa-settings-autosave.php:5002 wppa-settings-autosave.php:5054
10882
- #: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5142
10883
- #: wppa-settings-autosave.php:5184 wppa-settings-autosave.php:5224
10884
- #: wppa-settings-autosave.php:9173
10885
  msgid "no link at all."
10886
  msgstr "pas de lien du tout."
10887
 
10888
- #: wppa-settings-autosave.php:4697 wppa-settings-autosave.php:4740
10889
- #: wppa-settings-autosave.php:4818 wppa-settings-autosave.php:4861
10890
- #: wppa-settings-autosave.php:4909 wppa-settings-autosave.php:4956
10891
- #: wppa-settings-autosave.php:5003 wppa-settings-autosave.php:5055
10892
- #: wppa-settings-autosave.php:5093 wppa-settings-autosave.php:5143
10893
- #: wppa-settings-autosave.php:5185 wppa-settings-autosave.php:5225
10894
- #: wppa-settings-autosave.php:9174
10895
  msgid "the plain photo (file)."
10896
  msgstr ""
10897
 
10898
- #: wppa-settings-autosave.php:4698 wppa-settings-autosave.php:9180
10899
  msgid "defined on widget admin page."
10900
  msgstr "réglages sur la page d'admin des widgets."
10901
 
10902
- #: wppa-settings-autosave.php:4699 wppa-settings-autosave.php:4742
10903
- #: wppa-settings-autosave.php:5144 wppa-settings-autosave.php:5186
10904
- #: wppa-settings-autosave.php:9178
10905
  msgid "the content of the album."
10906
  msgstr ""
10907
 
10908
- #: wppa-settings-autosave.php:4700 wppa-settings-autosave.php:4743
10909
- #: wppa-settings-autosave.php:4819 wppa-settings-autosave.php:4864
10910
- #: wppa-settings-autosave.php:4912 wppa-settings-autosave.php:4959
10911
- #: wppa-settings-autosave.php:5006 wppa-settings-autosave.php:5094
10912
- #: wppa-settings-autosave.php:5145 wppa-settings-autosave.php:5187
10913
- #: wppa-settings-autosave.php:9175
10914
  msgid "the full size photo in a slideshow."
10915
  msgstr ""
10916
 
10917
- #: wppa-settings-autosave.php:4701 wppa-settings-autosave.php:4744
10918
- #: wppa-settings-autosave.php:4820 wppa-settings-autosave.php:4865
10919
- #: wppa-settings-autosave.php:4913 wppa-settings-autosave.php:4960
10920
- #: wppa-settings-autosave.php:5007 wppa-settings-autosave.php:5095
10921
- #: wppa-settings-autosave.php:5146 wppa-settings-autosave.php:5188
10922
- #: wppa-settings-autosave.php:5226 wppa-settings-autosave.php:9176
10923
  msgid "the fullsize photo on its own."
10924
  msgstr ""
10925
 
10926
- #: wppa-settings-autosave.php:4702 wppa-settings-autosave.php:4745
10927
- #: wppa-settings-autosave.php:4784 wppa-settings-autosave.php:4823
10928
- #: wppa-settings-autosave.php:4868 wppa-settings-autosave.php:4916
10929
- #: wppa-settings-autosave.php:4963 wppa-settings-autosave.php:5010
10930
- #: wppa-settings-autosave.php:5098
10931
  msgid "a plain page without a querystring."
10932
  msgstr ""
10933
 
10934
- #: wppa-settings-autosave.php:4703 wppa-settings-autosave.php:4746
10935
- #: wppa-settings-autosave.php:4785 wppa-settings-autosave.php:4824
10936
- #: wppa-settings-autosave.php:4869 wppa-settings-autosave.php:4917
10937
- #: wppa-settings-autosave.php:4964 wppa-settings-autosave.php:5011
10938
- #: wppa-settings-autosave.php:5057 wppa-settings-autosave.php:5099
10939
- #: wppa-settings-autosave.php:5147 wppa-settings-autosave.php:5189
10940
- #: wppa-settings-autosave.php:5227
10941
  msgid "lightbox."
10942
  msgstr "lightbox."
10943
 
10944
- #: wppa-settings-autosave.php:4728
10945
  msgid "SlideWidget"
10946
  msgstr "Widget diapo"
10947
 
10948
- #: wppa-settings-autosave.php:4729
10949
  msgid "Slideshow widget photo link."
10950
  msgstr ""
10951
 
10952
- #: wppa-settings-autosave.php:4730
10953
  msgid "Select the type of link the slideshow photos point to."
10954
  msgstr ""
10955
 
10956
- #: wppa-settings-autosave.php:4741 wppa-settings-autosave.php:9179
10957
  msgid "defined at widget activation."
10958
  msgstr ""
10959
 
10960
- #: wppa-settings-autosave.php:4771
10961
  msgid "Album widget"
10962
  msgstr "Widget album"
10963
 
10964
- #: wppa-settings-autosave.php:4772
10965
  msgid "Album widget thumbnail link"
10966
  msgstr ""
10967
 
10968
- #: wppa-settings-autosave.php:4773
10969
  msgid "Select the type of link the album widget photos point to."
10970
  msgstr ""
10971
 
10972
- #: wppa-settings-autosave.php:4782
10973
  msgid "subalbums and thumbnails."
10974
  msgstr ""
10975
 
10976
- #: wppa-settings-autosave.php:4783
10977
  msgid "slideshow."
10978
  msgstr "diaporama."
10979
 
10980
- #: wppa-settings-autosave.php:4806
10981
  msgid "ThumbnailWidget"
10982
  msgstr "Widget vignettes"
10983
 
10984
- #: wppa-settings-autosave.php:4807
10985
  msgid "Thumbnail widget photo link."
10986
  msgstr ""
10987
 
10988
- #: wppa-settings-autosave.php:4808
10989
  msgid "Select the type of link the thumbnail photos point to."
10990
  msgstr ""
10991
 
10992
- #: wppa-settings-autosave.php:4821 wppa-settings-autosave.php:4866
10993
- #: wppa-settings-autosave.php:4914 wppa-settings-autosave.php:4961
10994
- #: wppa-settings-autosave.php:5008 wppa-settings-autosave.php:5096
10995
  msgid "the single photo in the style of a slideshow."
10996
  msgstr ""
10997
 
10998
- #: wppa-settings-autosave.php:4822 wppa-settings-autosave.php:4867
10999
- #: wppa-settings-autosave.php:4915 wppa-settings-autosave.php:4962
11000
- #: wppa-settings-autosave.php:5009 wppa-settings-autosave.php:5097
11001
- #: wppa-settings-autosave.php:5229
11002
  msgid "the fs photo with download and print buttons."
11003
  msgstr ""
11004
 
11005
- #: wppa-settings-autosave.php:4849
11006
  msgid "TopTenWidget"
11007
  msgstr ""
11008
 
11009
- #: wppa-settings-autosave.php:4850
11010
  msgid "TopTen widget photo link."
11011
  msgstr ""
11012
 
11013
- #: wppa-settings-autosave.php:4851
11014
  msgid "Select the type of link the top ten photos point to."
11015
  msgstr ""
11016
 
11017
- #: wppa-settings-autosave.php:4862
11018
  msgid "the content of the virtual topten album."
11019
  msgstr ""
11020
 
11021
- #: wppa-settings-autosave.php:4863 wppa-settings-autosave.php:4911
11022
- #: wppa-settings-autosave.php:4958 wppa-settings-autosave.php:5005
11023
  msgid "the content of the thumbnails album."
11024
  msgstr ""
11025
 
11026
- #: wppa-settings-autosave.php:4897
11027
  msgid "LasTenWidget"
11028
  msgstr ""
11029
 
11030
- #: wppa-settings-autosave.php:4898
11031
  msgid "Last Ten widget photo link."
11032
  msgstr ""
11033
 
11034
- #: wppa-settings-autosave.php:4899
11035
  msgid "Select the type of link the last ten photos point to."
11036
  msgstr ""
11037
 
11038
- #: wppa-settings-autosave.php:4910
11039
  msgid "the content of the virtual lasten album."
11040
  msgstr ""
11041
 
11042
- #: wppa-settings-autosave.php:4944
11043
  msgid "CommentWidget"
11044
  msgstr "Widget commentaire"
11045
 
11046
- #: wppa-settings-autosave.php:4945
11047
  msgid "Comment widget photo link."
11048
  msgstr ""
11049
 
11050
- #: wppa-settings-autosave.php:4946
11051
  msgid "Select the type of link the comment widget photos point to."
11052
  msgstr ""
11053
 
11054
- #: wppa-settings-autosave.php:4957
11055
  msgid "the content of the virtual comten album."
11056
  msgstr ""
11057
 
11058
- #: wppa-settings-autosave.php:4991
11059
  msgid "FeaTenWidget"
11060
  msgstr ""
11061
 
11062
- #: wppa-settings-autosave.php:4992
11063
  msgid "FeaTen widget photo link."
11064
  msgstr ""
11065
 
11066
- #: wppa-settings-autosave.php:4993
11067
  msgid "Select the type of link the featured ten photos point to."
11068
  msgstr ""
11069
 
11070
- #: wppa-settings-autosave.php:5004
11071
  msgid "the content of the virtual featen album."
11072
  msgstr ""
11073
 
11074
- #: wppa-settings-autosave.php:5037
11075
  msgid "Links from other WPPA+ images"
11076
  msgstr ""
11077
 
11078
- #: wppa-settings-autosave.php:5039
11079
  msgid "Cover Image"
11080
  msgstr "Image de couverture"
11081
 
11082
- #: wppa-settings-autosave.php:5040
11083
  msgid "The link from the cover image of an album."
11084
  msgstr ""
11085
 
11086
- #: wppa-settings-autosave.php:5041
11087
  msgid "Select the type of link the coverphoto points to."
11088
  msgstr ""
11089
 
11090
- #: wppa-settings-autosave.php:5042
11091
  msgid "The link from the album title can be configured on the Edit Album page."
11092
  msgstr ""
11093
 
11094
- #: wppa-settings-autosave.php:5043
11095
  msgid "This link will be used for the photo also if you select: same as title."
11096
  msgstr ""
11097
 
11098
- #: wppa-settings-autosave.php:5044
11099
  msgid ""
11100
  "If you specify New Tab on this line, all links from the cover will open a "
11101
  "new tab,"
11102
  msgstr ""
11103
 
11104
- #: wppa-settings-autosave.php:5045
11105
  msgid "except when Ajax is activated on Table IV-A1."
11106
  msgstr ""
11107
 
11108
- #: wppa-settings-autosave.php:5056 wppa-settings-autosave.php:9181
11109
  msgid "same as title."
11110
  msgstr "identique au titre."
11111
 
11112
- #: wppa-settings-autosave.php:5058
11113
  msgid "a slideshow starting at the photo"
11114
  msgstr ""
11115
 
11116
- #: wppa-settings-autosave.php:5079
11117
  msgid "Thumbnail"
11118
  msgstr "Vignette"
11119
 
11120
- #: wppa-settings-autosave.php:5080
11121
  msgid "Thumbnail link."
11122
  msgstr "Lien vignette."
11123
 
11124
- #: wppa-settings-autosave.php:5081 wppa-settings-autosave.php:5131
11125
- #: wppa-settings-autosave.php:5173
11126
  msgid "Select the type of link you want, or no link at all."
11127
  msgstr ""
11128
 
11129
- #: wppa-settings-autosave.php:5082 wppa-settings-autosave.php:5132
11130
- #: wppa-settings-autosave.php:5174
11131
  msgid ""
11132
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11133
  "regardless of that setting."
11134
  msgstr ""
11135
 
11136
- #: wppa-settings-autosave.php:5083 wppa-settings-autosave.php:5133
11137
- #: wppa-settings-autosave.php:5175
11138
  #, php-format
11139
  msgid ""
11140
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11141
  "to show up the photo(s)."
11142
  msgstr ""
11143
 
11144
- #: wppa-settings-autosave.php:5112
11145
  msgid "Auto Page"
11146
  msgstr ""
11147
 
11148
- #: wppa-settings-autosave.php:5129
11149
  msgid "Sphoto"
11150
  msgstr "Sphoto"
11151
 
11152
- #: wppa-settings-autosave.php:5130
11153
  msgid "Single photo link."
11154
  msgstr "Lien photo unique"
11155
 
11156
- #: wppa-settings-autosave.php:5171
11157
  msgid "Mphoto"
11158
  msgstr "Mphoto"
11159
 
11160
- #: wppa-settings-autosave.php:5172
11161
  msgid "Media-like photo link."
11162
  msgstr ""
11163
 
11164
- #: wppa-settings-autosave.php:5214
11165
  msgid "Slideshow fullsize link"
11166
  msgstr ""
11167
 
11168
- #: wppa-settings-autosave.php:5215
11169
  msgid ""
11170
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11171
  "link."
11172
  msgstr ""
11173
 
11174
- #: wppa-settings-autosave.php:5228
11175
  msgid "lightbox single photos."
11176
  msgstr ""
11177
 
11178
- #: wppa-settings-autosave.php:5230
11179
  msgid "the thumbnails."
11180
  msgstr "les vignettes."
11181
 
11182
- #: wppa-settings-autosave.php:5254
11183
  msgid "Film linktype"
11184
  msgstr ""
11185
 
11186
- #: wppa-settings-autosave.php:5255
11187
  msgid "Direct access goto image in:"
11188
  msgstr ""
11189
 
11190
- #: wppa-settings-autosave.php:5256
11191
  msgid ""
11192
  "Select the action to be taken when the user clicks on a filmstrip image."
11193
  msgstr ""
11194
 
11195
- #: wppa-settings-autosave.php:5261
11196
  msgid "slideshow window"
11197
  msgstr "fenêtre de diaporama"
11198
 
11199
- #: wppa-settings-autosave.php:5262
11200
  msgid "lightbox overlay"
11201
  msgstr ""
11202
 
11203
- #: wppa-settings-autosave.php:5277
11204
  msgid "Other links"
11205
  msgstr "Autres liens"
11206
 
11207
- #: wppa-settings-autosave.php:5279
11208
  msgid "Download Link (aka Art Monkey link)"
11209
  msgstr ""
11210
 
11211
- #: wppa-settings-autosave.php:5280
11212
  msgid "Makes the photo name a download button."
11213
  msgstr ""
11214
 
11215
- #: wppa-settings-autosave.php:5281
11216
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11217
  msgstr ""
11218
 
11219
- #: wppa-settings-autosave.php:5285 wppa-settings-autosave.php:5332
11220
  msgid "image file"
11221
  msgstr ""
11222
 
11223
- #: wppa-settings-autosave.php:5286 wppa-settings-autosave.php:5333
11224
  msgid "zipped image"
11225
  msgstr ""
11226
 
11227
- #: wppa-settings-autosave.php:5299
11228
  msgid "Art Monkey Source"
11229
  msgstr ""
11230
 
11231
- #: wppa-settings-autosave.php:5300
11232
  msgid "Use Source file for art monkey link if available."
11233
  msgstr ""
11234
 
11235
- #: wppa-settings-autosave.php:5309
11236
  msgid "Art Monkey Display"
11237
  msgstr ""
11238
 
11239
- #: wppa-settings-autosave.php:5310
11240
  msgid "Select button or link ( text )."
11241
  msgstr ""
11242
 
11243
- #: wppa-settings-autosave.php:5315
11244
  msgid "Textlink"
11245
  msgstr "Lien texte"
11246
 
11247
- #: wppa-settings-autosave.php:5327
11248
  msgid "Popup Download Link"
11249
  msgstr ""
11250
 
11251
- #: wppa-settings-autosave.php:5328
11252
  msgid "Configure the download link on fullsize popups."
11253
  msgstr ""
11254
 
11255
- #: wppa-settings-autosave.php:5329
11256
  msgid "Link fullsize popup download button to either image or zip file."
11257
  msgstr ""
11258
 
11259
- #: wppa-settings-autosave.php:5345
11260
  msgid "Download link on lightbox"
11261
  msgstr ""
11262
 
11263
- #: wppa-settings-autosave.php:5346
11264
  msgid "Art monkey link on lightbox photo names."
11265
  msgstr ""
11266
 
11267
- #: wppa-settings-autosave.php:5355
11268
  msgid "Album download link"
11269
  msgstr "Lien de téléchargement de l'album"
11270
 
11271
- #: wppa-settings-autosave.php:5356
11272
  msgid "Place an album download link on the album covers"
11273
  msgstr ""
11274
 
11275
- #: wppa-settings-autosave.php:5357
11276
  msgid "Creates a download zipfile containing the photos of the album"
11277
  msgstr ""
11278
 
11279
- #: wppa-settings-autosave.php:5365
11280
  msgid "Album download Source"
11281
  msgstr ""
11282
 
11283
- #: wppa-settings-autosave.php:5366
11284
  msgid "Use Source file for album download link if available."
11285
  msgstr ""
11286
 
11287
- #: wppa-settings-autosave.php:5375
11288
  msgid "Tagcloud Link"
11289
  msgstr ""
11290
 
11291
- #: wppa-settings-autosave.php:5376
11292
  msgid "Configure the link from the tags in the tag cloud."
11293
  msgstr ""
11294
 
11295
- #: wppa-settings-autosave.php:5377
11296
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11297
  msgstr ""
11298
 
11299
- #: wppa-settings-autosave.php:5386 wppa-settings-autosave.php:5417
11300
- #: wppa-settings-autosave.php:5512
11301
  msgid "slideshow"
11302
  msgstr "diaporama"
11303
 
11304
- #: wppa-settings-autosave.php:5406
11305
  msgid "Multitag Link"
11306
  msgstr ""
11307
 
11308
- #: wppa-settings-autosave.php:5407
11309
  msgid "Configure the link from the multitag selection."
11310
  msgstr ""
11311
 
11312
- #: wppa-settings-autosave.php:5408
11313
  msgid "Link to ether the thumbnails or the slideshow."
11314
  msgstr ""
11315
 
11316
- #: wppa-settings-autosave.php:5437
11317
  msgid "Super View Landing"
11318
  msgstr "Destination Superview"
11319
 
11320
- #: wppa-settings-autosave.php:5438
11321
  msgid "The landing page for the Super View widget."
11322
  msgstr ""
11323
 
11324
- #: wppa-settings-autosave.php:5446
11325
  msgid "Defined by the visitor"
11326
  msgstr ""
11327
 
11328
- #: wppa-settings-autosave.php:5459
11329
  msgid "Uploader Landing"
11330
  msgstr "Destination du chargement"
11331
 
11332
- #: wppa-settings-autosave.php:5460
11333
  msgid "Select the landing page for the Uploader Widget"
11334
  msgstr ""
11335
 
11336
- #: wppa-settings-autosave.php:5480
11337
  msgid "Bestof Landing"
11338
  msgstr ""
11339
 
11340
- #: wppa-settings-autosave.php:5481
11341
  msgid "Select the landing page for the BestOf Widget / Box"
11342
  msgstr ""
11343
 
11344
- #: wppa-settings-autosave.php:5501
11345
  msgid "Album navigator Link"
11346
  msgstr ""
11347
 
11348
- #: wppa-settings-autosave.php:5502
11349
  msgid "Select link type and page for the Album navigator Widget"
11350
  msgstr ""
11351
 
11352
- #: wppa-settings-autosave.php:5530
11353
  msgid "Supersearch Landing"
11354
  msgstr ""
11355
 
11356
- #: wppa-settings-autosave.php:5531
11357
  msgid "Select the landing page for the Supersearch Box"
11358
  msgstr ""
11359
 
11360
- #: wppa-settings-autosave.php:5551
11361
  msgid "SM widget return"
11362
  msgstr ""
11363
 
11364
- #: wppa-settings-autosave.php:5552
11365
  msgid "Select the return link for social media from widgets"
11366
  msgstr ""
11367
 
11368
- #: wppa-settings-autosave.php:5553
11369
  msgid ""
11370
  "If you select Landing page, and it wont work, it may be required to set the "
11371
  "Occur to the sequence number of the landing shortcode on the page."
11372
  msgstr ""
11373
 
11374
- #: wppa-settings-autosave.php:5554
11375
  msgid ""
11376
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11377
  "test a setting."
11378
  msgstr ""
11379
 
11380
- #: wppa-settings-autosave.php:5562
11381
  msgid "Home page"
11382
  msgstr "Page d'accueil"
11383
 
11384
- #: wppa-settings-autosave.php:5563
11385
  msgid "Landing page"
11386
  msgstr "Page de destination"
11387
 
11388
- #: wppa-settings-autosave.php:5574
11389
  msgid "Occur"
11390
  msgstr ""
11391
 
11392
- #: wppa-settings-autosave.php:5583
11393
  msgid "Album cover subalbums link"
11394
  msgstr ""
11395
 
11396
- #: wppa-settings-autosave.php:5584
11397
  msgid ""
11398
  "Select the linktype and display type for sub-albums on parent album covers."
11399
  msgstr ""
11400
 
11401
- #: wppa-settings-autosave.php:5592
11402
  msgid "No link at all"
11403
  msgstr ""
11404
 
11405
- #: wppa-settings-autosave.php:5593
11406
  msgid "Thumbnails and covers"
11407
  msgstr "Vignettes et couvertures"
11408
 
11409
- #: wppa-settings-autosave.php:5594
11410
  msgid "Slideshow or covers"
11411
  msgstr "Diaporama et couvertures"
11412
 
11413
- #: wppa-settings-autosave.php:5604
11414
  msgid "No display at all"
11415
  msgstr ""
11416
 
11417
- #: wppa-settings-autosave.php:5605
11418
  msgid "A list with sub(sub) albums"
11419
  msgstr ""
11420
 
11421
- #: wppa-settings-autosave.php:5606
11422
  msgid "A list of children only"
11423
  msgstr ""
11424
 
11425
- #: wppa-settings-autosave.php:5607
11426
  msgid "An enumeration of names"
11427
  msgstr ""
11428
 
11429
- #: wppa-settings-autosave.php:5608
11430
  msgid "Micro thumbnails"
11431
  msgstr ""
11432
 
11433
- #: wppa-settings-autosave.php:5646
11434
  msgid "Table VII:"
11435
  msgstr ""
11436
 
11437
- #: wppa-settings-autosave.php:5646
11438
  msgid "Permissions and Restrictions:"
11439
  msgstr ""
11440
 
11441
- #: wppa-settings-autosave.php:5647
11442
  msgid ""
11443
  "This table describes the access settings for admin and front-end activities."
11444
  msgstr ""
11445
 
11446
- #: wppa-settings-autosave.php:5668
11447
  msgid "Moderate P+C"
11448
  msgstr "Modérer P+C"
11449
 
11450
- #: wppa-settings-autosave.php:5672
11451
  msgid "Comment&nbsp;Admin"
11452
  msgstr "Admin&nbsp;Commentaire"
11453
 
11454
- #: wppa-settings-autosave.php:5675
11455
  msgid "Role"
11456
  msgstr "Rôle"
11457
 
11458
- #: wppa-settings-autosave.php:5684
11459
  msgid ""
11460
  "Admin settings per user role. Enabling these settings will overrule the "
11461
  "front-end settings for the specific user role"
11462
  msgstr ""
11463
 
11464
- #: wppa-settings-autosave.php:5708
11465
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11466
  msgstr ""
11467
 
11468
- #: wppa-settings-autosave.php:5710
11469
  msgid "User create Albums"
11470
  msgstr ""
11471
 
11472
- #: wppa-settings-autosave.php:5711
11473
  msgid "Enable frontend album creation."
11474
  msgstr ""
11475
 
11476
- #: wppa-settings-autosave.php:5712
11477
  msgid "If you check this item, frontend album creation will be enabled."
11478
  msgstr ""
11479
 
11480
- #: wppa-settings-autosave.php:5722
11481
  msgid "User edit album"
11482
  msgstr ""
11483
 
11484
- #: wppa-settings-autosave.php:5723
11485
  msgid "Enable frontent edit album name and description."
11486
  msgstr ""
11487
 
11488
- #: wppa-settings-autosave.php:5733
11489
  msgid "User delete Albums"
11490
  msgstr ""
11491
 
11492
- #: wppa-settings-autosave.php:5734
11493
  msgid "Enable frontend album deletion"
11494
  msgstr ""
11495
 
11496
- #: wppa-settings-autosave.php:5735
11497
  msgid "If you check this item, frontend album deletion will be enabled."
11498
  msgstr ""
11499
 
11500
- #: wppa-settings-autosave.php:5745
11501
  msgid "User create Albums login"
11502
  msgstr ""
11503
 
11504
- #: wppa-settings-autosave.php:5746
11505
  msgid "Frontend album creation requires the user is logged in."
11506
  msgstr ""
11507
 
11508
- #: wppa-settings-autosave.php:5772
11509
  #, php-format
11510
  msgid "Upload limit %s"
11511
  msgstr "Upload limit %s"
11512
 
11513
- #: wppa-settings-autosave.php:5773
11514
  msgid "Limit upload capacity for logged out users."
11515
  msgstr ""
11516
 
11517
- #: wppa-settings-autosave.php:5774
11518
  #, php-format
11519
  msgid "Limit upload capacity for the user role %s."
11520
  msgstr ""
11521
 
11522
- #: wppa-settings-autosave.php:5775
11523
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11524
  msgstr ""
11525
 
11526
- #: wppa-settings-autosave.php:5776
11527
  msgid ""
11528
  "This limitation only applies to frontend uploads when the same userrole does "
11529
  "not have the Upload checkbox checked in Table VII-A."
11530
  msgstr ""
11531
 
11532
- #: wppa-settings-autosave.php:5777 wppa-settings-autosave.php:5793
11533
- #: wppa-settings-autosave.php:7313
11534
  msgid "A value of 0 means: no limit."
11535
  msgstr ""
11536
 
11537
- #: wppa-settings-autosave.php:5790
11538
  #, php-format
11539
  msgid "Album limit %s"
11540
  msgstr "Album limit %s"
11541
 
11542
- #: wppa-settings-autosave.php:5791
11543
  #, php-format
11544
  msgid "Limit number of albums for the user role %s."
11545
  msgstr ""
11546
 
11547
- #: wppa-settings-autosave.php:5792
11548
  msgid ""
11549
  "This limitation only applies to frontend create albums when the same "
11550
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11551
  msgstr ""
11552
 
11553
- #: wppa-settings-autosave.php:5804
11554
  msgid "Upload one only"
11555
  msgstr "Charger un seul élément"
11556
 
11557
- #: wppa-settings-autosave.php:5805
11558
  msgid "Non admin users can upload only one photo at a time."
11559
  msgstr ""
11560
 
11561
- #: wppa-settings-autosave.php:5815
11562
  msgid "Upload moderation"
11563
  msgstr "Modération du chargement des photos"
11564
 
11565
- #: wppa-settings-autosave.php:5816
11566
  msgid "Uploaded photos need moderation."
11567
  msgstr "La photo chargée nécessite une modération."
11568
 
11569
- #: wppa-settings-autosave.php:5817
11570
  msgid ""
11571
  "If checked, photos uploaded by users who do not have photo album admin "
11572
  "access rights need moderation."
11573
  msgstr ""
11574
 
11575
- #: wppa-settings-autosave.php:5818
11576
  msgid ""
11577
  "Users who have photo album admin access rights can change the photo status "
11578
  "to publish or featured."
11579
  msgstr ""
11580
 
11581
- #: wppa-settings-autosave.php:5819
11582
  msgid "You can set the album admin access rights in Table VII-A."
11583
  msgstr ""
11584
 
11585
- #: wppa-settings-autosave.php:5828
11586
  msgid "Upload notify"
11587
  msgstr "Notification de chargement"
11588
 
11589
- #: wppa-settings-autosave.php:5829
11590
  msgid "Notify admin at frontend upload."
11591
  msgstr ""
11592
 
11593
- #: wppa-settings-autosave.php:5830 wppa-settings-autosave.php:5841
11594
  msgid "If checked, admin will receive a notification by email."
11595
  msgstr ""
11596
 
11597
- #: wppa-settings-autosave.php:5839
11598
  msgid "Upload backend notify"
11599
  msgstr ""
11600
 
11601
- #: wppa-settings-autosave.php:5840
11602
  msgid "Notify admin at backend upload."
11603
  msgstr ""
11604
 
11605
- #: wppa-settings-autosave.php:5850
11606
  msgid "Max size in pixels"
11607
  msgstr ""
11608
 
11609
- #: wppa-settings-autosave.php:5851
11610
  msgid "Max size for height and width for front-end uploads."
11611
  msgstr ""
11612
 
11613
- #: wppa-settings-autosave.php:5852
11614
  msgid "Enter the maximum size. 0 is unlimited"
11615
  msgstr ""
11616
 
11617
- #: wppa-settings-autosave.php:5861
11618
  msgid "Home after Upload"
11619
  msgstr ""
11620
 
11621
- #: wppa-settings-autosave.php:5862
11622
  msgid "After successfull front-end upload, go to the home page."
11623
  msgstr ""
11624
 
11625
- #: wppa-settings-autosave.php:5872
11626
  msgid "Admin Functionality restrictions for non administrators"
11627
  msgstr ""
11628
 
11629
- #: wppa-settings-autosave.php:5874
11630
  msgid "Alt thumb is restricted"
11631
  msgstr ""
11632
 
11633
- #: wppa-settings-autosave.php:5875
11634
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11635
  msgstr ""
11636
 
11637
- #: wppa-settings-autosave.php:5876
11638
  msgid ""
11639
  "If checked: alt thumbsize can not be set in album admin by users not having "
11640
  "admin rights."
11641
  msgstr ""
11642
 
11643
- #: wppa-settings-autosave.php:5885
11644
  msgid "Link is restricted"
11645
  msgstr ""
11646
 
11647
- #: wppa-settings-autosave.php:5886
11648
  msgid "Using <b>Link to</b> is a restricted action."
11649
  msgstr ""
11650
 
11651
- #: wppa-settings-autosave.php:5887
11652
  msgid ""
11653
  "If checked: Link to: can not be set in album admin by users not having admin "
11654
  "rights."
11655
  msgstr ""
11656
 
11657
- #: wppa-settings-autosave.php:5896
11658
  msgid "CoverType is restricted"
11659
  msgstr ""
11660
 
11661
- #: wppa-settings-autosave.php:5897
11662
  msgid "Changing <b>Cover Type</b> is a restricted action."
11663
  msgstr ""
11664
 
11665
- #: wppa-settings-autosave.php:5898
11666
  msgid ""
11667
  "If checked: Cover Type: can not be set in album admin by users not having "
11668
  "admin rights."
11669
  msgstr ""
11670
 
11671
- #: wppa-settings-autosave.php:5907
11672
  msgid "Photo order# is restricted"
11673
  msgstr "Photo order# is restricted"
11674
 
11675
- #: wppa-settings-autosave.php:5908
11676
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11677
  msgstr ""
11678
 
11679
- #: wppa-settings-autosave.php:5909
11680
  msgid ""
11681
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11682
  "having admin rights."
11683
  msgstr ""
11684
 
11685
- #: wppa-settings-autosave.php:5918
11686
  msgid "Change source restricted"
11687
  msgstr ""
11688
 
11689
- #: wppa-settings-autosave.php:5919
11690
  msgid "Changing the import source dir requires admin rights."
11691
  msgstr ""
11692
 
11693
- #: wppa-settings-autosave.php:5920
11694
  msgid ""
11695
  "If checked, the imput source for importing photos and albums is restricted "
11696
  "to user role administrator."
11697
  msgstr ""
11698
 
11699
- #: wppa-settings-autosave.php:5929
11700
  msgid "Extended status restricted"
11701
  msgstr ""
11702
 
11703
- #: wppa-settings-autosave.php:5930
11704
  msgid "Setting status other than pending or publish requires admin rights."
11705
  msgstr ""
11706
 
11707
- #: wppa-settings-autosave.php:5940
11708
  msgid "Photo description restricted"
11709
  msgstr ""
11710
 
11711
- #: wppa-settings-autosave.php:5941
11712
  msgid "Edit photo description requires admin rights."
11713
  msgstr ""
11714
 
11715
- #: wppa-settings-autosave.php:5951
11716
  msgid "Update photofiles restricted"
11717
  msgstr ""
11718
 
11719
- #: wppa-settings-autosave.php:5952
11720
  msgid "Re-upload files requires admin rights"
11721
  msgstr ""
11722
 
11723
- #: wppa-settings-autosave.php:5962
11724
  msgid "Miscellaneous limiting settings"
11725
  msgstr ""
11726
 
11727
- #: wppa-settings-autosave.php:5964
11728
  msgid "Owners only"
11729
  msgstr "Propriétaires seulement"
11730
 
11731
- #: wppa-settings-autosave.php:5965
11732
  msgid "Limit edit album access to the album owners only."
11733
  msgstr ""
11734
 
11735
- #: wppa-settings-autosave.php:5966
11736
  msgid "If checked, non-admin users can edit their own albums only."
11737
  msgstr ""
11738
 
11739
- #: wppa-settings-autosave.php:5975
11740
  msgid "Upload Owners only"
11741
  msgstr ""
11742
 
11743
- #: wppa-settings-autosave.php:5976
11744
  msgid "Limit uploads to the album owners only."
11745
  msgstr ""
11746
 
11747
- #: wppa-settings-autosave.php:5977
11748
  msgid ""
11749
  "If checked, users can upload to their own own albums and --- public --- only."
11750
  msgstr ""
11751
 
11752
- #: wppa-settings-autosave.php:5986
11753
  msgid "Uploader Edit"
11754
  msgstr ""
11755
 
11756
- #: wppa-settings-autosave.php:5987
11757
  msgid "Allow the uploader to edit the photo info"
11758
  msgstr ""
11759
 
11760
- #: wppa-settings-autosave.php:5988
11761
  msgid ""
11762
  "If checked, any logged in user that has upload rights and uploads an image "
11763
  "has the capability to edit the photo information."
11764
  msgstr ""
11765
 
11766
- #: wppa-settings-autosave.php:5989
11767
  msgid "Note: This may be AFTER moderation!!"
11768
  msgstr ""
11769
 
11770
- #: wppa-settings-autosave.php:5998
11771
  msgid "Uploader Moderate Comment"
11772
  msgstr ""
11773
 
11774
- #: wppa-settings-autosave.php:5999
11775
  msgid "The owner of the photo can moderate the photos comments."
11776
  msgstr ""
11777
 
11778
- #: wppa-settings-autosave.php:6000
11779
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11780
  msgstr ""
11781
 
11782
- #: wppa-settings-autosave.php:6009
11783
  msgid "Upload memory check frontend"
11784
  msgstr ""
11785
 
11786
- #: wppa-settings-autosave.php:6010 wppa-settings-autosave.php:6021
11787
  msgid "Disable uploading photos that are too large."
11788
  msgstr ""
11789
 
11790
- #: wppa-settings-autosave.php:6011 wppa-settings-autosave.php:6022
11791
  msgid ""
11792
  "To prevent out of memory crashes during upload and possible database "
11793
  "inconsistencies, uploads can be prevented if the photos are too big."
11794
  msgstr ""
11795
 
11796
- #: wppa-settings-autosave.php:6020
11797
  msgid "Upload memory check admin"
11798
  msgstr ""
11799
 
11800
- #: wppa-settings-autosave.php:6031
11801
  msgid "Comment captcha"
11802
  msgstr "Captcha commentaire"
11803
 
11804
- #: wppa-settings-autosave.php:6032
11805
  msgid "Use a simple calculate captcha on comments form."
11806
  msgstr ""
11807
 
11808
- #: wppa-settings-autosave.php:6045
11809
  msgid "Spam lifetime"
11810
  msgstr ""
11811
 
11812
- #: wppa-settings-autosave.php:6046
11813
  msgid "Delete spam comments when older than."
11814
  msgstr ""
11815
 
11816
- #: wppa-settings-autosave.php:6073
11817
  msgid "Avoid duplicates"
11818
  msgstr "Éviter les doublons"
11819
 
11820
- #: wppa-settings-autosave.php:6074
11821
  msgid "Prevent the creation of duplicate photos."
11822
  msgstr ""
11823
 
11824
- #: wppa-settings-autosave.php:6075
11825
  msgid ""
11826
  "If checked: uploading, importing, copying or moving photos to other albums "
11827
  "will be prevented when the desitation album already contains a photo with "
11828
  "the same filename."
11829
  msgstr ""
11830
 
11831
- #: wppa-settings-autosave.php:6084
11832
  msgid "Blacklist user"
11833
  msgstr "Blacklister l'utilisateur"
11834
 
11835
- #: wppa-settings-autosave.php:6085 wppa-settings-autosave.php:6086
11836
  msgid "Set the status of all the users photos to 'pending'."
11837
  msgstr ""
11838
 
11839
- #: wppa-settings-autosave.php:6087
11840
  msgid "Also inhibits further uploads."
11841
  msgstr ""
11842
 
11843
- #: wppa-settings-autosave.php:6093
11844
  msgid "--- select a user to blacklist ---"
11845
  msgstr ""
11846
 
11847
- #: wppa-settings-autosave.php:6103 wppa-settings-autosave.php:6108
11848
- #: wppa-settings-autosave.php:6129 wppa-settings-autosave.php:8402
11849
- #: wppa-settings-autosave.php:8444
11850
  msgid "The page will be reloaded after the action has taken place."
11851
  msgstr ""
11852
 
11853
- #: wppa-settings-autosave.php:6109
11854
  msgid "User login name <b>( case sensitive! )</b>:"
11855
  msgstr ""
11856
 
11857
- #: wppa-settings-autosave.php:6117
11858
  msgid "Unblacklist user"
11859
  msgstr ""
11860
 
11861
- #: wppa-settings-autosave.php:6118
11862
  msgid "Set the status of all the users photos to 'publish'."
11863
  msgstr ""
11864
 
11865
- #: wppa-settings-autosave.php:6122
11866
  msgid "--- select a user to unblacklist ---"
11867
  msgstr ""
11868
 
11869
- #: wppa-settings-autosave.php:6137
11870
  msgid "Photo owner change"
11871
  msgstr "Changer le propriétaire de la photo"
11872
 
11873
- #: wppa-settings-autosave.php:6138
11874
  msgid "Administrators can change photo owner"
11875
  msgstr ""
11876
 
11877
- #: wppa-settings-autosave.php:6166
11878
  msgid "Table VIII:"
11879
  msgstr ""
11880
 
11881
- #: wppa-settings-autosave.php:6166
11882
  msgid "Actions:"
11883
  msgstr "Actions:"
11884
 
11885
- #: wppa-settings-autosave.php:6167
11886
  msgid "This table lists all actions that can be taken to the wppa+ system"
11887
  msgstr ""
11888
 
11889
- #: wppa-settings-autosave.php:6177 wppa-settings-autosave.php:6757
11890
  msgid "Specification"
11891
  msgstr "Spécification"
11892
 
11893
- #: wppa-settings-autosave.php:6178 wppa-settings-autosave.php:6758
11894
- #: wppa-settings-autosave.php:9195 wppa-settings-autosave.php:9217
11895
  msgid "Do it!"
11896
  msgstr ""
11897
 
11898
- #: wppa-settings-autosave.php:6180 wppa-settings-autosave.php:6760
11899
  msgid "To Go"
11900
  msgstr ""
11901
 
11902
- #: wppa-settings-autosave.php:6188
11903
  msgid "Harmless and reverseable actions"
11904
  msgstr ""
11905
 
11906
- #: wppa-settings-autosave.php:6190
11907
  msgid "Ignore concurrency"
11908
  msgstr ""
11909
 
11910
- #: wppa-settings-autosave.php:6191
11911
  msgid "Ignore the prevention of concurrent actions."
11912
  msgstr ""
11913
 
11914
- #: wppa-settings-autosave.php:6192
11915
  msgid ""
11916
  "This setting is meant to recover from deadlock situations only. Use with "
11917
  "care!"
11918
  msgstr ""
11919
 
11920
- #: wppa-settings-autosave.php:6203
11921
  msgid "Setup"
11922
  msgstr "Configuration"
11923
 
11924
- #: wppa-settings-autosave.php:6204
11925
  msgid "Re-initialize plugin."
11926
  msgstr ""
11927
 
11928
- #: wppa-settings-autosave.php:6205
11929
  msgid ""
11930
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
11931
  "settings and directories if required."
11932
  msgstr ""
11933
 
11934
- #: wppa-settings-autosave.php:6206
11935
  msgid ""
11936
  "This action may be required to setup blogs in a multiblog (network) site as "
11937
  "well as in rare cases to correct initilization errors."
11938
  msgstr ""
11939
 
11940
- #: wppa-settings-autosave.php:6217
11941
  msgid "Backup settings"
11942
  msgstr "Réglages de la sauvegarde"
11943
 
11944
- #: wppa-settings-autosave.php:6218
11945
  msgid "Save all settings into a backup file."
11946
  msgstr ""
11947
 
11948
- #: wppa-settings-autosave.php:6219
11949
  msgid "Saves all the settings into a backup file"
11950
  msgstr ""
11951
 
11952
- #: wppa-settings-autosave.php:6230
11953
  msgid "Load settings"
11954
  msgstr "Réglages du chargement"
11955
 
11956
- #: wppa-settings-autosave.php:6231
11957
  msgid "Restore all settings from defaults, a backup or skin file."
11958
  msgstr ""
11959
 
11960
- #: wppa-settings-autosave.php:6232
11961
  msgid ""
11962
  "Restores all the settings from the factory supplied defaults, the backup you "
11963
  "created or from a skin file."
11964
  msgstr ""
11965
 
11966
- #: wppa-settings-autosave.php:6238
11967
  msgid "--- set to defaults ---"
11968
  msgstr "--- Réglages par défaut ---"
11969
 
11970
- #: wppa-settings-autosave.php:6241
11971
  msgid "--- restore backup ---"
11972
  msgstr "--- restaurer la sauvegarde ---"
11973
 
11974
- #: wppa-settings-autosave.php:6263
11975
  msgid "Regenerate"
11976
  msgstr "Regénérer"
11977
 
11978
- #: wppa-settings-autosave.php:6264 wppa-settings-autosave.php:6265
11979
  msgid "Regenerate all thumbnails."
11980
  msgstr "Refaire toutes les vignettes."
11981
 
11982
- #: wppa-settings-autosave.php:6268 wppa-settings-autosave.php:6372
11983
  msgid "Skip one"
11984
  msgstr "Ignorer un"
11985
 
11986
- #: wppa-settings-autosave.php:6277
11987
  msgid "Rerate"
11988
  msgstr "Revoter"
11989
 
11990
- #: wppa-settings-autosave.php:6278
11991
  msgid "Recalculate ratings."
11992
  msgstr ""
11993
 
11994
- #: wppa-settings-autosave.php:6279
11995
  msgid ""
11996
  "This function will recalculate all mean photo ratings from the ratings table."
11997
  msgstr ""
11998
 
11999
- #: wppa-settings-autosave.php:6280
12000
  msgid ""
12001
  "You may need this function after the re-import of previously exported photos"
12002
  msgstr ""
12003
 
12004
- #: wppa-settings-autosave.php:6291
12005
  msgid "Lost and found"
12006
  msgstr ""
12007
 
12008
- #: wppa-settings-autosave.php:6292
12009
  msgid "Find \"lost\" photos."
12010
  msgstr ""
12011
 
12012
- #: wppa-settings-autosave.php:6293
12013
  msgid "This function will attempt to find lost photos."
12014
  msgstr ""
12015
 
12016
- #: wppa-settings-autosave.php:6304
12017
  msgid "Recuperate"
12018
  msgstr "Récupérer"
12019
 
12020
- #: wppa-settings-autosave.php:6306
12021
  msgid ""
12022
  "This action will attempt to find and register IPTC and EXIF data from photos "
12023
  "in the WPPA+ system."
12024
  msgstr ""
12025
 
12026
- #: wppa-settings-autosave.php:6317
12027
  msgid "Remake Index Albums"
12028
  msgstr ""
12029
 
12030
- #: wppa-settings-autosave.php:6318
12031
  msgid "Remakes the index database table for albums."
12032
  msgstr ""
12033
 
12034
- #: wppa-settings-autosave.php:6330
12035
  msgid "Remake Index Photos"
12036
  msgstr "Refaire l'index des photos"
12037
 
12038
- #: wppa-settings-autosave.php:6331
12039
  msgid "Remakes the index database table for photos."
12040
  msgstr ""
12041
 
12042
- #: wppa-settings-autosave.php:6349
12043
  msgid "Convert to tree"
12044
  msgstr ""
12045
 
12046
- #: wppa-settings-autosave.php:6350
12047
  msgid "Convert filesystem to tree structure."
12048
  msgstr ""
12049
 
12050
- #: wppa-settings-autosave.php:6353
12051
  msgid "Convert to flat"
12052
  msgstr ""
12053
 
12054
- #: wppa-settings-autosave.php:6354
12055
  msgid "Convert filesystem to flat structure."
12056
  msgstr ""
12057
 
12058
- #: wppa-settings-autosave.php:6356
12059
  msgid ""
12060
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12061
  "to flat first."
12062
  msgstr ""
12063
 
12064
- #: wppa-settings-autosave.php:6368
12065
  msgid "Remake the photofiles from photo sourcefiles."
12066
  msgstr ""
12067
 
12068
- #: wppa-settings-autosave.php:6369
12069
  msgid ""
12070
  "This action will remake the fullsize images, thumbnail images, and will "
12071
  "refresh the iptc and exif data for all photos where the source is found in "
12072
  "the corresponding album sub-directory of the source directory."
12073
  msgstr ""
12074
 
12075
- #: wppa-settings-autosave.php:6381
12076
  msgid "Recalc sizes"
12077
  msgstr ""
12078
 
12079
- #: wppa-settings-autosave.php:6382
12080
  msgid "Recalculate photosizes and save to db."
12081
  msgstr ""
12082
 
12083
- #: wppa-settings-autosave.php:6394
12084
  msgid "Clearing and other irreverseable actions"
12085
  msgstr ""
12086
 
12087
- #: wppa-settings-autosave.php:6396
12088
  msgid "Clear ratings"
12089
  msgstr "Effacer les votes"
12090
 
12091
- #: wppa-settings-autosave.php:6397
12092
  msgid "Reset all ratings."
12093
  msgstr ""
12094
 
12095
- #: wppa-settings-autosave.php:6398
12096
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12097
  msgstr ""
12098
 
12099
- #: wppa-settings-autosave.php:6409
12100
  msgid "Clear viewcounts"
12101
  msgstr ""
12102
 
12103
- #: wppa-settings-autosave.php:6410
12104
  msgid "Reset all viewcounts."
12105
  msgstr ""
12106
 
12107
- #: wppa-settings-autosave.php:6411
12108
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12109
  msgstr ""
12110
 
12111
- #: wppa-settings-autosave.php:6422
12112
  msgid "Reset IPTC"
12113
  msgstr ""
12114
 
12115
- #: wppa-settings-autosave.php:6423
12116
  msgid "Clear all IPTC data."
12117
  msgstr "Effacer les données IPTC"
12118
 
12119
- #: wppa-settings-autosave.php:6424
12120
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12121
  msgstr ""
12122
 
12123
- #: wppa-settings-autosave.php:6435
12124
  msgid "Reset EXIF"
12125
  msgstr ""
12126
 
12127
- #: wppa-settings-autosave.php:6436
12128
  msgid "Clear all EXIF data."
12129
  msgstr "Effacer les données EXIF"
12130
 
12131
- #: wppa-settings-autosave.php:6437
12132
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12133
  msgstr ""
12134
 
12135
- #: wppa-settings-autosave.php:6448
12136
  msgid "Apply New Photodesc"
12137
  msgstr "Appliquer nouvelle desc photo"
12138
 
12139
- #: wppa-settings-autosave.php:6449
12140
  msgid "Apply New photo description on all photos in the system."
12141
  msgstr ""
12142
 
12143
- #: wppa-settings-autosave.php:6461
12144
  msgid "Append to photodesc"
12145
  msgstr ""
12146
 
12147
- #: wppa-settings-autosave.php:6462
12148
  msgid "Append this text to all photo descriptions."
12149
  msgstr "Ajouter ce texte à toutes les descriptions de photo."
12150
 
12151
- #: wppa-settings-autosave.php:6476
12152
  msgid "Remove from photodesc"
12153
  msgstr ""
12154
 
12155
- #: wppa-settings-autosave.php:6477
12156
  msgid "Remove this text from all photo descriptions."
12157
  msgstr "Enlever ce texte de toutes les descriptions de photo."
12158
 
12159
- #: wppa-settings-autosave.php:6491
12160
  msgid "Remove empty albums"
12161
  msgstr "Retirer les albums vides"
12162
 
12163
- #: wppa-settings-autosave.php:6492
12164
  msgid "Removes albums that are not used."
12165
  msgstr ""
12166
 
12167
- #: wppa-settings-autosave.php:6504
12168
  msgid "Remove file-ext"
12169
  msgstr ""
12170
 
12171
- #: wppa-settings-autosave.php:6505
12172
  msgid "Remove possible file extension from photo name."
12173
  msgstr ""
12174
 
12175
- #: wppa-settings-autosave.php:6506
12176
  msgid ""
12177
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12178
  "was not yet available/selected."
12179
  msgstr ""
12180
 
12181
- #: wppa-settings-autosave.php:6517
12182
  msgid "Re-add file-ext"
12183
  msgstr ""
12184
 
12185
- #: wppa-settings-autosave.php:6518
12186
  msgid "Revert the <i>Remove file-ext</i> action."
12187
  msgstr ""
12188
 
12189
- #: wppa-settings-autosave.php:6530
12190
  msgid "Watermark all"
12191
  msgstr ""
12192
 
12193
- #: wppa-settings-autosave.php:6531
12194
  msgid "Apply watermark according to current settings to all photos."
12195
  msgstr ""
12196
 
12197
- #: wppa-settings-autosave.php:6532
12198
  msgid "See Table IX_F for the current watermark settings"
12199
  msgstr ""
12200
 
12201
- #: wppa-settings-autosave.php:6543
12202
  msgid "Create all autopages"
12203
  msgstr "Créer toutes les auto pages"
12204
 
12205
- #: wppa-settings-autosave.php:6544
12206
  msgid "Create all the pages to display slides individually."
12207
  msgstr ""
12208
 
12209
- #: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:6559
12210
  msgid "See also Table IV-A10."
12211
  msgstr ""
12212
 
12213
- #: wppa-settings-autosave.php:6546
12214
  msgid ""
12215
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12216
  "pages to this menu\" box UNticked!!"
12217
  msgstr ""
12218
 
12219
- #: wppa-settings-autosave.php:6557
12220
  msgid "Delete all autopages"
12221
  msgstr "Effacer toutes les pages auto"
12222
 
12223
- #: wppa-settings-autosave.php:6558
12224
  msgid "Delete all the pages to display slides individually."
12225
  msgstr ""
12226
 
12227
- #: wppa-settings-autosave.php:6571
12228
  msgid "Leading zeroes"
12229
  msgstr ""
12230
 
12231
- #: wppa-settings-autosave.php:6572
12232
  msgid "If photoname numeric, add leading zeros"
12233
  msgstr ""
12234
 
12235
- #: wppa-settings-autosave.php:6573
12236
  msgid ""
12237
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12238
  "to numeric sort order."
12239
  msgstr ""
12240
 
12241
- #: wppa-settings-autosave.php:6576
12242
  msgid "Total chars"
12243
  msgstr ""
12244
 
12245
- #: wppa-settings-autosave.php:6585
12246
  msgid "Add GPX tag"
12247
  msgstr ""
12248
 
12249
- #: wppa-settings-autosave.php:6586
12250
  msgid "Make sure photos with gpx data have a Gpx tag"
12251
  msgstr ""
12252
 
12253
- #: wppa-settings-autosave.php:6599 wppa-settings-autosave.php:7465
12254
  msgid "Optimize files"
12255
  msgstr "Optimiser les fichiers"
12256
 
12257
- #: wppa-settings-autosave.php:6600
12258
  msgid "Optimize with EWWW image optimizer"
12259
  msgstr ""
12260
 
12261
- #: wppa-settings-autosave.php:6613
12262
  msgid "Edit tag"
12263
  msgstr "Modifier tag"
12264
 
12265
- #: wppa-settings-autosave.php:6614
12266
  msgid "Globally change a tagname."
12267
  msgstr ""
12268
 
12269
- #: wppa-settings-autosave.php:6620
12270
  msgid "-select a tag-"
12271
  msgstr "- Choisir un tag -"
12272
 
12273
- #: wppa-settings-autosave.php:6626
12274
  msgid "Tag:"
12275
  msgstr "Tag:"
12276
 
12277
- #: wppa-settings-autosave.php:6627
12278
  msgid "Change to:"
12279
  msgstr "Changer pour:"
12280
 
12281
- #: wppa-settings-autosave.php:6636
12282
  msgid "Synchronize Cloudinary"
12283
  msgstr ""
12284
 
12285
- #: wppa-settings-autosave.php:6637
12286
  msgid "Removes/adds images in the cloud."
12287
  msgstr ""
12288
 
12289
- #: wppa-settings-autosave.php:6638
12290
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12291
  msgstr ""
12292
 
12293
- #: wppa-settings-autosave.php:6639
12294
  msgid "See Table IX-K4.7 for the configured lifetime."
12295
  msgstr ""
12296
 
12297
- #: wppa-settings-autosave.php:6650
12298
  msgid "Fix tags"
12299
  msgstr ""
12300
 
12301
- #: wppa-settings-autosave.php:6651
12302
  msgid "Make sure photo tags format is uptodate"
12303
  msgstr ""
12304
 
12305
- #: wppa-settings-autosave.php:6652
12306
  msgid "Fixes tags to be conform current database rules."
12307
  msgstr ""
12308
 
12309
- #: wppa-settings-autosave.php:6663
12310
  msgid "Fix cats"
12311
  msgstr ""
12312
 
12313
- #: wppa-settings-autosave.php:6664
12314
  msgid "Make sure album cats format is uptodate"
12315
  msgstr ""
12316
 
12317
- #: wppa-settings-autosave.php:6665
12318
  msgid "Fixes cats to be conform current database rules."
12319
  msgstr ""
12320
 
12321
- #: wppa-settings-autosave.php:6691
12322
  msgid "Listings"
12323
  msgstr "Listes"
12324
 
12325
- #: wppa-settings-autosave.php:6693
12326
  msgid "List Logfile"
12327
  msgstr "Lister le journal (log)"
12328
 
12329
- #: wppa-settings-autosave.php:6694
12330
  msgid "Show the content of wppa+ (error) log."
12331
  msgstr ""
12332
 
12333
- #: wppa-settings-autosave.php:6698
12334
  msgid "Purge logfile"
12335
  msgstr "Purger le journal (log)"
12336
 
12337
- #: wppa-settings-autosave.php:6707
12338
  msgid "List Ratings"
12339
  msgstr "Lister les votes"
12340
 
12341
- #: wppa-settings-autosave.php:6708
12342
  msgid "Show the most recent ratings."
12343
  msgstr "Montrer les votes récents."
12344
 
12345
- #: wppa-settings-autosave.php:6721
12346
  msgid "List Index"
12347
  msgstr ""
12348
 
12349
- #: wppa-settings-autosave.php:6722
12350
  msgid "Show the content if the index table."
12351
  msgstr ""
12352
 
12353
- #: wppa-settings-autosave.php:6726
12354
  msgid "Start at text:"
12355
  msgstr ""
12356
 
12357
- #: wppa-settings-autosave.php:6736
12358
  msgid "List active sessions"
12359
  msgstr "Lister les sessions actives"
12360
 
12361
- #: wppa-settings-autosave.php:6737
12362
  msgid "Show the content of the sessions table."
12363
  msgstr ""
12364
 
12365
- #: wppa-settings-autosave.php:6770
12366
  msgid "Table IX:"
12367
  msgstr ""
12368
 
12369
- #: wppa-settings-autosave.php:6770
12370
  msgid "Miscellaneous:"
12371
  msgstr ""
12372
 
12373
- #: wppa-settings-autosave.php:6771
12374
  msgid "This table lists all settings that do not fit into an other table"
12375
  msgstr ""
12376
 
12377
- #: wppa-settings-autosave.php:6789
12378
  msgid "Internal engine related settings"
12379
  msgstr ""
12380
 
12381
- #: wppa-settings-autosave.php:6791
12382
  msgid "WPPA+ Filter priority"
12383
  msgstr ""
12384
 
12385
- #: wppa-settings-autosave.php:6792
12386
  msgid "Sets the priority of the wppa+ content filter."
12387
  msgstr ""
12388
 
12389
- #: wppa-settings-autosave.php:6793 wppa-settings-autosave.php:6802
12390
  msgid ""
12391
  "If you encounter conflicts with the theme or other plugins, increasing this "
12392
  "value sometimes helps. Use with great care!"
12393
  msgstr ""
12394
 
12395
- #: wppa-settings-autosave.php:6800
12396
  msgid "Do_shortcode priority"
12397
  msgstr ""
12398
 
12399
- #: wppa-settings-autosave.php:6801
12400
  msgid "Sets the priority of the do_shortcode() content filter."
12401
  msgstr ""
12402
 
12403
- #: wppa-settings-autosave.php:6809
12404
  msgid "WPPA shortcode at Filter priority"
12405
  msgstr ""
12406
 
12407
- #: wppa-settings-autosave.php:6810
12408
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12409
  msgstr ""
12410
 
12411
- #: wppa-settings-autosave.php:6811 wppa-settings-autosave.php:6820
12412
  msgid "Use to fix certain layout problems"
12413
  msgstr ""
12414
 
12415
- #: wppa-settings-autosave.php:6818
12416
  msgid "WPPA shortcode at Filter priority widget"
12417
  msgstr ""
12418
 
12419
- #: wppa-settings-autosave.php:6819
12420
  msgid "Execute shortcode expansion on filter priority in widgets."
12421
  msgstr ""
12422
 
12423
- #: wppa-settings-autosave.php:6827
12424
  msgid "JPG image quality"
12425
  msgstr ""
12426
 
12427
- #: wppa-settings-autosave.php:6828
12428
  msgid "The jpg quality when photos are downsized"
12429
  msgstr ""
12430
 
12431
- #: wppa-settings-autosave.php:6829
12432
  msgid "The higher the number the better the quality but the larger the file"
12433
  msgstr ""
12434
 
12435
- #: wppa-settings-autosave.php:6830
12436
  msgid "Possible values 20..100"
12437
  msgstr ""
12438
 
12439
- #: wppa-settings-autosave.php:6837
12440
  msgid "Allow WPPA+ Debugging"
12441
  msgstr ""
12442
 
12443
- #: wppa-settings-autosave.php:6838
12444
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12445
  msgstr ""
12446
 
12447
- #: wppa-settings-autosave.php:6839
12448
  msgid ""
12449
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12450
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12451
  "warnings"
12452
  msgstr ""
12453
 
12454
- #: wppa-settings-autosave.php:6846
12455
  msgid "Auto continue"
12456
  msgstr ""
12457
 
12458
- #: wppa-settings-autosave.php:6847
12459
  msgid "Continue automatic after time out"
12460
  msgstr ""
12461
 
12462
- #: wppa-settings-autosave.php:6848
12463
  msgid ""
12464
  "If checked, an attempt will be made to restart an admin process when the "
12465
  "time is out."
12466
  msgstr ""
12467
 
12468
- #: wppa-settings-autosave.php:6856
12469
  msgid "Set max execution time here."
12470
  msgstr ""
12471
 
12472
- #: wppa-settings-autosave.php:6857
12473
  msgid ""
12474
  "If your php config does not properly set the max execution time, you can set "
12475
  "it here. Seconds, 0 means do not change."
12476
  msgstr ""
12477
 
12478
- #: wppa-settings-autosave.php:6858
12479
  msgid "A safe value is 45 in most cases"
12480
  msgstr ""
12481
 
12482
- #: wppa-settings-autosave.php:6859
12483
  #, php-format
12484
  msgid "The PHP setting max_execution_time is set to %s."
12485
  msgstr ""
12486
 
12487
- #: wppa-settings-autosave.php:6867
12488
  msgid "Feed use thumb"
12489
  msgstr ""
12490
 
12491
- #: wppa-settings-autosave.php:6868
12492
  msgid "Feeds use thumbnail pictures always."
12493
  msgstr ""
12494
 
12495
- #: wppa-settings-autosave.php:6876
12496
  msgid "Enable <i>in-line</i> settings"
12497
  msgstr ""
12498
 
12499
- #: wppa-settings-autosave.php:6877
12500
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12501
  msgstr ""
12502
 
12503
- #: wppa-settings-autosave.php:6878
12504
  msgid ""
12505
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12506
  msgstr ""
12507
 
12508
- #: wppa-settings-autosave.php:6879
12509
  msgid ""
12510
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12511
  "sets the thumbnail type to vertical masonry style"
12512
  msgstr ""
12513
 
12514
- #: wppa-settings-autosave.php:6880
12515
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12516
  msgstr ""
12517
 
12518
- #: wppa-settings-autosave.php:6881
12519
  msgid "Use with great care! There is no check on validity of values!"
12520
  msgstr ""
12521
 
12522
- #: wppa-settings-autosave.php:6888
12523
  msgid "Runtime modifyable settings"
12524
  msgstr ""
12525
 
12526
- #: wppa-settings-autosave.php:6889
12527
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12528
  msgstr ""
12529
 
12530
- #: wppa-settings-autosave.php:6897
12531
  msgid "Use translations"
12532
  msgstr "Utiliser les traductions"
12533
 
12534
- #: wppa-settings-autosave.php:6898
12535
  msgid "If UNticked, wppa is in english always."
12536
  msgstr ""
12537
 
12538
- #: wppa-settings-autosave.php:6899
12539
  msgid "Used to bypass the loading of any language file for wppa."
12540
  msgstr ""
12541
 
12542
- #: wppa-settings-autosave.php:6907
12543
  msgid "WPPA+ Admin related miscellaneous settings"
12544
  msgstr ""
12545
 
12546
- #: wppa-settings-autosave.php:6909
12547
  msgid "Allow HTML"
12548
  msgstr "Autoriser HTML"
12549
 
12550
- #: wppa-settings-autosave.php:6910
12551
  msgid "Allow HTML in album and photo descriptions."
12552
  msgstr ""
12553
 
12554
- #: wppa-settings-autosave.php:6911
12555
  msgid ""
12556
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12557
  "responsability to close tags properly!"
12558
  msgstr ""
12559
 
12560
- #: wppa-settings-autosave.php:6918
12561
  msgid "Check tag balance"
12562
  msgstr ""
12563
 
12564
- #: wppa-settings-autosave.php:6919
12565
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12566
  msgstr ""
12567
 
12568
- #: wppa-settings-autosave.php:6920
12569
  msgid ""
12570
  "If the HTML tags in an album or a photo description are not in balance, the "
12571
  "description is not updated, an errormessage is displayed"
12572
  msgstr ""
12573
 
12574
- #: wppa-settings-autosave.php:6927
12575
  msgid "Use WP editor"
12576
  msgstr "Utiliser l'éditeur de WordPress"
12577
 
12578
- #: wppa-settings-autosave.php:6928
12579
  msgid "Use the wp editor for multiline text fields."
12580
  msgstr ""
12581
 
12582
- #: wppa-settings-autosave.php:6936
12583
  msgid "Album sel hierarchic"
12584
  msgstr ""
12585
 
12586
- #: wppa-settings-autosave.php:6937
12587
  msgid "Show albums with (grand)parents in selection lists."
12588
  msgstr ""
12589
 
12590
- #: wppa-settings-autosave.php:6945
12591
  msgid "Page sel hierarchic"
12592
  msgstr ""
12593
 
12594
- #: wppa-settings-autosave.php:6946
12595
  msgid "Show pages with (grand)parents in selection lists."
12596
  msgstr ""
12597
 
12598
- #: wppa-settings-autosave.php:6955
12599
  msgid "Photo admin page size"
12600
  msgstr ""
12601
 
12602
- #: wppa-settings-autosave.php:6956
12603
  msgid ""
12604
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12605
  "Edit Photos admin pages."
12606
  msgstr ""
12607
 
12608
- #: wppa-settings-autosave.php:6966
12609
  msgid "Comment admin page size"
12610
  msgstr "Taille de la page d'admin des commentaires"
12611
 
12612
- #: wppa-settings-autosave.php:6967
12613
  msgid "The number of comments per page on the Comments admin pages."
12614
  msgstr ""
12615
 
12616
- #: wppa-settings-autosave.php:6977
12617
  msgid "Geo info edit"
12618
  msgstr "Modifier géo info"
12619
 
12620
- #: wppa-settings-autosave.php:6978
12621
  msgid "Lattitude and longitude may be edited in photo admin."
12622
  msgstr ""
12623
 
12624
- #: wppa-settings-autosave.php:6986
12625
  msgid "Admin bar menu admin"
12626
  msgstr ""
12627
 
12628
- #: wppa-settings-autosave.php:6987
12629
  msgid "Show menu on admin bar on admin pages."
12630
  msgstr ""
12631
 
12632
- #: wppa-settings-autosave.php:6995
12633
  msgid "Admin bar menu frontend"
12634
  msgstr ""
12635
 
12636
- #: wppa-settings-autosave.php:6996
12637
  msgid "Show menu on admin bar on frontend pages."
12638
  msgstr ""
12639
 
12640
- #: wppa-settings-autosave.php:7004
12641
  msgid "Add shortcode to posts"
12642
  msgstr ""
12643
 
12644
- #: wppa-settings-autosave.php:7005
12645
  msgid "Add a shortcode to the end of all posts."
12646
  msgstr ""
12647
 
12648
- #: wppa-settings-autosave.php:7013
12649
  msgid "Shortcode to add"
12650
  msgstr "Shortcode à ajouter"
12651
 
12652
- #: wppa-settings-autosave.php:7014
12653
  msgid "The shortcode to be added to the posts."
12654
  msgstr ""
12655
 
12656
- #: wppa-settings-autosave.php:7022
12657
  msgid "We use Scripts"
12658
  msgstr ""
12659
 
12660
- #: wppa-settings-autosave.php:7023
12661
  msgid "Use scripting syntax in shortcode generator."
12662
  msgstr ""
12663
 
12664
- #: wppa-settings-autosave.php:7024
12665
  msgid ""
12666
  "This setting defines if the shortcode generator outputs old style script "
12667
  "tags or new style shortcodes."
12668
  msgstr ""
12669
 
12670
- #: wppa-settings-autosave.php:7032
12671
  msgid "Import page prieviews"
12672
  msgstr ""
12673
 
12674
- #: wppa-settings-autosave.php:7033
12675
  msgid "Show thumbnail previews in import admin page."
12676
  msgstr ""
12677
 
12678
- #: wppa-settings-autosave.php:7041
12679
  msgid "Upload audiostub"
12680
  msgstr "Charger audiostub"
12681
 
12682
- #: wppa-settings-autosave.php:7042
12683
  msgid "Upload a new audio stub file"
12684
  msgstr ""
12685
 
12686
- #: wppa-settings-autosave.php:7046
12687
  msgid "Upload audio stub image"
12688
  msgstr "Charger image audiostub"
12689
 
12690
- #: wppa-settings-autosave.php:7051
12691
  msgid "Confirm create"
12692
  msgstr "Confirmer création"
12693
 
12694
- #: wppa-settings-autosave.php:7052
12695
  msgid "Display confirmation dialog before creating album."
12696
  msgstr ""
12697
 
12698
- #: wppa-settings-autosave.php:7060
12699
  msgid "Import source root"
12700
  msgstr ""
12701
 
12702
- #: wppa-settings-autosave.php:7061
12703
  msgid "Specify the highest level in the filesystem where to import from"
12704
  msgstr ""
12705
 
12706
- #: wppa-settings-autosave.php:7078
12707
  msgid "Allow import from WPPA+ source folders"
12708
  msgstr ""
12709
 
12710
- #: wppa-settings-autosave.php:7079
12711
  msgid "Only switch this on if you know what you are doing!"
12712
  msgstr ""
12713
 
12714
- #: wppa-settings-autosave.php:7088
12715
  msgid "SEO related settings"
12716
  msgstr ""
12717
 
12718
- #: wppa-settings-autosave.php:7090
12719
  msgid "Meta on page"
12720
  msgstr ""
12721
 
12722
- #: wppa-settings-autosave.php:7091
12723
  msgid "Meta tags for photos on the page."
12724
  msgstr ""
12725
 
12726
- #: wppa-settings-autosave.php:7092
12727
  msgid ""
12728
  "If checked, the header of the page will contain metatags that refer to "
12729
  "featured photos on the page in the page context."
12730
  msgstr ""
12731
 
12732
- #: wppa-settings-autosave.php:7099
12733
  msgid "Meta all"
12734
  msgstr ""
12735
 
12736
- #: wppa-settings-autosave.php:7100
12737
  msgid "Meta tags for all featured photos."
12738
  msgstr ""
12739
 
12740
- #: wppa-settings-autosave.php:7101
12741
  msgid ""
12742
  "If checked, the header of the page will contain metatags that refer to all "
12743
  "featured photo files."
12744
  msgstr ""
12745
 
12746
- #: wppa-settings-autosave.php:7102
12747
  msgid ""
12748
  "If you have many featured photos, you might wish to uncheck this item to "
12749
  "reduce the size of the page header."
12750
  msgstr ""
12751
 
12752
- #: wppa-settings-autosave.php:7109
12753
  msgid "Add og meta tags"
12754
  msgstr ""
12755
 
12756
- #: wppa-settings-autosave.php:7110
12757
  msgid "Add og meta tags to the page header."
12758
  msgstr ""
12759
 
12760
- #: wppa-settings-autosave.php:7113
12761
  msgid ""
12762
  "Turning this off may affect the functionality of social media items in the "
12763
  "share box that rely on open graph tags information."
12764
  msgstr ""
12765
 
12766
- #: wppa-settings-autosave.php:7119
12767
  msgid "Image Alt attribute type"
12768
  msgstr ""
12769
 
12770
- #: wppa-settings-autosave.php:7120
12771
  msgid "Select kind of HTML alt=\"\" content for images."
12772
  msgstr ""
12773
 
12774
- #: wppa-settings-autosave.php:7123
12775
  msgid "photo name"
12776
  msgstr "Nom de la photo"
12777
 
12778
- #: wppa-settings-autosave.php:7123
12779
  msgid "name without file-ext"
12780
  msgstr "nom sans l'extension de fichier"
12781
 
12782
- #: wppa-settings-autosave.php:7123
12783
  msgid "set in album admin"
12784
  msgstr "Réglé dans album admin"
12785
 
12786
- #: wppa-settings-autosave.php:7130
12787
  msgid "New Album and New Photo related miscellaneous settings"
12788
  msgstr ""
12789
 
12790
- #: wppa-settings-autosave.php:7168
12791
  msgid "Maximum time an album is indicated as New"
12792
  msgstr ""
12793
 
12794
- #: wppa-settings-autosave.php:7176
12795
  msgid "New Photo"
12796
  msgstr "Nouvelle photo"
12797
 
12798
- #: wppa-settings-autosave.php:7177
12799
  msgid "Maximum time a photo is indicated as New"
12800
  msgstr ""
12801
 
12802
- #: wppa-settings-autosave.php:7185
12803
  msgid "Modified Album"
12804
  msgstr "Album modifié"
12805
 
12806
- #: wppa-settings-autosave.php:7186
12807
  msgid "Maximum time an album is indicated as Modified"
12808
  msgstr ""
12809
 
12810
- #: wppa-settings-autosave.php:7194
12811
  msgid "Modified Photo"
12812
  msgstr "Photo modifiée"
12813
 
12814
- #: wppa-settings-autosave.php:7195
12815
  msgid "Maximum time a photo is indicated as Modofied"
12816
  msgstr ""
12817
 
12818
- #: wppa-settings-autosave.php:7203
12819
  msgid "Use text labels"
12820
  msgstr ""
12821
 
12822
- #: wppa-settings-autosave.php:7204
12823
  msgid "Use editable text for the New and Modified labels"
12824
  msgstr ""
12825
 
12826
- #: wppa-settings-autosave.php:7205
12827
  msgid "If UNticked, you can specify the urls for custom images to be used."
12828
  msgstr ""
12829
 
12830
- #: wppa-settings-autosave.php:7216
12831
  msgid "Orange"
12832
  msgstr "Orange"
12833
 
12834
- #: wppa-settings-autosave.php:7217
12835
  msgid "Yellow"
12836
  msgstr "Jaune"
12837
 
12838
- #: wppa-settings-autosave.php:7220
12839
  msgid "Purple"
12840
  msgstr "Voilet"
12841
 
12842
- #: wppa-settings-autosave.php:7221
12843
  msgid "Black/white"
12844
  msgstr "Noir/Blanc"
12845
 
12846
- #: wppa-settings-autosave.php:7233 wppa-settings-autosave.php:7255
12847
  msgid "New label"
12848
  msgstr "Nouveau label"
12849
 
12850
- #: wppa-settings-autosave.php:7234
12851
  msgid "Specify the \"New\" indicator details."
12852
  msgstr ""
12853
 
12854
- #: wppa-settings-autosave.php:7235 wppa-settings-autosave.php:7246
12855
  msgid "If you use qTranslate, the text may be multilingual."
12856
  msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
12857
 
12858
- #: wppa-settings-autosave.php:7239 wppa-settings-autosave.php:7250
12859
  #: wppa-stereo.php:31
12860
  msgid "Color"
12861
  msgstr "Couleur"
12862
 
12863
- #: wppa-settings-autosave.php:7244 wppa-settings-autosave.php:7264
12864
  msgid "Modified label"
12865
  msgstr ""
12866
 
12867
- #: wppa-settings-autosave.php:7245
12868
  msgid "Specify the \"Modified\" indicator details."
12869
  msgstr ""
12870
 
12871
- #: wppa-settings-autosave.php:7256
12872
  msgid "Specify the \"New\" indicator url."
12873
  msgstr ""
12874
 
12875
- #: wppa-settings-autosave.php:7265
12876
  msgid "Specify the \"Modified\" indicator url."
12877
  msgstr ""
12878
 
12879
- #: wppa-settings-autosave.php:7273
12880
  msgid "Limit LasTen New"
12881
  msgstr ""
12882
 
12883
- #: wppa-settings-autosave.php:7274
12884
  msgid "Limits the LasTen photos to those that are 'New', or newly modified."
12885
  msgstr ""
12886
 
12887
- #: wppa-settings-autosave.php:7275
12888
  msgid ""
12889
  "If you tick this box and configured the new photo time, you can even limit "
12890
  "the number by the setting in Table I-F7, or set that number to an unlikely "
12891
  "high value."
12892
  msgstr ""
12893
 
12894
- #: wppa-settings-autosave.php:7282
12895
  msgid "LasTen use Modified"
12896
  msgstr ""
12897
 
12898
- #: wppa-settings-autosave.php:7283
12899
  msgid ""
12900
  "Use the time modified rather than time upload for LasTen widget/shortcode."
12901
  msgstr ""
12902
 
12903
- #: wppa-settings-autosave.php:7291
12904
  msgid "Apply Newphoto desc"
12905
  msgstr ""
12906
 
12907
- #: wppa-settings-autosave.php:7292
12908
  msgid "Give each new photo a standard description."
12909
  msgstr ""
12910
 
12911
- #: wppa-settings-autosave.php:7293
12912
  msgid ""
12913
  "If checked, each new photo will get the description (template) as specified "
12914
  "in the next item."
12915
  msgstr ""
12916
 
12917
- #: wppa-settings-autosave.php:7300
12918
  msgid "New photo desc"
12919
  msgstr "Description nouvelle photo"
12920
 
12921
- #: wppa-settings-autosave.php:7301
12922
  msgid "The description (template) to add to a new photo."
12923
  msgstr ""
12924
 
12925
- #: wppa-settings-autosave.php:7302
12926
  msgid "Enter the default description."
12927
  msgstr "Entrez la description par défaut."
12928
 
12929
- #: wppa-settings-autosave.php:7303
12930
  msgid "If you use html, please check item A-1 of this table."
12931
  msgstr ""
12932
 
12933
- #: wppa-settings-autosave.php:7311
12934
  msgid "New albums are created with this upload limit."
12935
  msgstr ""
12936
 
12937
- #: wppa-settings-autosave.php:7312
12938
  msgid ""
12939
  "Administrators can change the limit settings in the \"Edit Album Information"
12940
  "\" admin page."
12941
  msgstr ""
12942
 
12943
- #: wppa-settings-autosave.php:7329
12944
  msgid "Default parent"
12945
  msgstr "Parent par défaut"
12946
 
12947
- #: wppa-settings-autosave.php:7330
12948
  msgid "The parent album of new albums."
12949
  msgstr ""
12950
 
12951
- #: wppa-settings-autosave.php:7347
12952
  msgid "Default parent always"
12953
  msgstr ""
12954
 
12955
- #: wppa-settings-autosave.php:7348
12956
  msgid ""
12957
  "The parent album of new albums is always the default, except for "
12958
  "administrators."
12959
  msgstr ""
12960
 
12961
- #: wppa-settings-autosave.php:7356
12962
  msgid "Show album full"
12963
  msgstr ""
12964
 
12965
- #: wppa-settings-autosave.php:7357
12966
  msgid "Show the Upload limit reached message if appropriate."
12967
  msgstr ""
12968
 
12969
- #: wppa-settings-autosave.php:7365
12970
  msgid "Grant an album"
12971
  msgstr "Grant an album"
12972
 
12973
- #: wppa-settings-autosave.php:7366
12974
  msgid "Create an album for each user logging in."
12975
  msgstr ""
12976
 
12977
- #: wppa-settings-autosave.php:7374
12978
  msgid "Grant album name"
12979
  msgstr "Grant album name"
12980
 
12981
- #: wppa-settings-autosave.php:7375
12982
  msgid "The name to be used for the album."
12983
  msgstr ""
12984
 
12985
- #: wppa-settings-autosave.php:7378
12986
  msgid "Login name"
12987
  msgstr "Identifiant"
12988
 
12989
- #: wppa-settings-autosave.php:7378 wppa-upldr-widget.php:181
12990
  msgid "Display name"
12991
  msgstr "Afficher le nom"
12992
 
12993
- #: wppa-settings-autosave.php:7378
12994
  msgid "Id"
12995
  msgstr "Id"
12996
 
12997
- #: wppa-settings-autosave.php:7378
12998
  msgid "Firstname Lastname"
12999
  msgstr ""
13000
 
13001
- #: wppa-settings-autosave.php:7385
13002
  msgid "Grant parent"
13003
  msgstr ""
13004
 
13005
- #: wppa-settings-autosave.php:7386
13006
  msgid "The parent album of the auto created albums."
13007
  msgstr ""
13008
 
13009
- #: wppa-settings-autosave.php:7403
13010
  msgid "Max user albums"
13011
  msgstr ""
13012
 
13013
- #: wppa-settings-autosave.php:7404
13014
  msgid "The max number of albums a user can create."
13015
  msgstr ""
13016
 
13017
- #: wppa-settings-autosave.php:7405
13018
  msgid ""
13019
  "The maximum number of albums a user can create when he is not admin and "
13020
  "owner only is active"
13021
  msgstr ""
13022
 
13023
- #: wppa-settings-autosave.php:7406
13024
  msgid "A number of 0 means No limit"
13025
  msgstr ""
13026
 
13027
- #: wppa-settings-autosave.php:7413
13028
  msgid "Default photo name"
13029
  msgstr "Nom de photo par défaut"
13030
 
13031
- #: wppa-settings-autosave.php:7414
13032
  msgid "Select the way the name of a new uploaded photo should be determined."
13033
  msgstr ""
13034
 
13035
- #: wppa-settings-autosave.php:7417
13036
  msgid "Filename"
13037
  msgstr "Nom de fichier"
13038
 
13039
- #: wppa-settings-autosave.php:7418
13040
  msgid "Filename without extension"
13041
  msgstr "Nom de fichier sans extension"
13042
 
13043
- #: wppa-settings-autosave.php:7419
13044
  msgid "IPTC Tag 2#005 (Graphic name)"
13045
  msgstr ""
13046
 
13047
- #: wppa-settings-autosave.php:7420
13048
  msgid "IPTC Tag 2#120 (Caption)"
13049
  msgstr ""
13050
 
13051
- #: wppa-settings-autosave.php:7421
13052
  msgid "No name at all"
13053
  msgstr "Pas de nom du tout"
13054
 
13055
- #: wppa-settings-autosave.php:7429
13056
  msgid "Default coverphoto"
13057
  msgstr "Photo de couverture par défaut"
13058
 
13059
- #: wppa-settings-autosave.php:7430
13060
  msgid "Name of photofile to become cover image"
13061
  msgstr ""
13062
 
13063
- #: wppa-settings-autosave.php:7431
13064
  msgid ""
13065
  "If you name a photofile like this setting before upload, it will become the "
13066
  "coverimage automaticly."
13067
  msgstr ""
13068
 
13069
- #: wppa-settings-autosave.php:7438
13070
  msgid "Copy Timestamp"
13071
  msgstr "Copier timestamp"
13072
 
13073
- #: wppa-settings-autosave.php:7439
13074
  msgid "Copy timestamp when copying photo."
13075
  msgstr ""
13076
 
13077
- #: wppa-settings-autosave.php:7440
13078
  msgid "If checked, the copied photo is not \"new\""
13079
  msgstr ""
13080
 
13081
- #: wppa-settings-autosave.php:7447
13082
  msgid "Copy Owner"
13083
  msgstr ""
13084
 
13085
- #: wppa-settings-autosave.php:7448
13086
  msgid "Copy the owner when copying photo."
13087
  msgstr ""
13088
 
13089
- #: wppa-settings-autosave.php:7456
13090
  msgid "FE Albums public"
13091
  msgstr ""
13092
 
13093
- #: wppa-settings-autosave.php:7457
13094
  msgid "Frontend created albums are --- public ---"
13095
  msgstr ""
13096
 
13097
- #: wppa-settings-autosave.php:7466
13098
  msgid "Optimize image files right after upload/import"
13099
  msgstr ""
13100
 
13101
- #: wppa-settings-autosave.php:7467
13102
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13103
  msgstr ""
13104
 
13105
- #: wppa-settings-autosave.php:7474
13106
  msgid "Default album linktype"
13107
  msgstr ""
13108
 
13109
- #: wppa-settings-autosave.php:7475
13110
  msgid "The album linktype for new albums"
13111
  msgstr ""
13112
 
13113
- #: wppa-settings-autosave.php:7494
13114
  msgid "Search Albums and Photos related settings"
13115
  msgstr ""
13116
 
13117
- #: wppa-settings-autosave.php:7496
13118
  msgid "Search page"
13119
  msgstr "Rechercher dans la page"
13120
 
13121
- #: wppa-settings-autosave.php:7497
13122
  msgid "Display the search results on page."
13123
  msgstr ""
13124
 
13125
- #: wppa-settings-autosave.php:7498
13126
  #, php-format
13127
  msgid ""
13128
  "Select the page to be used to display search results. The page MUST contain "
13129
  "%%wppa%% or [wppa][/wppa]."
13130
  msgstr ""
13131
 
13132
- #: wppa-settings-autosave.php:7499
13133
  msgid "You may give it the title \"Search results\" or something alike."
13134
  msgstr ""
13135
 
13136
- #: wppa-settings-autosave.php:7500
13137
  msgid ""
13138
  "Or you ou may use the standard page on which you display the generic album."
13139
  msgstr ""
13140
 
13141
- #: wppa-settings-autosave.php:7533
13142
  msgid "Exclude separate"
13143
  msgstr "Exclure séparé"
13144
 
13145
- #: wppa-settings-autosave.php:7534
13146
  msgid "Do not search 'separate' albums."
13147
  msgstr "Ne pas rechercher dans les albums 'séparés'"
13148
 
13149
- #: wppa-settings-autosave.php:7535
13150
  msgid ""
13151
  "When checked, albums (and photos in them) that have the parent set to --- "
13152
  "separate --- will be excluded from being searched."
13153
  msgstr ""
13154
 
13155
- #: wppa-settings-autosave.php:7536
13156
  msgid ""
13157
  "Except when you start searching in a 'saparate' album, with the \"search in "
13158
  "current section\" box ticked."
13159
  msgstr ""
13160
 
13161
- #: wppa-settings-autosave.php:7543
13162
  msgid "Include tags"
13163
  msgstr "Inclure les tags"
13164
 
13165
- #: wppa-settings-autosave.php:7544
13166
  msgid "Do also search the photo tags."
13167
  msgstr ""
13168
 
13169
- #: wppa-settings-autosave.php:7545
13170
  msgid "When checked, the tags of the photo will also be searched."
13171
  msgstr ""
13172
 
13173
- #: wppa-settings-autosave.php:7552
13174
  msgid "Include categories"
13175
  msgstr "Inclure les catégories:"
13176
 
13177
- #: wppa-settings-autosave.php:7553
13178
  msgid "Do also search the album categories."
13179
  msgstr ""
13180
 
13181
- #: wppa-settings-autosave.php:7554
13182
  msgid "When checked, the categories of the album will also be searched."
13183
  msgstr ""
13184
 
13185
- #: wppa-settings-autosave.php:7561
13186
  msgid "Include comments"
13187
  msgstr "Inclure les commentaires"
13188
 
13189
- #: wppa-settings-autosave.php:7562
13190
  msgid "Do also search the comments on photos."
13191
  msgstr ""
13192
 
13193
- #: wppa-settings-autosave.php:7563
13194
  msgid "When checked, the comments of the photos will also be searched."
13195
  msgstr ""
13196
 
13197
- #: wppa-settings-autosave.php:7570
13198
  msgid "Photos only"
13199
  msgstr "Photos seulement"
13200
 
13201
- #: wppa-settings-autosave.php:7571
13202
  msgid "Search for photos only."
13203
  msgstr ""
13204
 
13205
- #: wppa-settings-autosave.php:7572
13206
  msgid "When checked, only photos will be searched for."
13207
  msgstr ""
13208
 
13209
- #: wppa-settings-autosave.php:7587
13210
  msgid "Max albums found"
13211
  msgstr ""
13212
 
13213
- #: wppa-settings-autosave.php:7588
13214
  msgid "The maximum number of albums to be displayed."
13215
  msgstr ""
13216
 
13217
- #: wppa-settings-autosave.php:7596
13218
  msgid "Max photos found"
13219
  msgstr ""
13220
 
13221
- #: wppa-settings-autosave.php:7597
13222
  msgid "The maximum number of photos to be displayed."
13223
  msgstr ""
13224
 
13225
- #: wppa-settings-autosave.php:7605
13226
  msgid "Tags OR only"
13227
  msgstr ""
13228
 
13229
- #: wppa-settings-autosave.php:7606
13230
  msgid "No and / or buttons"
13231
  msgstr "Pas de boutons et / ou"
13232
 
13233
- #: wppa-settings-autosave.php:7607
13234
  msgid ""
13235
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13236
  "shortcode."
13237
  msgstr ""
13238
 
13239
- #: wppa-settings-autosave.php:7614
13240
  msgid "Tags add Inverse"
13241
  msgstr ""
13242
 
13243
- #: wppa-settings-autosave.php:7615
13244
  msgid "Add a checkbox to invert the selection."
13245
  msgstr "Ajoute une case à cocher pour inverser la sélection."
13246
 
13247
- #: wppa-settings-autosave.php:7616
13248
  msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13249
  msgstr ""
13250
 
13251
- #: wppa-settings-autosave.php:7623
13252
  msgid "Floating searchtoken"
13253
  msgstr ""
13254
 
13255
- #: wppa-settings-autosave.php:7624
13256
  msgid "A match need not start at the first char."
13257
  msgstr ""
13258
 
13259
- #: wppa-settings-autosave.php:7625
13260
  msgid ""
13261
  "A match is found while searching also when the entered token is somewhere in "
13262
  "the middle of a word."
13263
  msgstr ""
13264
 
13265
- #: wppa-settings-autosave.php:7626
13266
  msgid "This works in indexed search only!"
13267
  msgstr ""
13268
 
13269
- #: wppa-settings-autosave.php:7633
13270
  msgid "Search results display"
13271
  msgstr ""
13272
 
13273
- #: wppa-settings-autosave.php:7634
13274
  msgid "Select the way the search results should be displayed."
13275
  msgstr ""
13276
 
13277
- #: wppa-settings-autosave.php:7635
13278
  msgid ""
13279
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13280
  "only\" is assumed (Table IX-E6)."
13281
  msgstr ""
13282
 
13283
- #: wppa-settings-autosave.php:7637
13284
  msgid "Albums and thumbnails"
13285
  msgstr "Album et vignettes"
13286
 
13287
- #: wppa-settings-autosave.php:7637
13288
  msgid "Slideonly slideshow"
13289
  msgstr ""
13290
 
13291
- #: wppa-settings-autosave.php:7644
13292
  msgid "Name max length"
13293
  msgstr ""
13294
 
13295
- #: wppa-settings-autosave.php:7645
13296
  msgid "Max length of displayed photonames in supersearch selectionlist"
13297
  msgstr ""
13298
 
13299
- #: wppa-settings-autosave.php:7646 wppa-settings-autosave.php:7655
13300
  msgid ""
13301
  "To limit the length of the selectionlist, enter the number of characters to "
13302
  "show."
13303
  msgstr ""
13304
 
13305
- #: wppa-settings-autosave.php:7653
13306
  msgid "Text max length"
13307
  msgstr ""
13308
 
13309
- #: wppa-settings-autosave.php:7654
13310
  msgid "Max length of displayed photo text in supersearch selectionlist"
13311
  msgstr ""
13312
 
13313
- #: wppa-settings-autosave.php:7662
13314
  msgid "Search toptext"
13315
  msgstr ""
13316
 
13317
- #: wppa-settings-autosave.php:7663
13318
  msgid "The text at the top of the search box."
13319
  msgstr ""
13320
 
13321
- #: wppa-settings-autosave.php:7664
13322
  msgid "May contain unfiltered HTML."
13323
  msgstr ""
13324
 
13325
- #: wppa-settings-autosave.php:7671
13326
  msgid "Section search text"
13327
  msgstr ""
13328
 
13329
- #: wppa-settings-autosave.php:7672 wppa-settings-autosave.php:7681
13330
  msgid "The labeltext at the checkbox."
13331
  msgstr ""
13332
 
13333
- #: wppa-settings-autosave.php:7680
13334
  msgid "Results search text"
13335
  msgstr ""
13336
 
13337
- #: wppa-settings-autosave.php:7690
13338
  msgid "Watermark related settings"
13339
  msgstr ""
13340
 
13341
- #: wppa-settings-autosave.php:7693
13342
  msgid "Enable the application of watermarks."
13343
  msgstr ""
13344
 
13345
- #: wppa-settings-autosave.php:7694
13346
  msgid "If checked, photos can be watermarked during upload / import."
13347
  msgstr ""
13348
 
13349
- #: wppa-settings-autosave.php:7703
13350
  msgid "Watermark file"
13351
  msgstr "Fichier filigrane"
13352
 
13353
- #: wppa-settings-autosave.php:7704
13354
  msgid "The default watermarkfile to be used."
13355
  msgstr ""
13356
 
13357
- #: wppa-settings-autosave.php:7705
13358
  msgid "Watermark files are of type png and reside in"
13359
  msgstr "Les fichiers filigrane sont du type PNG et consistent en"
13360
 
13361
- #: wppa-settings-autosave.php:7706
13362
  msgid ""
13363
  "A suitable watermarkfile typically consists of a transparent background and "
13364
  "a black text or drawing."
13365
  msgstr ""
13366
 
13367
- #: wppa-settings-autosave.php:7708
13368
  msgid ""
13369
  "You may also select one of the textual watermark types at the bottom of the "
13370
  "selection list."
13371
  msgstr ""
13372
 
13373
- #: wppa-settings-autosave.php:7712
13374
  msgid "position:"
13375
  msgstr "Position:"
13376
 
13377
- #: wppa-settings-autosave.php:7718
13378
  msgid "Upload watermark"
13379
  msgstr "Charger filigrane"
13380
 
13381
- #: wppa-settings-autosave.php:7719
13382
  msgid "Upload a new watermark file"
13383
  msgstr "Charger un nouveau fichier filigrane"
13384
 
13385
- #: wppa-settings-autosave.php:7723
13386
  msgid "Upload watermark image"
13387
  msgstr "Charger une image filigrane"
13388
 
13389
- #: wppa-settings-autosave.php:7728
13390
  msgid "Watermark opacity image"
13391
  msgstr ""
13392
 
13393
- #: wppa-settings-autosave.php:7729
13394
  msgid "You can set the intensity of image watermarks here."
13395
  msgstr ""
13396
 
13397
- #: wppa-settings-autosave.php:7730 wppa-settings-autosave.php:7815
13398
  msgid ""
13399
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13400
  "100."
13401
  msgstr ""
13402
 
13403
- #: wppa-settings-autosave.php:7737
13404
  msgid "Textual watermark style"
13405
  msgstr "Style du texte filigrane"
13406
 
13407
- #: wppa-settings-autosave.php:7738
13408
  msgid "The way the textual watermarks look like"
13409
  msgstr ""
13410
 
13411
- #: wppa-settings-autosave.php:7742
13412
  msgid "TV subtitle style"
13413
  msgstr ""
13414
 
13415
- #: wppa-settings-autosave.php:7742
13416
  msgid "White text on black background"
13417
  msgstr ""
13418
 
13419
- #: wppa-settings-autosave.php:7742
13420
  msgid "Black text on white background"
13421
  msgstr ""
13422
 
13423
- #: wppa-settings-autosave.php:7742
13424
  msgid "Reverse TV style (Utopia)"
13425
  msgstr ""
13426
 
13427
- #: wppa-settings-autosave.php:7742
13428
  msgid "White on transparent background"
13429
  msgstr ""
13430
 
13431
- #: wppa-settings-autosave.php:7742
13432
  msgid "Black on transparent background"
13433
  msgstr ""
13434
 
13435
- #: wppa-settings-autosave.php:7752
13436
  msgid "Predefined watermark text"
13437
  msgstr ""
13438
 
13439
- #: wppa-settings-autosave.php:7753
13440
  msgid "The text to use when --- pre-defined --- is selected."
13441
  msgstr ""
13442
 
13443
- #: wppa-settings-autosave.php:7754
13444
  msgid "You may use the following keywords:"
13445
  msgstr ""
13446
 
13447
- #: wppa-settings-autosave.php:7755
13448
  msgid "w#site, w#owner, w#name, w#filename"
13449
  msgstr ""
13450
 
13451
- #: wppa-settings-autosave.php:7762
13452
  msgid "Textual watermark font"
13453
  msgstr "Police du texte filigrane"
13454
 
13455
- #: wppa-settings-autosave.php:7763
13456
  msgid "The font to use with textusl watermarks."
13457
  msgstr ""
13458
 
13459
- #: wppa-settings-autosave.php:7764
13460
  msgid "Except for the system font, are font files of type ttf and reside in"
13461
  msgstr ""
13462
 
13463
- #: wppa-settings-autosave.php:7792
13464
  msgid "Textual watermark font size"
13465
  msgstr "Taille de la police texte filigrane"
13466
 
13467
- #: wppa-settings-autosave.php:7793
13468
  msgid "You can set the size of the truetype fonts only."
13469
  msgstr ""
13470
 
13471
- #: wppa-settings-autosave.php:7794
13472
  msgid ""
13473
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13474
  "value > 5 will be treated as 5."
13475
  msgstr ""
13476
 
13477
- #: wppa-settings-autosave.php:7795
13478
  msgid ""
13479
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13480
  "is 1, in pixels, in GD2 in points."
13481
  msgstr ""
13482
 
13483
- #: wppa-settings-autosave.php:7796
13484
  msgid "It is unclear howmany pixels a point is..."
13485
  msgstr ""
13486
 
13487
- #: wppa-settings-autosave.php:7803
13488
  msgid "Upload watermark font"
13489
  msgstr "Charger police filigrane"
13490
 
13491
- #: wppa-settings-autosave.php:7804
13492
  msgid "Upload a new watermark font file"
13493
  msgstr "Charger un nouveau fichier filigrane"
13494
 
13495
- #: wppa-settings-autosave.php:7805
13496
  msgid ""
13497
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13498
  "platform."
13499
  msgstr ""
13500
 
13501
- #: wppa-settings-autosave.php:7808
13502
  msgid "Upload TrueType font"
13503
  msgstr "Charger police TrueType"
13504
 
13505
- #: wppa-settings-autosave.php:7813
13506
  msgid "Watermark opacity text"
13507
  msgstr ""
13508
 
13509
- #: wppa-settings-autosave.php:7814
13510
  msgid "You can set the intensity of a text watermarks here."
13511
  msgstr ""
13512
 
13513
- #: wppa-settings-autosave.php:7823
13514
  msgid "A real life preview. To update: refresh the page."
13515
  msgstr ""
13516
 
13517
- #: wppa-settings-autosave.php:7834
13518
  msgid "Watermark thumbnails"
13519
  msgstr "Vignettes filigrane"
13520
 
13521
- #: wppa-settings-autosave.php:7835
13522
  msgid "Watermark also the thumbnail image files."
13523
  msgstr ""
13524
 
13525
- #: wppa-settings-autosave.php:7843
13526
  msgid "Slideshow elements sequence order settings"
13527
  msgstr ""
13528
 
13529
- #: wppa-settings-autosave.php:7849 wppa-settings-autosave.php:7895
13530
  msgid "StartStop"
13531
  msgstr "DémarrerArréter"
13532
 
13533
- #: wppa-settings-autosave.php:7850 wppa-settings-autosave.php:7896
13534
  msgid "SlideFrame"
13535
  msgstr ""
13536
 
13537
- #: wppa-settings-autosave.php:7852
13538
  msgid "Desc"
13539
  msgstr "Desc"
13540
 
13541
- #: wppa-settings-autosave.php:7855 wppa-settings-autosave.php:7900
13542
  msgid "FilmStrip"
13543
  msgstr "FilmStrip"
13544
 
13545
- #: wppa-settings-autosave.php:7856 wppa-settings-autosave.php:7901
13546
  msgid "Browsebar"
13547
  msgstr ""
13548
 
13549
- #: wppa-settings-autosave.php:7858 wppa-settings-autosave.php:7903
13550
  msgid "IPTC data"
13551
  msgstr "Données IPTC"
13552
 
13553
- #: wppa-settings-autosave.php:7859 wppa-settings-autosave.php:7904
13554
  msgid "EXIF data"
13555
  msgstr "Données EXIF"
13556
 
13557
- #: wppa-settings-autosave.php:7860 wppa-settings-autosave.php:7905
13558
  msgid "Share box"
13559
  msgstr "Boîte de partage"
13560
 
13561
- #: wppa-settings-autosave.php:7862 wppa-settings-autosave.php:7907
13562
  msgid "Enabled"
13563
  msgstr "Activé"
13564
 
13565
- #: wppa-settings-autosave.php:7863 wppa-settings-autosave.php:7908
13566
  msgid "Disabled"
13567
  msgstr "Désactivé"
13568
 
13569
- #: wppa-settings-autosave.php:7865 wppa-settings-autosave.php:7910
13570
  msgid "Start/Stop & Slower/Faster navigation bar"
13571
  msgstr ""
13572
 
13573
- #: wppa-settings-autosave.php:7866 wppa-settings-autosave.php:7911
13574
  msgid "The Slide Frame"
13575
  msgstr ""
13576
 
13577
- #: wppa-settings-autosave.php:7866 wppa-settings-autosave.php:7911
13578
  msgid "( Always )"
13579
  msgstr "( Toujours )"
13580
 
13581
- #: wppa-settings-autosave.php:7867
13582
  msgid "Photo Name Box"
13583
  msgstr "Boîte de nom de la photo"
13584
 
13585
- #: wppa-settings-autosave.php:7868
13586
  msgid "Photo Description Box"
13587
  msgstr ""
13588
 
13589
- #: wppa-settings-autosave.php:7869 wppa-settings-autosave.php:7913
13590
  msgid "Custom Box"
13591
  msgstr "Boîte personnalisée"
13592
 
13593
- #: wppa-settings-autosave.php:7870 wppa-settings-autosave.php:7914
13594
  msgid "Rating Bar"
13595
  msgstr "Barre de vote"
13596
 
13597
- #: wppa-settings-autosave.php:7871 wppa-settings-autosave.php:7915
13598
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13599
  msgstr ""
13600
 
13601
- #: wppa-settings-autosave.php:7872 wppa-settings-autosave.php:7916
13602
  msgid "Browse Bar with Photo X of Y counter"
13603
  msgstr ""
13604
 
13605
- #: wppa-settings-autosave.php:7873 wppa-settings-autosave.php:7917
13606
  msgid "Comments Box"
13607
  msgstr "Boîte de commentaires"
13608
 
13609
- #: wppa-settings-autosave.php:7874 wppa-settings-autosave.php:7918
13610
  msgid "IPTC box"
13611
  msgstr "Boîte IPTC"
13612
 
13613
- #: wppa-settings-autosave.php:7875 wppa-settings-autosave.php:7919
13614
  msgid "EXIF box"
13615
  msgstr "Boîte EXIF"
13616
 
13617
- #: wppa-settings-autosave.php:7876 wppa-settings-autosave.php:7920
13618
  msgid "Social media share box"
13619
  msgstr "Boîte de partage social"
13620
 
13621
- #: wppa-settings-autosave.php:7882 wppa-settings-autosave.php:7926
13622
  msgid "Move Up"
13623
  msgstr ""
13624
 
13625
- #: wppa-settings-autosave.php:7897
13626
  msgid "NameDesc"
13627
  msgstr "NomDesc"
13628
 
13629
- #: wppa-settings-autosave.php:7912
13630
  msgid "Photo Name & Description Box"
13631
  msgstr ""
13632
 
13633
- #: wppa-settings-autosave.php:7936
13634
  msgid "Swap Namedesc"
13635
  msgstr ""
13636
 
13637
- #: wppa-settings-autosave.php:7937
13638
  msgid "Swap the order sequence of name and description"
13639
  msgstr ""
13640
 
13641
- #: wppa-settings-autosave.php:7945
13642
  msgid "Split Name and Desc"
13643
  msgstr ""
13644
 
13645
- #: wppa-settings-autosave.php:7946
13646
  msgid "Put Name and Description in separate boxes"
13647
  msgstr ""
13648
 
13649
- #: wppa-settings-autosave.php:7949
13650
  msgid "Please reload this page after the green checkmark appears!"
13651
  msgstr ""
13652
 
13653
- #: wppa-settings-autosave.php:7954
13654
  msgid "Source file management and other upload/import settings and actions."
13655
  msgstr ""
13656
 
13657
- #: wppa-settings-autosave.php:7956
13658
  msgid "Keep sourcefiles admin"
13659
  msgstr ""
13660
 
13661
- #: wppa-settings-autosave.php:7957
13662
  msgid "Keep the original uploaded and imported photo files."
13663
  msgstr ""
13664
 
13665
- #: wppa-settings-autosave.php:7958 wppa-settings-autosave.php:7968
13666
  msgid ""
13667
  "The files will be kept in a separate directory with subdirectories for each "
13668
  "album"
13669
  msgstr ""
13670
 
13671
- #: wppa-settings-autosave.php:7959 wppa-settings-autosave.php:7969
13672
  msgid ""
13673
  "These files can be used to update the photos used in displaying in wppa+ and "
13674
  "optionally for downloading original, un-downsized images."
13675
  msgstr ""
13676
 
13677
- #: wppa-settings-autosave.php:7966
13678
  msgid "Keep sourcefiles frontend"
13679
  msgstr ""
13680
 
13681
- #: wppa-settings-autosave.php:7967
13682
  msgid "Keep the original frontend uploaded photo files."
13683
  msgstr "Keep the original frontend uploaded photo files."
13684
 
13685
- #: wppa-settings-autosave.php:7976
13686
  msgid "Source directory"
13687
  msgstr "Répertoire source"
13688
 
13689
- #: wppa-settings-autosave.php:7977
13690
  msgid "The path to the directory where the original photofiles will be saved."
13691
  msgstr ""
13692
 
13693
- #: wppa-settings-autosave.php:7978
13694
  msgid "You may change the directory path, but it can not be an url."
13695
  msgstr ""
13696
 
13697
- #: wppa-settings-autosave.php:7979
13698
  msgid ""
13699
  "The parent of the directory that you enter here must exist and be writable."
13700
  msgstr ""
13701
 
13702
- #: wppa-settings-autosave.php:7980
13703
  msgid "The directory itsself will be created if it does not exist yet."
13704
  msgstr ""
13705
 
13706
- #: wppa-settings-autosave.php:7987
13707
  msgid "Keep sync"
13708
  msgstr ""
13709
 
13710
- #: wppa-settings-autosave.php:7988
13711
  msgid "Keep source synchronously with wppa system."
13712
  msgstr ""
13713
 
13714
- #: wppa-settings-autosave.php:7989
13715
  msgid ""
13716
  "If checked, photos that are deleted from wppa, will also be removed from the "
13717
  "sourcefiles."
13718
  msgstr ""
13719
 
13720
- #: wppa-settings-autosave.php:7990
13721
  msgid ""
13722
  "Also, copying or moving photos to different albums, will also copy/move the "
13723
  "sourcefiles."
13724
  msgstr ""
13725
 
13726
- #: wppa-settings-autosave.php:7997
13727
  msgid "Remake add"
13728
  msgstr ""
13729
 
13730
- #: wppa-settings-autosave.php:7998
13731
  msgid "Photos will be added from the source pool"
13732
  msgstr ""
13733
 
13734
- #: wppa-settings-autosave.php:7999
13735
  msgid ""
13736
  "If checked: If photo files are found in the source directory that do not "
13737
  "exist in the corresponding album, they will be added to the album."
13738
  msgstr ""
13739
 
13740
- #: wppa-settings-autosave.php:8006
13741
  msgid "Save IPTC data"
13742
  msgstr "Sauver les données IPTC"
13743
 
13744
- #: wppa-settings-autosave.php:8007
13745
  msgid "Store the iptc data from the photo into the iptc db table"
13746
  msgstr ""
13747
 
13748
- #: wppa-settings-autosave.php:8008
13749
  msgid ""
13750
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13751
  "or if you use it in the photo descriptions."
13752
  msgstr ""
13753
 
13754
- #: wppa-settings-autosave.php:8015
13755
  msgid "Save EXIF data"
13756
  msgstr "Sauver les données EXIF"
13757
 
13758
- #: wppa-settings-autosave.php:8016
13759
  msgid "Store the exif data from the photo into the exif db table"
13760
  msgstr ""
13761
 
13762
- #: wppa-settings-autosave.php:8017
13763
  msgid ""
13764
  "You will need this if you enabled the display of exif data in Table II-B18 "
13765
  "or if you use it in the photo descriptions."
13766
  msgstr ""
13767
 
13768
- #: wppa-settings-autosave.php:8024
13769
  msgid "Max EXIF tag array size"
13770
  msgstr ""
13771
 
13772
- #: wppa-settings-autosave.php:8025
13773
  msgid "Truncate array tags to ..."
13774
  msgstr ""
13775
 
13776
- #: wppa-settings-autosave.php:8026
13777
  msgid "A value of 0 disables this feature"
13778
  msgstr ""
13779
 
13780
- #: wppa-settings-autosave.php:8028
13781
  msgid "elements"
13782
  msgstr "éléments"
13783
 
13784
- #: wppa-settings-autosave.php:8033
13785
  msgid "Import Create page"
13786
  msgstr ""
13787
 
13788
- #: wppa-settings-autosave.php:8034
13789
  msgid "Create wp page when a directory to album is imported."
13790
  msgstr ""
13791
 
13792
- #: wppa-settings-autosave.php:8035
13793
  msgid ""
13794
  "As soon as an album is created when a directory is imported, a wp page is "
13795
  "made that displays the album content."
13796
  msgstr ""
13797
 
13798
- #: wppa-settings-autosave.php:8043
13799
  msgid "Page content"
13800
  msgstr "Contenu de la page"
13801
 
13802
- #: wppa-settings-autosave.php:8044
13803
  msgid "The content of the page. Must contain <b>w#album</b>"
13804
  msgstr ""
13805
 
13806
- #: wppa-settings-autosave.php:8045
13807
  msgid ""
13808
  "The content of the page. Note: it must contain w#album. This will be "
13809
  "replaced by the album number in the generated shortcode."
13810
  msgstr ""
13811
 
13812
- #: wppa-settings-autosave.php:8053
13813
  msgid "Page type"
13814
  msgstr "Type de la page"
13815
 
13816
- #: wppa-settings-autosave.php:8054
13817
  msgid "Select the type of page to create."
13818
  msgstr ""
13819
 
13820
- #: wppa-settings-autosave.php:8058
13821
  msgid "Post"
13822
  msgstr "Article"
13823
 
13824
- #: wppa-settings-autosave.php:8065
13825
  msgid "Page status"
13826
  msgstr "Statut de la page"
13827
 
13828
- #: wppa-settings-autosave.php:8066
13829
  msgid "Select the initial status of the page."
13830
  msgstr ""
13831
 
13832
- #: wppa-settings-autosave.php:8070
13833
  msgid "Published"
13834
  msgstr "Publié"
13835
 
13836
- #: wppa-settings-autosave.php:8070
13837
  msgid "Draft"
13838
  msgstr "Brouillon"
13839
 
13840
- #: wppa-settings-autosave.php:8078
13841
  msgid "Permalink root"
13842
  msgstr ""
13843
 
13844
- #: wppa-settings-autosave.php:8079
13845
  msgid "The name of the root for the photofile ermalink structure."
13846
  msgstr ""
13847
 
13848
- #: wppa-settings-autosave.php:8080
13849
  msgid ""
13850
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
13851
  "folder inside .../wp-content/. Make sure you choose a unique name"
13852
  msgstr ""
13853
 
13854
- #: wppa-settings-autosave.php:8088
13855
  msgid "Import parent check"
13856
  msgstr ""
13857
 
13858
- #: wppa-settings-autosave.php:8089
13859
  msgid "On import dirs to albums: keep dir tree as albums."
13860
  msgstr ""
13861
 
13862
- #: wppa-settings-autosave.php:8090
13863
  msgid ""
13864
  "Untick only if all your albums have unique names. Then: additional photos "
13865
  "may be ftp'd to toplevel depot subdirs."
13866
  msgstr ""
13867
 
13868
- #: wppa-settings-autosave.php:8097
13869
  msgid "IPTC need utf8 conversion"
13870
  msgstr ""
13871
 
13872
- #: wppa-settings-autosave.php:8098
13873
  msgid "This setting converts iso to utf8 in iptc text."
13874
  msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
13875
 
13876
- #: wppa-settings-autosave.php:8099
13877
  msgid "Untick if you have funny characters in iptc data"
13878
  msgstr ""
13879
 
13880
- #: wppa-settings-autosave.php:8106
13881
  msgid "Keep dir to album files"
13882
  msgstr ""
13883
 
13884
- #: wppa-settings-autosave.php:8107
13885
  msgid "Keep imported files after dir to album import"
13886
  msgstr ""
13887
 
13888
- #: wppa-settings-autosave.php:8116
13889
  msgid "Other plugins related settings"
13890
  msgstr ""
13891
 
13892
- #: wppa-settings-autosave.php:8118
13893
  msgid "Foreign shortcodes general"
13894
  msgstr ""
13895
 
13896
- #: wppa-settings-autosave.php:8119
13897
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
13898
  msgstr ""
13899
 
13900
- #: wppa-settings-autosave.php:8127
13901
  msgid "Foreign shortcodes fullsize"
13902
  msgstr ""
13903
 
13904
- #: wppa-settings-autosave.php:8128
13905
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
13906
  msgstr ""
13907
 
13908
- #: wppa-settings-autosave.php:8129 wppa-settings-autosave.php:8140
13909
  msgid ""
13910
  "When checked, you can use shortcodes from other plugins in the description "
13911
  "of photos."
13912
  msgstr ""
13913
 
13914
- #: wppa-settings-autosave.php:8130
13915
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
13916
  msgstr ""
13917
 
13918
- #: wppa-settings-autosave.php:8131 wppa-settings-autosave.php:8142
13919
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
13920
  msgstr ""
13921
 
13922
- #: wppa-settings-autosave.php:8138
13923
  msgid "Foreign shortcodes thumbnails"
13924
  msgstr "Foreign shortcodes thumbnails"
13925
 
13926
- #: wppa-settings-autosave.php:8139
13927
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
13928
  msgstr ""
13929
 
13930
- #: wppa-settings-autosave.php:8141
13931
  msgid ""
13932
  "The shortcodes will be expanded in the descriptions of thumbnail images."
13933
  msgstr ""
13934
 
13935
- #: wppa-settings-autosave.php:8149
13936
  msgid "Lightbox keyname"
13937
  msgstr ""
13938
 
13939
- #: wppa-settings-autosave.php:8150
13940
  msgid "The identifier of lightbox."
13941
  msgstr ""
13942
 
13943
- #: wppa-settings-autosave.php:8151
13944
  msgid ""
13945
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
13946
  "lbox-id here."
13947
  msgstr ""
13948
 
13949
- #: wppa-settings-autosave.php:8158
13950
  msgid "myCRED / Cube Points: Comment"
13951
  msgstr ""
13952
 
13953
- #: wppa-settings-autosave.php:8159
13954
  msgid "Number of points for a comment"
13955
  msgstr "Nombre de points pour un commentaire"
13956
 
13957
- #: wppa-settings-autosave.php:8160 wppa-settings-autosave.php:8169
13958
- #: wppa-settings-autosave.php:8178
13959
  msgid "This setting requires the plugin myCRED or Cube Points"
13960
  msgstr ""
13961
 
13962
- #: wppa-settings-autosave.php:8162
13963
  msgid "points per comment"
13964
  msgstr "points par commentaire"
13965
 
13966
- #: wppa-settings-autosave.php:8167
13967
  msgid "myCRED / Cube Points: Rating"
13968
  msgstr ""
13969
 
13970
- #: wppa-settings-autosave.php:8168
13971
  msgid "Number of points for a rating vote"
13972
  msgstr ""
13973
 
13974
- #: wppa-settings-autosave.php:8171
13975
  msgid "points per vote"
13976
  msgstr ""
13977
 
13978
- #: wppa-settings-autosave.php:8176
13979
  msgid "myCRED / Cube Points: Upload"
13980
  msgstr ""
13981
 
13982
- #: wppa-settings-autosave.php:8177
13983
  msgid "Number of points for a successfull frontend upload"
13984
  msgstr ""
13985
 
13986
- #: wppa-settings-autosave.php:8180
13987
  msgid "points per upload"
13988
  msgstr "points par chargement"
13989
 
13990
- #: wppa-settings-autosave.php:8185
13991
  msgid "Use SCABN"
13992
  msgstr "Utilise SCABN"
13993
 
13994
- #: wppa-settings-autosave.php:8186
13995
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
13996
  msgstr ""
13997
 
13998
- #: wppa-settings-autosave.php:8187
13999
  msgid ""
14000
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
14001
  "descriptions is [cart ...]"
14002
  msgstr ""
14003
 
14004
- #: wppa-settings-autosave.php:8188
14005
  msgid ""
14006
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14007
  msgstr ""
14008
 
14009
- #: wppa-settings-autosave.php:8189
14010
  msgid "The shortcode for the check-out page is still [scabn]"
14011
  msgstr ""
14012
 
14013
- #: wppa-settings-autosave.php:8190
14014
  msgid ""
14015
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14016
  msgstr ""
14017
 
14018
- #: wppa-settings-autosave.php:8191
14019
  msgid ""
14020
  "Supplying the price should be sufficient; supply a name only when it differs "
14021
  "from the photo name."
14022
  msgstr ""
14023
 
14024
- #: wppa-settings-autosave.php:8192
14025
  msgid "This shortcode handler will also work with Ajax enabled."
14026
  msgstr ""
14027
 
14028
- #: wppa-settings-autosave.php:8193
14029
  msgid ""
14030
  "Using this interface makes sure that the item urls and callback action urls "
14031
  "are correct."
14032
  msgstr ""
14033
 
14034
- #: wppa-settings-autosave.php:8200
14035
  msgid "Use CM Tooltip Glossary"
14036
  msgstr ""
14037
 
14038
- #: wppa-settings-autosave.php:8201
14039
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14040
  msgstr ""
14041
 
14042
- #: wppa-settings-autosave.php:8202
14043
  msgid ""
14044
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14045
  "plugin to act on album and photo descriptions!"
14046
  msgstr ""
14047
 
14048
- #: wppa-settings-autosave.php:8210
14049
  msgid "External services related settings and actions."
14050
  msgstr ""
14051
 
14052
- #: wppa-settings-autosave.php:8212
14053
  msgid "QR Code widget size"
14054
  msgstr ""
14055
 
14056
- #: wppa-settings-autosave.php:8213
14057
  msgid "The size of the QR code display."
14058
  msgstr ""
14059
 
14060
- #: wppa-settings-autosave.php:8221
14061
  msgid "QR color"
14062
  msgstr "Couleur QR code"
14063
 
14064
- #: wppa-settings-autosave.php:8222
14065
  msgid "The display color of the qr code (dark)"
14066
  msgstr ""
14067
 
14068
- #: wppa-settings-autosave.php:8223
14069
  msgid "This color MUST be given in hexadecimal format!"
14070
  msgstr ""
14071
 
14072
- #: wppa-settings-autosave.php:8230
14073
  msgid "QR background color"
14074
  msgstr "Couleur de fond de QR Code"
14075
 
14076
- #: wppa-settings-autosave.php:8231
14077
  msgid "The background color of the qr code (light)"
14078
  msgstr ""
14079
 
14080
- #: wppa-settings-autosave.php:8239
14081
  msgid "CDN Service"
14082
  msgstr ""
14083
 
14084
- #: wppa-settings-autosave.php:8240
14085
  msgid "Select a CDN Service you want to use."
14086
  msgstr ""
14087
 
14088
- #: wppa-settings-autosave.php:8243
14089
  msgid "Cloudinary in maintenance mode"
14090
  msgstr ""
14091
 
14092
- #: wppa-settings-autosave.php:8253
14093
  msgid "Cloud name"
14094
  msgstr "Nom du nuage"
14095
 
14096
- #: wppa-settings-autosave.php:8262
14097
  msgid "API key"
14098
  msgstr "Clé API"
14099
 
14100
- #: wppa-settings-autosave.php:8271
14101
  msgid "API secret"
14102
  msgstr "Secret API"
14103
 
14104
- #: wppa-settings-autosave.php:8280
14105
  msgid "Delete all"
14106
  msgstr "Tout effacer"
14107
 
14108
- #: wppa-settings-autosave.php:8281
14109
  msgid "Deletes them all !!!"
14110
  msgstr ""
14111
 
14112
- #: wppa-settings-autosave.php:8289
14113
  msgid "Delete derived images"
14114
  msgstr ""
14115
 
14116
- #: wppa-settings-autosave.php:8290
14117
  msgid "Deletes all derived images !!!"
14118
  msgstr ""
14119
 
14120
- #: wppa-settings-autosave.php:8298
14121
  msgid "Max lifetime"
14122
  msgstr ""
14123
 
14124
- #: wppa-settings-autosave.php:8299
14125
  msgid "Old images from local server, new images from Cloudinary."
14126
  msgstr ""
14127
 
14128
- #: wppa-settings-autosave.php:8300
14129
  msgid ""
14130
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14131
  msgstr ""
14132
 
14133
- #: wppa-settings-autosave.php:8302
14134
  msgid "Forever"
14135
  msgstr "Infini"
14136
 
14137
- #: wppa-settings-autosave.php:8333
14138
  msgid "Cloudinary usage"
14139
  msgstr ""
14140
 
14141
- #: wppa-settings-autosave.php:8369
14142
  msgid "Cloudinary usage data not available"
14143
  msgstr "Données d'utilisation Cloudinary non disponibles"
14144
 
14145
- #: wppa-settings-autosave.php:8373
14146
  msgid "Cloudinary routines not installed."
14147
  msgstr ""
14148
 
14149
- #: wppa-settings-autosave.php:8384
14150
  msgid "Cloudinary"
14151
  msgstr "Cloudinary"
14152
 
14153
- #: wppa-settings-autosave.php:8385
14154
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14155
  msgstr ""
14156
 
14157
- #: wppa-settings-autosave.php:8394
14158
  msgid "GPX Implementation"
14159
  msgstr "Implémentation GPX"
14160
 
14161
- #: wppa-settings-autosave.php:8395
14162
  msgid "The way the maps are produced."
14163
  msgstr ""
14164
 
14165
- #: wppa-settings-autosave.php:8396
14166
  msgid "Select the way the maps are produced."
14167
  msgstr ""
14168
 
14169
- #: wppa-settings-autosave.php:8397
14170
  msgid ""
14171
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14172
  msgstr ""
14173
 
14174
- #: wppa-settings-autosave.php:8398
14175
  msgid ""
14176
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14177
  "options."
14178
  msgstr ""
14179
 
14180
- #: wppa-settings-autosave.php:8400
14181
  msgid "WPPA+ Embedded code"
14182
  msgstr ""
14183
 
14184
- #: wppa-settings-autosave.php:8400
14185
  msgid "Google maps GPX viewer plugin"
14186
  msgstr ""
14187
 
14188
- #: wppa-settings-autosave.php:8408
14189
  msgid "Map height"
14190
  msgstr ""
14191
 
14192
- #: wppa-settings-autosave.php:8409
14193
  msgid "The height of the map display."
14194
  msgstr ""
14195
 
14196
- #: wppa-settings-autosave.php:8417
14197
  msgid "Google maps API key"
14198
  msgstr ""
14199
 
14200
- #: wppa-settings-autosave.php:8418
14201
  msgid "Enter your Google maps api key here if you have one."
14202
  msgstr ""
14203
 
14204
- #: wppa-settings-autosave.php:8426
14205
  msgid "GPX Shortcode"
14206
  msgstr ""
14207
 
14208
- #: wppa-settings-autosave.php:8427
14209
  msgid "The shortcode to be used for the gpx feature."
14210
  msgstr ""
14211
 
14212
- #: wppa-settings-autosave.php:8428
14213
  msgid ""
14214
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14215
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14216
  msgstr ""
14217
 
14218
- #: wppa-settings-autosave.php:8429
14219
  msgid "This item is required for using Google maps GPX viewer plugin only"
14220
  msgstr ""
14221
 
14222
- #: wppa-settings-autosave.php:8436
14223
  msgid "Fotomoto"
14224
  msgstr ""
14225
 
14226
- #: wppa-settings-autosave.php:8437
14227
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14228
  msgstr ""
14229
 
14230
- #: wppa-settings-autosave.php:8438
14231
  msgid "In order to function properly:"
14232
  msgstr ""
14233
 
14234
- #: wppa-settings-autosave.php:8439
14235
  msgid "1. Get yourself a Fotomoto account."
14236
  msgstr ""
14237
 
14238
- #: wppa-settings-autosave.php:8440
14239
  msgid ""
14240
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14241
  "the \"Use API Mode:\" checkbox."
14242
  msgstr ""
14243
 
14244
- #: wppa-settings-autosave.php:8441
14245
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14246
  msgstr ""
14247
 
14248
- #: wppa-settings-autosave.php:8442
14249
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14250
  msgstr ""
14251
 
14252
- #: wppa-settings-autosave.php:8450
14253
  msgid "Fotomoto fontsize"
14254
  msgstr ""
14255
 
14256
- #: wppa-settings-autosave.php:8451
14257
  msgid "Fontsize for the Fotomoto toolbar."
14258
  msgstr ""
14259
 
14260
- #: wppa-settings-autosave.php:8452
14261
  msgid ""
14262
  "If you set it here, it overrules a possible setting for font-size in ."
14263
  "FotomotoToolbarClass on the Fotomoto dashboard."
14264
  msgstr ""
14265
 
14266
- #: wppa-settings-autosave.php:8460
14267
  msgid "Hide toolbar on running slideshows"
14268
  msgstr ""
14269
 
14270
- #: wppa-settings-autosave.php:8461
14271
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14272
  msgstr ""
14273
 
14274
- #: wppa-settings-autosave.php:8468
14275
  msgid "Fotomoto minwidth"
14276
  msgstr ""
14277
 
14278
- #: wppa-settings-autosave.php:8469
14279
  msgid "Minimum width to display Fotomoto toolbar."
14280
  msgstr ""
14281
 
14282
- #: wppa-settings-autosave.php:8470
14283
  msgid ""
14284
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14285
  msgstr ""
14286
 
14287
- #: wppa-settings-autosave.php:8495
14288
  msgid "Table X:"
14289
  msgstr ""
14290
 
14291
- #: wppa-settings-autosave.php:8495
14292
  msgid "IPTC Configuration:"
14293
  msgstr ""
14294
 
14295
- #: wppa-settings-autosave.php:8496
14296
  msgid "This table defines the IPTC configuration"
14297
  msgstr ""
14298
 
14299
- #: wppa-settings-autosave.php:8527 wppa-settings-autosave.php:8595
14300
  msgid "Display"
14301
  msgstr "Afficher"
14302
 
14303
- #: wppa-settings-autosave.php:8527 wppa-settings-autosave.php:8595
14304
  msgid "Hide"
14305
  msgstr "Cacher"
14306
 
14307
- #: wppa-settings-autosave.php:8527 wppa-settings-autosave.php:8595
14308
  msgid "Optional"
14309
  msgstr "Optionnel"
14310
 
14311
- #: wppa-settings-autosave.php:8557
14312
  msgid "Table XI:"
14313
  msgstr ""
14314
 
14315
- #: wppa-settings-autosave.php:8557
14316
  msgid "EXIF Configuration:"
14317
  msgstr "Configuration EXIF:"
14318
 
14319
- #: wppa-settings-autosave.php:8558
14320
  msgid "This table defines the EXIF configuration"
14321
  msgstr ""
14322
 
14323
- #: wppa-settings-autosave.php:8581
14324
  msgid ""
14325
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14326
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14327
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14328
  msgstr ""
14329
 
14330
- #: wppa-settings-autosave.php:8625
14331
  msgid "Table XII:"
14332
  msgstr ""
14333
 
14334
- #: wppa-settings-autosave.php:8625
14335
  msgid "WPPA+ and PHP Configuration:"
14336
  msgstr "Configuration WPPA+ et PHP:"
14337
 
14338
- #: wppa-settings-autosave.php:8626
14339
  msgid ""
14340
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14341
  "and is read only"
14342
  msgstr ""
14343
 
14344
- #: wppa-settings-autosave.php:8641
14345
  msgid "Value"
14346
  msgstr "Valeur"
14347
 
14348
- #: wppa-settings-autosave.php:8646
14349
  msgid "Albums db table name."
14350
  msgstr ""
14351
 
14352
- #: wppa-settings-autosave.php:8651
14353
  msgid "Photos db table name."
14354
  msgstr "Nom de la table photos dans la base de données."
14355
 
14356
- #: wppa-settings-autosave.php:8656
14357
  msgid "Rating db table name."
14358
  msgstr ""
14359
 
14360
- #: wppa-settings-autosave.php:8661
14361
  msgid "Comments db table name."
14362
  msgstr ""
14363
 
14364
- #: wppa-settings-autosave.php:8666
14365
  msgid "IPTC db table name."
14366
  msgstr "Nom de la table IPTC dans la base de donnée."
14367
 
14368
- #: wppa-settings-autosave.php:8671
14369
  msgid "EXIF db table name."
14370
  msgstr "Nom de la table EXIF dans la base de donnée."
14371
 
14372
- #: wppa-settings-autosave.php:8676
14373
  msgid "Index db table name."
14374
  msgstr "Nom de la table Index dans la base de donnée."
14375
 
14376
- #: wppa-settings-autosave.php:8681
14377
  msgid "Plugins main file name."
14378
  msgstr ""
14379
 
14380
- #: wppa-settings-autosave.php:8686
14381
  msgid "ABSPATH windows proof"
14382
  msgstr ""
14383
 
14384
- #: wppa-settings-autosave.php:8691
14385
  msgid "Path to plugins directory."
14386
  msgstr ""
14387
 
14388
- #: wppa-settings-autosave.php:8696
14389
  msgid "Plugins directory name."
14390
  msgstr ""
14391
 
14392
- #: wppa-settings-autosave.php:8701
14393
  msgid "Plugins directory url."
14394
  msgstr ""
14395
 
14396
- #: wppa-settings-autosave.php:8706
14397
  msgid "The relative upload directory."
14398
  msgstr ""
14399
 
14400
- #: wppa-settings-autosave.php:8711
14401
  msgid "The upload directory path."
14402
  msgstr ""
14403
 
14404
- #: wppa-settings-autosave.php:8716
14405
  msgid "The upload directory url."
14406
  msgstr ""
14407
 
14408
- #: wppa-settings-autosave.php:8721
14409
  msgid "The relative depot directory."
14410
  msgstr ""
14411
 
14412
- #: wppa-settings-autosave.php:8726
14413
  msgid "The depot directory path."
14414
  msgstr ""
14415
 
14416
- #: wppa-settings-autosave.php:8731
14417
  msgid "The depot directory url."
14418
  msgstr ""
14419
 
14420
- #: wppa-settings-autosave.php:8736
14421
  msgid "The path to wp-content."
14422
  msgstr ""
14423
 
14424
- #: wppa-settings-autosave.php:8741
14425
  msgid "WP Base upload dir."
14426
  msgstr ""
14427
 
14428
- #: wppa-settings-autosave.php:8747
14429
  msgid "WP Content url."
14430
  msgstr ""
14431
 
14432
- #: wppa-settings-autosave.php:8764
14433
  #, php-format
14434
  msgid "<br />Memory used on this page: %6.2f Mb."
14435
  msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
14436
 
14437
- #: wppa-settings-autosave.php:8765
14438
  #, php-format
14439
  msgid "<br />There are %d settings and %d runtime parameters."
14440
  msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
14441
 
14442
- #: wppa-settings-autosave.php:8842
14443
  msgid "The default for this setting is:"
14444
  msgstr ""
14445
 
14446
- #: wppa-settings-autosave.php:8851
14447
  msgid "Click for help"
14448
  msgstr "Cliquer pour l'aide"
14449
 
14450
- #: wppa-settings-autosave.php:8895 wppa-settings-autosave.php:8913
14451
- #: wppa-settings-autosave.php:8942 wppa-settings-autosave.php:8965
14452
- #: wppa-settings-autosave.php:8995 wppa-settings-autosave.php:9022
14453
- #: wppa-settings-autosave.php:9048 wppa-settings-autosave.php:9096
14454
  msgid "Slug ="
14455
  msgstr "Slug ="
14456
 
14457
- #: wppa-settings-autosave.php:8965 wppa-settings-autosave.php:8995
14458
- #: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9048
14459
  msgid "Values = yes, no"
14460
  msgstr "Valeurs=oui,non"
14461
 
14462
- #: wppa-settings-autosave.php:8994 wppa-settings-autosave.php:9020
14463
- #: wppa-settings-autosave.php:9047
14464
  msgid "Warning!"
14465
  msgstr "Attention!"
14466
 
14467
- #: wppa-settings-autosave.php:9021 wppa-settings-autosave.php:9047
14468
  msgid "Please read the help"
14469
  msgstr "Veuillez consulter l'aide"
14470
 
14471
- #: wppa-settings-autosave.php:9096
14472
  msgid "Values = "
14473
  msgstr "Values = "
14474
 
14475
- #: wppa-settings-autosave.php:9171
14476
  msgid "Checked"
14477
  msgstr "Coché"
14478
 
14479
- #: wppa-settings-autosave.php:9172
14480
  msgid "Unchecked"
14481
  msgstr "Décoché"
14482
 
14483
- #: wppa-settings-autosave.php:9177
14484
  msgid "the photo specific link."
14485
  msgstr ""
14486
 
14487
- #: wppa-settings-autosave.php:9209
14488
  msgid "Show!"
14489
  msgstr "Montrer!"
14490
 
14491
- #: wppa-settings-autosave.php:9229
14492
  msgid "Not done yet"
14493
  msgstr "Pas encore fait"
14494
 
14495
- #: wppa-settings-autosave.php:9236
14496
  msgid "Start!"
14497
  msgstr "Démarrer!"
14498
 
14499
- #: wppa-settings-autosave.php:9241
14500
  msgid "Locked!"
14501
  msgstr "Verrouillé!"
14502
 
14503
- #: wppa-settings-autosave.php:9272
14504
  msgid ""
14505
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14506
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14507
  msgstr ""
14508
 
14509
- #: wppa-settings-autosave.php:9275
14510
  #, php-format
14511
  msgid ""
14512
  "It is important that you select a page that contains at least %%wppa%% or "
14513
  "[wppa][/wppa]."
14514
  msgstr ""
14515
 
14516
- #: wppa-settings-autosave.php:9276
14517
  msgid ""
14518
  "If you ommit this, the link will not work at all or simply refresh the "
14519
  "(home)page."
@@ -14566,118 +14585,118 @@ msgstr "Choisir les tags:"
14566
  msgid "Enter new tags:"
14567
  msgstr "Entrez les nouveaux tags:"
14568
 
14569
- #: wppa-setup.php:970
14570
  msgid "Vote for me!"
14571
  msgstr "Votez pour moi !"
14572
 
14573
- #: wppa-setup.php:971
14574
  msgid "Voted for me"
14575
  msgstr "Ont voté pour moi"
14576
 
14577
- #: wppa-setup.php:1293
14578
  msgid "NEW"
14579
  msgstr "NOUVEAU"
14580
 
14581
- #: wppa-setup.php:1295
14582
  msgid "MODIFIED"
14583
  msgstr "MODIFIE"
14584
 
14585
- #: wppa-setup.php:1344
14586
  msgid "Search in current section"
14587
  msgstr "Rechercher dans la section courante"
14588
 
14589
- #: wppa-setup.php:1345
14590
  msgid "Search in current results"
14591
  msgstr "Rechercher dans les résultats courants"
14592
 
14593
- #: wppa-setup.php:1414
14594
  msgid "Type your custom url here"
14595
  msgstr "Tapez votre URL personnalisée ici"
14596
 
14597
- #: wppa-setup.php:1415
14598
  msgid "Type the title here"
14599
  msgstr "Entrez ici le titre de la page"
14600
 
14601
- #: wppa-setup.php:1427 wppa-topten-widget.php:13 wppa-topten-widget.php:47
14602
  #: wppa-topten-widget.php:247
14603
  msgid "Top Ten Photos"
14604
  msgstr "Meilleures photos"
14605
 
14606
- #: wppa-setup.php:1430 wppa-thumbnail-widget.php:13
14607
  #: wppa-thumbnail-widget.php:166
14608
  msgid "Thumbnail Photos"
14609
  msgstr "Vignettes"
14610
 
14611
- #: wppa-setup.php:1433
14612
  msgid "Search photos"
14613
  msgstr "Rechercher dans les photos"
14614
 
14615
- #: wppa-setup.php:1476
14616
  msgid ""
14617
  "The uploads directory does not exist, please do a regular WP upload first."
14618
  msgstr ""
14619
 
14620
- #: wppa-setup.php:1480
14621
  msgid "Successfully created uploads directory."
14622
  msgstr ""
14623
 
14624
- #: wppa-setup.php:1491
14625
  msgid "Could not create the wppa directory."
14626
  msgstr "Impossible de créer le répertoire WPPA."
14627
 
14628
- #: wppa-setup.php:1495
14629
  msgid "Successfully created wppa directory."
14630
  msgstr ""
14631
 
14632
- #: wppa-setup.php:1505
14633
  msgid "Could not create the wppa thumbs directory."
14634
  msgstr "Impossible de créer le répertoire de vignettes WPPA."
14635
 
14636
- #: wppa-setup.php:1509
14637
  msgid "Successfully created wppa thumbs directory."
14638
  msgstr ""
14639
 
14640
- #: wppa-setup.php:1519
14641
  msgid "Could not create the wppa watermarks directory."
14642
  msgstr ""
14643
 
14644
- #: wppa-setup.php:1523
14645
  msgid "Successfully created wppa watermarks directory."
14646
  msgstr ""
14647
 
14648
- #: wppa-setup.php:1533
14649
  msgid "Could not create the wppa fonts directory."
14650
  msgstr ""
14651
 
14652
- #: wppa-setup.php:1537
14653
  msgid "Successfully created wppa fonts directory."
14654
  msgstr ""
14655
 
14656
- #: wppa-setup.php:1549
14657
  msgid "Unable to create depot directory."
14658
  msgstr ""
14659
 
14660
- #: wppa-setup.php:1553
14661
  msgid "Successfully created wppa depot directory."
14662
  msgstr ""
14663
 
14664
- #: wppa-setup.php:1564
14665
  msgid "Unable to create user depot directory"
14666
  msgstr ""
14667
 
14668
- #: wppa-setup.php:1568
14669
  msgid "Successfully created wppa user depot directory."
14670
  msgstr ""
14671
 
14672
- #: wppa-setup.php:1578
14673
  msgid "Unable to create temp directory"
14674
  msgstr ""
14675
 
14676
- #: wppa-setup.php:1582
14677
  msgid "Successfully created temp directory."
14678
  msgstr ""
14679
 
14680
- #: wppa-setup.php:1590
14681
  #, php-format
14682
  msgid ""
14683
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
@@ -14791,86 +14810,86 @@ msgid ""
14791
  "To see the full size images, you need to enable javascript in your browser."
14792
  msgstr "Vous devez activer Javascript pour voir les images pleine grandeur."
14793
 
14794
- #: wppa-slideshow.php:600
14795
  msgid "Checkout"
14796
  msgstr "Checkout"
14797
 
14798
- #: wppa-slideshow.php:660
14799
  #, php-format
14800
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14801
  msgstr "Nombre de votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14802
 
14803
- #: wppa-slideshow.php:676 wppa-slideshow.php:819 wppa-slideshow.php:881
14804
  #, php-format
14805
  msgid "You must <a href=\"%s\">login</a> to vote"
14806
  msgstr "Vous devez vous <a href=\"%s\">connecter</a> pour voter"
14807
 
14808
- #: wppa-slideshow.php:679 wppa-slideshow.php:822 wppa-slideshow.php:884
14809
  msgid "You must login to vote"
14810
  msgstr "Se connecter pour voter"
14811
 
14812
- #: wppa-slideshow.php:715
14813
  msgid "very low"
14814
  msgstr "très basse"
14815
 
14816
- #: wppa-slideshow.php:716
14817
  msgid "low"
14818
  msgstr "basse"
14819
 
14820
- #: wppa-slideshow.php:717
14821
  msgid "average"
14822
  msgstr "moyenne"
14823
 
14824
- #: wppa-slideshow.php:718
14825
  msgid "high"
14826
  msgstr "haute"
14827
 
14828
- #: wppa-slideshow.php:719
14829
  msgid "very high"
14830
  msgstr "très haute"
14831
 
14832
- #: wppa-slideshow.php:766 wppa-slideshow.php:852
14833
  msgid "Click this if you do NOT like this image!"
14834
  msgstr "Cliquez ici si vous N'aimez PAS cette image !"
14835
 
14836
- #: wppa-slideshow.php:774 wppa-slideshow.php:860
14837
  msgid "Are you sure you want to mark this image as inappropriate?"
14838
  msgstr "Etes-vous sûr de vouloir marquer cette image comme inappropriée ?"
14839
 
14840
- #: wppa-slideshow.php:782 wppa-slideshow.php:869
14841
  msgid "Number of people who marked this photo as inappropriate"
14842
  msgstr "Nombre de personnes qui ont marqué cette photo comme inappropriée"
14843
 
14844
- #: wppa-slideshow.php:876
14845
  msgid "My rating:"
14846
  msgstr "Mon vote:"
14847
 
14848
- #: wppa-slideshow.php:968
14849
  msgid "First"
14850
  msgstr "Premier"
14851
 
14852
- #: wppa-slideshow.php:999
14853
  msgid "Last"
14854
  msgstr "Dernier"
14855
 
14856
- #: wppa-slideshow.php:1201
14857
  #, php-format
14858
  msgid "Photo %s of %s"
14859
  msgstr "Photo %s de %s"
14860
 
14861
- #: wppa-slideshow.php:1253
14862
  msgid "Click to start/stop"
14863
  msgstr "Cliquer pour lancer/arrêter"
14864
 
14865
- #: wppa-slideshow.php:1265
14866
  msgid "- - - Comments box activated - - -"
14867
  msgstr "- - - Boîte de commentaires activée - - -"
14868
 
14869
- #: wppa-slideshow.php:1289
14870
  msgid "- - - IPTC box activated - - -"
14871
  msgstr "- - - Boîte IPTC activée - - -"
14872
 
14873
- #: wppa-slideshow.php:1313
14874
  msgid "- - - EXIF box activated - - -"
14875
  msgstr "- - - Boîte EXIF activée - - -"
14876
 
@@ -16483,27 +16502,27 @@ msgstr "Sélectionner le contenu du sous titre."
16483
  msgid "There are too many photos in the selection to show a preview ( %d )"
16484
  msgstr ""
16485
 
16486
- #: wppa-widget-functions.php:151
16487
  msgid "- select (another) album or a set -"
16488
  msgstr "- Sélectionner album ou set -"
16489
 
16490
- #: wppa-widget-functions.php:186
16491
  msgid "- all albums -"
16492
  msgstr "- tous les albums -"
16493
 
16494
- #: wppa-widget-functions.php:188
16495
  msgid "- all -separate- albums -"
16496
  msgstr "- tous les albums -séparés --"
16497
 
16498
- #: wppa-widget-functions.php:190
16499
  msgid "- all albums except -separate-"
16500
  msgstr "- tous les albums excepté -séparés--"
16501
 
16502
- #: wppa-widget-functions.php:192
16503
  msgid "- top rated photos -"
16504
  msgstr "- photos les mieux notées -"
16505
 
16506
- #: wppa-widget-functions.php:193
16507
  msgid "- start over -"
16508
  msgstr "- repartir de zéro -"
16509
 
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-13 11:50+0100\n"
6
+ "PO-Revision-Date: 2016-01-13 11:52+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: French <kde-i18n-doc@kde.org>\n"
9
  "Language: fr_FR\n"
43
  msgstr "Attention. Aucune page définie pour les résultats de recherche!"
44
 
45
  #: theme/photo-album-search-page.php:39 wppa-boxes-html.php:168
46
+ #: wppa-settings-autosave.php:396 wppa-settings-autosave.php:3144
47
  msgid "Search"
48
  msgstr "Chercher"
49
 
231
  msgid "Photo&thinsp;Albums"
232
  msgstr "Albums&thinsp;Photo"
233
 
234
+ #: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:5674
235
  msgid "Album Admin"
236
  msgstr "Administration de l'album"
237
 
238
+ #: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:5675
239
  #: wppa-upload-widget.php:71 wppa-upload.php:88
240
  msgid "Upload Photos"
241
  msgstr "Charger des photos"
244
  msgid "Edit Photos"
245
  msgstr "Modifier les photos"
246
 
247
+ #: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:5676
248
  #: wppa-upload.php:459
249
  msgid "Import Photos"
250
  msgstr "Importer des photos"
254
  msgstr "Modérez les photos"
255
 
256
  #: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
257
+ #: wppa-settings-autosave.php:5678
258
  msgid "Export Photos"
259
  msgstr "Exporter des photos"
260
 
261
  #: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:215
262
+ #: wppa-settings-autosave.php:5679
263
  msgid "Settings"
264
  msgstr "Réglages"
265
 
268
  msgstr "Widget \"Photo du jour\""
269
 
270
  #: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
271
+ #: wppa-settings-autosave.php:5680 wppa-setup.php:1415
272
  msgid "Photo of the day"
273
  msgstr "Photo du jour"
274
 
277
  msgstr "Gérer les commentaires"
278
 
279
  #: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:386
280
+ #: wppa-settings-autosave.php:2973 wppa-settings-autosave.php:7866
281
+ #: wppa-settings-autosave.php:7911
282
  msgid "Comments"
283
  msgstr "Commentaires"
284
 
302
  msgid "Import"
303
  msgstr "Importer"
304
 
305
+ #: wppa-admin.php:122 wppa-settings-autosave.php:8955
306
  msgid "Update"
307
  msgstr "Mettre à jour"
308
 
309
+ #: wppa-adminbar.php:103 wppa-settings-autosave.php:5682
310
  msgid "Help & Info"
311
  msgstr "Aide & Information"
312
 
524
  #: wppa-photo-admin-autosave.php:1453 wppa-settings-autosave.php:452
525
  #: wppa-settings-autosave.php:614 wppa-settings-autosave.php:636
526
  #: wppa-settings-autosave.php:1355 wppa-settings-autosave.php:1376
527
+ #: wppa-settings-autosave.php:2870 wppa-settings-autosave.php:2891
528
+ #: wppa-settings-autosave.php:3202 wppa-settings-autosave.php:3226
529
+ #: wppa-settings-autosave.php:3695 wppa-settings-autosave.php:3809
530
+ #: wppa-settings-autosave.php:4377 wppa-settings-autosave.php:4398
531
+ #: wppa-settings-autosave.php:4574 wppa-settings-autosave.php:4598
532
+ #: wppa-settings-autosave.php:5640 wppa-settings-autosave.php:6162
533
+ #: wppa-settings-autosave.php:6184 wppa-settings-autosave.php:6764
534
+ #: wppa-settings-autosave.php:6788 wppa-settings-autosave.php:7860
535
+ #: wppa-settings-autosave.php:8492 wppa-settings-autosave.php:8648
536
  #: wppa-thumbnail-widget.php:202 wppa-upload.php:166
537
  msgid "Name"
538
  msgstr "Nom"
543
  #: wppa-photo-admin-autosave.php:1454 wppa-settings-autosave.php:453
544
  #: wppa-settings-autosave.php:615 wppa-settings-autosave.php:637
545
  #: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:1377
546
+ #: wppa-settings-autosave.php:2871 wppa-settings-autosave.php:2892
547
+ #: wppa-settings-autosave.php:3203 wppa-settings-autosave.php:3227
548
+ #: wppa-settings-autosave.php:4378 wppa-settings-autosave.php:4399
549
+ #: wppa-settings-autosave.php:4575 wppa-settings-autosave.php:4599
550
+ #: wppa-settings-autosave.php:5641 wppa-settings-autosave.php:6163
551
+ #: wppa-settings-autosave.php:6185 wppa-settings-autosave.php:6765
552
+ #: wppa-settings-autosave.php:6789 wppa-settings-autosave.php:8493
553
+ #: wppa-settings-autosave.php:8515 wppa-settings-autosave.php:8555
554
+ #: wppa-settings-autosave.php:8577 wppa-settings-autosave.php:8623
555
+ #: wppa-settings-autosave.php:8649 wppa-widget-admin.php:256
556
  msgid "Description"
557
  msgstr "Description"
558
 
572
  msgid "Parent album"
573
  msgstr "Album Parent"
574
 
575
+ #: wppa-ajax.php:847 wppa-settings-autosave.php:3689
576
  msgid "Photo order"
577
  msgstr "Ordre des photos"
578
 
584
  msgid "Cover Type"
585
  msgstr "Type de couverture"
586
 
587
+ #: wppa-ajax.php:856 wppa-settings-autosave.php:4600
588
+ #: wppa-settings-autosave.php:5642
589
  msgid "Link type"
590
  msgstr "Type de lien"
591
 
733
  msgstr "Impossible de recréer les vignette"
734
 
735
  #: wppa-ajax.php:1136 wppa-photo-admin-autosave.php:183
736
+ #: wppa-settings-autosave.php:3505 wppa-tinymce-scripts.php:288
737
  #: wppa-tinymce-shortcodes.php:514 wppa-widget-admin.php:84
738
  msgid "left"
739
  msgstr "gauche"
743
  msgstr "180&deg;"
744
 
745
  #: wppa-ajax.php:1144 wppa-photo-admin-autosave.php:187
746
+ #: wppa-settings-autosave.php:3505 wppa-tinymce-scripts.php:290
747
  #: wppa-tinymce-shortcodes.php:516 wppa-widget-admin.php:86
748
  msgid "right"
749
  msgstr "droite"
816
 
817
  #: wppa-ajax.php:1266 wppa-comment-admin.php:309 wppa-comment-admin.php:396
818
  #: wppa-photo-admin-autosave.php:1336 wppa-photo-admin-autosave.php:1455
819
+ #: wppa-settings-autosave.php:6188 wppa-settings-autosave.php:6768
820
+ #: wppa-settings-autosave.php:8516 wppa-settings-autosave.php:8556
821
+ #: wppa-settings-autosave.php:8578 wppa-settings-autosave.php:8624
822
  msgid "Status"
823
  msgstr "Statut"
824
 
1016
  msgid "Number of text lines"
1017
  msgstr ""
1018
 
1019
+ #: wppa-ajax.php:1636 wppa-settings-autosave.php:4276
1020
  msgid "Overlay opacity"
1021
  msgstr ""
1022
 
1023
+ #: wppa-ajax.php:1639 wppa-settings-autosave.php:7319
1024
  msgid "Upload limit"
1025
  msgstr "Limite d'upload"
1026
 
1027
+ #: wppa-ajax.php:1642 wppa-settings-autosave.php:3984
1028
  msgid "Notify inappropriate"
1029
  msgstr ""
1030
 
1036
  msgid "Dislike delete"
1037
  msgstr "Effacer les avis négatifs"
1038
 
1039
+ #: wppa-ajax.php:1651 wppa-settings-autosave.php:6864
1040
  msgid "Max execution time"
1041
  msgstr ""
1042
 
1048
  msgid "JPG Image quality"
1049
  msgstr ""
1050
 
1051
+ #: wppa-ajax.php:1665 wppa-settings-autosave.php:3898
1052
  msgid "Number of coverphotos"
1053
  msgstr "Nombre de photos de couverture"
1054
 
1055
+ #: wppa-ajax.php:1668 wppa-settings-autosave.php:3955
1056
  msgid "Dislike value"
1057
  msgstr ""
1058
 
1064
  msgid "Max Pagelinks"
1065
  msgstr "Nb max. de liens de page"
1066
 
1067
+ #: wppa-ajax.php:1677 wppa-settings-autosave.php:2809
1068
  msgid "Start/pause symbol size"
1069
  msgstr ""
1070
 
1071
+ #: wppa-ajax.php:1680 wppa-settings-autosave.php:2818
1072
  msgid "Start/pause symbol border radius"
1073
  msgstr ""
1074
 
1075
+ #: wppa-ajax.php:1683 wppa-settings-autosave.php:2827
1076
  msgid "Stop symbol size"
1077
  msgstr ""
1078
 
1079
+ #: wppa-ajax.php:1686 wppa-settings-autosave.php:2836
1080
  msgid "Stop symbol border radius"
1081
  msgstr ""
1082
 
1268
  msgstr "Haut de page"
1269
 
1270
  #: wppa-album-admin-autosave.php:114 wppa-functions.php:3890
1271
+ #: wppa-settings-autosave.php:7176 wppa-wpdb-insert.php:329
1272
  msgid "New Album"
1273
  msgstr "Nouvel album"
1274
 
1407
  msgstr "Ordre des photos:"
1408
 
1409
  #: wppa-album-admin-autosave.php:350 wppa-album-admin-autosave.php:451
1410
+ #: wppa-settings-autosave.php:3732 wppa-settings-autosave.php:3756
1411
  msgid "--- default ---"
1412
  msgstr "--- défaut ---"
1413
 
1414
  #: wppa-album-admin-autosave.php:351 wppa-album-admin-autosave.php:407
1415
+ #: wppa-settings-autosave.php:3694 wppa-settings-autosave.php:3808
1416
  #: wppa-thumbnail-widget.php:201
1417
  msgid "Order #"
1418
  msgstr "Order #"
1419
 
1420
  #: wppa-album-admin-autosave.php:353 wppa-album-admin-autosave.php:406
1421
+ #: wppa-settings-autosave.php:3696 wppa-settings-autosave.php:3810
1422
  #: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:149
1423
  msgid "Random"
1424
  msgstr "Aléatoire"
1425
 
1426
+ #: wppa-album-admin-autosave.php:354 wppa-settings-autosave.php:3697
1427
  msgid "Rating mean value"
1428
  msgstr ""
1429
 
1430
  #: wppa-album-admin-autosave.php:355 wppa-bestof-widget.php:170
1431
+ #: wppa-settings-autosave.php:3698 wppa-topten-widget.php:292
1432
  msgid "Number of votes"
1433
  msgstr ""
1434
 
1435
  #: wppa-album-admin-autosave.php:356 wppa-album-admin-autosave.php:411
1436
+ #: wppa-settings-autosave.php:3699 wppa-settings-autosave.php:3811
1437
  msgid "Timestamp"
1438
  msgstr "Timstamp"
1439
 
1440
  #: wppa-album-admin-autosave.php:357 wppa-photo-admin-autosave.php:291
1441
+ #: wppa-settings-autosave.php:3700
1442
  msgid "EXIF Date"
1443
  msgstr "Date EXIF"
1444
 
1445
+ #: wppa-album-admin-autosave.php:358 wppa-settings-autosave.php:3701
1446
+ #: wppa-settings-autosave.php:3812
1447
  msgid "Order # desc"
1448
  msgstr "Ordre # desc"
1449
 
1450
+ #: wppa-album-admin-autosave.php:359 wppa-settings-autosave.php:3702
1451
+ #: wppa-settings-autosave.php:3813
1452
  msgid "Name desc"
1453
  msgstr "Nom desc"
1454
 
1455
+ #: wppa-album-admin-autosave.php:360 wppa-settings-autosave.php:3703
1456
  #: wppa-thumbnail-widget.php:204
1457
  msgid "Rating mean value desc"
1458
  msgstr ""
1459
 
1460
+ #: wppa-album-admin-autosave.php:361 wppa-settings-autosave.php:3704
1461
  #: wppa-thumbnail-widget.php:205
1462
  msgid "Number of votes desc"
1463
  msgstr ""
1464
 
1465
+ #: wppa-album-admin-autosave.php:362 wppa-settings-autosave.php:3705
1466
+ #: wppa-settings-autosave.php:3814 wppa-thumbnail-widget.php:206
1467
  msgid "Timestamp desc"
1468
  msgstr ""
1469
 
1470
+ #: wppa-album-admin-autosave.php:363 wppa-settings-autosave.php:3706
1471
  msgid "EXIF Date desc"
1472
  msgstr ""
1473
 
1539
  msgstr "Type de couverture:"
1540
 
1541
  #: wppa-album-admin-autosave.php:452 wppa-settings-autosave.php:1915
1542
+ #: wppa-settings-autosave.php:3878
1543
  msgid "Standard"
1544
  msgstr "Standard"
1545
 
1546
+ #: wppa-album-admin-autosave.php:453 wppa-settings-autosave.php:3879
1547
  msgid "Long Descriptions"
1548
  msgstr "Description longues"
1549
 
1550
+ #: wppa-album-admin-autosave.php:454 wppa-settings-autosave.php:3880
1551
  msgid "Image Factory"
1552
  msgstr ""
1553
 
1554
+ #: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:3881
1555
  msgid "Standard mcr"
1556
  msgstr ""
1557
 
1558
+ #: wppa-album-admin-autosave.php:456 wppa-settings-autosave.php:3882
1559
  msgid "Long Descriptions mcr"
1560
  msgstr ""
1561
 
1562
+ #: wppa-album-admin-autosave.php:457 wppa-settings-autosave.php:3883
1563
  msgid "Image Factory mcr"
1564
  msgstr ""
1565
 
1587
  msgid "Upload limit:"
1588
  msgstr "Limite d'upload:"
1589
 
1590
+ #: wppa-album-admin-autosave.php:499 wppa-settings-autosave.php:5767
1591
+ #: wppa-settings-autosave.php:7326
1592
  msgid "for ever"
1593
  msgstr "illimité"
1594
 
1595
  #: wppa-album-admin-autosave.php:500 wppa-album-admin-autosave.php:517
1596
+ #: wppa-settings-autosave.php:5768 wppa-settings-autosave.php:7327
1597
  msgid "per hour"
1598
  msgstr "par heure"
1599
 
1600
  #: wppa-album-admin-autosave.php:501 wppa-album-admin-autosave.php:518
1601
+ #: wppa-settings-autosave.php:5769 wppa-settings-autosave.php:7328
1602
  msgid "per day"
1603
  msgstr "par jour"
1604
 
1605
  #: wppa-album-admin-autosave.php:502 wppa-album-admin-autosave.php:519
1606
+ #: wppa-settings-autosave.php:5770 wppa-settings-autosave.php:7329
1607
  msgid "per week"
1608
  msgstr "par semaine"
1609
 
1610
  #: wppa-album-admin-autosave.php:503 wppa-album-admin-autosave.php:520
1611
+ #: wppa-settings-autosave.php:5771 wppa-settings-autosave.php:7330
1612
  msgid "per month"
1613
  msgstr "par mois"
1614
 
1615
  #: wppa-album-admin-autosave.php:504 wppa-album-admin-autosave.php:521
1616
+ #: wppa-settings-autosave.php:5772 wppa-settings-autosave.php:7331
1617
  msgid "per year"
1618
  msgstr "par an"
1619
 
1692
  msgid "Link type:"
1693
  msgstr "Type de lien:"
1694
 
1695
+ #: wppa-album-admin-autosave.php:611 wppa-settings-autosave.php:7487
1696
  msgid "the sub-albums and thumbnails"
1697
  msgstr ""
1698
 
1699
+ #: wppa-album-admin-autosave.php:612 wppa-settings-autosave.php:7488
1700
  msgid "the sub-albums"
1701
  msgstr "les albums fils"
1702
 
1703
+ #: wppa-album-admin-autosave.php:613 wppa-settings-autosave.php:7489
1704
  msgid "the thumbnails"
1705
  msgstr "les vignettes"
1706
 
1707
+ #: wppa-album-admin-autosave.php:614 wppa-settings-autosave.php:7490
1708
  msgid "the album photos as slideshow"
1709
  msgstr ""
1710
 
1712
  msgid "the link page with a clean url"
1713
  msgstr ""
1714
 
1715
+ #: wppa-album-admin-autosave.php:616 wppa-settings-autosave.php:7491
1716
  msgid "no link at all"
1717
  msgstr "Pas de lien du tout"
1718
 
1734
  msgid "Link to:"
1735
  msgstr "Lien vers:"
1736
 
1737
+ #: wppa-album-admin-autosave.php:637 wppa-settings-autosave.php:9103
1738
+ #: wppa-settings-autosave.php:9152
1739
  msgid "There are no pages (yet) to link to."
1740
  msgstr ""
1741
 
1827
  msgstr "Supprimer l'album"
1828
 
1829
  #: wppa-album-admin-autosave.php:813 wppa-boxes-html.php:804
1830
+ #: wppa-breadcrumb.php:281 wppa-breadcrumb.php:301 wppa-breadcrumb.php:331
1831
+ #: wppa-breadcrumb.php:351 wppa-breadcrumb.php:421 wppa-breadcrumb.php:448
1832
+ #: wppa-breadcrumb.php:598 wppa-comment-admin.php:65 wppa-featen-widget.php:137
1833
  #: wppa-lasten-widget.php:177 wppa-slideshow-widget.php:199
1834
  #: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:273
1835
  #: wppa-upload-widget.php:77 wppa-upload.php:116 wppa-upload.php:204
1855
  #: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1376
1856
  #: wppa-album-admin-autosave.php:1471 wppa-album-admin-autosave.php:1657
1857
  #: wppa-comment-admin.php:311 wppa-comment-admin.php:380
1858
+ #: wppa-comment-admin.php:398 wppa-functions.php:1926 wppa-links.php:758
1859
+ #: wppa-links.php:776 wppa-photo-admin-autosave.php:1283
1860
  #: wppa-photo-admin-autosave.php:1351 wppa-thumbnails.php:590
1861
  msgid "Delete"
1862
  msgstr "Supprimer"
1865
  msgid "Move to:"
1866
  msgstr "Déplacer vers:"
1867
 
1868
+ #: wppa-album-admin-autosave.php:829 wppa-settings-autosave.php:2704
1869
  msgid "Cancel"
1870
  msgstr "Annuler"
1871
 
2132
  msgstr[1] "%d albums"
2133
 
2134
  #: wppa-album-covers.php:1371 wppa-boxes-html.php:1159 wppa-breadcrumb.php:148
2135
+ #: wppa-breadcrumb.php:154 wppa-breadcrumb.php:161 wppa-breadcrumb.php:381
2136
+ #: wppa-breadcrumb.php:394 wppa-utils.php:1620
2137
  msgid "and"
2138
  msgstr "et"
2139
 
2152
  msgid "New"
2153
  msgstr "Nouveau"
2154
 
2155
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
2156
+ #: wppa-settings-autosave.php:2165 wppa-settings-autosave.php:5222
2157
+ #: wppa-settings-autosave.php:7646
2158
  msgid "Slideshow"
2159
  msgstr "Diaporama"
2160
 
2162
  msgid "Browse photos"
2163
  msgstr "Visualiser les photos"
2164
 
2165
+ #: wppa-album-covers.php:1719 wppa-breadcrumb.php:404 wppa-breadcrumb.php:410
2166
  msgid "Category:"
2167
  msgid_plural "Categories:"
2168
  msgstr[0] "Catégorie:"
2329
  msgid "Rating count:"
2330
  msgstr "Nombre de votes:"
2331
 
2332
+ #: wppa-bestof-widget.php:198 wppa-common-functions.php:1995 wppa-items.php:373
2333
  #: wppa-settings-autosave.php:1301 wppa-settings-autosave.php:1650
2334
+ #: wppa-settings-autosave.php:3491 wppa-settings-autosave.php:3505
2335
+ #: wppa-settings-autosave.php:3693 wppa-settings-autosave.php:3807
2336
+ #: wppa-settings-autosave.php:5293 wppa-settings-autosave.php:7132
2337
+ #: wppa-settings-autosave.php:7342 wppa-settings-autosave.php:7398
2338
+ #: wppa-settings-autosave.php:8252 wppa-settings-autosave.php:8409
2339
  #: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
2340
  #: wppa-tinymce-shortcodes.php:513 wppa-upload.php:1521 wppa-watermark.php:520
2341
  #: wppa-widget-admin.php:83 wppa-widget-admin.php:254
2372
  msgstr "Catégorie"
2373
 
2374
  #: wppa-boxes-html.php:405 wppa-boxes-html.php:538
2375
+ #: wppa-settings-autosave.php:7247 wppa-settings-autosave.php:7258
2376
  msgid "Text"
2377
  msgstr "Texte"
2378
 
2386
  msgid "Items must meet all selected options."
2387
  msgstr "Les entités doivent répondre à toutes les options sélectionnées."
2388
 
2389
+ #: wppa-boxes-html.php:530 wppa-settings-autosave.php:8513
2390
+ #: wppa-settings-autosave.php:8553 wppa-settings-autosave.php:8575
2391
+ #: wppa-settings-autosave.php:8621
2392
  msgid "Tag"
2393
  msgstr "Tag"
2394
 
2410
  msgstr "Photos en Super View"
2411
 
2412
  #: wppa-boxes-html.php:820 wppa-settings-autosave.php:400
2413
+ #: wppa-settings-autosave.php:4484
2414
  msgid "Thumbnails"
2415
  msgstr "Vignettes"
2416
 
2636
  msgid "Avatar"
2637
  msgstr "Avatar"
2638
 
2639
+ #: wppa-boxes-html.php:2581 wppa-links.php:802
2640
  msgid "Awaiting moderation"
2641
  msgstr "En attente de modération"
2642
 
2744
  msgstr[0] "Moyenne des votes:"
2745
  msgstr[1] "Moyenne des votes:"
2746
 
2747
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
2748
  #: wppa-topten-widget.php:147 wppa-topten-widget.php:164
2749
  #: wppa-topten-widget.php:200
2750
  #, php-format
2753
  msgstr[0] ""
2754
  msgstr[1] ""
2755
 
2756
+ #: wppa-boxes-html.php:3280
2757
  #, php-format
2758
+ msgid "Rating: %4.2f."
2759
+ msgstr "Vote: %4.2f."
2760
 
2761
  #: wppa-boxes-html.php:3288
2762
  #, php-format
2763
  msgid "Photo %s not found."
2764
  msgstr "Photo %s non trouvée."
2765
 
2766
+ #: wppa-boxes-html.php:3343
2767
+ #, php-format
2768
+ msgid "Mean value: %4.2f."
2769
+ msgstr "Valeur moyenne: %4.2f."
2770
+
2771
  #: wppa-boxes-html.php:3695 wppa-photo-admin-autosave.php:195
2772
  msgid "Refresh"
2773
  msgstr "Rafraichir"
2776
  msgid "Post:"
2777
  msgstr "Article:"
2778
 
2779
+ #: wppa-breadcrumb.php:119 wppa-breadcrumb.php:625
2780
  msgid "Page:"
2781
  msgstr "Page:"
2782
 
2812
  msgid "with exif tag:"
2813
  msgstr "avec le tag EXIF:"
2814
 
2815
+ #: wppa-breadcrumb.php:184 wppa-breadcrumb.php:209 wppa-breadcrumb.php:268
2816
+ #: wppa-breadcrumb.php:288 wppa-breadcrumb.php:313 wppa-breadcrumb.php:338
2817
+ #: wppa-breadcrumb.php:358 wppa-breadcrumb.php:371 wppa-breadcrumb.php:391
2818
+ #: wppa-breadcrumb.php:407 wppa-breadcrumb.php:428
2819
  msgid "View the thumbnails"
2820
  msgstr "Voir les vignettes"
2821
 
2822
+ #: wppa-breadcrumb.php:202
2823
  #, php-format
2824
  msgid "Searchresults from album %s and its subalbums"
2825
  msgstr "Résultats de recherche de l'album %s et ses albums fils"
2826
 
2827
+ #: wppa-breadcrumb.php:206 wppa-breadcrumb.php:212
2828
  msgid "Searchstring:"
2829
  msgstr "Chaîne de recherche:"
2830
 
2831
+ #: wppa-breadcrumb.php:221 wppa-breadcrumb.php:239
2832
  msgid "Photos by EXIF date"
2833
  msgstr "Photos par date EXIF"
2834
 
2835
+ #: wppa-breadcrumb.php:225 wppa-breadcrumb.php:243
2836
  msgid "Photos by date of upload"
2837
  msgstr "Photos par date de chargement"
2838
 
2839
+ #: wppa-breadcrumb.php:229 wppa-breadcrumb.php:247
2840
  msgid "Photos by date last modified"
2841
  msgstr "Photos par date de dernière modification"
2842
 
2843
+ #: wppa-breadcrumb.php:259 wppa-breadcrumb.php:271
2844
  #, php-format
2845
  msgid "Photos by %s"
2846
  msgstr "Photo de %s"
2847
 
2848
+ #: wppa-breadcrumb.php:278 wppa-breadcrumb.php:298 wppa-breadcrumb.php:328
2849
+ #: wppa-breadcrumb.php:348 wppa-breadcrumb.php:443
2850
  msgid "Various albums"
2851
  msgstr "Divers albums"
2852
 
2853
+ #: wppa-breadcrumb.php:281 wppa-breadcrumb.php:301 wppa-breadcrumb.php:331
2854
+ #: wppa-breadcrumb.php:351 wppa-breadcrumb.php:448 wppa-lasten-widget.php:185
2855
  msgid "Albums:"
2856
  msgstr "Albums:"
2857
 
2858
+ #: wppa-breadcrumb.php:285 wppa-breadcrumb.php:291
2859
  msgid "Top rated photos"
2860
  msgstr "Photos les mieux notées"
2861
 
2862
+ #: wppa-breadcrumb.php:306 wppa-breadcrumb.php:317
2863
  msgid "Recently modified photos"
2864
  msgstr "Photos récemment modifiées"
2865
 
2866
+ #: wppa-breadcrumb.php:309 wppa-breadcrumb.php:320
2867
  msgid "Recently uploaded photos"
2868
  msgstr "Photos chargées récemment"
2869
 
2870
+ #: wppa-breadcrumb.php:335 wppa-breadcrumb.php:341 wppa-comment-widget.php:40
2871
  msgid "Recently commented photos"
2872
  msgstr "Photos commentées récemment"
2873
 
2874
+ #: wppa-breadcrumb.php:355 wppa-breadcrumb.php:361 wppa-featen-widget.php:38
2875
  msgid "Featured photos"
2876
  msgstr "Photos à la une"
2877
 
2878
+ #: wppa-breadcrumb.php:368 wppa-breadcrumb.php:374
2879
  msgid "Related photos"
2880
  msgstr "Photos apparentées"
2881
 
2882
+ #: wppa-breadcrumb.php:381 wppa-breadcrumb.php:394
2883
  msgid "Tagged photos:"
2884
  msgstr "Photo taguées:"
2885
 
2886
+ #: wppa-breadcrumb.php:381 wppa-breadcrumb.php:394
2887
  msgid "or"
2888
  msgstr "ou"
2889
 
2890
+ #: wppa-breadcrumb.php:383 wppa-breadcrumb.php:396
2891
  msgid "Inverted"
2892
  msgstr "Inversé"
2893
 
2894
+ #: wppa-breadcrumb.php:425 wppa-breadcrumb.php:431
2895
  msgid "Recently updated albums"
2896
  msgstr "Photos mises à jour récemment"
2897
 
2898
+ #: wppa-breadcrumb.php:441
2899
  #, php-format
2900
  msgid "Various albums by %s"
2901
  msgstr "Divers albums de %s"
2902
 
2903
+ #: wppa-breadcrumb.php:469 wppa-breadcrumb.php:484
2904
  msgid "Thumbnail view"
2905
  msgstr "Vue vignette"
2906
 
2907
+ #: wppa-breadcrumb.php:473 wppa-breadcrumb.php:474 wppa-breadcrumb.php:489
2908
+ #: wppa-breadcrumb.php:490
2909
  msgid "Thumbs"
2910
  msgstr "Miniatures"
2911
 
2912
+ #: wppa-breadcrumb.php:623
2913
  msgid "Unpublished"
2914
  msgstr "Dé-publiés"
2915
 
2916
+ #: wppa-breadcrumb.php:653
2917
  msgid "Found photos will meet the search criteria as follows:"
2918
  msgstr "Photos trouvées répondra aux critères de recherche comme suit :"
2919
 
2920
+ #: wppa-breadcrumb.php:656
2921
  msgid "AND"
2922
  msgstr "ET"
2923
 
2924
+ #: wppa-breadcrumb.php:660
2925
  msgid "OR"
2926
  msgstr "OU"
2927
 
3018
  msgid "Linkpage:"
3019
  msgstr "Page lien:"
3020
 
3021
+ #: wppa-comment-admin.php:223 wppa-settings-autosave.php:4655
3022
+ #: wppa-settings-autosave.php:7516
3023
  msgid "--- Please select a page ---"
3024
  msgstr "--- Choisir une page ---"
3025
 
3083
  msgid "Save Settings / Perform bulk action"
3084
  msgstr "Sauver / Action groupée"
3085
 
3086
+ #: wppa-comment-admin.php:301 wppa-comment-admin.php:388 wppa-non-admin.php:668
3087
  msgid "Photo"
3088
  msgstr "Photo"
3089
 
3094
  #: wppa-comment-admin.php:303 wppa-comment-admin.php:390
3095
  #: wppa-settings-autosave.php:451 wppa-settings-autosave.php:613
3096
  #: wppa-settings-autosave.php:635 wppa-settings-autosave.php:1354
3097
+ #: wppa-settings-autosave.php:1375 wppa-settings-autosave.php:2869
3098
+ #: wppa-settings-autosave.php:2890 wppa-settings-autosave.php:3201
3099
+ #: wppa-settings-autosave.php:3225 wppa-settings-autosave.php:4376
3100
+ #: wppa-settings-autosave.php:4397 wppa-settings-autosave.php:4573
3101
+ #: wppa-settings-autosave.php:4597 wppa-settings-autosave.php:5639
3102
+ #: wppa-settings-autosave.php:6161 wppa-settings-autosave.php:6183
3103
+ #: wppa-settings-autosave.php:6763 wppa-settings-autosave.php:6787
3104
+ #: wppa-settings-autosave.php:8491 wppa-settings-autosave.php:8512
3105
+ #: wppa-settings-autosave.php:8552 wppa-settings-autosave.php:8574
3106
+ #: wppa-settings-autosave.php:8620
3107
  msgid "#"
3108
  msgstr "#"
3109
 
3173
  msgid "Comments on Photos"
3174
  msgstr "Commentaires sur les photos"
3175
 
3176
+ #: wppa-comment-widget.php:73 wppa-non-admin.php:794 wppa-thumbnails.php:493
3177
  msgid "wrote"
3178
  msgstr "a écrit"
3179
 
3180
  #: wppa-comment-widget.php:87 wppa-featen-widget.php:95
3181
+ #: wppa-lasten-widget.php:125 wppa-non-admin.php:795 wppa-non-admin.php:800
3182
+ #: wppa-non-admin.php:805 wppa-non-admin.php:809 wppa-non-admin.php:816
3183
+ #: wppa-non-admin.php:826 wppa-potd-widget.php:133
3184
  #: wppa-thumbnail-widget.php:114 wppa-topten-widget.php:208
3185
  msgid "Photo not found"
3186
  msgstr "Photo non trouvée"
3187
 
3188
+ #: wppa-comment-widget.php:93 wppa-non-admin.php:796
3189
  msgid "There are no commented photos (yet)"
3190
  msgstr "Il n'y pas encore de photos commentariés"
3191
 
3201
  msgstr[1] "%d secondes"
3202
 
3203
  #: wppa-common-functions.php:607 wppa-functions.php:4298
3204
+ #: wppa-settings-autosave.php:6059 wppa-settings-autosave.php:6060
3205
  #, php-format
3206
  msgid "%d minute"
3207
  msgid_plural "%d minutes"
3209
  msgstr[1] "%d minutes"
3210
 
3211
  #: wppa-common-functions.php:611 wppa-functions.php:4294
3212
+ #: wppa-settings-autosave.php:6061 wppa-settings-autosave.php:7142
3213
  #, php-format
3214
  msgid "%d hour"
3215
  msgid_plural "%d hours"
3217
  msgstr[1] "%d heures"
3218
 
3219
  #: wppa-common-functions.php:615 wppa-functions.php:4290
3220
+ #: wppa-settings-autosave.php:6062 wppa-settings-autosave.php:7143
3221
+ #: wppa-settings-autosave.php:7144 wppa-settings-autosave.php:7145
3222
+ #: wppa-settings-autosave.php:7146 wppa-settings-autosave.php:7147
3223
+ #: wppa-settings-autosave.php:7148 wppa-settings-autosave.php:7150
3224
+ #: wppa-settings-autosave.php:7151 wppa-settings-autosave.php:7152
3225
+ #: wppa-settings-autosave.php:8312
3226
  #, php-format
3227
  msgid "%d day"
3228
  msgid_plural "%d days"
3230
  msgstr[1] "%d jours"
3231
 
3232
  #: wppa-common-functions.php:619 wppa-functions.php:4286
3233
+ #: wppa-settings-autosave.php:6063 wppa-settings-autosave.php:7149
3234
+ #: wppa-settings-autosave.php:7153 wppa-settings-autosave.php:7154
3235
+ #: wppa-settings-autosave.php:7155 wppa-settings-autosave.php:8313
3236
  #, php-format
3237
  msgid "%d week"
3238
  msgid_plural "%d weeks"
3239
  msgstr[0] "%d semaine"
3240
  msgstr[1] "%d semaines"
3241
 
3242
+ #: wppa-common-functions.php:623 wppa-settings-autosave.php:7156
3243
+ #: wppa-settings-autosave.php:8314 wppa-settings-autosave.php:8315
3244
+ #: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8317
3245
+ #: wppa-settings-autosave.php:8318 wppa-settings-autosave.php:8320
3246
  #, php-format
3247
  msgid "%d month"
3248
  msgid_plural "%d months"
3249
  msgstr[0] "%d mois"
3250
  msgstr[1] "%d mois"
3251
 
3252
+ #: wppa-common-functions.php:626 wppa-settings-autosave.php:8319
3253
+ #: wppa-settings-autosave.php:8321
3254
  #, php-format
3255
  msgid "%d year"
3256
  msgid_plural "%d years"
3280
  msgid "- select an album -"
3281
  msgstr "- Choisir un album -"
3282
 
3283
+ #: wppa-common-functions.php:2001 wppa-items.php:381
3284
  #: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
3285
  #: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
3286
  #: wppa-tagcloud-widget.php:79
3299
  msgid "--- a selection box ---"
3300
  msgstr "--- une sélection ---"
3301
 
3302
+ #: wppa-common-functions.php:2058 wppa-items.php:377
3303
+ #: wppa-settings-autosave.php:7342 wppa-settings-autosave.php:7398
3304
  #: wppa-upload.php:1522
3305
  msgid "--- separate ---"
3306
  msgstr "--- séparé ---"
3429
  msgid "Partial"
3430
  msgstr "Partiel"
3431
 
3432
+ #: wppa-exif-iptc-common.php:251 wppa-settings-autosave.php:4501
3433
  #: wppa-utils.php:2428
3434
  msgid "Other"
3435
  msgstr "Autre"
3648
  msgid "Featured Photos"
3649
  msgstr "Photos en vedette"
3650
 
3651
+ #: wppa-featen-widget.php:73 wppa-non-admin.php:799
3652
  msgid "View the featured photos"
3653
  msgstr "Voir les photos à la une"
3654
 
3655
+ #: wppa-featen-widget.php:104 wppa-non-admin.php:801
3656
  #, fuzzy
3657
  msgid "There are no featured photos (yet)"
3658
  msgstr "Il n'y pas encore de photos"
3670
  "Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. "
3671
  "Veuillez redéfinir vos critères de recherche."
3672
 
3673
+ #: wppa-functions.php:1923 wppa-links.php:751 wppa-links.php:768
3674
  #: wppa-thumbnails.php:588
3675
  msgid "Are you sure you want to remove this photo?"
3676
  msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
3746
  msgid "Could not process comment.\\nProbably timed out."
3747
  msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
3748
 
3749
+ #: wppa-functions.php:2362 wppa-links.php:1441
3750
  msgid "A video can not be printed or downloaded"
3751
  msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
3752
 
3871
  msgstr "Vous pouvez charger après"
3872
 
3873
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
3874
+ #: wppa-functions.php:4341 wppa-links.php:1071 wppa-non-admin.php:722
3875
  msgid "Download"
3876
  msgstr "Télécharger"
3877
 
4431
  msgid "licence."
4432
  msgstr ""
4433
 
4434
+ #: wppa-items.php:234 wppa-thumbnails.php:1841
4435
  msgid "Gold medal"
4436
  msgstr "Médaille d'or"
4437
 
4438
+ #: wppa-items.php:234 wppa-photo-admin-autosave.php:837
4439
  #: wppa-photo-admin-autosave.php:859 wppa-photo-admin-autosave.php:1302
4440
  #: wppa-photo-admin-autosave.php:1419 wppa-photo-admin-autosave.php:1430
4441
  #: wppa-widget-admin.php:133
4442
  msgid "Gold"
4443
  msgstr "Or"
4444
 
4445
+ #: wppa-items.php:235 wppa-thumbnails.php:1842
4446
  msgid "Silver medal"
4447
  msgstr "Médaille d'argent"
4448
 
4449
+ #: wppa-items.php:235 wppa-photo-admin-autosave.php:838
4450
  #: wppa-photo-admin-autosave.php:860 wppa-photo-admin-autosave.php:1303
4451
  #: wppa-photo-admin-autosave.php:1420 wppa-photo-admin-autosave.php:1431
4452
  #: wppa-widget-admin.php:134
4453
  msgid "Silver"
4454
  msgstr "Argent"
4455
 
4456
+ #: wppa-items.php:236 wppa-thumbnails.php:1843
4457
  msgid "Bronze medal"
4458
  msgstr "Médaille de bronze"
4459
 
4460
+ #: wppa-items.php:236 wppa-photo-admin-autosave.php:839
4461
  #: wppa-photo-admin-autosave.php:861 wppa-photo-admin-autosave.php:1304
4462
  #: wppa-photo-admin-autosave.php:1421 wppa-photo-admin-autosave.php:1432
4463
  #: wppa-widget-admin.php:135
4464
  msgid "Bronze"
4465
  msgstr "Bronze"
4466
 
4467
+ #: wppa-items.php:285 wppa-items.php:439 wppa-settings-autosave.php:3358
4468
  msgid "none"
4469
  msgstr "aucun"
4470
 
4471
+ #: wppa-items.php:315 wppa-items.php:450 wppa-upload.php:99 wppa-upload.php:104
4472
  msgid "unknown"
4473
  msgstr "inconnu"
4474
 
4475
+ #: wppa-items.php:385 wppa-items.php:406
4476
  msgid "--- deleted ---"
4477
  msgstr "--- supprimé ---"
4478
 
4479
+ #: wppa-items.php:395
4480
  msgid "All Albums"
4481
  msgstr "Tous les albums"
4482
 
4492
  msgid "Last Ten Uploaded Photos"
4493
  msgstr "Dix dernières photos chargées"
4494
 
4495
+ #: wppa-lasten-widget.php:108 wppa-non-admin.php:804
4496
  msgid "View the most recent uploaded photos"
4497
  msgstr "Voir les photos chargées les plus récentes"
4498
 
4499
+ #: wppa-lasten-widget.php:132 wppa-non-admin.php:806
4500
  #, fuzzy
4501
  msgid "There are no uploaded photos (yet)"
4502
  msgstr "Il n'y pas encore de photos"
4529
  msgid "Show time since:"
4530
  msgstr "Montrer la durée depuis:"
4531
 
4532
+ #: wppa-links.php:739
4533
  msgid "App"
4534
  msgstr "App"
4535
 
4536
+ #: wppa-links.php:740
4537
  msgid "Mod"
4538
  msgstr "Mod"
4539
 
4540
+ #: wppa-links.php:741
4541
  msgid "Del"
4542
  msgstr "Del"
4543
 
4544
+ #: wppa-links.php:745 wppa-links.php:762
4545
  msgid "Are you sure you want to publish this photo?"
4546
  msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
4547
 
4548
+ #: wppa-links.php:756 wppa-links.php:773
4549
  msgid "Approve"
4550
  msgstr "Approuver"
4551
 
4552
+ #: wppa-links.php:757
4553
  msgid "Moderate"
4554
  msgstr "Modérer"
4555
 
4556
+ #: wppa-links.php:774
4557
  msgid "PhotoAdmin"
4558
  msgstr "Admin Photo"
4559
 
4560
+ #: wppa-links.php:775
4561
  msgid "CommentAdmin"
4562
  msgstr "Admin Commentaires"
4563
 
4564
+ #: wppa-links.php:779
4565
  msgid "Are you sure you want to publish this comment?"
4566
  msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
4567
 
4568
+ #: wppa-links.php:791
4569
  msgid "Are you sure you want to remove this comment?"
4570
  msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
4571
 
4572
+ #: wppa-links.php:805
4573
  #, php-format
4574
  msgid "Scheduled for %s"
4575
  msgstr "Planifié pour %s"
4576
 
4577
+ #: wppa-links.php:1012 wppa-links.php:1015 wppa-slideshow.php:979
4578
  msgid "Previous"
4579
  msgstr "Préc."
4580
 
4581
+ #: wppa-links.php:1022 wppa-links.php:1025 wppa-non-admin.php:673
4582
+ #: wppa-slideshow.php:992
4583
  msgid "Next"
4584
  msgstr "Suiv."
4585
 
4586
+ #: wppa-links.php:1071
4587
  msgid "Download album"
4588
  msgstr "Télécharger l'album"
4589
 
4590
+ #: wppa-links.php:1207
4591
  msgid "View thumbnails"
4592
  msgstr "Visualiser les vignettes"
4593
 
4649
  msgid "Press f for fullscreen."
4650
  msgstr "Appuyez sur f pour le plein écran."
4651
 
4652
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
4653
+ #, fuzzy
4654
+ msgid "Toggle fullscreen"
4655
+ msgstr "Appuyez sur f pour le plein écran."
4656
+
4657
+ #: wppa-non-admin.php:423
4658
  msgid ""
4659
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
4660
  "dismiss this notice."
4662
  "Touches: f = mode suiv.; q,x = sortir; p = préc., n = next, s = lancer/"
4663
  "arrêter, d = abandonner cette note."
4664
 
4665
+ #: wppa-non-admin.php:424
4666
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
4667
  msgstr "Touches: f = mode suiv.; q,x = sortir; d = abandonner cette note."
4668
 
4669
+ #: wppa-non-admin.php:664 wppa-settings-autosave.php:3512
4670
  #: wppa-slideshow.php:228
4671
  msgid "Start"
4672
  msgstr "Démarrer"
4673
 
4674
+ #: wppa-non-admin.php:665
4675
  msgid "Stop"
4676
  msgstr "Arrêter"
4677
 
4678
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
4679
  msgid "Slower"
4680
  msgstr "Ralentir"
4681
 
4682
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
4683
  msgid "Faster"
4684
  msgstr "Accélérer"
4685
 
4686
+ #: wppa-non-admin.php:669
4687
  msgid "of"
4688
  msgstr "de"
4689
 
4690
+ #: wppa-non-admin.php:670
4691
  msgid "Previous photo"
4692
  msgstr "Photo précédente"
4693
 
4694
+ #: wppa-non-admin.php:671
4695
  msgid "Next photo"
4696
  msgstr "Photo suivante"
4697
 
4698
+ #: wppa-non-admin.php:672
4699
  msgid "Prev."
4700
  msgstr "Préc."
4701
 
4702
+ #: wppa-non-admin.php:674 wppa-slideshow.php:731 wppa-slideshow.php:743
4703
+ #: wppa-slideshow.php:834
4704
  msgid "Average&nbsp;rating"
4705
  msgstr "Vote&nbsp;moyen"
4706
 
4707
+ #: wppa-non-admin.php:675 wppa-slideshow.php:793 wppa-slideshow.php:805
4708
+ #: wppa-slideshow.php:816
4709
  msgid "My&nbsp;rating"
4710
  msgstr "Mon&nbsp;vote"
4711
 
4712
+ #: wppa-non-admin.php:676
4713
  msgid "Avg."
4714
  msgstr "Moyen"
4715
 
4716
+ #: wppa-non-admin.php:677
4717
  msgid "Mine"
4718
  msgstr "Mon"
4719
 
4720
+ #: wppa-non-admin.php:678
4721
  msgid "You marked this image as inappropriate."
4722
  msgstr "Vous avez marqué cette image comme inappropriée."
4723
 
4724
+ #: wppa-non-admin.php:681
4725
  msgid "Please enter your name"
4726
  msgstr "Entrer votre nom"
4727
 
4728
+ #: wppa-non-admin.php:682
4729
  msgid "Please enter a valid email address"
4730
  msgstr "Entrer une adresse email valide"
4731
 
4732
+ #: wppa-non-admin.php:683
4733
  msgid "Please enter a comment"
4734
  msgstr "Entrer un commentaire"
4735
 
4736
+ #: wppa-non-admin.php:717
4737
  msgid "Double click to start/stop slideshow running"
4738
  msgstr "Double-cliquez pour lancer/arrêter le diaporama"
4739
 
4740
+ #: wppa-non-admin.php:810 wppa-photo-admin-autosave.php:264
4741
  #: wppa-potd-widget.php:156
4742
  msgid "By:"
4743
  msgstr "Par:"
4744
 
4745
+ #: wppa-non-admin.php:813 wppa-slideshow-widget.php:124
4746
  msgid "No album defined (yet)"
4747
  msgstr "Pas encore d'album défini"
4748
 
4749
+ #: wppa-non-admin.php:817 wppa-thumbnail-widget.php:121
4750
  msgid "There are no photos (yet)"
4751
  msgstr "Il n'y pas encore de photos"
4752
 
4753
+ #: wppa-non-admin.php:820 wppa-upldr-widget.php:90
4754
  msgid "There are too many registered users in the system for this widget"
4755
  msgstr "Il y a trop d'utilisateurs enregistrés dans le système pour ce widget"
4756
 
4757
+ #: wppa-non-admin.php:821 wppa-upldr-widget.php:124 wppa-upldr-widget.php:131
4758
  msgid "Photos uploaded by"
4759
  msgstr "Photos chargées par"
4760
 
4761
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
4762
  #: wppa-topten-widget.php:154 wppa-topten-widget.php:177
4763
  #: wppa-topten-widget.php:187
4764
  #, php-format
4767
  msgstr[0] ""
4768
  msgstr[1] ""
4769
 
4770
+ #: wppa-non-admin.php:827 wppa-topten-widget.php:212
4771
  #, fuzzy
4772
  msgid "There are no rated photos (yet)"
4773
  msgstr "Il n'y pas encore de photos"
4971
  msgid "Same tab"
4972
  msgstr "Même onglet"
4973
 
4974
+ #: wppa-photo-admin-autosave.php:409 wppa-settings-autosave.php:4602
4975
+ #: wppa-settings-autosave.php:5644
4976
  msgid "New tab"
4977
  msgstr "Nouvel onglet"
4978
 
4998
  msgid "Update file"
4999
  msgstr "Mettre à jour le fichier"
5000
 
5001
+ #: wppa-photo-admin-autosave.php:474 wppa-settings-autosave.php:3092
5002
  msgid "Upload"
5003
  msgstr "Charger"
5004
 
5064
  msgid "Remake thumbnail file"
5065
  msgstr "Refaire la vignette"
5066
 
5067
+ #: wppa-photo-admin-autosave.php:630 wppa-settings-autosave.php:6376
5068
  msgid "Remake"
5069
  msgstr "Refaire"
5070
 
5297
  msgstr "Cliquer sur ce bouton rechargera la page après l'action demandée"
5298
 
5299
  #: wppa-photo-admin-autosave.php:1333 wppa-photo-admin-autosave.php:1452
5300
+ #: wppa-settings-autosave.php:7831
5301
  msgid "Preview"
5302
  msgstr "Prévisualiser"
5303
 
5577
  msgstr "Légende:"
5578
 
5579
  #: wppa-settings-autosave.php:363 wppa-settings-autosave.php:365
5580
+ #: wppa-settings-autosave.php:1915 wppa-settings-autosave.php:5323
5581
  msgid "Button"
5582
  msgstr "Bouton"
5583
 
5585
  msgid "action that causes page reload."
5586
  msgstr "action qui provoque le rechargement de la page."
5587
 
5588
+ #: wppa-settings-autosave.php:365 wppa-settings-autosave.php:9221
5589
+ #: wppa-settings-autosave.php:9240
5590
  msgid "Are you sure?"
5591
  msgstr "Êtes-vous sûr ?"
5592
 
5594
  msgid "action that does not cause page reload."
5595
  msgstr "action qui ne provoque pas le rechargement de la page."
5596
 
5597
+ #: wppa-settings-autosave.php:368 wppa-settings-autosave.php:7720
5598
+ #: wppa-settings-autosave.php:7722 wppa-settings-autosave.php:8924
5599
+ #: wppa-settings-autosave.php:8940 wppa-settings-autosave.php:8968
5600
+ #: wppa-settings-autosave.php:8992 wppa-settings-autosave.php:9022
5601
+ #: wppa-settings-autosave.php:9049 wppa-settings-autosave.php:9075
5602
+ #: wppa-settings-autosave.php:9091 wppa-settings-autosave.php:9144
5603
+ #: wppa-settings-autosave.php:9174
5604
  msgid "Setting unmodified"
5605
  msgstr "Configuration inchangée"
5606
 
5640
  msgid "Layout"
5641
  msgstr ""
5642
 
5643
+ #: wppa-settings-autosave.php:390 wppa-settings-autosave.php:4552
5644
  msgid "Lightbox"
5645
  msgstr ""
5646
 
5657
  msgstr "Navigation"
5658
 
5659
  #: wppa-settings-autosave.php:394 wppa-settings-autosave.php:1489
5660
+ #: wppa-settings-autosave.php:8067
5661
  msgid "Page"
5662
  msgstr "Page"
5663
 
5664
+ #: wppa-settings-autosave.php:395 wppa-settings-autosave.php:7863
5665
+ #: wppa-settings-autosave.php:7908
5666
  msgid "Rating"
5667
  msgstr "Vote"
5668
 
5686
  msgid "Widgets"
5687
  msgstr "Widgets"
5688
 
5689
+ #: wppa-settings-autosave.php:403 wppa-settings-autosave.php:7701
5690
  msgid "Watermark"
5691
  msgstr "Filigrane"
5692
 
5728
 
5729
  #: wppa-settings-autosave.php:454 wppa-settings-autosave.php:616
5730
  #: wppa-settings-autosave.php:638 wppa-settings-autosave.php:1357
5731
+ #: wppa-settings-autosave.php:1378 wppa-settings-autosave.php:2872
5732
+ #: wppa-settings-autosave.php:3228 wppa-settings-autosave.php:4379
5733
+ #: wppa-settings-autosave.php:6164 wppa-settings-autosave.php:6790
5734
+ #: wppa-settings-autosave.php:8494
5735
  msgid "Setting"
5736
  msgstr "Réglages"
5737
 
5738
  #: wppa-settings-autosave.php:455 wppa-settings-autosave.php:617
5739
  #: wppa-settings-autosave.php:639 wppa-settings-autosave.php:1358
5740
+ #: wppa-settings-autosave.php:1379 wppa-settings-autosave.php:2873
5741
+ #: wppa-settings-autosave.php:2897 wppa-settings-autosave.php:3208
5742
+ #: wppa-settings-autosave.php:3229 wppa-settings-autosave.php:4380
5743
+ #: wppa-settings-autosave.php:4404 wppa-settings-autosave.php:4580
5744
+ #: wppa-settings-autosave.php:4604 wppa-settings-autosave.php:5646
5745
+ #: wppa-settings-autosave.php:6166 wppa-settings-autosave.php:6190
5746
+ #: wppa-settings-autosave.php:6770 wppa-settings-autosave.php:6791
5747
+ #: wppa-settings-autosave.php:8495 wppa-settings-autosave.php:8517
5748
+ #: wppa-settings-autosave.php:8557 wppa-settings-autosave.php:8579
5749
+ #: wppa-settings-autosave.php:8625
5750
  msgid "Help"
5751
  msgstr "Aide"
5752
 
6088
  #: wppa-settings-autosave.php:1272 wppa-settings-autosave.php:1281
6089
  #: wppa-settings-autosave.php:1314 wppa-settings-autosave.php:1323
6090
  #: wppa-settings-autosave.php:1335 wppa-settings-autosave.php:1344
6091
+ #: wppa-settings-autosave.php:2716 wppa-settings-autosave.php:4425
6092
+ #: wppa-settings-autosave.php:4442 wppa-settings-autosave.php:4459
6093
+ #: wppa-settings-autosave.php:4476 wppa-settings-autosave.php:4493
6094
+ #: wppa-settings-autosave.php:4510 wppa-settings-autosave.php:4527
6095
+ #: wppa-settings-autosave.php:4544 wppa-settings-autosave.php:4561
6096
+ #: wppa-settings-autosave.php:5863 wppa-settings-autosave.php:8225
6097
+ #: wppa-settings-autosave.php:8421 wppa-settings-autosave.php:8463
6098
+ #: wppa-settings-autosave.php:8481
6099
  msgid "pixels"
6100
  msgstr "pixels"
6101
 
6122
  #: wppa-settings-autosave.php:698 wppa-settings-autosave.php:737
6123
  #: wppa-settings-autosave.php:1152 wppa-settings-autosave.php:1192
6124
  #: wppa-settings-autosave.php:1212 wppa-settings-autosave.php:1252
6125
+ #: wppa-settings-autosave.php:3902 wppa-settings-autosave.php:5788
6126
+ #: wppa-settings-autosave.php:7324
6127
  msgid "photos"
6128
  msgstr "photos"
6129
 
6553
  "indicates no pagination."
6554
  msgstr ""
6555
 
6556
+ #: wppa-settings-autosave.php:983 wppa-settings-autosave.php:5394
6557
+ #: wppa-settings-autosave.php:5425 wppa-settings-autosave.php:5520
6558
  msgid "thumbnails"
6559
  msgstr "Vignettes"
6560
 
6952
  "Enter the maximum number of thumbnail photos of albums in the Album widget."
6953
  msgstr ""
6954
 
6955
+ #: wppa-settings-autosave.php:1232 wppa-settings-autosave.php:5804
6956
  msgid "albums"
6957
  msgstr "albums"
6958
 
7303
  msgid "The location for the pagelinks bar."
7304
  msgstr ""
7305
 
7306
+ #: wppa-settings-autosave.php:1535 wppa-settings-autosave.php:3847
7307
  msgid "Top"
7308
  msgstr "Haut"
7309
 
7310
+ #: wppa-settings-autosave.php:1535 wppa-settings-autosave.php:3847
7311
  msgid "Bottom"
7312
  msgstr "Bas"
7313
 
7633
  msgid "Display the share social media buttons box."
7634
  msgstr ""
7635
 
7636
+ #: wppa-settings-autosave.php:1799 wppa-settings-autosave.php:8468
7637
  msgid "Hide when running"
7638
  msgstr ""
7639
 
8005
  msgstr "Aucun"
8006
 
8007
  #: wppa-settings-autosave.php:2117 wppa-settings-autosave.php:2128
8008
+ #: wppa-settings-autosave.php:3358
8009
  msgid "At the top"
8010
  msgstr "En haut"
8011
 
8012
  #: wppa-settings-autosave.php:2117 wppa-settings-autosave.php:2128
8013
+ #: wppa-settings-autosave.php:3358
8014
  msgid "At the bottom"
8015
  msgstr "En bas"
8016
 
8159
  msgid "Show the album description on hoovering thumbnail in album widget"
8160
  msgstr ""
8161
 
8162
+ #: wppa-settings-autosave.php:2252 wppa-settings-autosave.php:4274
8163
  msgid ""
8164
  "Lightbox related settings. These settings have effect only when Table IX-J3 "
8165
  "is set to wppa"
8661
  msgid "Show a preview of all tags that will be added to the photo info."
8662
  msgstr ""
8663
 
8664
+ #: wppa-settings-autosave.php:2688
8665
+ #, fuzzy
8666
+ msgid "Camera connect"
8667
+ msgstr "Contenu de la page"
8668
+
8669
  #: wppa-settings-autosave.php:2689
8670
+ msgid "Connect frontend upload to camara on mobile devices with camera"
8671
+ msgstr ""
8672
+
8673
+ #: wppa-settings-autosave.php:2698
8674
  msgid "Miscellaneous visibility settings"
8675
  msgstr ""
8676
 
8677
+ #: wppa-settings-autosave.php:2700
8678
  msgid "Frontend ending label"
8679
  msgstr ""
8680
 
8681
+ #: wppa-settings-autosave.php:2701
8682
  msgid "Frontend upload / create / edit dialog closing label text."
8683
  msgstr ""
8684
 
8685
+ #: wppa-settings-autosave.php:2704
8686
  msgid "Abort"
8687
  msgstr "Abandonner"
8688
 
8689
+ #: wppa-settings-autosave.php:2704
8690
  msgid "Close"
8691
  msgstr "Fermer"
8692
 
8693
+ #: wppa-settings-autosave.php:2704
8694
  msgid "Exit"
8695
  msgstr "Sortie"
8696
 
8697
+ #: wppa-settings-autosave.php:2704
8698
  msgid "Quit"
8699
  msgstr "Quitter"
8700
 
8701
+ #: wppa-settings-autosave.php:2712
8702
  msgid "Widget thumbs fontsize"
8703
  msgstr ""
8704
 
8705
+ #: wppa-settings-autosave.php:2713
8706
  msgid "Font size for thumbnail subtext in widgets."
8707
  msgstr ""
8708
 
8709
+ #: wppa-settings-autosave.php:2721
8710
  msgid "Arrow color"
8711
  msgstr ""
8712
 
8713
+ #: wppa-settings-autosave.php:2722
8714
  msgid "Left/right browsing arrow color."
8715
  msgstr ""
8716
 
8717
+ #: wppa-settings-autosave.php:2723
8718
  msgid "Enter the color of the filmstrip navigation arrows."
8719
  msgstr ""
8720
 
8721
+ #: wppa-settings-autosave.php:2730
8722
  msgid "Owner on new line"
8723
  msgstr ""
8724
 
8725
+ #: wppa-settings-autosave.php:2731
8726
  msgid "Place the (owner) text on a new line."
8727
  msgstr ""
8728
 
8729
+ #: wppa-settings-autosave.php:2739
8730
  msgid "Custom datafields"
8731
  msgstr ""
8732
 
8733
+ #: wppa-settings-autosave.php:2740
8734
  msgid "Define up to 10 custom data fields for photos."
8735
  msgstr ""
8736
 
8737
+ #: wppa-settings-autosave.php:2750
8738
  #, php-format
8739
  msgid "Name and visibility %s"
8740
  msgstr ""
8741
 
8742
+ #: wppa-settings-autosave.php:2751
8743
  #, php-format
8744
  msgid "The caption for field %s and visibility at frontend."
8745
  msgstr ""
8746
 
8747
+ #: wppa-settings-autosave.php:2752
8748
  #, php-format
8749
  msgid ""
8750
  "If you check the box, the value of this field is displayable in photo "
8751
  "descriptions at the frontend with keyword w#c%s"
8752
  msgstr ""
8753
 
8754
+ #: wppa-settings-autosave.php:2762
8755
  msgid "Navigation symbols for slideshows and lighbox"
8756
  msgstr ""
8757
 
8758
+ #: wppa-settings-autosave.php:2764
8759
  msgid "Start symbol url"
8760
  msgstr ""
8761
 
8762
+ #: wppa-settings-autosave.php:2765
8763
  msgid "Supply the url of an image for the start symbol"
8764
  msgstr ""
8765
 
8766
+ #: wppa-settings-autosave.php:2773
8767
  msgid "Pause symbol url"
8768
  msgstr ""
8769
 
8770
+ #: wppa-settings-autosave.php:2774
8771
  msgid "Supply the url of an image for the pause symbol"
8772
  msgstr ""
8773
 
8774
+ #: wppa-settings-autosave.php:2782
8775
  msgid "Stop symbol url"
8776
  msgstr ""
8777
 
8778
+ #: wppa-settings-autosave.php:2783
8779
  msgid "Supply the url of an image for the stop symbol"
8780
  msgstr ""
8781
 
8782
+ #: wppa-settings-autosave.php:2791
8783
  msgid "Left (prev) symbol url"
8784
  msgstr ""
8785
 
8786
+ #: wppa-settings-autosave.php:2792
8787
  msgid "Supply the url of an image for the left symbol, if not default"
8788
  msgstr ""
8789
 
8790
+ #: wppa-settings-autosave.php:2800
8791
  msgid "Right (next) symbol url"
8792
  msgstr ""
8793
 
8794
+ #: wppa-settings-autosave.php:2801
8795
  msgid "Supply the url of an image for the right symbol, if not default"
8796
  msgstr ""
8797
 
8798
+ #: wppa-settings-autosave.php:2810
8799
  msgid "The size of the start/pause symbols."
8800
  msgstr ""
8801
 
8802
+ #: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:2837
8803
  msgid "The border radius if the symbol is round"
8804
  msgstr ""
8805
 
8806
+ #: wppa-settings-autosave.php:2828 wppa-settings-autosave.php:2846
8807
  msgid "The size of the stop symbols."
8808
  msgstr ""
8809
 
8810
+ #: wppa-settings-autosave.php:2845
8811
  msgid "Left/right symbol size"
8812
  msgstr ""
8813
 
8814
+ #: wppa-settings-autosave.php:2854
8815
  msgid "Left/right symbol border radius"
8816
  msgstr ""
8817
 
8818
+ #: wppa-settings-autosave.php:2855
8819
  msgid "The border radius"
8820
  msgstr ""
8821
 
8822
+ #: wppa-settings-autosave.php:2882
8823
  msgid "Table III:"
8824
  msgstr "Table III:"
8825
 
8826
+ #: wppa-settings-autosave.php:2882
8827
  msgid "Backgrounds:"
8828
  msgstr ""
8829
 
8830
+ #: wppa-settings-autosave.php:2883
8831
  msgid "This table describes the backgrounds of wppa+ elements."
8832
  msgstr ""
8833
 
8834
+ #: wppa-settings-autosave.php:2893 wppa-settings-autosave.php:3204
8835
  msgid "Background color"
8836
  msgstr ""
8837
 
8838
+ #: wppa-settings-autosave.php:2894 wppa-settings-autosave.php:2896
8839
+ #: wppa-settings-autosave.php:3205 wppa-settings-autosave.php:3207
8840
  msgid "Sample"
8841
  msgstr ""
8842
 
8843
+ #: wppa-settings-autosave.php:2895 wppa-settings-autosave.php:3206
8844
  msgid "Border color"
8845
  msgstr ""
8846
 
8847
+ #: wppa-settings-autosave.php:2904
8848
  msgid "Slideshow elements backgrounds"
8849
  msgstr ""
8850
 
8851
+ #: wppa-settings-autosave.php:2906
8852
  msgid "Nav"
8853
  msgstr "Nav"
8854
 
8855
+ #: wppa-settings-autosave.php:2907
8856
  msgid "Navigation bars."
8857
  msgstr ""
8858
 
8859
+ #: wppa-settings-autosave.php:2908
8860
  msgid "Enter valid CSS colors for navigation backgrounds and borders."
8861
  msgstr ""
8862
 
8863
+ #: wppa-settings-autosave.php:2919
8864
  msgid "SlideImg"
8865
  msgstr ""
8866
 
8867
+ #: wppa-settings-autosave.php:2920
8868
  msgid "Fullsize Slideshow Photos."
8869
  msgstr "Photos diaporama en taille max."
8870
 
8871
+ #: wppa-settings-autosave.php:2921
8872
  msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
8873
  msgstr ""
8874
 
8875
+ #: wppa-settings-autosave.php:2922
8876
  msgid "The colors may be equal or \"transparent\""
8877
  msgstr ""
8878
 
8879
+ #: wppa-settings-autosave.php:2923
8880
  msgid ""
8881
  "For more information about slideshow image borders see the help on Table I-B4"
8882
  msgstr ""
8883
 
8884
+ #: wppa-settings-autosave.php:2934 wppa-settings-autosave.php:4518
8885
  msgid "Numbar"
8886
  msgstr "Numbar"
8887
 
8888
+ #: wppa-settings-autosave.php:2935
8889
  msgid "Number bar box background."
8890
  msgstr ""
8891
 
8892
+ #: wppa-settings-autosave.php:2936
8893
  msgid "Enter valid CSS colors for numbar box backgrounds and borders."
8894
  msgstr ""
8895
 
8896
+ #: wppa-settings-autosave.php:2947
8897
  msgid "Numbar active"
8898
  msgstr ""
8899
 
8900
+ #: wppa-settings-autosave.php:2948
8901
  msgid "Number bar active box background."
8902
  msgstr ""
8903
 
8904
+ #: wppa-settings-autosave.php:2949
8905
  msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
8906
  msgstr ""
8907
 
8908
+ #: wppa-settings-autosave.php:2960
8909
  msgid "Name/desc"
8910
  msgstr "Nom/desc"
8911
 
8912
+ #: wppa-settings-autosave.php:2961
8913
  msgid "Name and Description bars."
8914
  msgstr ""
8915
 
8916
+ #: wppa-settings-autosave.php:2962
8917
  msgid ""
8918
  "Enter valid CSS colors for name and description box backgrounds and borders."
8919
  msgstr ""
8920
 
8921
+ #: wppa-settings-autosave.php:2974
8922
  msgid "Comment input and display areas."
8923
  msgstr ""
8924
 
8925
+ #: wppa-settings-autosave.php:2975
8926
  msgid "Enter valid CSS colors for comment box backgrounds and borders."
8927
  msgstr ""
8928
 
8929
+ #: wppa-settings-autosave.php:2986 wppa-settings-autosave.php:7862
8930
+ #: wppa-settings-autosave.php:7907
8931
  msgid "Custom"
8932
  msgstr "Personalisé"
8933
 
8934
+ #: wppa-settings-autosave.php:2987
8935
  msgid "Custom box background."
8936
  msgstr ""
8937
 
8938
+ #: wppa-settings-autosave.php:2988
8939
  msgid "Enter valid CSS colors for custom box backgrounds and borders."
8940
  msgstr ""
8941
 
8942
+ #: wppa-settings-autosave.php:2999
8943
  msgid "IPTC"
8944
  msgstr "IPTC"
8945
 
8946
+ #: wppa-settings-autosave.php:3000
8947
  msgid "IPTC display box background."
8948
  msgstr ""
8949
 
8950
+ #: wppa-settings-autosave.php:3001
8951
  msgid "Enter valid CSS colors for iptc box backgrounds and borders."
8952
  msgstr ""
8953
 
8954
+ #: wppa-settings-autosave.php:3012
8955
  msgid "EXIF"
8956
  msgstr "EXIF"
8957
 
8958
+ #: wppa-settings-autosave.php:3013
8959
  msgid "EXIF display box background."
8960
  msgstr ""
8961
 
8962
+ #: wppa-settings-autosave.php:3014
8963
  msgid "Enter valid CSS colors for exif box backgrounds and borders."
8964
  msgstr ""
8965
 
8966
+ #: wppa-settings-autosave.php:3025
8967
  msgid "Share"
8968
  msgstr "Partager"
8969
 
8970
+ #: wppa-settings-autosave.php:3026
8971
  msgid "Share box display background."
8972
  msgstr ""
8973
 
8974
+ #: wppa-settings-autosave.php:3027
8975
  msgid "Enter valid CSS colors for share box backgrounds and borders."
8976
  msgstr ""
8977
 
8978
+ #: wppa-settings-autosave.php:3038
8979
  msgid "Other backgrounds"
8980
  msgstr ""
8981
 
8982
+ #: wppa-settings-autosave.php:3040
8983
  msgid "Even"
8984
  msgstr ""
8985
 
8986
+ #: wppa-settings-autosave.php:3041
8987
  msgid "Even background."
8988
  msgstr ""
8989
 
8990
+ #: wppa-settings-autosave.php:3042
8991
  msgid ""
8992
  "Enter valid CSS colors for even numbered backgrounds and borders of album "
8993
  "covers and thumbnail displays 'As covers'."
8994
  msgstr ""
8995
 
8996
+ #: wppa-settings-autosave.php:3053
8997
  msgid "Odd"
8998
  msgstr ""
8999
 
9000
+ #: wppa-settings-autosave.php:3054
9001
  msgid "Odd background."
9002
  msgstr ""
9003
 
9004
+ #: wppa-settings-autosave.php:3055
9005
  msgid ""
9006
  "Enter valid CSS colors for odd numbered backgrounds and borders of album "
9007
  "covers and thumbnail displays 'As covers'."
9008
  msgstr ""
9009
 
9010
+ #: wppa-settings-autosave.php:3066
9011
  msgid "Thumbnail padding"
9012
  msgstr ""
9013
 
9014
+ #: wppa-settings-autosave.php:3067
9015
  msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
9016
  msgstr ""
9017
 
9018
+ #: wppa-settings-autosave.php:3068
9019
  msgid ""
9020
  "Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
9021
  "white for the padded thumbnails."
9022
  msgstr ""
9023
 
9024
+ #: wppa-settings-autosave.php:3079
9025
  msgid "Img"
9026
  msgstr "IMG"
9027
 
9028
+ #: wppa-settings-autosave.php:3080
9029
  msgid "Cover Photos and popups."
9030
  msgstr ""
9031
 
9032
+ #: wppa-settings-autosave.php:3081
9033
  msgid ""
9034
  "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
9035
  msgstr ""
9036
 
9037
+ #: wppa-settings-autosave.php:3093
9038
  msgid "Upload box background."
9039
  msgstr ""
9040
 
9041
+ #: wppa-settings-autosave.php:3094
9042
  msgid "Enter valid CSS colors for upload box backgrounds and borders."
9043
  msgstr ""
9044
 
9045
+ #: wppa-settings-autosave.php:3105
9046
  msgid "Multitag"
9047
  msgstr ""
9048
 
9049
+ #: wppa-settings-autosave.php:3106
9050
  msgid "Multitag box background."
9051
  msgstr ""
9052
 
9053
+ #: wppa-settings-autosave.php:3107
9054
  msgid "Enter valid CSS colors for multitag box backgrounds and borders."
9055
  msgstr ""
9056
 
9057
+ #: wppa-settings-autosave.php:3118
9058
  msgid "Tagcloud"
9059
  msgstr ""
9060
 
9061
+ #: wppa-settings-autosave.php:3119
9062
  msgid "Tagcloud box background."
9063
  msgstr ""
9064
 
9065
+ #: wppa-settings-autosave.php:3120
9066
  msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
9067
  msgstr ""
9068
 
9069
+ #: wppa-settings-autosave.php:3131
9070
  msgid "Superview"
9071
  msgstr "SuperView"
9072
 
9073
+ #: wppa-settings-autosave.php:3132
9074
  msgid "Superview box background."
9075
  msgstr ""
9076
 
9077
+ #: wppa-settings-autosave.php:3133
9078
  msgid "Enter valid CSS colors for superview box backgrounds and borders."
9079
  msgstr ""
9080
 
9081
+ #: wppa-settings-autosave.php:3145
9082
  msgid "Search box background."
9083
  msgstr ""
9084
 
9085
+ #: wppa-settings-autosave.php:3146
9086
  msgid "Enter valid CSS colors for search box backgrounds and borders."
9087
  msgstr ""
9088
 
9089
+ #: wppa-settings-autosave.php:3157
9090
  msgid "BestOf"
9091
  msgstr "BestOf"
9092
 
9093
+ #: wppa-settings-autosave.php:3158
9094
  msgid "BestOf box background."
9095
  msgstr ""
9096
 
9097
+ #: wppa-settings-autosave.php:3159
9098
  msgid "Enter valid CSS colors for bestof box backgrounds and borders."
9099
  msgstr ""
9100
 
9101
+ #: wppa-settings-autosave.php:3170
9102
  msgid "Calendar"
9103
  msgstr "Calendrier"
9104
 
9105
+ #: wppa-settings-autosave.php:3171
9106
  msgid "Calendar box background."
9107
  msgstr ""
9108
 
9109
+ #: wppa-settings-autosave.php:3172
9110
  msgid "Enter valid CSS colors for calendar box backgrounds and borders."
9111
  msgstr ""
9112
 
9113
+ #: wppa-settings-autosave.php:3183
9114
  msgid "Stereo"
9115
  msgstr "Stéréo"
9116
 
9117
+ #: wppa-settings-autosave.php:3184
9118
  msgid "Stereo mode selection box background."
9119
  msgstr ""
9120
 
9121
+ #: wppa-settings-autosave.php:3185
9122
  msgid ""
9123
  "Enter valid CSS colors for stereo mode selection box backgrounds and borders."
9124
  msgstr ""
9125
 
9126
+ #: wppa-settings-autosave.php:3217
9127
  msgid "Table IV:"
9128
  msgstr "Table IV:"
9129
 
9130
+ #: wppa-settings-autosave.php:3217
9131
  msgid "Behaviour:"
9132
  msgstr "Comportement:"
9133
 
9134
+ #: wppa-settings-autosave.php:3218
9135
  msgid "This table describes the dynamic behaviour of certain wppa+ elements."
9136
  msgstr ""
9137
 
9138
+ #: wppa-settings-autosave.php:3236
9139
  msgid "System related settings"
9140
  msgstr ""
9141
 
9142
+ #: wppa-settings-autosave.php:3238
9143
  msgid "Use Ajax"
9144
  msgstr "Utiliser AJAX"
9145
 
9146
+ #: wppa-settings-autosave.php:3239
9147
  msgid "Use Ajax as much as is possible and implemented."
9148
  msgstr ""
9149
 
9150
+ #: wppa-settings-autosave.php:3240
9151
  msgid ""
9152
  "If this box is ticked, page content updates from within wppa+ displays will "
9153
  "be Ajax based as much as possible."
9154
  msgstr ""
9155
 
9156
+ #: wppa-settings-autosave.php:3248
9157
  msgid "Ajax NON Admin"
9158
  msgstr ""
9159
 
9160
+ #: wppa-settings-autosave.php:3249
9161
  msgid "Frontend ajax use no admin files."
9162
  msgstr ""
9163
 
9164
+ #: wppa-settings-autosave.php:3250
9165
  msgid "If you want to password protect wp-admin, check this box."
9166
  msgstr ""
9167
 
9168
+ #: wppa-settings-autosave.php:3251
9169
  msgid ""
9170
  "In rare cases changing page content does not work when this box is checked. "
9171
  "Verify the functionality!"
9172
  msgstr ""
9173
 
9174
+ #: wppa-settings-autosave.php:3258
9175
  msgid "Photo names in urls"
9176
  msgstr ""
9177
 
9178
+ #: wppa-settings-autosave.php:3259
9179
  msgid "Display photo names in urls."
9180
  msgstr ""
9181
 
9182
+ #: wppa-settings-autosave.php:3260
9183
  msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
9184
  msgstr ""
9185
 
9186
+ #: wppa-settings-autosave.php:3261
9187
  msgid ""
9188
  "It is your responsability to avoid duplicate names of photos in the same "
9189
  "album."
9190
  msgstr ""
9191
 
9192
+ #: wppa-settings-autosave.php:3268
9193
  msgid "Album names in urls"
9194
  msgstr ""
9195
 
9196
+ #: wppa-settings-autosave.php:3269
9197
  msgid "Display album names in urls."
9198
  msgstr ""
9199
 
9200
+ #: wppa-settings-autosave.php:3270
9201
  msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
9202
  msgstr ""
9203
 
9204
+ #: wppa-settings-autosave.php:3271
9205
  msgid ""
9206
  "It is your responsability to avoid duplicate names of albums in the system."
9207
  msgstr ""
9208
 
9209
+ #: wppa-settings-autosave.php:3278
9210
  msgid "Use short query args"
9211
  msgstr ""
9212
 
9213
+ #: wppa-settings-autosave.php:3279
9214
  msgid "Use &album=... &photo=..."
9215
  msgstr ""
9216
 
9217
+ #: wppa-settings-autosave.php:3280
9218
  msgid ""
9219
  "Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
9220
  "album=... &wppa-photo=..."
9221
  msgstr ""
9222
 
9223
+ #: wppa-settings-autosave.php:3281
9224
  msgid ""
9225
  "Use this setting only when there are no conflicts with other plugins that "
9226
  "may interprete arguments like &album= etc."
9227
  msgstr ""
9228
 
9229
+ #: wppa-settings-autosave.php:3288
9230
  msgid "Enable pretty links"
9231
  msgstr ""
9232
 
9233
+ #: wppa-settings-autosave.php:3289
9234
  msgid "Enable the generation and understanding of pretty links."
9235
  msgstr ""
9236
 
9237
+ #: wppa-settings-autosave.php:3290
9238
  msgid ""
9239
  "If checked, links to social media and the qr code will have \"/token1/token2/"
9240
  "\" etc in stead of \"&arg1=..&arg2=..\" etc."
9241
  msgstr ""
9242
 
9243
+ #: wppa-settings-autosave.php:3291
9244
  msgid ""
9245
  "These types of links will be interpreted and cause a redirection on entering."
9246
  msgstr ""
9247
 
9248
+ #: wppa-settings-autosave.php:3292
9249
  msgid ""
9250
  "It is recommended to check this box. It shortens links dramatically and "
9251
  "simplifies qr codes."
9252
  msgstr ""
9253
 
9254
+ #: wppa-settings-autosave.php:3293
9255
  msgid ""
9256
  "However, you may encounter conflicts with themes and/or other plugins, so "
9257
  "test it troughly!"
9258
  msgstr ""
9259
 
9260
+ #: wppa-settings-autosave.php:3294
9261
  msgid ""
9262
  "Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
9263
  msgstr ""
9264
 
9265
+ #: wppa-settings-autosave.php:3301
9266
  msgid "Update addressline"
9267
  msgstr "Mettre à jour la ligne d'adresse"
9268
 
9269
+ #: wppa-settings-autosave.php:3302
9270
  msgid "Update the addressline after an ajax action or next slide."
9271
  msgstr ""
9272
 
9273
+ #: wppa-settings-autosave.php:3303
9274
  msgid ""
9275
  "If checked, refreshing the page will show the current content and the "
9276
  "browsers back and forth arrows will browse the history on the page."
9277
  msgstr ""
9278
 
9279
+ #: wppa-settings-autosave.php:3304
9280
  msgid ""
9281
  "If unchecked, refreshing the page will re-display the content of the "
9282
  "original page."
9283
  msgstr ""
9284
 
9285
+ #: wppa-settings-autosave.php:3305
9286
  msgid ""
9287
  "This will only work on browsers that support history.pushState() and "
9288
  "therefor NOT in IE"
9289
  msgstr ""
9290
 
9291
+ #: wppa-settings-autosave.php:3306
9292
  msgid "Switching this off will affect the browsers behaviour."
9293
  msgstr ""
9294
 
9295
+ #: wppa-settings-autosave.php:3313
9296
  msgid "Render shortcode always"
9297
  msgstr ""
9298
 
9299
+ #: wppa-settings-autosave.php:3314
9300
  msgid "This will skip the check on proper initialisation."
9301
  msgstr ""
9302
 
9303
+ #: wppa-settings-autosave.php:3315
9304
  msgid ""
9305
  "This setting is required for certain themes like Gantry to prevent the "
9306
  "display of wppa placeholders like [WPPA+ Photo display]."
9307
  msgstr ""
9308
 
9309
+ #: wppa-settings-autosave.php:3316
9310
  #, php-format
9311
  msgid ""
9312
  "If this check is needed, you can use shortcodes like [wppa ...] only, not "
9313
  "scripts like %%wppa%%."
9314
  msgstr ""
9315
 
9316
+ #: wppa-settings-autosave.php:3323
9317
  msgid "Track viewcounts"
9318
  msgstr ""
9319
 
9320
+ #: wppa-settings-autosave.php:3324
9321
  msgid "Register number of views of albums and photos."
9322
  msgstr ""
9323
 
9324
+ #: wppa-settings-autosave.php:3332
9325
  msgid "Auto page"
9326
  msgstr ""
9327
 
9328
+ #: wppa-settings-autosave.php:3333
9329
  msgid "Create a wp page for every fullsize image."
9330
  msgstr ""
9331
 
9332
+ #: wppa-settings-autosave.php:3337
9333
  msgid "Please reload this page after changing!"
9334
  msgstr ""
9335
 
9336
+ #: wppa-settings-autosave.php:3343
9337
  msgid "Auto page display"
9338
  msgstr ""
9339
 
9340
+ #: wppa-settings-autosave.php:3344
9341
  msgid "The type of display on the autopage pages."
9342
  msgstr ""
9343
 
9344
+ #: wppa-settings-autosave.php:3347
9345
  msgid "Single photo"
9346
  msgstr "Photo seule"
9347
 
9348
+ #: wppa-settings-autosave.php:3347
9349
  msgid "Media type photo"
9350
  msgstr "Media type photo"
9351
 
9352
+ #: wppa-settings-autosave.php:3347
9353
  msgid "In the style of a slideshow"
9354
  msgstr ""
9355
 
9356
+ #: wppa-settings-autosave.php:3354
9357
  msgid "Auto page links"
9358
  msgstr ""
9359
 
9360
+ #: wppa-settings-autosave.php:3355
9361
  msgid "The location for the pagelinks."
9362
  msgstr ""
9363
 
9364
+ #: wppa-settings-autosave.php:3358
9365
  msgid "At top and bottom"
9366
  msgstr ""
9367
 
9368
+ #: wppa-settings-autosave.php:3365
9369
  msgid "Defer javascript"
9370
  msgstr ""
9371
 
9372
+ #: wppa-settings-autosave.php:3366
9373
  msgid "Put javascript near the end of the page."
9374
  msgstr ""
9375
 
9376
+ #: wppa-settings-autosave.php:3367
9377
  msgid ""
9378
  "If checkd: May fix layout problems and broken slideshows. May speed up or "
9379
  "slow down page appearing."
9380
  msgstr ""
9381
 
9382
+ #: wppa-settings-autosave.php:3374
9383
  msgid "Inline styles"
9384
  msgstr ""
9385
 
9386
+ #: wppa-settings-autosave.php:3375
9387
  msgid "Set style specifications inline."
9388
  msgstr ""
9389
 
9390
+ #: wppa-settings-autosave.php:3376
9391
  msgid "If checked: May fix layout problems, but slows down page appearing."
9392
  msgstr ""
9393
 
9394
+ #: wppa-settings-autosave.php:3383
9395
  msgid "Custom style"
9396
  msgstr "Style personalisé"
9397
 
9398
+ #: wppa-settings-autosave.php:3384
9399
  msgid "Enter custom style specs here."
9400
  msgstr ""
9401
 
9402
+ #: wppa-settings-autosave.php:3392
9403
  msgid "Use customized style file"
9404
  msgstr ""
9405
 
9406
+ #: wppa-settings-autosave.php:3393 wppa-settings-autosave.php:3402
9407
  msgid "This feature is highly discouraged."
9408
  msgstr ""
9409
 
9410
+ #: wppa-settings-autosave.php:3401
9411
  msgid "Use customized theme file"
9412
  msgstr ""
9413
 
9414
+ #: wppa-settings-autosave.php:3410
9415
  msgid "Enable photo html access"
9416
  msgstr ""
9417
 
9418
+ #: wppa-settings-autosave.php:3411
9419
  msgid "Creates an .htaccess file in .../uploads/wppa/"
9420
  msgstr ""
9421
 
9422
+ #: wppa-settings-autosave.php:3412
9423
  msgid ""
9424
  "If checked: assures http access to your wppa photo files, despite other ."
9425
  "htaccess settings that may protect these files."
9426
  msgstr ""
9427
 
9428
+ #: wppa-settings-autosave.php:3419
9429
  msgid "Lazy or HTML comp"
9430
  msgstr ""
9431
 
9432
+ #: wppa-settings-autosave.php:3420
9433
  msgid "Tick this box when you use lazy load or html compression."
9434
  msgstr ""
9435
 
9436
+ #: wppa-settings-autosave.php:3421
9437
  msgid ""
9438
  "If the filmstrip images do not show up and you have a lazy load or html "
9439
  "optimizing plugin active: Check this box"
9440
  msgstr ""
9441
 
9442
+ #: wppa-settings-autosave.php:3428
9443
  msgid "Thumbs first"
9444
  msgstr "Vignettes en premier"
9445
 
9446
+ #: wppa-settings-autosave.php:3429
9447
  msgid "When displaying album content: thumbnails before subalbums."
9448
  msgstr ""
9449
 
9450
+ #: wppa-settings-autosave.php:3437
9451
  msgid "Login links"
9452
  msgstr ""
9453
 
9454
+ #: wppa-settings-autosave.php:3438
9455
  msgid "You must login to... links to login page."
9456
  msgstr ""
9457
 
9458
+ #: wppa-settings-autosave.php:3446
9459
  msgid "Enable Video"
9460
  msgstr ""
9461
 
9462
+ #: wppa-settings-autosave.php:3447
9463
  msgid "Enables video support."
9464
  msgstr ""
9465
 
9466
+ #: wppa-settings-autosave.php:3456
9467
  msgid "Enable Audio"
9468
  msgstr ""
9469
 
9470
+ #: wppa-settings-autosave.php:3457
9471
  msgid "Enables audio support."
9472
  msgstr ""
9473
 
9474
+ #: wppa-settings-autosave.php:3465
9475
  msgid "Enable 3D Stereo"
9476
  msgstr ""
9477
 
9478
+ #: wppa-settings-autosave.php:3466
9479
  msgid "Enables 3D stereo photo support."
9480
  msgstr ""
9481
 
9482
+ #: wppa-settings-autosave.php:3474
9483
  msgid "Relative urls"
9484
  msgstr ""
9485
 
9486
+ #: wppa-settings-autosave.php:3475
9487
  msgid "Use relative urls only."
9488
  msgstr ""
9489
 
9490
+ #: wppa-settings-autosave.php:3484
9491
  msgid "Slideshow related settings"
9492
  msgstr ""
9493
 
9494
+ #: wppa-settings-autosave.php:3486
9495
  msgid "V align"
9496
  msgstr ""
9497
 
9498
+ #: wppa-settings-autosave.php:3487
9499
  msgid "Vertical alignment of slideshow images."
9500
  msgstr ""
9501
 
9502
+ #: wppa-settings-autosave.php:3488
9503
  msgid "Specify the vertical alignment of slideshow images."
9504
  msgstr ""
9505
 
9506
+ #: wppa-settings-autosave.php:3489
9507
  msgid ""
9508
  "If you select --- none ---, the photos will not be centered horizontally "
9509
  "either."
9510
  msgstr ""
9511
 
9512
+ #: wppa-settings-autosave.php:3491 wppa-settings-autosave.php:3756
9513
  #: wppa-slideshow-widget.php:214
9514
  msgid "top"
9515
  msgstr "haut"
9516
 
9517
+ #: wppa-settings-autosave.php:3491 wppa-settings-autosave.php:3505
9518
+ #: wppa-settings-autosave.php:3756 wppa-slideshow-widget.php:215
9519
  #: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:515
9520
  #: wppa-widget-admin.php:85
9521
  msgid "center"
9522
  msgstr "Centre"
9523
 
9524
+ #: wppa-settings-autosave.php:3491 wppa-settings-autosave.php:3756
9525
  #: wppa-slideshow-widget.php:216
9526
  msgid "bottom"
9527
  msgstr "Bas"
9528
 
9529
+ #: wppa-settings-autosave.php:3491 wppa-slideshow-widget.php:217
9530
  msgid "fit"
9531
  msgstr "auto adaptation"
9532
 
9533
+ #: wppa-settings-autosave.php:3499
9534
  msgid "H align"
9535
  msgstr ""
9536
 
9537
+ #: wppa-settings-autosave.php:3500
9538
  msgid "Horizontal alignment of slideshow images."
9539
  msgstr ""
9540
 
9541
+ #: wppa-settings-autosave.php:3501
9542
  msgid ""
9543
  "Specify the horizontal alignment of slideshow images. If you specify --- "
9544
  "none --- , no horizontal alignment will take place."
9545
  msgstr ""
9546
 
9547
+ #: wppa-settings-autosave.php:3502
9548
  msgid ""
9549
  "This setting is only usefull when the Column Width differs from the Maximum "
9550
  "Width."
9551
  msgstr ""
9552
 
9553
+ #: wppa-settings-autosave.php:3503
9554
  msgid "(Settings I-A1 and I-B1)"
9555
  msgstr ""
9556
 
9557
+ #: wppa-settings-autosave.php:3513
9558
  msgid "Start slideshow running."
9559
  msgstr ""
9560
 
9561
+ #: wppa-settings-autosave.php:3514
9562
  msgid ""
9563
  "If you select \"running\", the slideshow will start running immediately, if "
9564
  "you select \"still at first photo\", the first photo will be displayed in "
9565
  "browse mode."
9566
  msgstr ""
9567
 
9568
+ #: wppa-settings-autosave.php:3515
9569
  msgid ""
9570
  "If you select \"still at first norated\", the first photo that the visitor "
9571
  "did not gave a rating will be displayed in browse mode."
9572
  msgstr ""
9573
 
9574
+ #: wppa-settings-autosave.php:3517
9575
  msgid "running"
9576
  msgstr ""
9577
 
9578
+ #: wppa-settings-autosave.php:3518
9579
  msgid "still at first photo"
9580
  msgstr ""
9581
 
9582
+ #: wppa-settings-autosave.php:3519
9583
  msgid "still at first norated"
9584
  msgstr ""
9585
 
9586
+ #: wppa-settings-autosave.php:3530
9587
  msgid "Start slideonly"
9588
  msgstr ""
9589
 
9590
+ #: wppa-settings-autosave.php:3531
9591
  msgid "Start slideonly slideshow running."
9592
  msgstr ""
9593
 
9594
+ #: wppa-settings-autosave.php:3539 wppa-settings-autosave.php:4354
9595
  msgid "Video autostart"
9596
  msgstr ""
9597
 
9598
+ #: wppa-settings-autosave.php:3540
9599
  msgid "Autoplay videos in slideshows."
9600
  msgstr ""
9601
 
9602
+ #: wppa-settings-autosave.php:3549 wppa-settings-autosave.php:4363
9603
  msgid "Audio autostart"
9604
  msgstr ""
9605
 
9606
+ #: wppa-settings-autosave.php:3550
9607
  msgid "Autoplay audios in slideshows."
9608
  msgstr ""
9609
 
9610
+ #: wppa-settings-autosave.php:3558
9611
  msgid "Animation type"
9612
  msgstr ""
9613
 
9614
+ #: wppa-settings-autosave.php:3559
9615
  msgid "The way successive slides appear."
9616
  msgstr ""
9617
 
9618
+ #: wppa-settings-autosave.php:3560
9619
  msgid ""
9620
  "Select the way the old slide is to be replaced by the new one in the "
9621
  "slideshow/browse fullsize display."
9622
  msgstr ""
9623
 
9624
+ #: wppa-settings-autosave.php:3562
9625
  msgid "Fade out and in simultaneous"
9626
  msgstr ""
9627
 
9628
+ #: wppa-settings-autosave.php:3563
9629
  msgid "Fade in after fade out"
9630
  msgstr ""
9631
 
9632
+ #: wppa-settings-autosave.php:3564
9633
  msgid "Shift adjacent"
9634
  msgstr ""
9635
 
9636
+ #: wppa-settings-autosave.php:3565
9637
  msgid "Stack on"
9638
  msgstr ""
9639
 
9640
+ #: wppa-settings-autosave.php:3566
9641
  msgid "Stack off"
9642
  msgstr ""
9643
 
9644
+ #: wppa-settings-autosave.php:3567
9645
  msgid "Turn over"
9646
  msgstr ""
9647
 
9648
+ #: wppa-settings-autosave.php:3581
9649
  msgid "Timeout"
9650
  msgstr "Timeout"
9651
 
9652
+ #: wppa-settings-autosave.php:3582
9653
  msgid "Slideshow timeout."
9654
  msgstr "Timeout du diaporama."
9655
 
9656
+ #: wppa-settings-autosave.php:3583
9657
  msgid ""
9658
  "Select the time a single slide will be visible when the slideshow is started."
9659
  msgstr ""
9660
 
9661
+ #: wppa-settings-autosave.php:3585
9662
  msgid "very short (1 s.)"
9663
  msgstr ""
9664
 
9665
+ #: wppa-settings-autosave.php:3585
9666
  msgid "short (1.5 s.)"
9667
  msgstr ""
9668
 
9669
+ #: wppa-settings-autosave.php:3585
9670
  msgid "normal (2.5 s.)"
9671
  msgstr ""
9672
 
9673
+ #: wppa-settings-autosave.php:3585
9674
  msgid "long (4 s.)"
9675
  msgstr ""
9676
 
9677
+ #: wppa-settings-autosave.php:3585
9678
  msgid "very long (6 s.)"
9679
  msgstr ""
9680
 
9681
+ #: wppa-settings-autosave.php:3592
9682
  msgid "Speed"
9683
  msgstr ""
9684
 
9685
+ #: wppa-settings-autosave.php:3593
9686
  msgid "Slideshow animation speed."
9687
  msgstr ""
9688
 
9689
+ #: wppa-settings-autosave.php:3594
9690
  msgid "Specify the animation speed to be used in slideshows."
9691
  msgstr ""
9692
 
9693
+ #: wppa-settings-autosave.php:3595
9694
  msgid "This is the time it takes a photo to fade in or out."
9695
  msgstr ""
9696
 
9697
+ #: wppa-settings-autosave.php:3597 wppa-settings-autosave.php:4300
9698
+ #: wppa-settings-autosave.php:6058 wppa-settings-autosave.php:6968
9699
+ #: wppa-settings-autosave.php:6979 wppa-settings-autosave.php:7141
9700
  msgid "--- off ---"
9701
  msgstr "--- désactivé ---"
9702
 
9703
+ #: wppa-settings-autosave.php:3597
9704
  msgid "very fast (200 ms.)"
9705
  msgstr ""
9706
 
9707
+ #: wppa-settings-autosave.php:3597
9708
  msgid "fast (400 ms.)"
9709
  msgstr ""
9710
 
9711
+ #: wppa-settings-autosave.php:3597
9712
  msgid "normal (800 ms.)"
9713
  msgstr ""
9714
 
9715
+ #: wppa-settings-autosave.php:3597
9716
  msgid "slow (1.2 s.)"
9717
  msgstr ""
9718
 
9719
+ #: wppa-settings-autosave.php:3597
9720
  msgid "very slow (2 s.)"
9721
  msgstr "très lent (2 s.)"
9722
 
9723
+ #: wppa-settings-autosave.php:3597
9724
  msgid "extremely slow (4 s.)"
9725
  msgstr ""
9726
 
9727
+ #: wppa-settings-autosave.php:3604
9728
  msgid "Slide hover pause"
9729
  msgstr ""
9730
 
9731
+ #: wppa-settings-autosave.php:3605
9732
  msgid "Running Slideshow suspends during mouse hover."
9733
  msgstr ""
9734
 
9735
+ #: wppa-settings-autosave.php:3613
9736
  msgid "Slideshow wrap around"
9737
  msgstr ""
9738
 
9739
+ #: wppa-settings-autosave.php:3614
9740
  msgid "The slideshow wraps around the start and end"
9741
  msgstr ""
9742
 
9743
+ #: wppa-settings-autosave.php:3622
9744
  msgid "Full desc align"
9745
  msgstr ""
9746
 
9747
+ #: wppa-settings-autosave.php:3623
9748
  msgid "The alignment of the descriptions under fullsize images and slideshows."
9749
  msgstr ""
9750
 
9751
+ #: wppa-settings-autosave.php:3626 wppa-settings-autosave.php:3744
9752
+ #: wppa-settings-autosave.php:3847
9753
  msgid "Left"
9754
  msgstr "Gauche"
9755
 
9756
+ #: wppa-settings-autosave.php:3626
9757
  msgid "Center"
9758
  msgstr "Centre"
9759
 
9760
+ #: wppa-settings-autosave.php:3626 wppa-settings-autosave.php:3744
9761
+ #: wppa-settings-autosave.php:3847
9762
  msgid "Right"
9763
  msgstr "Droite"
9764
 
9765
+ #: wppa-settings-autosave.php:3633
9766
  msgid "Remove redundant space"
9767
  msgstr ""
9768
 
9769
+ #: wppa-settings-autosave.php:3634
9770
  msgid "Removes unwanted &lt;p> and &lt;br> tags in fullsize descriptions."
9771
  msgstr ""
9772
 
9773
+ #: wppa-settings-autosave.php:3635
9774
  msgid ""
9775
  "This setting has only effect when Table IX-A7 (foreign shortcodes) is "
9776
  "checked."
9777
  msgstr ""
9778
 
9779
+ #: wppa-settings-autosave.php:3642
9780
  msgid "Run wpautop on description"
9781
  msgstr ""
9782
 
9783
+ #: wppa-settings-autosave.php:3643
9784
  msgid "Adds &lt;p> and &lt;br> tags in fullsize descriptions."
9785
  msgstr ""
9786
 
9787
+ #: wppa-settings-autosave.php:3651
9788
  msgid "Auto open comments"
9789
  msgstr "Ouverture auto des commentaires"
9790
 
9791
+ #: wppa-settings-autosave.php:3652
9792
  msgid "Automatic opens comments box when slideshow does not run."
9793
  msgstr ""
9794
 
9795
+ #: wppa-settings-autosave.php:3660
9796
  msgid "Film hover goto"
9797
  msgstr ""
9798
 
9799
+ #: wppa-settings-autosave.php:3661
9800
  msgid "Go to slide when hovering filmstrip thumbnail."
9801
  msgstr ""
9802
 
9803
+ #: wppa-settings-autosave.php:3662
9804
  msgid "Do not use this setting when slides have different aspect ratios!"
9805
  msgstr ""
9806
 
9807
+ #: wppa-settings-autosave.php:3669
9808
  msgid "Slide swipe"
9809
  msgstr ""
9810
 
9811
+ #: wppa-settings-autosave.php:3670
9812
  msgid "Enable touch events swipe left-right on slides on touch screens."
9813
  msgstr ""
9814
 
9815
+ #: wppa-settings-autosave.php:3678
9816
  msgid "Slide page Ajax"
9817
  msgstr ""
9818
 
9819
+ #: wppa-settings-autosave.php:3679
9820
  msgid "Pagelinks slideshow use Ajax"
9821
  msgstr ""
9822
 
9823
+ #: wppa-settings-autosave.php:3680
9824
  msgid "On some systems you need to disable ajax here."
9825
  msgstr ""
9826
 
9827
+ #: wppa-settings-autosave.php:3687
9828
  msgid "Thumbnail related settings"
9829
  msgstr ""
9830
 
9831
+ #: wppa-settings-autosave.php:3690
9832
  msgid "Photo ordering sequence method."
9833
  msgstr ""
9834
 
9835
+ #: wppa-settings-autosave.php:3691
9836
  msgid ""
9837
  "Specify the way the photos should be ordered. This is the default setting. "
9838
  "You can overrule the default sorting order on a per album basis."
9839
  msgstr ""
9840
 
9841
+ #: wppa-settings-autosave.php:3728
9842
  msgid "Thumbnail type"
9843
  msgstr "Type de vignette"
9844
 
9845
+ #: wppa-settings-autosave.php:3729
9846
  msgid "The way the thumbnail images are displayed."
9847
  msgstr ""
9848
 
9849
+ #: wppa-settings-autosave.php:3730
9850
  msgid ""
9851
  "You may select an altenative display method for thumbnails. Note that some "
9852
  "of the thumbnail settings do not apply to all available display methods."
9853
  msgstr ""
9854
 
9855
+ #: wppa-settings-autosave.php:3732
9856
  msgid "like album covers"
9857
  msgstr ""
9858
 
9859
+ #: wppa-settings-autosave.php:3732
9860
  msgid "like album covers mcr"
9861
  msgstr ""
9862
 
9863
+ #: wppa-settings-autosave.php:3732
9864
  msgid "masonry style columns"
9865
  msgstr ""
9866
 
9867
+ #: wppa-settings-autosave.php:3732
9868
  msgid "masonry style rows"
9869
  msgstr ""
9870
 
9871
+ #: wppa-settings-autosave.php:3740 wppa-settings-autosave.php:3841
9872
  msgid "Placement"
9873
  msgstr "Placement"
9874
 
9875
+ #: wppa-settings-autosave.php:3741
9876
  msgid "Thumbnail image left or right."
9877
  msgstr ""
9878
 
9879
+ #: wppa-settings-autosave.php:3742
9880
  msgid "Indicate the placement position of the thumbnailphoto you wish."
9881
  msgstr ""
9882
 
9883
+ #: wppa-settings-autosave.php:3751
9884
  msgid "Vertical alignment"
9885
  msgstr "Alignement vertical"
9886
 
9887
+ #: wppa-settings-autosave.php:3752
9888
  msgid "Vertical alignment of thumbnails."
9889
  msgstr ""
9890
 
9891
+ #: wppa-settings-autosave.php:3753
9892
  msgid ""
9893
  "Specify the vertical alignment of thumbnail images. Use this setting when "
9894
  "albums contain both portrait and landscape photos."
9895
  msgstr ""
9896
 
9897
+ #: wppa-settings-autosave.php:3754
9898
  msgid ""
9899
  "It is NOT recommended to use the value --- default ---; it will affect the "
9900
  "horizontal alignment also and is meant to be used with custom css."
9901
  msgstr ""
9902
 
9903
+ #: wppa-settings-autosave.php:3763
9904
  msgid "Thumb mouseover"
9905
  msgstr ""
9906
 
9907
+ #: wppa-settings-autosave.php:3764
9908
  msgid "Apply thumbnail mouseover effect."
9909
  msgstr ""
9910
 
9911
+ #: wppa-settings-autosave.php:3765
9912
  msgid "Check this box to use mouseover effect on thumbnail images."
9913
  msgstr ""
9914
 
9915
+ #: wppa-settings-autosave.php:3773
9916
  msgid "Thumb opacity"
9917
  msgstr "Opacité des vignettes"
9918
 
9919
+ #: wppa-settings-autosave.php:3774 wppa-settings-autosave.php:3866
9920
  msgid "Initial opacity value."
9921
  msgstr "Valeur d'opacité initiale."
9922
 
9923
+ #: wppa-settings-autosave.php:3775 wppa-settings-autosave.php:3867
9924
+ #: wppa-settings-autosave.php:3976
9925
  msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
9926
  msgstr ""
9927
 
9928
+ #: wppa-settings-autosave.php:3777 wppa-settings-autosave.php:3869
9929
+ #: wppa-settings-autosave.php:3979 wppa-settings-autosave.php:4280
9930
  msgid "%"
9931
  msgstr "%"
9932
 
9933
+ #: wppa-settings-autosave.php:3782
9934
  msgid "Thumb popup"
9935
  msgstr ""
9936
 
9937
+ #: wppa-settings-autosave.php:3783
9938
  msgid "Use popup effect on thumbnail images."
9939
  msgstr ""
9940
 
9941
+ #: wppa-settings-autosave.php:3784
9942
  msgid "Thumbnails pop-up to a larger image when hovered."
9943
  msgstr ""
9944
 
9945
+ #: wppa-settings-autosave.php:3792
9946
  msgid "Align subtext"
9947
  msgstr ""
9948
 
9949
+ #: wppa-settings-autosave.php:3793
9950
  msgid "Set thumbnail subtext on equal height."
9951
  msgstr ""
9952
 
9953
+ #: wppa-settings-autosave.php:3801
9954
  msgid "Album and covers related settings"
9955
  msgstr ""
9956
 
9957
+ #: wppa-settings-autosave.php:3803
9958
  msgid "Album order"
9959
  msgstr "Tri des albums"
9960
 
9961
+ #: wppa-settings-autosave.php:3804
9962
  msgid "Album ordering sequence method."
9963
  msgstr ""
9964
 
9965
+ #: wppa-settings-autosave.php:3805
9966
  msgid "Specify the way the albums should be ordered."
9967
  msgstr ""
9968
 
9969
+ #: wppa-settings-autosave.php:3830
9970
  msgid "Default coverphoto selection"
9971
  msgstr "Sélection de la photo de couverture par défaut"
9972
 
9973
+ #: wppa-settings-autosave.php:3831
9974
  msgid "Default select cover photo method."
9975
  msgstr ""
9976
 
9977
+ #: wppa-settings-autosave.php:3832
9978
  msgid ""
9979
  "This is the initial value on album creation only. It can be overruled on the "
9980
  "edit album page."
9981
  msgstr ""
9982
 
9983
+ #: wppa-settings-autosave.php:3833
9984
  msgid "Random from album"
9985
  msgstr ""
9986
 
9987
+ #: wppa-settings-autosave.php:3833
9988
  msgid "Random featured from album"
9989
  msgstr ""
9990
 
9991
+ #: wppa-settings-autosave.php:3833
9992
  msgid "Most recently added to album"
9993
  msgstr "Dernières photos mises à jour"
9994
 
9995
+ #: wppa-settings-autosave.php:3833
9996
  msgid "Random from album or any sub album"
9997
  msgstr "Aléatoire depuis un album ou (fils)"
9998
 
9999
+ #: wppa-settings-autosave.php:3842
10000
  msgid "Cover image position."
10001
  msgstr "Position de l'image de couverture."
10002
 
10003
+ #: wppa-settings-autosave.php:3843
10004
  msgid ""
10005
  "Enter the position that you want to be used for the default album cover "
10006
  "selected in Table IV-D6."
10007
  msgstr ""
10008
 
10009
+ #: wppa-settings-autosave.php:3844
10010
  msgid ""
10011
  "For covertype Image Factory: left will be treated as top and right will be "
10012
  "treted as bottom."
10013
  msgstr ""
10014
 
10015
+ #: wppa-settings-autosave.php:3845
10016
  msgid ""
10017
  "For covertype Long Descriptions: top will be treated as left and bottom will "
10018
  "be treted as right."
10019
  msgstr ""
10020
 
10021
+ #: wppa-settings-autosave.php:3855
10022
  msgid "Cover mouseover"
10023
  msgstr ""
10024
 
10025
+ #: wppa-settings-autosave.php:3856
10026
  msgid "Apply coverphoto mouseover effect."
10027
  msgstr ""
10028
 
10029
+ #: wppa-settings-autosave.php:3857
10030
  msgid "Check this box to use mouseover effect on cover images."
10031
  msgstr ""
10032
 
10033
+ #: wppa-settings-autosave.php:3865
10034
  msgid "Cover opacity"
10035
  msgstr "Opacité de la couverture"
10036
 
10037
+ #: wppa-settings-autosave.php:3874
10038
  msgid "Cover type"
10039
  msgstr "Type de couverture"
10040
 
10041
+ #: wppa-settings-autosave.php:3875
10042
  msgid "Select the default cover type."
10043
  msgstr ""
10044
 
10045
+ #: wppa-settings-autosave.php:3876
10046
  msgid ""
10047
  "Types with the addition mcr are suitable for Multi Column in a Responsive "
10048
  "theme"
10049
  msgstr ""
10050
 
10051
+ #: wppa-settings-autosave.php:3899
10052
  msgid "The umber of coverphotos. Must be > 1 and < 25."
10053
  msgstr ""
10054
 
10055
+ #: wppa-settings-autosave.php:3907
10056
  msgid "Rating related settings"
10057
  msgstr ""
10058
 
10059
+ #: wppa-settings-autosave.php:3909
10060
  msgid "Rating login"
10061
  msgstr ""
10062
 
10063
+ #: wppa-settings-autosave.php:3910
10064
  msgid "Users must login to rate photos."
10065
  msgstr "Les utilisateurs doivent se connecter pour voter."
10066
 
10067
+ #: wppa-settings-autosave.php:3911
10068
  msgid ""
10069
  "If users want to vote for a photo (rating 1..5 stars) the must login first. "
10070
  "The avarage rating will always be displayed as long as the rating system is "
10071
  "enabled."
10072
  msgstr ""
10073
 
10074
+ #: wppa-settings-autosave.php:3918
10075
  msgid "Rating change"
10076
  msgstr ""
10077
 
10078
+ #: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:3920
10079
  msgid "Users may change their ratings."
10080
  msgstr ""
10081
 
10082
+ #: wppa-settings-autosave.php:3921 wppa-settings-autosave.php:3958
10083
+ #: wppa-settings-autosave.php:3977 wppa-settings-autosave.php:3990
10084
+ #: wppa-settings-autosave.php:4000 wppa-settings-autosave.php:4010
10085
+ #: wppa-settings-autosave.php:4020 wppa-settings-autosave.php:4029
10086
  msgid ""
10087
  "If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
10088
  msgstr ""
10089
 
10090
+ #: wppa-settings-autosave.php:3928
10091
  msgid "Rating multi"
10092
  msgstr ""
10093
 
10094
+ #: wppa-settings-autosave.php:3929
10095
  msgid "Users may give multiple votes."
10096
  msgstr ""
10097
 
10098
+ #: wppa-settings-autosave.php:3930
10099
  msgid ""
10100
  "Users may give multiple votes. (This has no effect when users may change "
10101
  "their votes.)"
10102
  msgstr ""
10103
 
10104
+ #: wppa-settings-autosave.php:3937
10105
  msgid "Rate own photos"
10106
  msgstr ""
10107
 
10108
+ #: wppa-settings-autosave.php:3938
10109
  msgid "It is allowed to rate photos by the uploader himself."
10110
  msgstr ""
10111
 
10112
+ #: wppa-settings-autosave.php:3946
10113
  msgid "Rating requires comment"
10114
  msgstr ""
10115
 
10116
+ #: wppa-settings-autosave.php:3947
10117
  msgid "Users must clarify their vote in a comment."
10118
  msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
10119
 
10120
+ #: wppa-settings-autosave.php:3956
10121
  msgid "This value counts dislike rating."
10122
  msgstr ""
10123
 
10124
+ #: wppa-settings-autosave.php:3957
10125
  msgid ""
10126
  "This value will be used for a dislike rating on calculation of avarage "
10127
  "ratings."
10128
  msgstr ""
10129
 
10130
+ #: wppa-settings-autosave.php:3960
10131
  msgid "points"
10132
  msgstr "points"
10133
 
10134
+ #: wppa-settings-autosave.php:3965
10135
  msgid "Next after vote"
10136
  msgstr ""
10137
 
10138
+ #: wppa-settings-autosave.php:3966
10139
  msgid "Goto next slide after voting"
10140
  msgstr ""
10141
 
10142
+ #: wppa-settings-autosave.php:3967
10143
  msgid ""
10144
  "If checked, the visitor goes straight to the slide following the slide he "
10145
  "voted. This will speed up mass voting."
10146
  msgstr ""
10147
 
10148
+ #: wppa-settings-autosave.php:3974
10149
  msgid "Star off opacity"
10150
  msgstr ""
10151
 
10152
+ #: wppa-settings-autosave.php:3975
10153
  msgid "Rating star off state opacity value."
10154
  msgstr ""
10155
 
10156
+ #: wppa-settings-autosave.php:3985
10157
  msgid "Notify admin every x times."
10158
  msgstr ""
10159
 
10160
+ #: wppa-settings-autosave.php:3986
10161
  msgid ""
10162
  "If this number is positive, there will be a thumb down icon in the rating "
10163
  "bar."
10164
  msgstr ""
10165
 
10166
+ #: wppa-settings-autosave.php:3987
10167
  msgid ""
10168
  "Cicking the icon indicates a user wants to report that an image is "
10169
  "inappropiate."
10170
  msgstr ""
10171
 
10172
+ #: wppa-settings-autosave.php:3988
10173
  msgid "Admin will be notified by email after every x reports."
10174
  msgstr ""
10175
 
10176
+ #: wppa-settings-autosave.php:3989 wppa-settings-autosave.php:3999
10177
+ #: wppa-settings-autosave.php:4009
10178
  msgid "A value of 0 disables this feature."
10179
  msgstr ""
10180
 
10181
+ #: wppa-settings-autosave.php:3992 wppa-settings-autosave.php:4002
10182
+ #: wppa-settings-autosave.php:4012
10183
  msgid "reports"
10184
  msgstr ""
10185
 
10186
+ #: wppa-settings-autosave.php:3997
10187
  msgid "Pending after"
10188
  msgstr "En attente après"
10189
 
10190
+ #: wppa-settings-autosave.php:3998
10191
  msgid "Set status to pending after xx dislike votes."
10192
  msgstr ""
10193
 
10194
+ #: wppa-settings-autosave.php:4007
10195
  msgid "Delete after"
10196
  msgstr "Supprimer après"
10197
 
10198
+ #: wppa-settings-autosave.php:4008
10199
  msgid "Deete photo after xx dislike votes."
10200
  msgstr ""
10201
 
10202
+ #: wppa-settings-autosave.php:4017
10203
  msgid "Show dislike count"
10204
  msgstr "Montrer comptage des avis négatifs"
10205
 
10206
+ #: wppa-settings-autosave.php:4018
10207
  msgid "Show the number of dislikes in the rating bar."
10208
  msgstr ""
10209
 
10210
+ #: wppa-settings-autosave.php:4019
10211
  msgid "Displayes the total number of dislike votes for the current photo."
10212
  msgstr ""
10213
 
10214
+ #: wppa-settings-autosave.php:4027
10215
  msgid "Rating display type"
10216
  msgstr ""
10217
 
10218
+ #: wppa-settings-autosave.php:4028
10219
  msgid "Specify the type of the rating display."
10220
  msgstr ""
10221
 
10222
+ #: wppa-settings-autosave.php:4031
10223
  msgid "Graphic"
10224
  msgstr "Graphique"
10225
 
10226
+ #: wppa-settings-autosave.php:4031
10227
  msgid "Numeric"
10228
  msgstr "Numérique"
10229
 
10230
+ #: wppa-settings-autosave.php:4038
10231
  msgid "Show average rating"
10232
  msgstr "Montrer le vote moyen"
10233
 
10234
+ #: wppa-settings-autosave.php:4039
10235
  msgid "Display the avarage rating and/or vote count on the rating bar"
10236
  msgstr ""
10237
 
10238
+ #: wppa-settings-autosave.php:4040
10239
  msgid ""
10240
  "If checked, the average rating as well as the current users rating is "
10241
  "displayed in max 5 or 10 stars."
10242
  msgstr ""
10243
 
10244
+ #: wppa-settings-autosave.php:4041
10245
  msgid "If unchecked, only the current users rating is displayed (if any)."
10246
  msgstr ""
10247
 
10248
+ #: wppa-settings-autosave.php:4042
10249
  msgid ""
10250
  "If \"One button vote\" is selected in Table I-E1, this box checked will "
10251
  "display the vote count."
10252
  msgstr ""
10253
 
10254
+ #: wppa-settings-autosave.php:4049
10255
  msgid "Single vote button text"
10256
  msgstr ""
10257
 
10258
+ #: wppa-settings-autosave.php:4050
10259
  msgid "The text on the voting button."
10260
  msgstr ""
10261
 
10262
+ #: wppa-settings-autosave.php:4051 wppa-settings-autosave.php:4060
10263
  msgid "This text may contain qTranslate compatible language tags."
10264
  msgstr ""
10265
 
10266
+ #: wppa-settings-autosave.php:4058
10267
  msgid "Single vote button text voted"
10268
  msgstr ""
10269
 
10270
+ #: wppa-settings-autosave.php:4059
10271
  msgid "The text on the voting button when voted."
10272
  msgstr ""
10273
 
10274
+ #: wppa-settings-autosave.php:4067
10275
  msgid "Single vote button thumbnail"
10276
  msgstr "Single vote button thumbnail"
10277
 
10278
+ #: wppa-settings-autosave.php:4068
10279
  msgid "Display single vote button below thumbnails."
10280
  msgstr ""
10281
 
10282
+ #: wppa-settings-autosave.php:4069
10283
  msgid ""
10284
  "This works only in single vote mode: Table I-E1 set to \"one button vote\""
10285
  msgstr ""
10286
 
10287
+ #: wppa-settings-autosave.php:4076
10288
  msgid "Medal bronze when"
10289
  msgstr ""
10290
 
10291
+ #: wppa-settings-autosave.php:4077 wppa-settings-autosave.php:4095
10292
  msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
10293
  msgstr ""
10294
 
10295
+ #: wppa-settings-autosave.php:4078 wppa-settings-autosave.php:4096
10296
  msgid ""
10297
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10298
  "bronze medal. A value of 0 indicates that you do not want this feature."
10299
  msgstr ""
10300
 
10301
+ #: wppa-settings-autosave.php:4080 wppa-settings-autosave.php:4089
10302
+ #: wppa-settings-autosave.php:4098
10303
  msgid "Topscores"
10304
  msgstr ""
10305
 
10306
+ #: wppa-settings-autosave.php:4085
10307
  msgid "Medal silver when"
10308
  msgstr ""
10309
 
10310
+ #: wppa-settings-autosave.php:4086
10311
  msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
10312
  msgstr ""
10313
 
10314
+ #: wppa-settings-autosave.php:4087
10315
  msgid ""
10316
  "When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
10317
  "silver medal. A value of 0 indicates that you do not want this feature."
10318
  msgstr ""
10319
 
10320
+ #: wppa-settings-autosave.php:4094
10321
  msgid "Medal gold when"
10322
  msgstr ""
10323
 
10324
+ #: wppa-settings-autosave.php:4103
10325
  msgid "Medal tag color"
10326
  msgstr ""
10327
 
10328
+ #: wppa-settings-autosave.php:4104
10329
  msgid "The color of the tag on the medal."
10330
  msgstr ""
10331
 
10332
+ #: wppa-settings-autosave.php:4107 wppa-settings-autosave.php:7224
10333
  msgid "Red"
10334
  msgstr "Rouge"
10335
 
10336
+ #: wppa-settings-autosave.php:4107 wppa-settings-autosave.php:7227
10337
  msgid "Green"
10338
  msgstr "Vert"
10339
 
10340
+ #: wppa-settings-autosave.php:4107 wppa-settings-autosave.php:7228
10341
  msgid "Blue"
10342
  msgstr "Bleu"
10343
 
10344
+ #: wppa-settings-autosave.php:4114
10345
  msgid "Medal position"
10346
  msgstr "Position médaille"
10347
 
10348
+ #: wppa-settings-autosave.php:4115
10349
  msgid "The position of the medal on the image."
10350
  msgstr ""
10351
 
10352
+ #: wppa-settings-autosave.php:4118
10353
  msgid "Top left"
10354
  msgstr ""
10355
 
10356
+ #: wppa-settings-autosave.php:4118
10357
  msgid "Top right"
10358
  msgstr ""
10359
 
10360
+ #: wppa-settings-autosave.php:4118
10361
  msgid "Bottom left"
10362
  msgstr ""
10363
 
10364
+ #: wppa-settings-autosave.php:4118
10365
  msgid "Bottom right"
10366
  msgstr ""
10367
 
10368
+ #: wppa-settings-autosave.php:4125
10369
  msgid "Top criterium"
10370
  msgstr ""
10371
 
10372
+ #: wppa-settings-autosave.php:4126
10373
  msgid "The top sort item used for topten results from shortcodes."
10374
  msgstr ""
10375
 
10376
+ #: wppa-settings-autosave.php:4129
10377
  msgid "Mean raiting"
10378
  msgstr "Moyenne votes"
10379
 
10380
+ #: wppa-settings-autosave.php:4129
10381
  msgid "Rating count"
10382
  msgstr "Compteur votes"
10383
 
10384
+ #: wppa-settings-autosave.php:4129
10385
  msgid "Viewcount"
10386
  msgstr "Compteur vues"
10387
 
10388
+ #: wppa-settings-autosave.php:4136
10389
  msgid "Comments related settings"
10390
  msgstr "Comments related settings"
10391
 
10392
+ #: wppa-settings-autosave.php:4138
10393
  msgid "Commenting login"
10394
  msgstr "Commenting login"
10395
 
10396
+ #: wppa-settings-autosave.php:4139
10397
  msgid "Users must be logged in to comment on photos."
10398
  msgstr ""
10399
 
10400
+ #: wppa-settings-autosave.php:4140
10401
  msgid ""
10402
  "Check this box if you want users to be logged in to be able to enter "
10403
  "comments on individual photos."
10404
  msgstr ""
10405
 
10406
+ #: wppa-settings-autosave.php:4147
10407
  msgid "Comments view login"
10408
  msgstr "Comments view login"
10409
 
10410
+ #: wppa-settings-autosave.php:4148
10411
  msgid "Users must be logged in to see comments on photos."
10412
  msgstr "L'utilisateur doit être connecté pour voir les commentaires."
10413
 
10414
+ #: wppa-settings-autosave.php:4149
10415
  msgid ""
10416
  "Check this box if you want users to be logged in to be able to see existing "
10417
  "comments on individual photos."
10418
  msgstr ""
10419
 
10420
+ #: wppa-settings-autosave.php:4156
10421
  msgid "Last comment first"
10422
  msgstr "Dernier commentaire en premier"
10423
 
10424
+ #: wppa-settings-autosave.php:4157
10425
  msgid "Display the newest comment on top."
10426
  msgstr ""
10427
 
10428
+ #: wppa-settings-autosave.php:4158
10429
  msgid "If checked: Display the newest comment on top."
10430
  msgstr ""
10431
 
10432
+ #: wppa-settings-autosave.php:4159
10433
  msgid "If unchecked, the comments are listed in the ordere they were entered."
10434
  msgstr ""
10435
 
10436
+ #: wppa-settings-autosave.php:4166
10437
  msgid "Comment moderation"
10438
  msgstr "Modération du commentaire"
10439
 
10440
+ #: wppa-settings-autosave.php:4167
10441
  msgid "Comments from what users need approval."
10442
  msgstr ""
10443
 
10444
+ #: wppa-settings-autosave.php:4168
10445
  msgid "Select the desired users of which the comments need approval."
10446
  msgstr ""
10447
 
10448
+ #: wppa-settings-autosave.php:4170 wppa-settings-autosave.php:6044
10449
  msgid "All users"
10450
  msgstr "Tous les utilisateurs"
10451
 
10452
+ #: wppa-settings-autosave.php:4170 wppa-settings-autosave.php:6044
10453
  msgid "Logged out users"
10454
  msgstr ""
10455
 
10456
+ #: wppa-settings-autosave.php:4170 wppa-settings-autosave.php:6044
10457
  msgid "No users"
10458
  msgstr "Pas d'utilisateurs"
10459
 
10460
+ #: wppa-settings-autosave.php:4177
10461
  msgid "Comment email required"
10462
  msgstr "Comment email required"
10463
 
10464
+ #: wppa-settings-autosave.php:4178
10465
  msgid "Commenting users must enter their email addresses."
10466
  msgstr ""
10467
 
10468
+ #: wppa-settings-autosave.php:4186
10469
  msgid "Comment notify"
10470
  msgstr "Notification de commentaire"
10471
 
10472
+ #: wppa-settings-autosave.php:4187
10473
  msgid "Select who must receive an e-mail notification of a new comment."
10474
  msgstr ""
10475
 
10476
+ #: wppa-settings-autosave.php:4190
10477
  msgid "--- None ---"
10478
  msgstr "--- Aucun ---"
10479
 
10480
+ #: wppa-settings-autosave.php:4191
10481
  msgid "--- Admin ---"
10482
  msgstr "--- Admin ---"
10483
 
10484
+ #: wppa-settings-autosave.php:4192
10485
  msgid "--- Album owner ---"
10486
  msgstr "--- Propriétaire album ---"
10487
 
10488
+ #: wppa-settings-autosave.php:4193
10489
  msgid "--- Admin & Owner ---"
10490
  msgstr "--- Admin & Propriétaire ---"
10491
 
10492
+ #: wppa-settings-autosave.php:4194
10493
  msgid "--- Uploader ---"
10494
  msgstr ""
10495
 
10496
+ #: wppa-settings-autosave.php:4195
10497
  msgid "--- Up & admin ---"
10498
  msgstr "--- Up & Admin ---"
10499
 
10500
+ #: wppa-settings-autosave.php:4196
10501
  msgid "--- Up & Owner ---"
10502
  msgstr "--- Up & Propriétaire ---"
10503
 
10504
+ #: wppa-settings-autosave.php:4219
10505
  msgid "Comment notify previous"
10506
  msgstr ""
10507
 
10508
+ #: wppa-settings-autosave.php:4220
10509
  msgid "Notify users who has commented this photo earlier."
10510
  msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
10511
 
10512
+ #: wppa-settings-autosave.php:4228
10513
  msgid "Comment ntfy added"
10514
  msgstr ""
10515
 
10516
+ #: wppa-settings-autosave.php:4229
10517
  msgid "Show \"Comment added\" after successfull adding a comment."
10518
  msgstr ""
10519
 
10520
+ #: wppa-settings-autosave.php:4237
10521
  msgid "ComTen alt display"
10522
  msgstr ""
10523
 
10524
+ #: wppa-settings-autosave.php:4238
10525
  msgid "Display comments at comten thumbnails."
10526
  msgstr ""
10527
 
10528
+ #: wppa-settings-autosave.php:4246
10529
  msgid "Comten Thumbnail width"
10530
  msgstr "Largeur du widget commentaire"
10531
 
10532
+ #: wppa-settings-autosave.php:4247
10533
  msgid "The width of the thumbnail in the alt comment display."
10534
  msgstr ""
10535
 
10536
+ #: wppa-settings-autosave.php:4250
10537
  msgid "Pixels"
10538
  msgstr "Pixels"
10539
 
10540
+ #: wppa-settings-autosave.php:4255
10541
  msgid "Show smiley picker"
10542
  msgstr ""
10543
 
10544
+ #: wppa-settings-autosave.php:4256
10545
  msgid "Display a clickable row of smileys."
10546
  msgstr ""
10547
 
10548
+ #: wppa-settings-autosave.php:4264
10549
  msgid "Show commenter email"
10550
  msgstr "Montrer l'email du commentateur"
10551
 
10552
+ #: wppa-settings-autosave.php:4265
10553
  msgid "Show the commenter's email in the notify emails."
10554
  msgstr ""
10555
 
10556
+ #: wppa-settings-autosave.php:4266
10557
  msgid "Shows the email address of the commenter in all notify emails."
10558
  msgstr ""
10559
 
10560
+ #: wppa-settings-autosave.php:4267
10561
  msgid ""
10562
  "If switched off, admin will still receive the senders email in the "
10563
  "notification mail"
10564
  msgstr ""
10565
 
10566
+ #: wppa-settings-autosave.php:4277
10567
  msgid "The opacity of the lightbox overlay background."
10568
  msgstr ""
10569
 
10570
+ #: wppa-settings-autosave.php:4285
10571
  msgid "Click on background"
10572
  msgstr ""
10573
 
10574
+ #: wppa-settings-autosave.php:4286
10575
  msgid "Select the action to be taken on click on background."
10576
  msgstr ""
10577
 
10578
+ #: wppa-settings-autosave.php:4289
10579
  msgid "Nothing"
10580
  msgstr "Rien"
10581
 
10582
+ #: wppa-settings-autosave.php:4289
10583
  msgid "Exit (close)"
10584
  msgstr "Sortir (fermer)"
10585
 
10586
+ #: wppa-settings-autosave.php:4289
10587
  msgid "Browse (left/right)"
10588
  msgstr ""
10589
 
10590
+ #: wppa-settings-autosave.php:4296
10591
  msgid "Overlay animation speed"
10592
  msgstr ""
10593
 
10594
+ #: wppa-settings-autosave.php:4297
10595
  msgid "The fade-in time of the lightbox images"
10596
  msgstr ""
10597
 
10598
+ #: wppa-settings-autosave.php:4300
10599
  msgid "very fast (100 ms.)"
10600
  msgstr ""
10601
 
10602
+ #: wppa-settings-autosave.php:4300
10603
  msgid "fast (200 ms.)"
10604
  msgstr ""
10605
 
10606
+ #: wppa-settings-autosave.php:4300
10607
  msgid "normal (300 ms.)"
10608
  msgstr ""
10609
 
10610
+ #: wppa-settings-autosave.php:4300
10611
  msgid "slow (500 ms.)"
10612
  msgstr ""
10613
 
10614
+ #: wppa-settings-autosave.php:4300
10615
  msgid "very slow (1 s.)"
10616
  msgstr "Très lent (1 s.)"
10617
 
10618
+ #: wppa-settings-autosave.php:4300
10619
  msgid "extremely slow (2 s.)"
10620
  msgstr ""
10621
 
10622
+ #: wppa-settings-autosave.php:4307
10623
  msgid "Overlay slideshow speed"
10624
  msgstr ""
10625
 
10626
+ #: wppa-settings-autosave.php:4308
10627
  msgid "The time the lightbox images stay"
10628
  msgstr ""
10629
 
10630
+ #: wppa-settings-autosave.php:4311
10631
  msgid "fast (3 s.)"
10632
  msgstr ""
10633
 
10634
+ #: wppa-settings-autosave.php:4311
10635
  msgid "normal (5 s.)"
10636
  msgstr ""
10637
 
10638
+ #: wppa-settings-autosave.php:4311
10639
  msgid "slow (8 s.)"
10640
  msgstr ""
10641
 
10642
+ #: wppa-settings-autosave.php:4311
10643
  msgid "very slow (13 s.)"
10644
  msgstr "Très lent (13 s.)"
10645
 
10646
+ #: wppa-settings-autosave.php:4311
10647
  msgid "extremely slow (20 s.)"
10648
  msgstr ""
10649
 
10650
+ #: wppa-settings-autosave.php:4318
10651
  msgid "Overlay at top in Chrome"
10652
  msgstr ""
10653
 
10654
+ #: wppa-settings-autosave.php:4319
10655
  msgid ""
10656
  "Place the overlay (lightbox) image at the top of the page in Chrome browsers."
10657
  msgstr ""
10658
 
10659
+ #: wppa-settings-autosave.php:4320
10660
  msgid "This is required for certain mobile devices."
10661
  msgstr ""
10662
 
10663
+ #: wppa-settings-autosave.php:4327
10664
  msgid "WPPA+ Lightbox global"
10665
  msgstr ""
10666
 
10667
+ #: wppa-settings-autosave.php:4328
10668
  msgid "Use the wppa+ lightbox also for non-wppa images."
10669
  msgstr ""
10670
 
10671
+ #: wppa-settings-autosave.php:4336
10672
  msgid "WPPA+ Lightbox global is a set"
10673
  msgstr ""
10674
 
10675
+ #: wppa-settings-autosave.php:4337
10676
  msgid "Treat the other images as a set."
10677
  msgstr ""
10678
 
10679
+ #: wppa-settings-autosave.php:4338
10680
  msgid ""
10681
  "If checked, you can scroll through the images in the lightbox view. Requires "
10682
  "item 5 to be checked."
10683
  msgstr ""
10684
 
10685
+ #: wppa-settings-autosave.php:4345
10686
  msgid "Use hires files"
10687
  msgstr ""
10688
 
10689
+ #: wppa-settings-autosave.php:4346
10690
  msgid "Use the highest resolution available for lightbox."
10691
  msgstr ""
10692
 
10693
+ #: wppa-settings-autosave.php:4347
10694
  msgid "Ticking this box is recommended for lightbox fullscreen modes."
10695
  msgstr ""
10696
 
10697
+ #: wppa-settings-autosave.php:4355
10698
  msgid "Videos on lightbox start automaticly."
10699
  msgstr ""
10700
 
10701
+ #: wppa-settings-autosave.php:4364
10702
  msgid "Audio on lightbox start automaticly."
10703
  msgstr ""
10704
 
10705
+ #: wppa-settings-autosave.php:4389
10706
  msgid "Table V:"
10707
  msgstr "Table V:"
10708
 
10709
+ #: wppa-settings-autosave.php:4389
10710
  msgid "Fonts:"
10711
  msgstr "Polices:"
10712
 
10713
+ #: wppa-settings-autosave.php:4390
10714
  msgid "This table describes the Fonts used for the wppa+ elements."
10715
  msgstr ""
10716
 
10717
+ #: wppa-settings-autosave.php:4400 wppa-settings-autosave.php:4576
10718
  msgid "Font family"
10719
  msgstr "Famille de police"
10720
 
10721
+ #: wppa-settings-autosave.php:4401 wppa-settings-autosave.php:4577
10722
  msgid "Font size"
10723
  msgstr "Taille de la police"
10724
 
10725
+ #: wppa-settings-autosave.php:4402 wppa-settings-autosave.php:4578
10726
  msgid "Font color"
10727
  msgstr "Couleur de la police"
10728
 
10729
+ #: wppa-settings-autosave.php:4403 wppa-settings-autosave.php:4579
10730
  msgid "Font weight"
10731
  msgstr "Poids de la police"
10732
 
10733
+ #: wppa-settings-autosave.php:4413
10734
  msgid "normal"
10735
  msgstr "norma"
10736
 
10737
+ #: wppa-settings-autosave.php:4413
10738
  msgid "bold"
10739
  msgstr "gras"
10740
 
10741
+ #: wppa-settings-autosave.php:4413
10742
  msgid "bolder"
10743
  msgstr "plus gras"
10744
 
10745
+ #: wppa-settings-autosave.php:4413
10746
  msgid "lighter"
10747
  msgstr "plus fin"
10748
 
10749
+ #: wppa-settings-autosave.php:4416
10750
  msgid "Album titles"
10751
  msgstr "Titres albums"
10752
 
10753
+ #: wppa-settings-autosave.php:4417
10754
  msgid "Font used for Album titles."
10755
  msgstr "Police utilisée pour les titres d'album."
10756
 
10757
+ #: wppa-settings-autosave.php:4418
10758
  msgid "Enter font name, size, color and weight for album cover titles."
10759
  msgstr ""
10760
 
10761
+ #: wppa-settings-autosave.php:4433
10762
  msgid "Slideshow desc"
10763
  msgstr "Description du diaporama"
10764
 
10765
+ #: wppa-settings-autosave.php:4434
10766
  msgid "Font for slideshow photo descriptions."
10767
  msgstr "Police pour la description des photos."
10768
 
10769
+ #: wppa-settings-autosave.php:4435
10770
  msgid ""
10771
  "Enter font name, size, color and weight for slideshow photo descriptions."
10772
  msgstr ""
10773
 
10774
+ #: wppa-settings-autosave.php:4450
10775
  msgid "Slideshow name"
10776
  msgstr "Nom du diaporama"
10777
 
10778
+ #: wppa-settings-autosave.php:4451
10779
  msgid "Font for slideshow photo names."
10780
  msgstr "Police pour le nom des photos du diaporama."
10781
 
10782
+ #: wppa-settings-autosave.php:4452
10783
  msgid "Enter font name, size, color and weight for slideshow photo names."
10784
  msgstr ""
10785
 
10786
+ #: wppa-settings-autosave.php:4467
10787
  msgid "Navigations"
10788
  msgstr "Navigations"
10789
 
10790
+ #: wppa-settings-autosave.php:4468
10791
  msgid "Font for navigations."
10792
  msgstr "Police pour navigations."
10793
 
10794
+ #: wppa-settings-autosave.php:4469
10795
  msgid "Enter font name, size, color and weight for navigation items."
10796
  msgstr ""
10797
 
10798
+ #: wppa-settings-autosave.php:4485
10799
  msgid "Font for text under thumbnails."
10800
  msgstr "Police pour les textes sous les vignettes."
10801
 
10802
+ #: wppa-settings-autosave.php:4486
10803
  msgid ""
10804
  "Enter font name, size, color and weight for text under thumbnail images."
10805
  msgstr ""
10806
 
10807
+ #: wppa-settings-autosave.php:4502
10808
  msgid "General font in wppa boxes."
10809
  msgstr ""
10810
 
10811
+ #: wppa-settings-autosave.php:4503
10812
  msgid "Enter font name, size, color and weight for all other items."
10813
  msgstr ""
10814
 
10815
+ #: wppa-settings-autosave.php:4519
10816
  msgid "Font in wppa number bars."
10817
  msgstr ""
10818
 
10819
+ #: wppa-settings-autosave.php:4520 wppa-settings-autosave.php:4537
10820
  msgid "Enter font name, size, color and weight for numberbar navigation."
10821
  msgstr ""
10822
 
10823
+ #: wppa-settings-autosave.php:4535
10824
  msgid "Numbar Active"
10825
  msgstr ""
10826
 
10827
+ #: wppa-settings-autosave.php:4536
10828
  msgid "Font in wppa number bars, active item."
10829
  msgstr ""
10830
 
10831
+ #: wppa-settings-autosave.php:4553
10832
  msgid "Font in wppa lightbox overlays."
10833
  msgstr ""
10834
 
10835
+ #: wppa-settings-autosave.php:4554
10836
  msgid "Enter font name, size, color and weight for wppa lightbox overlays."
10837
  msgstr ""
10838
 
10839
+ #: wppa-settings-autosave.php:4589
10840
  msgid "Table VI:"
10841
  msgstr "Table VI:"
10842
 
10843
+ #: wppa-settings-autosave.php:4589
10844
  msgid "Links:"
10845
  msgstr "Liens:"
10846
 
10847
+ #: wppa-settings-autosave.php:4590
10848
  msgid "This table defines the link types and pages."
10849
  msgstr ""
10850
 
10851
+ #: wppa-settings-autosave.php:4601 wppa-settings-autosave.php:5643
10852
  msgid "Link page"
10853
  msgstr "Page lien"
10854
 
10855
+ #: wppa-settings-autosave.php:4603 wppa-settings-autosave.php:5645
10856
  msgid "Photo specific link overrules"
10857
  msgstr ""
10858
 
10859
+ #: wppa-settings-autosave.php:4603 wppa-settings-autosave.php:5645
10860
  msgid "PSO"
10861
  msgstr "PSO"
10862
 
10863
+ #: wppa-settings-autosave.php:4653
10864
  msgid "--- The same post or page ---"
10865
  msgstr "--- Même article ou page ---"
10866
 
10867
+ #: wppa-settings-autosave.php:4684
10868
  msgid "--- No page to link to (yet) ---"
10869
  msgstr ""
10870
 
10871
+ #: wppa-settings-autosave.php:4689
10872
  msgid "--- Will be auto created ---"
10873
  msgstr "--- Sera créé automatiquement ---"
10874
 
10875
+ #: wppa-settings-autosave.php:4691
10876
  msgid "Links from images in WPPA+ Widgets"
10877
  msgstr ""
10878
 
10879
+ #: wppa-settings-autosave.php:4693
10880
  msgid "PotdWidget"
10881
  msgstr "Widget Photo du jour"
10882
 
10883
+ #: wppa-settings-autosave.php:4694
10884
  msgid "Photo Of The Day widget link."
10885
  msgstr ""
10886
 
10887
+ #: wppa-settings-autosave.php:4695
10888
  msgid "Select the type of link the photo of the day points to."
10889
  msgstr ""
10890
 
10891
+ #: wppa-settings-autosave.php:4696
10892
  msgid ""
10893
  "If you select 'defined on widget admin page' you can manually enter a link "
10894
  "and title on the Photo of the day Widget Admin page."
10895
  msgstr ""
10896
 
10897
+ #: wppa-settings-autosave.php:4705 wppa-settings-autosave.php:4748
10898
+ #: wppa-settings-autosave.php:4826 wppa-settings-autosave.php:4869
10899
+ #: wppa-settings-autosave.php:4917 wppa-settings-autosave.php:4964
10900
+ #: wppa-settings-autosave.php:5011 wppa-settings-autosave.php:5063
10901
+ #: wppa-settings-autosave.php:5101 wppa-settings-autosave.php:5151
10902
+ #: wppa-settings-autosave.php:5193 wppa-settings-autosave.php:5233
10903
+ #: wppa-settings-autosave.php:9192
10904
  msgid "no link at all."
10905
  msgstr "pas de lien du tout."
10906
 
10907
+ #: wppa-settings-autosave.php:4706 wppa-settings-autosave.php:4749
10908
+ #: wppa-settings-autosave.php:4827 wppa-settings-autosave.php:4870
10909
+ #: wppa-settings-autosave.php:4918 wppa-settings-autosave.php:4965
10910
+ #: wppa-settings-autosave.php:5012 wppa-settings-autosave.php:5064
10911
+ #: wppa-settings-autosave.php:5102 wppa-settings-autosave.php:5152
10912
+ #: wppa-settings-autosave.php:5194 wppa-settings-autosave.php:5234
10913
+ #: wppa-settings-autosave.php:9193
10914
  msgid "the plain photo (file)."
10915
  msgstr ""
10916
 
10917
+ #: wppa-settings-autosave.php:4707 wppa-settings-autosave.php:9199
10918
  msgid "defined on widget admin page."
10919
  msgstr "réglages sur la page d'admin des widgets."
10920
 
10921
+ #: wppa-settings-autosave.php:4708 wppa-settings-autosave.php:4751
10922
+ #: wppa-settings-autosave.php:5153 wppa-settings-autosave.php:5195
10923
+ #: wppa-settings-autosave.php:9197
10924
  msgid "the content of the album."
10925
  msgstr ""
10926
 
10927
+ #: wppa-settings-autosave.php:4709 wppa-settings-autosave.php:4752
10928
+ #: wppa-settings-autosave.php:4828 wppa-settings-autosave.php:4873
10929
+ #: wppa-settings-autosave.php:4921 wppa-settings-autosave.php:4968
10930
+ #: wppa-settings-autosave.php:5015 wppa-settings-autosave.php:5103
10931
+ #: wppa-settings-autosave.php:5154 wppa-settings-autosave.php:5196
10932
+ #: wppa-settings-autosave.php:9194
10933
  msgid "the full size photo in a slideshow."
10934
  msgstr ""
10935
 
10936
+ #: wppa-settings-autosave.php:4710 wppa-settings-autosave.php:4753
10937
+ #: wppa-settings-autosave.php:4829 wppa-settings-autosave.php:4874
10938
+ #: wppa-settings-autosave.php:4922 wppa-settings-autosave.php:4969
10939
+ #: wppa-settings-autosave.php:5016 wppa-settings-autosave.php:5104
10940
+ #: wppa-settings-autosave.php:5155 wppa-settings-autosave.php:5197
10941
+ #: wppa-settings-autosave.php:5235 wppa-settings-autosave.php:9195
10942
  msgid "the fullsize photo on its own."
10943
  msgstr ""
10944
 
10945
+ #: wppa-settings-autosave.php:4711 wppa-settings-autosave.php:4754
10946
+ #: wppa-settings-autosave.php:4793 wppa-settings-autosave.php:4832
10947
+ #: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:4925
10948
+ #: wppa-settings-autosave.php:4972 wppa-settings-autosave.php:5019
10949
+ #: wppa-settings-autosave.php:5107
10950
  msgid "a plain page without a querystring."
10951
  msgstr ""
10952
 
10953
+ #: wppa-settings-autosave.php:4712 wppa-settings-autosave.php:4755
10954
+ #: wppa-settings-autosave.php:4794 wppa-settings-autosave.php:4833
10955
+ #: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:4926
10956
+ #: wppa-settings-autosave.php:4973 wppa-settings-autosave.php:5020
10957
+ #: wppa-settings-autosave.php:5066 wppa-settings-autosave.php:5108
10958
+ #: wppa-settings-autosave.php:5156 wppa-settings-autosave.php:5198
10959
+ #: wppa-settings-autosave.php:5236
10960
  msgid "lightbox."
10961
  msgstr "lightbox."
10962
 
10963
+ #: wppa-settings-autosave.php:4737
10964
  msgid "SlideWidget"
10965
  msgstr "Widget diapo"
10966
 
10967
+ #: wppa-settings-autosave.php:4738
10968
  msgid "Slideshow widget photo link."
10969
  msgstr ""
10970
 
10971
+ #: wppa-settings-autosave.php:4739
10972
  msgid "Select the type of link the slideshow photos point to."
10973
  msgstr ""
10974
 
10975
+ #: wppa-settings-autosave.php:4750 wppa-settings-autosave.php:9198
10976
  msgid "defined at widget activation."
10977
  msgstr ""
10978
 
10979
+ #: wppa-settings-autosave.php:4780
10980
  msgid "Album widget"
10981
  msgstr "Widget album"
10982
 
10983
+ #: wppa-settings-autosave.php:4781
10984
  msgid "Album widget thumbnail link"
10985
  msgstr ""
10986
 
10987
+ #: wppa-settings-autosave.php:4782
10988
  msgid "Select the type of link the album widget photos point to."
10989
  msgstr ""
10990
 
10991
+ #: wppa-settings-autosave.php:4791
10992
  msgid "subalbums and thumbnails."
10993
  msgstr ""
10994
 
10995
+ #: wppa-settings-autosave.php:4792
10996
  msgid "slideshow."
10997
  msgstr "diaporama."
10998
 
10999
+ #: wppa-settings-autosave.php:4815
11000
  msgid "ThumbnailWidget"
11001
  msgstr "Widget vignettes"
11002
 
11003
+ #: wppa-settings-autosave.php:4816
11004
  msgid "Thumbnail widget photo link."
11005
  msgstr ""
11006
 
11007
+ #: wppa-settings-autosave.php:4817
11008
  msgid "Select the type of link the thumbnail photos point to."
11009
  msgstr ""
11010
 
11011
+ #: wppa-settings-autosave.php:4830 wppa-settings-autosave.php:4875
11012
+ #: wppa-settings-autosave.php:4923 wppa-settings-autosave.php:4970
11013
+ #: wppa-settings-autosave.php:5017 wppa-settings-autosave.php:5105
11014
  msgid "the single photo in the style of a slideshow."
11015
  msgstr ""
11016
 
11017
+ #: wppa-settings-autosave.php:4831 wppa-settings-autosave.php:4876
11018
+ #: wppa-settings-autosave.php:4924 wppa-settings-autosave.php:4971
11019
+ #: wppa-settings-autosave.php:5018 wppa-settings-autosave.php:5106
11020
+ #: wppa-settings-autosave.php:5238
11021
  msgid "the fs photo with download and print buttons."
11022
  msgstr ""
11023
 
11024
+ #: wppa-settings-autosave.php:4858
11025
  msgid "TopTenWidget"
11026
  msgstr ""
11027
 
11028
+ #: wppa-settings-autosave.php:4859
11029
  msgid "TopTen widget photo link."
11030
  msgstr ""
11031
 
11032
+ #: wppa-settings-autosave.php:4860
11033
  msgid "Select the type of link the top ten photos point to."
11034
  msgstr ""
11035
 
11036
+ #: wppa-settings-autosave.php:4871
11037
  msgid "the content of the virtual topten album."
11038
  msgstr ""
11039
 
11040
+ #: wppa-settings-autosave.php:4872 wppa-settings-autosave.php:4920
11041
+ #: wppa-settings-autosave.php:4967 wppa-settings-autosave.php:5014
11042
  msgid "the content of the thumbnails album."
11043
  msgstr ""
11044
 
11045
+ #: wppa-settings-autosave.php:4906
11046
  msgid "LasTenWidget"
11047
  msgstr ""
11048
 
11049
+ #: wppa-settings-autosave.php:4907
11050
  msgid "Last Ten widget photo link."
11051
  msgstr ""
11052
 
11053
+ #: wppa-settings-autosave.php:4908
11054
  msgid "Select the type of link the last ten photos point to."
11055
  msgstr ""
11056
 
11057
+ #: wppa-settings-autosave.php:4919
11058
  msgid "the content of the virtual lasten album."
11059
  msgstr ""
11060
 
11061
+ #: wppa-settings-autosave.php:4953
11062
  msgid "CommentWidget"
11063
  msgstr "Widget commentaire"
11064
 
11065
+ #: wppa-settings-autosave.php:4954
11066
  msgid "Comment widget photo link."
11067
  msgstr ""
11068
 
11069
+ #: wppa-settings-autosave.php:4955
11070
  msgid "Select the type of link the comment widget photos point to."
11071
  msgstr ""
11072
 
11073
+ #: wppa-settings-autosave.php:4966
11074
  msgid "the content of the virtual comten album."
11075
  msgstr ""
11076
 
11077
+ #: wppa-settings-autosave.php:5000
11078
  msgid "FeaTenWidget"
11079
  msgstr ""
11080
 
11081
+ #: wppa-settings-autosave.php:5001
11082
  msgid "FeaTen widget photo link."
11083
  msgstr ""
11084
 
11085
+ #: wppa-settings-autosave.php:5002
11086
  msgid "Select the type of link the featured ten photos point to."
11087
  msgstr ""
11088
 
11089
+ #: wppa-settings-autosave.php:5013
11090
  msgid "the content of the virtual featen album."
11091
  msgstr ""
11092
 
11093
+ #: wppa-settings-autosave.php:5046
11094
  msgid "Links from other WPPA+ images"
11095
  msgstr ""
11096
 
11097
+ #: wppa-settings-autosave.php:5048
11098
  msgid "Cover Image"
11099
  msgstr "Image de couverture"
11100
 
11101
+ #: wppa-settings-autosave.php:5049
11102
  msgid "The link from the cover image of an album."
11103
  msgstr ""
11104
 
11105
+ #: wppa-settings-autosave.php:5050
11106
  msgid "Select the type of link the coverphoto points to."
11107
  msgstr ""
11108
 
11109
+ #: wppa-settings-autosave.php:5051
11110
  msgid "The link from the album title can be configured on the Edit Album page."
11111
  msgstr ""
11112
 
11113
+ #: wppa-settings-autosave.php:5052
11114
  msgid "This link will be used for the photo also if you select: same as title."
11115
  msgstr ""
11116
 
11117
+ #: wppa-settings-autosave.php:5053
11118
  msgid ""
11119
  "If you specify New Tab on this line, all links from the cover will open a "
11120
  "new tab,"
11121
  msgstr ""
11122
 
11123
+ #: wppa-settings-autosave.php:5054
11124
  msgid "except when Ajax is activated on Table IV-A1."
11125
  msgstr ""
11126
 
11127
+ #: wppa-settings-autosave.php:5065 wppa-settings-autosave.php:9200
11128
  msgid "same as title."
11129
  msgstr "identique au titre."
11130
 
11131
+ #: wppa-settings-autosave.php:5067
11132
  msgid "a slideshow starting at the photo"
11133
  msgstr ""
11134
 
11135
+ #: wppa-settings-autosave.php:5088
11136
  msgid "Thumbnail"
11137
  msgstr "Vignette"
11138
 
11139
+ #: wppa-settings-autosave.php:5089
11140
  msgid "Thumbnail link."
11141
  msgstr "Lien vignette."
11142
 
11143
+ #: wppa-settings-autosave.php:5090 wppa-settings-autosave.php:5140
11144
+ #: wppa-settings-autosave.php:5182
11145
  msgid "Select the type of link you want, or no link at all."
11146
  msgstr ""
11147
 
11148
+ #: wppa-settings-autosave.php:5091 wppa-settings-autosave.php:5141
11149
+ #: wppa-settings-autosave.php:5183
11150
  msgid ""
11151
  "If you select the fullsize photo on its own, it will be stretched to fit, "
11152
  "regardless of that setting."
11153
  msgstr ""
11154
 
11155
+ #: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5142
11156
+ #: wppa-settings-autosave.php:5184
11157
  #, php-format
11158
  msgid ""
11159
  "Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
11160
  "to show up the photo(s)."
11161
  msgstr ""
11162
 
11163
+ #: wppa-settings-autosave.php:5121
11164
  msgid "Auto Page"
11165
  msgstr ""
11166
 
11167
+ #: wppa-settings-autosave.php:5138
11168
  msgid "Sphoto"
11169
  msgstr "Sphoto"
11170
 
11171
+ #: wppa-settings-autosave.php:5139
11172
  msgid "Single photo link."
11173
  msgstr "Lien photo unique"
11174
 
11175
+ #: wppa-settings-autosave.php:5180
11176
  msgid "Mphoto"
11177
  msgstr "Mphoto"
11178
 
11179
+ #: wppa-settings-autosave.php:5181
11180
  msgid "Media-like photo link."
11181
  msgstr ""
11182
 
11183
+ #: wppa-settings-autosave.php:5223
11184
  msgid "Slideshow fullsize link"
11185
  msgstr ""
11186
 
11187
+ #: wppa-settings-autosave.php:5224
11188
  msgid ""
11189
  "You can overrule lightbox but not big browse buttons with the photo specifc "
11190
  "link."
11191
  msgstr ""
11192
 
11193
+ #: wppa-settings-autosave.php:5237
11194
  msgid "lightbox single photos."
11195
  msgstr ""
11196
 
11197
+ #: wppa-settings-autosave.php:5239
11198
  msgid "the thumbnails."
11199
  msgstr "les vignettes."
11200
 
11201
+ #: wppa-settings-autosave.php:5263
11202
  msgid "Film linktype"
11203
  msgstr ""
11204
 
11205
+ #: wppa-settings-autosave.php:5264
11206
  msgid "Direct access goto image in:"
11207
  msgstr ""
11208
 
11209
+ #: wppa-settings-autosave.php:5265
11210
  msgid ""
11211
  "Select the action to be taken when the user clicks on a filmstrip image."
11212
  msgstr ""
11213
 
11214
+ #: wppa-settings-autosave.php:5270
11215
  msgid "slideshow window"
11216
  msgstr "fenêtre de diaporama"
11217
 
11218
+ #: wppa-settings-autosave.php:5271
11219
  msgid "lightbox overlay"
11220
  msgstr ""
11221
 
11222
+ #: wppa-settings-autosave.php:5286
11223
  msgid "Other links"
11224
  msgstr "Autres liens"
11225
 
11226
+ #: wppa-settings-autosave.php:5288
11227
  msgid "Download Link (aka Art Monkey link)"
11228
  msgstr ""
11229
 
11230
+ #: wppa-settings-autosave.php:5289
11231
  msgid "Makes the photo name a download button."
11232
  msgstr ""
11233
 
11234
+ #: wppa-settings-autosave.php:5290
11235
  msgid "Link Photo name in slideshow to file or zip with photoname as filename."
11236
  msgstr ""
11237
 
11238
+ #: wppa-settings-autosave.php:5294 wppa-settings-autosave.php:5341
11239
  msgid "image file"
11240
  msgstr ""
11241
 
11242
+ #: wppa-settings-autosave.php:5295 wppa-settings-autosave.php:5342
11243
  msgid "zipped image"
11244
  msgstr ""
11245
 
11246
+ #: wppa-settings-autosave.php:5308
11247
  msgid "Art Monkey Source"
11248
  msgstr ""
11249
 
11250
+ #: wppa-settings-autosave.php:5309
11251
  msgid "Use Source file for art monkey link if available."
11252
  msgstr ""
11253
 
11254
+ #: wppa-settings-autosave.php:5318
11255
  msgid "Art Monkey Display"
11256
  msgstr ""
11257
 
11258
+ #: wppa-settings-autosave.php:5319
11259
  msgid "Select button or link ( text )."
11260
  msgstr ""
11261
 
11262
+ #: wppa-settings-autosave.php:5324
11263
  msgid "Textlink"
11264
  msgstr "Lien texte"
11265
 
11266
+ #: wppa-settings-autosave.php:5336
11267
  msgid "Popup Download Link"
11268
  msgstr ""
11269
 
11270
+ #: wppa-settings-autosave.php:5337
11271
  msgid "Configure the download link on fullsize popups."
11272
  msgstr ""
11273
 
11274
+ #: wppa-settings-autosave.php:5338
11275
  msgid "Link fullsize popup download button to either image or zip file."
11276
  msgstr ""
11277
 
11278
+ #: wppa-settings-autosave.php:5354
11279
  msgid "Download link on lightbox"
11280
  msgstr ""
11281
 
11282
+ #: wppa-settings-autosave.php:5355
11283
  msgid "Art monkey link on lightbox photo names."
11284
  msgstr ""
11285
 
11286
+ #: wppa-settings-autosave.php:5364
11287
  msgid "Album download link"
11288
  msgstr "Lien de téléchargement de l'album"
11289
 
11290
+ #: wppa-settings-autosave.php:5365
11291
  msgid "Place an album download link on the album covers"
11292
  msgstr ""
11293
 
11294
+ #: wppa-settings-autosave.php:5366
11295
  msgid "Creates a download zipfile containing the photos of the album"
11296
  msgstr ""
11297
 
11298
+ #: wppa-settings-autosave.php:5374
11299
  msgid "Album download Source"
11300
  msgstr ""
11301
 
11302
+ #: wppa-settings-autosave.php:5375
11303
  msgid "Use Source file for album download link if available."
11304
  msgstr ""
11305
 
11306
+ #: wppa-settings-autosave.php:5384
11307
  msgid "Tagcloud Link"
11308
  msgstr ""
11309
 
11310
+ #: wppa-settings-autosave.php:5385
11311
  msgid "Configure the link from the tags in the tag cloud."
11312
  msgstr ""
11313
 
11314
+ #: wppa-settings-autosave.php:5386
11315
  msgid "Link the tag words to ether the thumbnails or the slideshow."
11316
  msgstr ""
11317
 
11318
+ #: wppa-settings-autosave.php:5395 wppa-settings-autosave.php:5426
11319
+ #: wppa-settings-autosave.php:5521
11320
  msgid "slideshow"
11321
  msgstr "diaporama"
11322
 
11323
+ #: wppa-settings-autosave.php:5415
11324
  msgid "Multitag Link"
11325
  msgstr ""
11326
 
11327
+ #: wppa-settings-autosave.php:5416
11328
  msgid "Configure the link from the multitag selection."
11329
  msgstr ""
11330
 
11331
+ #: wppa-settings-autosave.php:5417
11332
  msgid "Link to ether the thumbnails or the slideshow."
11333
  msgstr ""
11334
 
11335
+ #: wppa-settings-autosave.php:5446
11336
  msgid "Super View Landing"
11337
  msgstr "Destination Superview"
11338
 
11339
+ #: wppa-settings-autosave.php:5447
11340
  msgid "The landing page for the Super View widget."
11341
  msgstr ""
11342
 
11343
+ #: wppa-settings-autosave.php:5455
11344
  msgid "Defined by the visitor"
11345
  msgstr ""
11346
 
11347
+ #: wppa-settings-autosave.php:5468
11348
  msgid "Uploader Landing"
11349
  msgstr "Destination du chargement"
11350
 
11351
+ #: wppa-settings-autosave.php:5469
11352
  msgid "Select the landing page for the Uploader Widget"
11353
  msgstr ""
11354
 
11355
+ #: wppa-settings-autosave.php:5489
11356
  msgid "Bestof Landing"
11357
  msgstr ""
11358
 
11359
+ #: wppa-settings-autosave.php:5490
11360
  msgid "Select the landing page for the BestOf Widget / Box"
11361
  msgstr ""
11362
 
11363
+ #: wppa-settings-autosave.php:5510
11364
  msgid "Album navigator Link"
11365
  msgstr ""
11366
 
11367
+ #: wppa-settings-autosave.php:5511
11368
  msgid "Select link type and page for the Album navigator Widget"
11369
  msgstr ""
11370
 
11371
+ #: wppa-settings-autosave.php:5539
11372
  msgid "Supersearch Landing"
11373
  msgstr ""
11374
 
11375
+ #: wppa-settings-autosave.php:5540
11376
  msgid "Select the landing page for the Supersearch Box"
11377
  msgstr ""
11378
 
11379
+ #: wppa-settings-autosave.php:5560
11380
  msgid "SM widget return"
11381
  msgstr ""
11382
 
11383
+ #: wppa-settings-autosave.php:5561
11384
  msgid "Select the return link for social media from widgets"
11385
  msgstr ""
11386
 
11387
+ #: wppa-settings-autosave.php:5562
11388
  msgid ""
11389
  "If you select Landing page, and it wont work, it may be required to set the "
11390
  "Occur to the sequence number of the landing shortcode on the page."
11391
  msgstr ""
11392
 
11393
+ #: wppa-settings-autosave.php:5563
11394
  msgid ""
11395
  "Normally it is 1, but you can try 2 etc. Always create a new shared link to "
11396
  "test a setting."
11397
  msgstr ""
11398
 
11399
+ #: wppa-settings-autosave.php:5571
11400
  msgid "Home page"
11401
  msgstr "Page d'accueil"
11402
 
11403
+ #: wppa-settings-autosave.php:5572
11404
  msgid "Landing page"
11405
  msgstr "Page de destination"
11406
 
11407
+ #: wppa-settings-autosave.php:5583
11408
  msgid "Occur"
11409
  msgstr ""
11410
 
11411
+ #: wppa-settings-autosave.php:5592
11412
  msgid "Album cover subalbums link"
11413
  msgstr ""
11414
 
11415
+ #: wppa-settings-autosave.php:5593
11416
  msgid ""
11417
  "Select the linktype and display type for sub-albums on parent album covers."
11418
  msgstr ""
11419
 
11420
+ #: wppa-settings-autosave.php:5601
11421
  msgid "No link at all"
11422
  msgstr ""
11423
 
11424
+ #: wppa-settings-autosave.php:5602
11425
  msgid "Thumbnails and covers"
11426
  msgstr "Vignettes et couvertures"
11427
 
11428
+ #: wppa-settings-autosave.php:5603
11429
  msgid "Slideshow or covers"
11430
  msgstr "Diaporama et couvertures"
11431
 
11432
+ #: wppa-settings-autosave.php:5613
11433
  msgid "No display at all"
11434
  msgstr ""
11435
 
11436
+ #: wppa-settings-autosave.php:5614
11437
  msgid "A list with sub(sub) albums"
11438
  msgstr ""
11439
 
11440
+ #: wppa-settings-autosave.php:5615
11441
  msgid "A list of children only"
11442
  msgstr ""
11443
 
11444
+ #: wppa-settings-autosave.php:5616
11445
  msgid "An enumeration of names"
11446
  msgstr ""
11447
 
11448
+ #: wppa-settings-autosave.php:5617
11449
  msgid "Micro thumbnails"
11450
  msgstr ""
11451
 
11452
+ #: wppa-settings-autosave.php:5655
11453
  msgid "Table VII:"
11454
  msgstr ""
11455
 
11456
+ #: wppa-settings-autosave.php:5655
11457
  msgid "Permissions and Restrictions:"
11458
  msgstr ""
11459
 
11460
+ #: wppa-settings-autosave.php:5656
11461
  msgid ""
11462
  "This table describes the access settings for admin and front-end activities."
11463
  msgstr ""
11464
 
11465
+ #: wppa-settings-autosave.php:5677
11466
  msgid "Moderate P+C"
11467
  msgstr "Modérer P+C"
11468
 
11469
+ #: wppa-settings-autosave.php:5681
11470
  msgid "Comment&nbsp;Admin"
11471
  msgstr "Admin&nbsp;Commentaire"
11472
 
11473
+ #: wppa-settings-autosave.php:5684
11474
  msgid "Role"
11475
  msgstr "Rôle"
11476
 
11477
+ #: wppa-settings-autosave.php:5693
11478
  msgid ""
11479
  "Admin settings per user role. Enabling these settings will overrule the "
11480
  "front-end settings for the specific user role"
11481
  msgstr ""
11482
 
11483
+ #: wppa-settings-autosave.php:5717
11484
  msgid "Frontend create Albums and upload Photos enabling and limiting settings"
11485
  msgstr ""
11486
 
11487
+ #: wppa-settings-autosave.php:5719
11488
  msgid "User create Albums"
11489
  msgstr ""
11490
 
11491
+ #: wppa-settings-autosave.php:5720
11492
  msgid "Enable frontend album creation."
11493
  msgstr ""
11494
 
11495
+ #: wppa-settings-autosave.php:5721
11496
  msgid "If you check this item, frontend album creation will be enabled."
11497
  msgstr ""
11498
 
11499
+ #: wppa-settings-autosave.php:5731
11500
  msgid "User edit album"
11501
  msgstr ""
11502
 
11503
+ #: wppa-settings-autosave.php:5732
11504
  msgid "Enable frontent edit album name and description."
11505
  msgstr ""
11506
 
11507
+ #: wppa-settings-autosave.php:5742
11508
  msgid "User delete Albums"
11509
  msgstr ""
11510
 
11511
+ #: wppa-settings-autosave.php:5743
11512
  msgid "Enable frontend album deletion"
11513
  msgstr ""
11514
 
11515
+ #: wppa-settings-autosave.php:5744
11516
  msgid "If you check this item, frontend album deletion will be enabled."
11517
  msgstr ""
11518
 
11519
+ #: wppa-settings-autosave.php:5754
11520
  msgid "User create Albums login"
11521
  msgstr ""
11522
 
11523
+ #: wppa-settings-autosave.php:5755
11524
  msgid "Frontend album creation requires the user is logged in."
11525
  msgstr ""
11526
 
11527
+ #: wppa-settings-autosave.php:5781
11528
  #, php-format
11529
  msgid "Upload limit %s"
11530
  msgstr "Upload limit %s"
11531
 
11532
+ #: wppa-settings-autosave.php:5782
11533
  msgid "Limit upload capacity for logged out users."
11534
  msgstr ""
11535
 
11536
+ #: wppa-settings-autosave.php:5783
11537
  #, php-format
11538
  msgid "Limit upload capacity for the user role %s."
11539
  msgstr ""
11540
 
11541
+ #: wppa-settings-autosave.php:5784
11542
  msgid "This setting has only effect when Table VII-B2 is unchecked."
11543
  msgstr ""
11544
 
11545
+ #: wppa-settings-autosave.php:5785
11546
  msgid ""
11547
  "This limitation only applies to frontend uploads when the same userrole does "
11548
  "not have the Upload checkbox checked in Table VII-A."
11549
  msgstr ""
11550
 
11551
+ #: wppa-settings-autosave.php:5786 wppa-settings-autosave.php:5802
11552
+ #: wppa-settings-autosave.php:7322
11553
  msgid "A value of 0 means: no limit."
11554
  msgstr ""
11555
 
11556
+ #: wppa-settings-autosave.php:5799
11557
  #, php-format
11558
  msgid "Album limit %s"
11559
  msgstr "Album limit %s"
11560
 
11561
+ #: wppa-settings-autosave.php:5800
11562
  #, php-format
11563
  msgid "Limit number of albums for the user role %s."
11564
  msgstr ""
11565
 
11566
+ #: wppa-settings-autosave.php:5801
11567
  msgid ""
11568
  "This limitation only applies to frontend create albums when the same "
11569
  "userrole does not have the Album admin checkbox checked in Table VII-A."
11570
  msgstr ""
11571
 
11572
+ #: wppa-settings-autosave.php:5813
11573
  msgid "Upload one only"
11574
  msgstr "Charger un seul élément"
11575
 
11576
+ #: wppa-settings-autosave.php:5814
11577
  msgid "Non admin users can upload only one photo at a time."
11578
  msgstr ""
11579
 
11580
+ #: wppa-settings-autosave.php:5824
11581
  msgid "Upload moderation"
11582
  msgstr "Modération du chargement des photos"
11583
 
11584
+ #: wppa-settings-autosave.php:5825
11585
  msgid "Uploaded photos need moderation."
11586
  msgstr "La photo chargée nécessite une modération."
11587
 
11588
+ #: wppa-settings-autosave.php:5826
11589
  msgid ""
11590
  "If checked, photos uploaded by users who do not have photo album admin "
11591
  "access rights need moderation."
11592
  msgstr ""
11593
 
11594
+ #: wppa-settings-autosave.php:5827
11595
  msgid ""
11596
  "Users who have photo album admin access rights can change the photo status "
11597
  "to publish or featured."
11598
  msgstr ""
11599
 
11600
+ #: wppa-settings-autosave.php:5828
11601
  msgid "You can set the album admin access rights in Table VII-A."
11602
  msgstr ""
11603
 
11604
+ #: wppa-settings-autosave.php:5837
11605
  msgid "Upload notify"
11606
  msgstr "Notification de chargement"
11607
 
11608
+ #: wppa-settings-autosave.php:5838
11609
  msgid "Notify admin at frontend upload."
11610
  msgstr ""
11611
 
11612
+ #: wppa-settings-autosave.php:5839 wppa-settings-autosave.php:5850
11613
  msgid "If checked, admin will receive a notification by email."
11614
  msgstr ""
11615
 
11616
+ #: wppa-settings-autosave.php:5848
11617
  msgid "Upload backend notify"
11618
  msgstr ""
11619
 
11620
+ #: wppa-settings-autosave.php:5849
11621
  msgid "Notify admin at backend upload."
11622
  msgstr ""
11623
 
11624
+ #: wppa-settings-autosave.php:5859
11625
  msgid "Max size in pixels"
11626
  msgstr ""
11627
 
11628
+ #: wppa-settings-autosave.php:5860
11629
  msgid "Max size for height and width for front-end uploads."
11630
  msgstr ""
11631
 
11632
+ #: wppa-settings-autosave.php:5861
11633
  msgid "Enter the maximum size. 0 is unlimited"
11634
  msgstr ""
11635
 
11636
+ #: wppa-settings-autosave.php:5870
11637
  msgid "Home after Upload"
11638
  msgstr ""
11639
 
11640
+ #: wppa-settings-autosave.php:5871
11641
  msgid "After successfull front-end upload, go to the home page."
11642
  msgstr ""
11643
 
11644
+ #: wppa-settings-autosave.php:5881
11645
  msgid "Admin Functionality restrictions for non administrators"
11646
  msgstr ""
11647
 
11648
+ #: wppa-settings-autosave.php:5883
11649
  msgid "Alt thumb is restricted"
11650
  msgstr ""
11651
 
11652
+ #: wppa-settings-autosave.php:5884
11653
  msgid "Using <b>alt thumbsize</b> is a restricted action."
11654
  msgstr ""
11655
 
11656
+ #: wppa-settings-autosave.php:5885
11657
  msgid ""
11658
  "If checked: alt thumbsize can not be set in album admin by users not having "
11659
  "admin rights."
11660
  msgstr ""
11661
 
11662
+ #: wppa-settings-autosave.php:5894
11663
  msgid "Link is restricted"
11664
  msgstr ""
11665
 
11666
+ #: wppa-settings-autosave.php:5895
11667
  msgid "Using <b>Link to</b> is a restricted action."
11668
  msgstr ""
11669
 
11670
+ #: wppa-settings-autosave.php:5896
11671
  msgid ""
11672
  "If checked: Link to: can not be set in album admin by users not having admin "
11673
  "rights."
11674
  msgstr ""
11675
 
11676
+ #: wppa-settings-autosave.php:5905
11677
  msgid "CoverType is restricted"
11678
  msgstr ""
11679
 
11680
+ #: wppa-settings-autosave.php:5906
11681
  msgid "Changing <b>Cover Type</b> is a restricted action."
11682
  msgstr ""
11683
 
11684
+ #: wppa-settings-autosave.php:5907
11685
  msgid ""
11686
  "If checked: Cover Type: can not be set in album admin by users not having "
11687
  "admin rights."
11688
  msgstr ""
11689
 
11690
+ #: wppa-settings-autosave.php:5916
11691
  msgid "Photo order# is restricted"
11692
  msgstr "Photo order# is restricted"
11693
 
11694
+ #: wppa-settings-autosave.php:5917
11695
  msgid "Changing <b>Photo sort order #</b> is a restricted action."
11696
  msgstr ""
11697
 
11698
+ #: wppa-settings-autosave.php:5918
11699
  msgid ""
11700
  "If checked: Photo sort order #: can not be set in photo admin by users not "
11701
  "having admin rights."
11702
  msgstr ""
11703
 
11704
+ #: wppa-settings-autosave.php:5927
11705
  msgid "Change source restricted"
11706
  msgstr ""
11707
 
11708
+ #: wppa-settings-autosave.php:5928
11709
  msgid "Changing the import source dir requires admin rights."
11710
  msgstr ""
11711
 
11712
+ #: wppa-settings-autosave.php:5929
11713
  msgid ""
11714
  "If checked, the imput source for importing photos and albums is restricted "
11715
  "to user role administrator."
11716
  msgstr ""
11717
 
11718
+ #: wppa-settings-autosave.php:5938
11719
  msgid "Extended status restricted"
11720
  msgstr ""
11721
 
11722
+ #: wppa-settings-autosave.php:5939
11723
  msgid "Setting status other than pending or publish requires admin rights."
11724
  msgstr ""
11725
 
11726
+ #: wppa-settings-autosave.php:5949
11727
  msgid "Photo description restricted"
11728
  msgstr ""
11729
 
11730
+ #: wppa-settings-autosave.php:5950
11731
  msgid "Edit photo description requires admin rights."
11732
  msgstr ""
11733
 
11734
+ #: wppa-settings-autosave.php:5960
11735
  msgid "Update photofiles restricted"
11736
  msgstr ""
11737
 
11738
+ #: wppa-settings-autosave.php:5961
11739
  msgid "Re-upload files requires admin rights"
11740
  msgstr ""
11741
 
11742
+ #: wppa-settings-autosave.php:5971
11743
  msgid "Miscellaneous limiting settings"
11744
  msgstr ""
11745
 
11746
+ #: wppa-settings-autosave.php:5973
11747
  msgid "Owners only"
11748
  msgstr "Propriétaires seulement"
11749
 
11750
+ #: wppa-settings-autosave.php:5974
11751
  msgid "Limit edit album access to the album owners only."
11752
  msgstr ""
11753
 
11754
+ #: wppa-settings-autosave.php:5975
11755
  msgid "If checked, non-admin users can edit their own albums only."
11756
  msgstr ""
11757
 
11758
+ #: wppa-settings-autosave.php:5984
11759
  msgid "Upload Owners only"
11760
  msgstr ""
11761
 
11762
+ #: wppa-settings-autosave.php:5985
11763
  msgid "Limit uploads to the album owners only."
11764
  msgstr ""
11765
 
11766
+ #: wppa-settings-autosave.php:5986
11767
  msgid ""
11768
  "If checked, users can upload to their own own albums and --- public --- only."
11769
  msgstr ""
11770
 
11771
+ #: wppa-settings-autosave.php:5995
11772
  msgid "Uploader Edit"
11773
  msgstr ""
11774
 
11775
+ #: wppa-settings-autosave.php:5996
11776
  msgid "Allow the uploader to edit the photo info"
11777
  msgstr ""
11778
 
11779
+ #: wppa-settings-autosave.php:5997
11780
  msgid ""
11781
  "If checked, any logged in user that has upload rights and uploads an image "
11782
  "has the capability to edit the photo information."
11783
  msgstr ""
11784
 
11785
+ #: wppa-settings-autosave.php:5998
11786
  msgid "Note: This may be AFTER moderation!!"
11787
  msgstr ""
11788
 
11789
+ #: wppa-settings-autosave.php:6007
11790
  msgid "Uploader Moderate Comment"
11791
  msgstr ""
11792
 
11793
+ #: wppa-settings-autosave.php:6008
11794
  msgid "The owner of the photo can moderate the photos comments."
11795
  msgstr ""
11796
 
11797
+ #: wppa-settings-autosave.php:6009
11798
  msgid "This setting requires \"Uploader edit\" to be enabled also."
11799
  msgstr ""
11800
 
11801
+ #: wppa-settings-autosave.php:6018
11802
  msgid "Upload memory check frontend"
11803
  msgstr ""
11804
 
11805
+ #: wppa-settings-autosave.php:6019 wppa-settings-autosave.php:6030
11806
  msgid "Disable uploading photos that are too large."
11807
  msgstr ""
11808
 
11809
+ #: wppa-settings-autosave.php:6020 wppa-settings-autosave.php:6031
11810
  msgid ""
11811
  "To prevent out of memory crashes during upload and possible database "
11812
  "inconsistencies, uploads can be prevented if the photos are too big."
11813
  msgstr ""
11814
 
11815
+ #: wppa-settings-autosave.php:6029
11816
  msgid "Upload memory check admin"
11817
  msgstr ""
11818
 
11819
+ #: wppa-settings-autosave.php:6040
11820
  msgid "Comment captcha"
11821
  msgstr "Captcha commentaire"
11822
 
11823
+ #: wppa-settings-autosave.php:6041
11824
  msgid "Use a simple calculate captcha on comments form."
11825
  msgstr ""
11826
 
11827
+ #: wppa-settings-autosave.php:6054
11828
  msgid "Spam lifetime"
11829
  msgstr ""
11830
 
11831
+ #: wppa-settings-autosave.php:6055
11832
  msgid "Delete spam comments when older than."
11833
  msgstr ""
11834
 
11835
+ #: wppa-settings-autosave.php:6082
11836
  msgid "Avoid duplicates"
11837
  msgstr "Éviter les doublons"
11838
 
11839
+ #: wppa-settings-autosave.php:6083
11840
  msgid "Prevent the creation of duplicate photos."
11841
  msgstr ""
11842
 
11843
+ #: wppa-settings-autosave.php:6084
11844
  msgid ""
11845
  "If checked: uploading, importing, copying or moving photos to other albums "
11846
  "will be prevented when the desitation album already contains a photo with "
11847
  "the same filename."
11848
  msgstr ""
11849
 
11850
+ #: wppa-settings-autosave.php:6093
11851
  msgid "Blacklist user"
11852
  msgstr "Blacklister l'utilisateur"
11853
 
11854
+ #: wppa-settings-autosave.php:6094 wppa-settings-autosave.php:6095
11855
  msgid "Set the status of all the users photos to 'pending'."
11856
  msgstr ""
11857
 
11858
+ #: wppa-settings-autosave.php:6096
11859
  msgid "Also inhibits further uploads."
11860
  msgstr ""
11861
 
11862
+ #: wppa-settings-autosave.php:6102
11863
  msgid "--- select a user to blacklist ---"
11864
  msgstr ""
11865
 
11866
+ #: wppa-settings-autosave.php:6112 wppa-settings-autosave.php:6117
11867
+ #: wppa-settings-autosave.php:6138 wppa-settings-autosave.php:8411
11868
+ #: wppa-settings-autosave.php:8453
11869
  msgid "The page will be reloaded after the action has taken place."
11870
  msgstr ""
11871
 
11872
+ #: wppa-settings-autosave.php:6118
11873
  msgid "User login name <b>( case sensitive! )</b>:"
11874
  msgstr ""
11875
 
11876
+ #: wppa-settings-autosave.php:6126
11877
  msgid "Unblacklist user"
11878
  msgstr ""
11879
 
11880
+ #: wppa-settings-autosave.php:6127
11881
  msgid "Set the status of all the users photos to 'publish'."
11882
  msgstr ""
11883
 
11884
+ #: wppa-settings-autosave.php:6131
11885
  msgid "--- select a user to unblacklist ---"
11886
  msgstr ""
11887
 
11888
+ #: wppa-settings-autosave.php:6146
11889
  msgid "Photo owner change"
11890
  msgstr "Changer le propriétaire de la photo"
11891
 
11892
+ #: wppa-settings-autosave.php:6147
11893
  msgid "Administrators can change photo owner"
11894
  msgstr ""
11895
 
11896
+ #: wppa-settings-autosave.php:6175
11897
  msgid "Table VIII:"
11898
  msgstr ""
11899
 
11900
+ #: wppa-settings-autosave.php:6175
11901
  msgid "Actions:"
11902
  msgstr "Actions:"
11903
 
11904
+ #: wppa-settings-autosave.php:6176
11905
  msgid "This table lists all actions that can be taken to the wppa+ system"
11906
  msgstr ""
11907
 
11908
+ #: wppa-settings-autosave.php:6186 wppa-settings-autosave.php:6766
11909
  msgid "Specification"
11910
  msgstr "Spécification"
11911
 
11912
+ #: wppa-settings-autosave.php:6187 wppa-settings-autosave.php:6767
11913
+ #: wppa-settings-autosave.php:9214 wppa-settings-autosave.php:9236
11914
  msgid "Do it!"
11915
  msgstr ""
11916
 
11917
+ #: wppa-settings-autosave.php:6189 wppa-settings-autosave.php:6769
11918
  msgid "To Go"
11919
  msgstr ""
11920
 
11921
+ #: wppa-settings-autosave.php:6197
11922
  msgid "Harmless and reverseable actions"
11923
  msgstr ""
11924
 
11925
+ #: wppa-settings-autosave.php:6199
11926
  msgid "Ignore concurrency"
11927
  msgstr ""
11928
 
11929
+ #: wppa-settings-autosave.php:6200
11930
  msgid "Ignore the prevention of concurrent actions."
11931
  msgstr ""
11932
 
11933
+ #: wppa-settings-autosave.php:6201
11934
  msgid ""
11935
  "This setting is meant to recover from deadlock situations only. Use with "
11936
  "care!"
11937
  msgstr ""
11938
 
11939
+ #: wppa-settings-autosave.php:6212
11940
  msgid "Setup"
11941
  msgstr "Configuration"
11942
 
11943
+ #: wppa-settings-autosave.php:6213
11944
  msgid "Re-initialize plugin."
11945
  msgstr ""
11946
 
11947
+ #: wppa-settings-autosave.php:6214
11948
  msgid ""
11949
  "Re-initilizes the plugin, (re)creates database tables and sets up default "
11950
  "settings and directories if required."
11951
  msgstr ""
11952
 
11953
+ #: wppa-settings-autosave.php:6215
11954
  msgid ""
11955
  "This action may be required to setup blogs in a multiblog (network) site as "
11956
  "well as in rare cases to correct initilization errors."
11957
  msgstr ""
11958
 
11959
+ #: wppa-settings-autosave.php:6226
11960
  msgid "Backup settings"
11961
  msgstr "Réglages de la sauvegarde"
11962
 
11963
+ #: wppa-settings-autosave.php:6227
11964
  msgid "Save all settings into a backup file."
11965
  msgstr ""
11966
 
11967
+ #: wppa-settings-autosave.php:6228
11968
  msgid "Saves all the settings into a backup file"
11969
  msgstr ""
11970
 
11971
+ #: wppa-settings-autosave.php:6239
11972
  msgid "Load settings"
11973
  msgstr "Réglages du chargement"
11974
 
11975
+ #: wppa-settings-autosave.php:6240
11976
  msgid "Restore all settings from defaults, a backup or skin file."
11977
  msgstr ""
11978
 
11979
+ #: wppa-settings-autosave.php:6241
11980
  msgid ""
11981
  "Restores all the settings from the factory supplied defaults, the backup you "
11982
  "created or from a skin file."
11983
  msgstr ""
11984
 
11985
+ #: wppa-settings-autosave.php:6247
11986
  msgid "--- set to defaults ---"
11987
  msgstr "--- Réglages par défaut ---"
11988
 
11989
+ #: wppa-settings-autosave.php:6250
11990
  msgid "--- restore backup ---"
11991
  msgstr "--- restaurer la sauvegarde ---"
11992
 
11993
+ #: wppa-settings-autosave.php:6272
11994
  msgid "Regenerate"
11995
  msgstr "Regénérer"
11996
 
11997
+ #: wppa-settings-autosave.php:6273 wppa-settings-autosave.php:6274
11998
  msgid "Regenerate all thumbnails."
11999
  msgstr "Refaire toutes les vignettes."
12000
 
12001
+ #: wppa-settings-autosave.php:6277 wppa-settings-autosave.php:6381
12002
  msgid "Skip one"
12003
  msgstr "Ignorer un"
12004
 
12005
+ #: wppa-settings-autosave.php:6286
12006
  msgid "Rerate"
12007
  msgstr "Revoter"
12008
 
12009
+ #: wppa-settings-autosave.php:6287
12010
  msgid "Recalculate ratings."
12011
  msgstr ""
12012
 
12013
+ #: wppa-settings-autosave.php:6288
12014
  msgid ""
12015
  "This function will recalculate all mean photo ratings from the ratings table."
12016
  msgstr ""
12017
 
12018
+ #: wppa-settings-autosave.php:6289
12019
  msgid ""
12020
  "You may need this function after the re-import of previously exported photos"
12021
  msgstr ""
12022
 
12023
+ #: wppa-settings-autosave.php:6300
12024
  msgid "Lost and found"
12025
  msgstr ""
12026
 
12027
+ #: wppa-settings-autosave.php:6301
12028
  msgid "Find \"lost\" photos."
12029
  msgstr ""
12030
 
12031
+ #: wppa-settings-autosave.php:6302
12032
  msgid "This function will attempt to find lost photos."
12033
  msgstr ""
12034
 
12035
+ #: wppa-settings-autosave.php:6313
12036
  msgid "Recuperate"
12037
  msgstr "Récupérer"
12038
 
12039
+ #: wppa-settings-autosave.php:6315
12040
  msgid ""
12041
  "This action will attempt to find and register IPTC and EXIF data from photos "
12042
  "in the WPPA+ system."
12043
  msgstr ""
12044
 
12045
+ #: wppa-settings-autosave.php:6326
12046
  msgid "Remake Index Albums"
12047
  msgstr ""
12048
 
12049
+ #: wppa-settings-autosave.php:6327
12050
  msgid "Remakes the index database table for albums."
12051
  msgstr ""
12052
 
12053
+ #: wppa-settings-autosave.php:6339
12054
  msgid "Remake Index Photos"
12055
  msgstr "Refaire l'index des photos"
12056
 
12057
+ #: wppa-settings-autosave.php:6340
12058
  msgid "Remakes the index database table for photos."
12059
  msgstr ""
12060
 
12061
+ #: wppa-settings-autosave.php:6358
12062
  msgid "Convert to tree"
12063
  msgstr ""
12064
 
12065
+ #: wppa-settings-autosave.php:6359
12066
  msgid "Convert filesystem to tree structure."
12067
  msgstr ""
12068
 
12069
+ #: wppa-settings-autosave.php:6362
12070
  msgid "Convert to flat"
12071
  msgstr ""
12072
 
12073
+ #: wppa-settings-autosave.php:6363
12074
  msgid "Convert filesystem to flat structure."
12075
  msgstr ""
12076
 
12077
+ #: wppa-settings-autosave.php:6365
12078
  msgid ""
12079
  "If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
12080
  "to flat first."
12081
  msgstr ""
12082
 
12083
+ #: wppa-settings-autosave.php:6377
12084
  msgid "Remake the photofiles from photo sourcefiles."
12085
  msgstr ""
12086
 
12087
+ #: wppa-settings-autosave.php:6378
12088
  msgid ""
12089
  "This action will remake the fullsize images, thumbnail images, and will "
12090
  "refresh the iptc and exif data for all photos where the source is found in "
12091
  "the corresponding album sub-directory of the source directory."
12092
  msgstr ""
12093
 
12094
+ #: wppa-settings-autosave.php:6390
12095
  msgid "Recalc sizes"
12096
  msgstr ""
12097
 
12098
+ #: wppa-settings-autosave.php:6391
12099
  msgid "Recalculate photosizes and save to db."
12100
  msgstr ""
12101
 
12102
+ #: wppa-settings-autosave.php:6403
12103
  msgid "Clearing and other irreverseable actions"
12104
  msgstr ""
12105
 
12106
+ #: wppa-settings-autosave.php:6405
12107
  msgid "Clear ratings"
12108
  msgstr "Effacer les votes"
12109
 
12110
+ #: wppa-settings-autosave.php:6406
12111
  msgid "Reset all ratings."
12112
  msgstr ""
12113
 
12114
+ #: wppa-settings-autosave.php:6407
12115
  msgid "WARNING: If checked, this will clear all ratings in the system!"
12116
  msgstr ""
12117
 
12118
+ #: wppa-settings-autosave.php:6418
12119
  msgid "Clear viewcounts"
12120
  msgstr ""
12121
 
12122
+ #: wppa-settings-autosave.php:6419
12123
  msgid "Reset all viewcounts."
12124
  msgstr ""
12125
 
12126
+ #: wppa-settings-autosave.php:6420
12127
  msgid "WARNING: If checked, this will clear all viewcounts in the system!"
12128
  msgstr ""
12129
 
12130
+ #: wppa-settings-autosave.php:6431
12131
  msgid "Reset IPTC"
12132
  msgstr ""
12133
 
12134
+ #: wppa-settings-autosave.php:6432
12135
  msgid "Clear all IPTC data."
12136
  msgstr "Effacer les données IPTC"
12137
 
12138
+ #: wppa-settings-autosave.php:6433
12139
  msgid "WARNING: If checked, this will clear all IPTC data in the system!"
12140
  msgstr ""
12141
 
12142
+ #: wppa-settings-autosave.php:6444
12143
  msgid "Reset EXIF"
12144
  msgstr ""
12145
 
12146
+ #: wppa-settings-autosave.php:6445
12147
  msgid "Clear all EXIF data."
12148
  msgstr "Effacer les données EXIF"
12149
 
12150
+ #: wppa-settings-autosave.php:6446
12151
  msgid "WARNING: If checked, this will clear all EXIF data in the system!"
12152
  msgstr ""
12153
 
12154
+ #: wppa-settings-autosave.php:6457
12155
  msgid "Apply New Photodesc"
12156
  msgstr "Appliquer nouvelle desc photo"
12157
 
12158
+ #: wppa-settings-autosave.php:6458
12159
  msgid "Apply New photo description on all photos in the system."
12160
  msgstr ""
12161
 
12162
+ #: wppa-settings-autosave.php:6470
12163
  msgid "Append to photodesc"
12164
  msgstr ""
12165
 
12166
+ #: wppa-settings-autosave.php:6471
12167
  msgid "Append this text to all photo descriptions."
12168
  msgstr "Ajouter ce texte à toutes les descriptions de photo."
12169
 
12170
+ #: wppa-settings-autosave.php:6485
12171
  msgid "Remove from photodesc"
12172
  msgstr ""
12173
 
12174
+ #: wppa-settings-autosave.php:6486
12175
  msgid "Remove this text from all photo descriptions."
12176
  msgstr "Enlever ce texte de toutes les descriptions de photo."
12177
 
12178
+ #: wppa-settings-autosave.php:6500
12179
  msgid "Remove empty albums"
12180
  msgstr "Retirer les albums vides"
12181
 
12182
+ #: wppa-settings-autosave.php:6501
12183
  msgid "Removes albums that are not used."
12184
  msgstr ""
12185
 
12186
+ #: wppa-settings-autosave.php:6513
12187
  msgid "Remove file-ext"
12188
  msgstr ""
12189
 
12190
+ #: wppa-settings-autosave.php:6514
12191
  msgid "Remove possible file extension from photo name."
12192
  msgstr ""
12193
 
12194
+ #: wppa-settings-autosave.php:6515
12195
  msgid ""
12196
  "This may be required for old photos, uploaded when the option in Table IX-D3 "
12197
  "was not yet available/selected."
12198
  msgstr ""
12199
 
12200
+ #: wppa-settings-autosave.php:6526
12201
  msgid "Re-add file-ext"
12202
  msgstr ""
12203
 
12204
+ #: wppa-settings-autosave.php:6527
12205
  msgid "Revert the <i>Remove file-ext</i> action."
12206
  msgstr ""
12207
 
12208
+ #: wppa-settings-autosave.php:6539
12209
  msgid "Watermark all"
12210
  msgstr ""
12211
 
12212
+ #: wppa-settings-autosave.php:6540
12213
  msgid "Apply watermark according to current settings to all photos."
12214
  msgstr ""
12215
 
12216
+ #: wppa-settings-autosave.php:6541
12217
  msgid "See Table IX_F for the current watermark settings"
12218
  msgstr ""
12219
 
12220
+ #: wppa-settings-autosave.php:6552
12221
  msgid "Create all autopages"
12222
  msgstr "Créer toutes les auto pages"
12223
 
12224
+ #: wppa-settings-autosave.php:6553
12225
  msgid "Create all the pages to display slides individually."
12226
  msgstr ""
12227
 
12228
+ #: wppa-settings-autosave.php:6554 wppa-settings-autosave.php:6568
12229
  msgid "See also Table IV-A10."
12230
  msgstr ""
12231
 
12232
+ #: wppa-settings-autosave.php:6555
12233
  msgid ""
12234
  "Make sure you have a custom menu and the \"Automatically add new top-level "
12235
  "pages to this menu\" box UNticked!!"
12236
  msgstr ""
12237
 
12238
+ #: wppa-settings-autosave.php:6566
12239
  msgid "Delete all autopages"
12240
  msgstr "Effacer toutes les pages auto"
12241
 
12242
+ #: wppa-settings-autosave.php:6567
12243
  msgid "Delete all the pages to display slides individually."
12244
  msgstr ""
12245
 
12246
+ #: wppa-settings-autosave.php:6580
12247
  msgid "Leading zeroes"
12248
  msgstr ""
12249
 
12250
+ #: wppa-settings-autosave.php:6581
12251
  msgid "If photoname numeric, add leading zeros"
12252
  msgstr ""
12253
 
12254
+ #: wppa-settings-autosave.php:6582
12255
  msgid ""
12256
  "You can extend the name with leading zeros, so alphabetic sort becomes equal "
12257
  "to numeric sort order."
12258
  msgstr ""
12259
 
12260
+ #: wppa-settings-autosave.php:6585
12261
  msgid "Total chars"
12262
  msgstr ""
12263
 
12264
+ #: wppa-settings-autosave.php:6594
12265
  msgid "Add GPX tag"
12266
  msgstr ""
12267
 
12268
+ #: wppa-settings-autosave.php:6595
12269
  msgid "Make sure photos with gpx data have a Gpx tag"
12270
  msgstr ""
12271
 
12272
+ #: wppa-settings-autosave.php:6608 wppa-settings-autosave.php:7474
12273
  msgid "Optimize files"
12274
  msgstr "Optimiser les fichiers"
12275
 
12276
+ #: wppa-settings-autosave.php:6609
12277
  msgid "Optimize with EWWW image optimizer"
12278
  msgstr ""
12279
 
12280
+ #: wppa-settings-autosave.php:6622
12281
  msgid "Edit tag"
12282
  msgstr "Modifier tag"
12283
 
12284
+ #: wppa-settings-autosave.php:6623
12285
  msgid "Globally change a tagname."
12286
  msgstr ""
12287
 
12288
+ #: wppa-settings-autosave.php:6629
12289
  msgid "-select a tag-"
12290
  msgstr "- Choisir un tag -"
12291
 
12292
+ #: wppa-settings-autosave.php:6635
12293
  msgid "Tag:"
12294
  msgstr "Tag:"
12295
 
12296
+ #: wppa-settings-autosave.php:6636
12297
  msgid "Change to:"
12298
  msgstr "Changer pour:"
12299
 
12300
+ #: wppa-settings-autosave.php:6645
12301
  msgid "Synchronize Cloudinary"
12302
  msgstr ""
12303
 
12304
+ #: wppa-settings-autosave.php:6646
12305
  msgid "Removes/adds images in the cloud."
12306
  msgstr ""
12307
 
12308
+ #: wppa-settings-autosave.php:6647
12309
  msgid "Removes old images and verifies/adds new images to Cloudinary."
12310
  msgstr ""
12311
 
12312
+ #: wppa-settings-autosave.php:6648
12313
  msgid "See Table IX-K4.7 for the configured lifetime."
12314
  msgstr ""
12315
 
12316
+ #: wppa-settings-autosave.php:6659
12317
  msgid "Fix tags"
12318
  msgstr ""
12319
 
12320
+ #: wppa-settings-autosave.php:6660
12321
  msgid "Make sure photo tags format is uptodate"
12322
  msgstr ""
12323
 
12324
+ #: wppa-settings-autosave.php:6661
12325
  msgid "Fixes tags to be conform current database rules."
12326
  msgstr ""
12327
 
12328
+ #: wppa-settings-autosave.php:6672
12329
  msgid "Fix cats"
12330
  msgstr ""
12331
 
12332
+ #: wppa-settings-autosave.php:6673
12333
  msgid "Make sure album cats format is uptodate"
12334
  msgstr ""
12335
 
12336
+ #: wppa-settings-autosave.php:6674
12337
  msgid "Fixes cats to be conform current database rules."
12338
  msgstr ""
12339
 
12340
+ #: wppa-settings-autosave.php:6700
12341
  msgid "Listings"
12342
  msgstr "Listes"
12343
 
12344
+ #: wppa-settings-autosave.php:6702
12345
  msgid "List Logfile"
12346
  msgstr "Lister le journal (log)"
12347
 
12348
+ #: wppa-settings-autosave.php:6703
12349
  msgid "Show the content of wppa+ (error) log."
12350
  msgstr ""
12351
 
12352
+ #: wppa-settings-autosave.php:6707
12353
  msgid "Purge logfile"
12354
  msgstr "Purger le journal (log)"
12355
 
12356
+ #: wppa-settings-autosave.php:6716
12357
  msgid "List Ratings"
12358
  msgstr "Lister les votes"
12359
 
12360
+ #: wppa-settings-autosave.php:6717
12361
  msgid "Show the most recent ratings."
12362
  msgstr "Montrer les votes récents."
12363
 
12364
+ #: wppa-settings-autosave.php:6730
12365
  msgid "List Index"
12366
  msgstr ""
12367
 
12368
+ #: wppa-settings-autosave.php:6731
12369
  msgid "Show the content if the index table."
12370
  msgstr ""
12371
 
12372
+ #: wppa-settings-autosave.php:6735
12373
  msgid "Start at text:"
12374
  msgstr ""
12375
 
12376
+ #: wppa-settings-autosave.php:6745
12377
  msgid "List active sessions"
12378
  msgstr "Lister les sessions actives"
12379
 
12380
+ #: wppa-settings-autosave.php:6746
12381
  msgid "Show the content of the sessions table."
12382
  msgstr ""
12383
 
12384
+ #: wppa-settings-autosave.php:6779
12385
  msgid "Table IX:"
12386
  msgstr ""
12387
 
12388
+ #: wppa-settings-autosave.php:6779
12389
  msgid "Miscellaneous:"
12390
  msgstr ""
12391
 
12392
+ #: wppa-settings-autosave.php:6780
12393
  msgid "This table lists all settings that do not fit into an other table"
12394
  msgstr ""
12395
 
12396
+ #: wppa-settings-autosave.php:6798
12397
  msgid "Internal engine related settings"
12398
  msgstr ""
12399
 
12400
+ #: wppa-settings-autosave.php:6800
12401
  msgid "WPPA+ Filter priority"
12402
  msgstr ""
12403
 
12404
+ #: wppa-settings-autosave.php:6801
12405
  msgid "Sets the priority of the wppa+ content filter."
12406
  msgstr ""
12407
 
12408
+ #: wppa-settings-autosave.php:6802 wppa-settings-autosave.php:6811
12409
  msgid ""
12410
  "If you encounter conflicts with the theme or other plugins, increasing this "
12411
  "value sometimes helps. Use with great care!"
12412
  msgstr ""
12413
 
12414
+ #: wppa-settings-autosave.php:6809
12415
  msgid "Do_shortcode priority"
12416
  msgstr ""
12417
 
12418
+ #: wppa-settings-autosave.php:6810
12419
  msgid "Sets the priority of the do_shortcode() content filter."
12420
  msgstr ""
12421
 
12422
+ #: wppa-settings-autosave.php:6818
12423
  msgid "WPPA shortcode at Filter priority"
12424
  msgstr ""
12425
 
12426
+ #: wppa-settings-autosave.php:6819
12427
  msgid "Execute shortcode expansion on filter priority in posts and pages."
12428
  msgstr ""
12429
 
12430
+ #: wppa-settings-autosave.php:6820 wppa-settings-autosave.php:6829
12431
  msgid "Use to fix certain layout problems"
12432
  msgstr ""
12433
 
12434
+ #: wppa-settings-autosave.php:6827
12435
  msgid "WPPA shortcode at Filter priority widget"
12436
  msgstr ""
12437
 
12438
+ #: wppa-settings-autosave.php:6828
12439
  msgid "Execute shortcode expansion on filter priority in widgets."
12440
  msgstr ""
12441
 
12442
+ #: wppa-settings-autosave.php:6836
12443
  msgid "JPG image quality"
12444
  msgstr ""
12445
 
12446
+ #: wppa-settings-autosave.php:6837
12447
  msgid "The jpg quality when photos are downsized"
12448
  msgstr ""
12449
 
12450
+ #: wppa-settings-autosave.php:6838
12451
  msgid "The higher the number the better the quality but the larger the file"
12452
  msgstr ""
12453
 
12454
+ #: wppa-settings-autosave.php:6839
12455
  msgid "Possible values 20..100"
12456
  msgstr ""
12457
 
12458
+ #: wppa-settings-autosave.php:6846
12459
  msgid "Allow WPPA+ Debugging"
12460
  msgstr ""
12461
 
12462
+ #: wppa-settings-autosave.php:6847
12463
  msgid "Allow the use of &amp;debug=.. in urls to this site."
12464
  msgstr ""
12465
 
12466
+ #: wppa-settings-autosave.php:6848
12467
  msgid ""
12468
  "If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
12469
  "site will generate the display of special WPPA+ diagnostics, as well as php "
12470
  "warnings"
12471
  msgstr ""
12472
 
12473
+ #: wppa-settings-autosave.php:6855
12474
  msgid "Auto continue"
12475
  msgstr ""
12476
 
12477
+ #: wppa-settings-autosave.php:6856
12478
  msgid "Continue automatic after time out"
12479
  msgstr ""
12480
 
12481
+ #: wppa-settings-autosave.php:6857
12482
  msgid ""
12483
  "If checked, an attempt will be made to restart an admin process when the "
12484
  "time is out."
12485
  msgstr ""
12486
 
12487
+ #: wppa-settings-autosave.php:6865
12488
  msgid "Set max execution time here."
12489
  msgstr ""
12490
 
12491
+ #: wppa-settings-autosave.php:6866
12492
  msgid ""
12493
  "If your php config does not properly set the max execution time, you can set "
12494
  "it here. Seconds, 0 means do not change."
12495
  msgstr ""
12496
 
12497
+ #: wppa-settings-autosave.php:6867
12498
  msgid "A safe value is 45 in most cases"
12499
  msgstr ""
12500
 
12501
+ #: wppa-settings-autosave.php:6868
12502
  #, php-format
12503
  msgid "The PHP setting max_execution_time is set to %s."
12504
  msgstr ""
12505
 
12506
+ #: wppa-settings-autosave.php:6876
12507
  msgid "Feed use thumb"
12508
  msgstr ""
12509
 
12510
+ #: wppa-settings-autosave.php:6877
12511
  msgid "Feeds use thumbnail pictures always."
12512
  msgstr ""
12513
 
12514
+ #: wppa-settings-autosave.php:6885
12515
  msgid "Enable <i>in-line</i> settings"
12516
  msgstr ""
12517
 
12518
+ #: wppa-settings-autosave.php:6886
12519
  msgid "Activates shortcode [wppa_set][/wppa_set]."
12520
  msgstr ""
12521
 
12522
+ #: wppa-settings-autosave.php:6887
12523
  msgid ""
12524
  "Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
12525
  msgstr ""
12526
 
12527
+ #: wppa-settings-autosave.php:6888
12528
  msgid ""
12529
  "Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
12530
  "sets the thumbnail type to vertical masonry style"
12531
  msgstr ""
12532
 
12533
+ #: wppa-settings-autosave.php:6889
12534
  msgid "Do not forget to reset with [wppa_set][/wppa_set]"
12535
  msgstr ""
12536
 
12537
+ #: wppa-settings-autosave.php:6890
12538
  msgid "Use with great care! There is no check on validity of values!"
12539
  msgstr ""
12540
 
12541
+ #: wppa-settings-autosave.php:6897
12542
  msgid "Runtime modifyable settings"
12543
  msgstr ""
12544
 
12545
+ #: wppa-settings-autosave.php:6898
12546
  msgid "The setting slugs that may be altered using [wppa_set] shortcode."
12547
  msgstr ""
12548
 
12549
+ #: wppa-settings-autosave.php:6906
12550
  msgid "Use translations"
12551
  msgstr "Utiliser les traductions"
12552
 
12553
+ #: wppa-settings-autosave.php:6907
12554
  msgid "If UNticked, wppa is in english always."
12555
  msgstr ""
12556
 
12557
+ #: wppa-settings-autosave.php:6908
12558
  msgid "Used to bypass the loading of any language file for wppa."
12559
  msgstr ""
12560
 
12561
+ #: wppa-settings-autosave.php:6916
12562
  msgid "WPPA+ Admin related miscellaneous settings"
12563
  msgstr ""
12564
 
12565
+ #: wppa-settings-autosave.php:6918
12566
  msgid "Allow HTML"
12567
  msgstr "Autoriser HTML"
12568
 
12569
+ #: wppa-settings-autosave.php:6919
12570
  msgid "Allow HTML in album and photo descriptions."
12571
  msgstr ""
12572
 
12573
+ #: wppa-settings-autosave.php:6920
12574
  msgid ""
12575
  "If checked: html is allowed. WARNING: No checks on syntax, it is your own "
12576
  "responsability to close tags properly!"
12577
  msgstr ""
12578
 
12579
+ #: wppa-settings-autosave.php:6927
12580
  msgid "Check tag balance"
12581
  msgstr ""
12582
 
12583
+ #: wppa-settings-autosave.php:6928
12584
  msgid "Check if the HTML tags are properly closed: \"balanced\"."
12585
  msgstr ""
12586
 
12587
+ #: wppa-settings-autosave.php:6929
12588
  msgid ""
12589
  "If the HTML tags in an album or a photo description are not in balance, the "
12590
  "description is not updated, an errormessage is displayed"
12591
  msgstr ""
12592
 
12593
+ #: wppa-settings-autosave.php:6936
12594
  msgid "Use WP editor"
12595
  msgstr "Utiliser l'éditeur de WordPress"
12596
 
12597
+ #: wppa-settings-autosave.php:6937
12598
  msgid "Use the wp editor for multiline text fields."
12599
  msgstr ""
12600
 
12601
+ #: wppa-settings-autosave.php:6945
12602
  msgid "Album sel hierarchic"
12603
  msgstr ""
12604
 
12605
+ #: wppa-settings-autosave.php:6946
12606
  msgid "Show albums with (grand)parents in selection lists."
12607
  msgstr ""
12608
 
12609
+ #: wppa-settings-autosave.php:6954
12610
  msgid "Page sel hierarchic"
12611
  msgstr ""
12612
 
12613
+ #: wppa-settings-autosave.php:6955
12614
  msgid "Show pages with (grand)parents in selection lists."
12615
  msgstr ""
12616
 
12617
+ #: wppa-settings-autosave.php:6964
12618
  msgid "Photo admin page size"
12619
  msgstr ""
12620
 
12621
+ #: wppa-settings-autosave.php:6965
12622
  msgid ""
12623
  "The number of photos per page on the <br/>Edit Album -> Manage photos and "
12624
  "Edit Photos admin pages."
12625
  msgstr ""
12626
 
12627
+ #: wppa-settings-autosave.php:6975
12628
  msgid "Comment admin page size"
12629
  msgstr "Taille de la page d'admin des commentaires"
12630
 
12631
+ #: wppa-settings-autosave.php:6976
12632
  msgid "The number of comments per page on the Comments admin pages."
12633
  msgstr ""
12634
 
12635
+ #: wppa-settings-autosave.php:6986
12636
  msgid "Geo info edit"
12637
  msgstr "Modifier géo info"
12638
 
12639
+ #: wppa-settings-autosave.php:6987
12640
  msgid "Lattitude and longitude may be edited in photo admin."
12641
  msgstr ""
12642
 
12643
+ #: wppa-settings-autosave.php:6995
12644
  msgid "Admin bar menu admin"
12645
  msgstr ""
12646
 
12647
+ #: wppa-settings-autosave.php:6996
12648
  msgid "Show menu on admin bar on admin pages."
12649
  msgstr ""
12650
 
12651
+ #: wppa-settings-autosave.php:7004
12652
  msgid "Admin bar menu frontend"
12653
  msgstr ""
12654
 
12655
+ #: wppa-settings-autosave.php:7005
12656
  msgid "Show menu on admin bar on frontend pages."
12657
  msgstr ""
12658
 
12659
+ #: wppa-settings-autosave.php:7013
12660
  msgid "Add shortcode to posts"
12661
  msgstr ""
12662
 
12663
+ #: wppa-settings-autosave.php:7014
12664
  msgid "Add a shortcode to the end of all posts."
12665
  msgstr ""
12666
 
12667
+ #: wppa-settings-autosave.php:7022
12668
  msgid "Shortcode to add"
12669
  msgstr "Shortcode à ajouter"
12670
 
12671
+ #: wppa-settings-autosave.php:7023
12672
  msgid "The shortcode to be added to the posts."
12673
  msgstr ""
12674
 
12675
+ #: wppa-settings-autosave.php:7031
12676
  msgid "We use Scripts"
12677
  msgstr ""
12678
 
12679
+ #: wppa-settings-autosave.php:7032
12680
  msgid "Use scripting syntax in shortcode generator."
12681
  msgstr ""
12682
 
12683
+ #: wppa-settings-autosave.php:7033
12684
  msgid ""
12685
  "This setting defines if the shortcode generator outputs old style script "
12686
  "tags or new style shortcodes."
12687
  msgstr ""
12688
 
12689
+ #: wppa-settings-autosave.php:7041
12690
  msgid "Import page prieviews"
12691
  msgstr ""
12692
 
12693
+ #: wppa-settings-autosave.php:7042
12694
  msgid "Show thumbnail previews in import admin page."
12695
  msgstr ""
12696
 
12697
+ #: wppa-settings-autosave.php:7050
12698
  msgid "Upload audiostub"
12699
  msgstr "Charger audiostub"
12700
 
12701
+ #: wppa-settings-autosave.php:7051
12702
  msgid "Upload a new audio stub file"
12703
  msgstr ""
12704
 
12705
+ #: wppa-settings-autosave.php:7055
12706
  msgid "Upload audio stub image"
12707
  msgstr "Charger image audiostub"
12708
 
12709
+ #: wppa-settings-autosave.php:7060
12710
  msgid "Confirm create"
12711
  msgstr "Confirmer création"
12712
 
12713
+ #: wppa-settings-autosave.php:7061
12714
  msgid "Display confirmation dialog before creating album."
12715
  msgstr ""
12716
 
12717
+ #: wppa-settings-autosave.php:7069
12718
  msgid "Import source root"
12719
  msgstr ""
12720
 
12721
+ #: wppa-settings-autosave.php:7070
12722
  msgid "Specify the highest level in the filesystem where to import from"
12723
  msgstr ""
12724
 
12725
+ #: wppa-settings-autosave.php:7087
12726
  msgid "Allow import from WPPA+ source folders"
12727
  msgstr ""
12728
 
12729
+ #: wppa-settings-autosave.php:7088
12730
  msgid "Only switch this on if you know what you are doing!"
12731
  msgstr ""
12732
 
12733
+ #: wppa-settings-autosave.php:7097
12734
  msgid "SEO related settings"
12735
  msgstr ""
12736
 
12737
+ #: wppa-settings-autosave.php:7099
12738
  msgid "Meta on page"
12739
  msgstr ""
12740
 
12741
+ #: wppa-settings-autosave.php:7100
12742
  msgid "Meta tags for photos on the page."
12743
  msgstr ""
12744
 
12745
+ #: wppa-settings-autosave.php:7101
12746
  msgid ""
12747
  "If checked, the header of the page will contain metatags that refer to "
12748
  "featured photos on the page in the page context."
12749
  msgstr ""
12750
 
12751
+ #: wppa-settings-autosave.php:7108
12752
  msgid "Meta all"
12753
  msgstr ""
12754
 
12755
+ #: wppa-settings-autosave.php:7109
12756
  msgid "Meta tags for all featured photos."
12757
  msgstr ""
12758
 
12759
+ #: wppa-settings-autosave.php:7110
12760
  msgid ""
12761
  "If checked, the header of the page will contain metatags that refer to all "
12762
  "featured photo files."
12763
  msgstr ""
12764
 
12765
+ #: wppa-settings-autosave.php:7111
12766
  msgid ""
12767
  "If you have many featured photos, you might wish to uncheck this item to "
12768
  "reduce the size of the page header."
12769
  msgstr ""
12770
 
12771
+ #: wppa-settings-autosave.php:7118
12772
  msgid "Add og meta tags"
12773
  msgstr ""
12774
 
12775
+ #: wppa-settings-autosave.php:7119
12776
  msgid "Add og meta tags to the page header."
12777
  msgstr ""
12778
 
12779
+ #: wppa-settings-autosave.php:7122
12780
  msgid ""
12781
  "Turning this off may affect the functionality of social media items in the "
12782
  "share box that rely on open graph tags information."
12783
  msgstr ""
12784
 
12785
+ #: wppa-settings-autosave.php:7128
12786
  msgid "Image Alt attribute type"
12787
  msgstr ""
12788
 
12789
+ #: wppa-settings-autosave.php:7129
12790
  msgid "Select kind of HTML alt=\"\" content for images."
12791
  msgstr ""
12792
 
12793
+ #: wppa-settings-autosave.php:7132
12794
  msgid "photo name"
12795
  msgstr "Nom de la photo"
12796
 
12797
+ #: wppa-settings-autosave.php:7132
12798
  msgid "name without file-ext"
12799
  msgstr "nom sans l'extension de fichier"
12800
 
12801
+ #: wppa-settings-autosave.php:7132
12802
  msgid "set in album admin"
12803
  msgstr "Réglé dans album admin"
12804
 
12805
+ #: wppa-settings-autosave.php:7139
12806
  msgid "New Album and New Photo related miscellaneous settings"
12807
  msgstr ""
12808
 
12809
+ #: wppa-settings-autosave.php:7177
12810
  msgid "Maximum time an album is indicated as New"
12811
  msgstr ""
12812
 
12813
+ #: wppa-settings-autosave.php:7185
12814
  msgid "New Photo"
12815
  msgstr "Nouvelle photo"
12816
 
12817
+ #: wppa-settings-autosave.php:7186
12818
  msgid "Maximum time a photo is indicated as New"
12819
  msgstr ""
12820
 
12821
+ #: wppa-settings-autosave.php:7194
12822
  msgid "Modified Album"
12823
  msgstr "Album modifié"
12824
 
12825
+ #: wppa-settings-autosave.php:7195
12826
  msgid "Maximum time an album is indicated as Modified"
12827
  msgstr ""
12828
 
12829
+ #: wppa-settings-autosave.php:7203
12830
  msgid "Modified Photo"
12831
  msgstr "Photo modifiée"
12832
 
12833
+ #: wppa-settings-autosave.php:7204
12834
  msgid "Maximum time a photo is indicated as Modofied"
12835
  msgstr ""
12836
 
12837
+ #: wppa-settings-autosave.php:7212
12838
  msgid "Use text labels"
12839
  msgstr ""
12840
 
12841
+ #: wppa-settings-autosave.php:7213
12842
  msgid "Use editable text for the New and Modified labels"
12843
  msgstr ""
12844
 
12845
+ #: wppa-settings-autosave.php:7214
12846
  msgid "If UNticked, you can specify the urls for custom images to be used."
12847
  msgstr ""
12848
 
12849
+ #: wppa-settings-autosave.php:7225
12850
  msgid "Orange"
12851
  msgstr "Orange"
12852
 
12853
+ #: wppa-settings-autosave.php:7226
12854
  msgid "Yellow"
12855
  msgstr "Jaune"
12856
 
12857
+ #: wppa-settings-autosave.php:7229
12858
  msgid "Purple"
12859
  msgstr "Voilet"
12860
 
12861
+ #: wppa-settings-autosave.php:7230
12862
  msgid "Black/white"
12863
  msgstr "Noir/Blanc"
12864
 
12865
+ #: wppa-settings-autosave.php:7242 wppa-settings-autosave.php:7264
12866
  msgid "New label"
12867
  msgstr "Nouveau label"
12868
 
12869
+ #: wppa-settings-autosave.php:7243
12870
  msgid "Specify the \"New\" indicator details."
12871
  msgstr ""
12872
 
12873
+ #: wppa-settings-autosave.php:7244 wppa-settings-autosave.php:7255
12874
  msgid "If you use qTranslate, the text may be multilingual."
12875
  msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
12876
 
12877
+ #: wppa-settings-autosave.php:7248 wppa-settings-autosave.php:7259
12878
  #: wppa-stereo.php:31
12879
  msgid "Color"
12880
  msgstr "Couleur"
12881
 
12882
+ #: wppa-settings-autosave.php:7253 wppa-settings-autosave.php:7273
12883
  msgid "Modified label"
12884
  msgstr ""
12885
 
12886
+ #: wppa-settings-autosave.php:7254
12887
  msgid "Specify the \"Modified\" indicator details."
12888
  msgstr ""
12889
 
12890
+ #: wppa-settings-autosave.php:7265
12891
  msgid "Specify the \"New\" indicator url."
12892
  msgstr ""
12893
 
12894
+ #: wppa-settings-autosave.php:7274
12895
  msgid "Specify the \"Modified\" indicator url."
12896
  msgstr ""
12897
 
12898
+ #: wppa-settings-autosave.php:7282
12899
  msgid "Limit LasTen New"
12900
  msgstr ""
12901
 
12902
+ #: wppa-settings-autosave.php:7283
12903
  msgid "Limits the LasTen photos to those that are 'New', or newly modified."
12904
  msgstr ""
12905
 
12906
+ #: wppa-settings-autosave.php:7284
12907
  msgid ""
12908
  "If you tick this box and configured the new photo time, you can even limit "
12909
  "the number by the setting in Table I-F7, or set that number to an unlikely "
12910
  "high value."
12911
  msgstr ""
12912
 
12913
+ #: wppa-settings-autosave.php:7291
12914
  msgid "LasTen use Modified"
12915
  msgstr ""
12916
 
12917
+ #: wppa-settings-autosave.php:7292
12918
  msgid ""
12919
  "Use the time modified rather than time upload for LasTen widget/shortcode."
12920
  msgstr ""
12921
 
12922
+ #: wppa-settings-autosave.php:7300
12923
  msgid "Apply Newphoto desc"
12924
  msgstr ""
12925
 
12926
+ #: wppa-settings-autosave.php:7301
12927
  msgid "Give each new photo a standard description."
12928
  msgstr ""
12929
 
12930
+ #: wppa-settings-autosave.php:7302
12931
  msgid ""
12932
  "If checked, each new photo will get the description (template) as specified "
12933
  "in the next item."
12934
  msgstr ""
12935
 
12936
+ #: wppa-settings-autosave.php:7309
12937
  msgid "New photo desc"
12938
  msgstr "Description nouvelle photo"
12939
 
12940
+ #: wppa-settings-autosave.php:7310
12941
  msgid "The description (template) to add to a new photo."
12942
  msgstr ""
12943
 
12944
+ #: wppa-settings-autosave.php:7311
12945
  msgid "Enter the default description."
12946
  msgstr "Entrez la description par défaut."
12947
 
12948
+ #: wppa-settings-autosave.php:7312
12949
  msgid "If you use html, please check item A-1 of this table."
12950
  msgstr ""
12951
 
12952
+ #: wppa-settings-autosave.php:7320
12953
  msgid "New albums are created with this upload limit."
12954
  msgstr ""
12955
 
12956
+ #: wppa-settings-autosave.php:7321
12957
  msgid ""
12958
  "Administrators can change the limit settings in the \"Edit Album Information"
12959
  "\" admin page."
12960
  msgstr ""
12961
 
12962
+ #: wppa-settings-autosave.php:7338
12963
  msgid "Default parent"
12964
  msgstr "Parent par défaut"
12965
 
12966
+ #: wppa-settings-autosave.php:7339
12967
  msgid "The parent album of new albums."
12968
  msgstr ""
12969
 
12970
+ #: wppa-settings-autosave.php:7356
12971
  msgid "Default parent always"
12972
  msgstr ""
12973
 
12974
+ #: wppa-settings-autosave.php:7357
12975
  msgid ""
12976
  "The parent album of new albums is always the default, except for "
12977
  "administrators."
12978
  msgstr ""
12979
 
12980
+ #: wppa-settings-autosave.php:7365
12981
  msgid "Show album full"
12982
  msgstr ""
12983
 
12984
+ #: wppa-settings-autosave.php:7366
12985
  msgid "Show the Upload limit reached message if appropriate."
12986
  msgstr ""
12987
 
12988
+ #: wppa-settings-autosave.php:7374
12989
  msgid "Grant an album"
12990
  msgstr "Grant an album"
12991
 
12992
+ #: wppa-settings-autosave.php:7375
12993
  msgid "Create an album for each user logging in."
12994
  msgstr ""
12995
 
12996
+ #: wppa-settings-autosave.php:7383
12997
  msgid "Grant album name"
12998
  msgstr "Grant album name"
12999
 
13000
+ #: wppa-settings-autosave.php:7384
13001
  msgid "The name to be used for the album."
13002
  msgstr ""
13003
 
13004
+ #: wppa-settings-autosave.php:7387
13005
  msgid "Login name"
13006
  msgstr "Identifiant"
13007
 
13008
+ #: wppa-settings-autosave.php:7387 wppa-upldr-widget.php:181
13009
  msgid "Display name"
13010
  msgstr "Afficher le nom"
13011
 
13012
+ #: wppa-settings-autosave.php:7387
13013
  msgid "Id"
13014
  msgstr "Id"
13015
 
13016
+ #: wppa-settings-autosave.php:7387
13017
  msgid "Firstname Lastname"
13018
  msgstr ""
13019
 
13020
+ #: wppa-settings-autosave.php:7394
13021
  msgid "Grant parent"
13022
  msgstr ""
13023
 
13024
+ #: wppa-settings-autosave.php:7395
13025
  msgid "The parent album of the auto created albums."
13026
  msgstr ""
13027
 
13028
+ #: wppa-settings-autosave.php:7412
13029
  msgid "Max user albums"
13030
  msgstr ""
13031
 
13032
+ #: wppa-settings-autosave.php:7413
13033
  msgid "The max number of albums a user can create."
13034
  msgstr ""
13035
 
13036
+ #: wppa-settings-autosave.php:7414
13037
  msgid ""
13038
  "The maximum number of albums a user can create when he is not admin and "
13039
  "owner only is active"
13040
  msgstr ""
13041
 
13042
+ #: wppa-settings-autosave.php:7415
13043
  msgid "A number of 0 means No limit"
13044
  msgstr ""
13045
 
13046
+ #: wppa-settings-autosave.php:7422
13047
  msgid "Default photo name"
13048
  msgstr "Nom de photo par défaut"
13049
 
13050
+ #: wppa-settings-autosave.php:7423
13051
  msgid "Select the way the name of a new uploaded photo should be determined."
13052
  msgstr ""
13053
 
13054
+ #: wppa-settings-autosave.php:7426
13055
  msgid "Filename"
13056
  msgstr "Nom de fichier"
13057
 
13058
+ #: wppa-settings-autosave.php:7427
13059
  msgid "Filename without extension"
13060
  msgstr "Nom de fichier sans extension"
13061
 
13062
+ #: wppa-settings-autosave.php:7428
13063
  msgid "IPTC Tag 2#005 (Graphic name)"
13064
  msgstr ""
13065
 
13066
+ #: wppa-settings-autosave.php:7429
13067
  msgid "IPTC Tag 2#120 (Caption)"
13068
  msgstr ""
13069
 
13070
+ #: wppa-settings-autosave.php:7430
13071
  msgid "No name at all"
13072
  msgstr "Pas de nom du tout"
13073
 
13074
+ #: wppa-settings-autosave.php:7438
13075
  msgid "Default coverphoto"
13076
  msgstr "Photo de couverture par défaut"
13077
 
13078
+ #: wppa-settings-autosave.php:7439
13079
  msgid "Name of photofile to become cover image"
13080
  msgstr ""
13081
 
13082
+ #: wppa-settings-autosave.php:7440
13083
  msgid ""
13084
  "If you name a photofile like this setting before upload, it will become the "
13085
  "coverimage automaticly."
13086
  msgstr ""
13087
 
13088
+ #: wppa-settings-autosave.php:7447
13089
  msgid "Copy Timestamp"
13090
  msgstr "Copier timestamp"
13091
 
13092
+ #: wppa-settings-autosave.php:7448
13093
  msgid "Copy timestamp when copying photo."
13094
  msgstr ""
13095
 
13096
+ #: wppa-settings-autosave.php:7449
13097
  msgid "If checked, the copied photo is not \"new\""
13098
  msgstr ""
13099
 
13100
+ #: wppa-settings-autosave.php:7456
13101
  msgid "Copy Owner"
13102
  msgstr ""
13103
 
13104
+ #: wppa-settings-autosave.php:7457
13105
  msgid "Copy the owner when copying photo."
13106
  msgstr ""
13107
 
13108
+ #: wppa-settings-autosave.php:7465
13109
  msgid "FE Albums public"
13110
  msgstr ""
13111
 
13112
+ #: wppa-settings-autosave.php:7466
13113
  msgid "Frontend created albums are --- public ---"
13114
  msgstr ""
13115
 
13116
+ #: wppa-settings-autosave.php:7475
13117
  msgid "Optimize image files right after upload/import"
13118
  msgstr ""
13119
 
13120
+ #: wppa-settings-autosave.php:7476
13121
  msgid "This option requires the plugin EWWW Image Optimizer to be activated"
13122
  msgstr ""
13123
 
13124
+ #: wppa-settings-autosave.php:7483
13125
  msgid "Default album linktype"
13126
  msgstr ""
13127
 
13128
+ #: wppa-settings-autosave.php:7484
13129
  msgid "The album linktype for new albums"
13130
  msgstr ""
13131
 
13132
+ #: wppa-settings-autosave.php:7503
13133
  msgid "Search Albums and Photos related settings"
13134
  msgstr ""
13135
 
13136
+ #: wppa-settings-autosave.php:7505
13137
  msgid "Search page"
13138
  msgstr "Rechercher dans la page"
13139
 
13140
+ #: wppa-settings-autosave.php:7506
13141
  msgid "Display the search results on page."
13142
  msgstr ""
13143
 
13144
+ #: wppa-settings-autosave.php:7507
13145
  #, php-format
13146
  msgid ""
13147
  "Select the page to be used to display search results. The page MUST contain "
13148
  "%%wppa%% or [wppa][/wppa]."
13149
  msgstr ""
13150
 
13151
+ #: wppa-settings-autosave.php:7508
13152
  msgid "You may give it the title \"Search results\" or something alike."
13153
  msgstr ""
13154
 
13155
+ #: wppa-settings-autosave.php:7509
13156
  msgid ""
13157
  "Or you ou may use the standard page on which you display the generic album."
13158
  msgstr ""
13159
 
13160
+ #: wppa-settings-autosave.php:7542
13161
  msgid "Exclude separate"
13162
  msgstr "Exclure séparé"
13163
 
13164
+ #: wppa-settings-autosave.php:7543
13165
  msgid "Do not search 'separate' albums."
13166
  msgstr "Ne pas rechercher dans les albums 'séparés'"
13167
 
13168
+ #: wppa-settings-autosave.php:7544
13169
  msgid ""
13170
  "When checked, albums (and photos in them) that have the parent set to --- "
13171
  "separate --- will be excluded from being searched."
13172
  msgstr ""
13173
 
13174
+ #: wppa-settings-autosave.php:7545
13175
  msgid ""
13176
  "Except when you start searching in a 'saparate' album, with the \"search in "
13177
  "current section\" box ticked."
13178
  msgstr ""
13179
 
13180
+ #: wppa-settings-autosave.php:7552
13181
  msgid "Include tags"
13182
  msgstr "Inclure les tags"
13183
 
13184
+ #: wppa-settings-autosave.php:7553
13185
  msgid "Do also search the photo tags."
13186
  msgstr ""
13187
 
13188
+ #: wppa-settings-autosave.php:7554
13189
  msgid "When checked, the tags of the photo will also be searched."
13190
  msgstr ""
13191
 
13192
+ #: wppa-settings-autosave.php:7561
13193
  msgid "Include categories"
13194
  msgstr "Inclure les catégories:"
13195
 
13196
+ #: wppa-settings-autosave.php:7562
13197
  msgid "Do also search the album categories."
13198
  msgstr ""
13199
 
13200
+ #: wppa-settings-autosave.php:7563
13201
  msgid "When checked, the categories of the album will also be searched."
13202
  msgstr ""
13203
 
13204
+ #: wppa-settings-autosave.php:7570
13205
  msgid "Include comments"
13206
  msgstr "Inclure les commentaires"
13207
 
13208
+ #: wppa-settings-autosave.php:7571
13209
  msgid "Do also search the comments on photos."
13210
  msgstr ""
13211
 
13212
+ #: wppa-settings-autosave.php:7572
13213
  msgid "When checked, the comments of the photos will also be searched."
13214
  msgstr ""
13215
 
13216
+ #: wppa-settings-autosave.php:7579
13217
  msgid "Photos only"
13218
  msgstr "Photos seulement"
13219
 
13220
+ #: wppa-settings-autosave.php:7580
13221
  msgid "Search for photos only."
13222
  msgstr ""
13223
 
13224
+ #: wppa-settings-autosave.php:7581
13225
  msgid "When checked, only photos will be searched for."
13226
  msgstr ""
13227
 
13228
+ #: wppa-settings-autosave.php:7596
13229
  msgid "Max albums found"
13230
  msgstr ""
13231
 
13232
+ #: wppa-settings-autosave.php:7597
13233
  msgid "The maximum number of albums to be displayed."
13234
  msgstr ""
13235
 
13236
+ #: wppa-settings-autosave.php:7605
13237
  msgid "Max photos found"
13238
  msgstr ""
13239
 
13240
+ #: wppa-settings-autosave.php:7606
13241
  msgid "The maximum number of photos to be displayed."
13242
  msgstr ""
13243
 
13244
+ #: wppa-settings-autosave.php:7614
13245
  msgid "Tags OR only"
13246
  msgstr ""
13247
 
13248
+ #: wppa-settings-autosave.php:7615
13249
  msgid "No and / or buttons"
13250
  msgstr "Pas de boutons et / ou"
13251
 
13252
+ #: wppa-settings-autosave.php:7616
13253
  msgid ""
13254
  "Hide the and/or radiobuttons and do the or method in the multitag widget and "
13255
  "shortcode."
13256
  msgstr ""
13257
 
13258
+ #: wppa-settings-autosave.php:7623
13259
  msgid "Tags add Inverse"
13260
  msgstr ""
13261
 
13262
+ #: wppa-settings-autosave.php:7624
13263
  msgid "Add a checkbox to invert the selection."
13264
  msgstr "Ajoute une case à cocher pour inverser la sélection."
13265
 
13266
+ #: wppa-settings-autosave.php:7625
13267
  msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
13268
  msgstr ""
13269
 
13270
+ #: wppa-settings-autosave.php:7632
13271
  msgid "Floating searchtoken"
13272
  msgstr ""
13273
 
13274
+ #: wppa-settings-autosave.php:7633
13275
  msgid "A match need not start at the first char."
13276
  msgstr ""
13277
 
13278
+ #: wppa-settings-autosave.php:7634
13279
  msgid ""
13280
  "A match is found while searching also when the entered token is somewhere in "
13281
  "the middle of a word."
13282
  msgstr ""
13283
 
13284
+ #: wppa-settings-autosave.php:7635
13285
  msgid "This works in indexed search only!"
13286
  msgstr ""
13287
 
13288
+ #: wppa-settings-autosave.php:7642
13289
  msgid "Search results display"
13290
  msgstr ""
13291
 
13292
+ #: wppa-settings-autosave.php:7643
13293
  msgid "Select the way the search results should be displayed."
13294
  msgstr ""
13295
 
13296
+ #: wppa-settings-autosave.php:7644
13297
  msgid ""
13298
  "If you select anything different from \"Albums and thumbnails\", \"Photos "
13299
  "only\" is assumed (Table IX-E6)."
13300
  msgstr ""
13301
 
13302
+ #: wppa-settings-autosave.php:7646
13303
  msgid "Albums and thumbnails"
13304
  msgstr "Album et vignettes"
13305
 
13306
+ #: wppa-settings-autosave.php:7646
13307
  msgid "Slideonly slideshow"
13308
  msgstr ""
13309
 
13310
+ #: wppa-settings-autosave.php:7653
13311
  msgid "Name max length"
13312
  msgstr ""
13313
 
13314
+ #: wppa-settings-autosave.php:7654
13315
  msgid "Max length of displayed photonames in supersearch selectionlist"
13316
  msgstr ""
13317
 
13318
+ #: wppa-settings-autosave.php:7655 wppa-settings-autosave.php:7664
13319
  msgid ""
13320
  "To limit the length of the selectionlist, enter the number of characters to "
13321
  "show."
13322
  msgstr ""
13323
 
13324
+ #: wppa-settings-autosave.php:7662
13325
  msgid "Text max length"
13326
  msgstr ""
13327
 
13328
+ #: wppa-settings-autosave.php:7663
13329
  msgid "Max length of displayed photo text in supersearch selectionlist"
13330
  msgstr ""
13331
 
13332
+ #: wppa-settings-autosave.php:7671
13333
  msgid "Search toptext"
13334
  msgstr ""
13335
 
13336
+ #: wppa-settings-autosave.php:7672
13337
  msgid "The text at the top of the search box."
13338
  msgstr ""
13339
 
13340
+ #: wppa-settings-autosave.php:7673
13341
  msgid "May contain unfiltered HTML."
13342
  msgstr ""
13343
 
13344
+ #: wppa-settings-autosave.php:7680
13345
  msgid "Section search text"
13346
  msgstr ""
13347
 
13348
+ #: wppa-settings-autosave.php:7681 wppa-settings-autosave.php:7690
13349
  msgid "The labeltext at the checkbox."
13350
  msgstr ""
13351
 
13352
+ #: wppa-settings-autosave.php:7689
13353
  msgid "Results search text"
13354
  msgstr ""
13355
 
13356
+ #: wppa-settings-autosave.php:7699
13357
  msgid "Watermark related settings"
13358
  msgstr ""
13359
 
13360
+ #: wppa-settings-autosave.php:7702
13361
  msgid "Enable the application of watermarks."
13362
  msgstr ""
13363
 
13364
+ #: wppa-settings-autosave.php:7703
13365
  msgid "If checked, photos can be watermarked during upload / import."
13366
  msgstr ""
13367
 
13368
+ #: wppa-settings-autosave.php:7712
13369
  msgid "Watermark file"
13370
  msgstr "Fichier filigrane"
13371
 
13372
+ #: wppa-settings-autosave.php:7713
13373
  msgid "The default watermarkfile to be used."
13374
  msgstr ""
13375
 
13376
+ #: wppa-settings-autosave.php:7714
13377
  msgid "Watermark files are of type png and reside in"
13378
  msgstr "Les fichiers filigrane sont du type PNG et consistent en"
13379
 
13380
+ #: wppa-settings-autosave.php:7715
13381
  msgid ""
13382
  "A suitable watermarkfile typically consists of a transparent background and "
13383
  "a black text or drawing."
13384
  msgstr ""
13385
 
13386
+ #: wppa-settings-autosave.php:7717
13387
  msgid ""
13388
  "You may also select one of the textual watermark types at the bottom of the "
13389
  "selection list."
13390
  msgstr ""
13391
 
13392
+ #: wppa-settings-autosave.php:7721
13393
  msgid "position:"
13394
  msgstr "Position:"
13395
 
13396
+ #: wppa-settings-autosave.php:7727
13397
  msgid "Upload watermark"
13398
  msgstr "Charger filigrane"
13399
 
13400
+ #: wppa-settings-autosave.php:7728
13401
  msgid "Upload a new watermark file"
13402
  msgstr "Charger un nouveau fichier filigrane"
13403
 
13404
+ #: wppa-settings-autosave.php:7732
13405
  msgid "Upload watermark image"
13406
  msgstr "Charger une image filigrane"
13407
 
13408
+ #: wppa-settings-autosave.php:7737
13409
  msgid "Watermark opacity image"
13410
  msgstr ""
13411
 
13412
+ #: wppa-settings-autosave.php:7738
13413
  msgid "You can set the intensity of image watermarks here."
13414
  msgstr ""
13415
 
13416
+ #: wppa-settings-autosave.php:7739 wppa-settings-autosave.php:7824
13417
  msgid ""
13418
  "The higher the number, the intenser the watermark. Value must be > 0 and <= "
13419
  "100."
13420
  msgstr ""
13421
 
13422
+ #: wppa-settings-autosave.php:7746
13423
  msgid "Textual watermark style"
13424
  msgstr "Style du texte filigrane"
13425
 
13426
+ #: wppa-settings-autosave.php:7747
13427
  msgid "The way the textual watermarks look like"
13428
  msgstr ""
13429
 
13430
+ #: wppa-settings-autosave.php:7751
13431
  msgid "TV subtitle style"
13432
  msgstr ""
13433
 
13434
+ #: wppa-settings-autosave.php:7751
13435
  msgid "White text on black background"
13436
  msgstr ""
13437
 
13438
+ #: wppa-settings-autosave.php:7751
13439
  msgid "Black text on white background"
13440
  msgstr ""
13441
 
13442
+ #: wppa-settings-autosave.php:7751
13443
  msgid "Reverse TV style (Utopia)"
13444
  msgstr ""
13445
 
13446
+ #: wppa-settings-autosave.php:7751
13447
  msgid "White on transparent background"
13448
  msgstr ""
13449
 
13450
+ #: wppa-settings-autosave.php:7751
13451
  msgid "Black on transparent background"
13452
  msgstr ""
13453
 
13454
+ #: wppa-settings-autosave.php:7761
13455
  msgid "Predefined watermark text"
13456
  msgstr ""
13457
 
13458
+ #: wppa-settings-autosave.php:7762
13459
  msgid "The text to use when --- pre-defined --- is selected."
13460
  msgstr ""
13461
 
13462
+ #: wppa-settings-autosave.php:7763
13463
  msgid "You may use the following keywords:"
13464
  msgstr ""
13465
 
13466
+ #: wppa-settings-autosave.php:7764
13467
  msgid "w#site, w#owner, w#name, w#filename"
13468
  msgstr ""
13469
 
13470
+ #: wppa-settings-autosave.php:7771
13471
  msgid "Textual watermark font"
13472
  msgstr "Police du texte filigrane"
13473
 
13474
+ #: wppa-settings-autosave.php:7772
13475
  msgid "The font to use with textusl watermarks."
13476
  msgstr ""
13477
 
13478
+ #: wppa-settings-autosave.php:7773
13479
  msgid "Except for the system font, are font files of type ttf and reside in"
13480
  msgstr ""
13481
 
13482
+ #: wppa-settings-autosave.php:7801
13483
  msgid "Textual watermark font size"
13484
  msgstr "Taille de la police texte filigrane"
13485
 
13486
+ #: wppa-settings-autosave.php:7802
13487
  msgid "You can set the size of the truetype fonts only."
13488
  msgstr ""
13489
 
13490
+ #: wppa-settings-autosave.php:7803
13491
  msgid ""
13492
  "System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
13493
  "value > 5 will be treated as 5."
13494
  msgstr ""
13495
 
13496
+ #: wppa-settings-autosave.php:7804
13497
  msgid ""
13498
  "Truetype fonts can have any positive integer size, if your PHPs GD version "
13499
  "is 1, in pixels, in GD2 in points."
13500
  msgstr ""
13501
 
13502
+ #: wppa-settings-autosave.php:7805
13503
  msgid "It is unclear howmany pixels a point is..."
13504
  msgstr ""
13505
 
13506
+ #: wppa-settings-autosave.php:7812
13507
  msgid "Upload watermark font"
13508
  msgstr "Charger police filigrane"
13509
 
13510
+ #: wppa-settings-autosave.php:7813
13511
  msgid "Upload a new watermark font file"
13512
  msgstr "Charger un nouveau fichier filigrane"
13513
 
13514
+ #: wppa-settings-autosave.php:7814
13515
  msgid ""
13516
  "Upload truetype fonts (.ttf) only, and test if they work on your server "
13517
  "platform."
13518
  msgstr ""
13519
 
13520
+ #: wppa-settings-autosave.php:7817
13521
  msgid "Upload TrueType font"
13522
  msgstr "Charger police TrueType"
13523
 
13524
+ #: wppa-settings-autosave.php:7822
13525
  msgid "Watermark opacity text"
13526
  msgstr ""
13527
 
13528
+ #: wppa-settings-autosave.php:7823
13529
  msgid "You can set the intensity of a text watermarks here."
13530
  msgstr ""
13531
 
13532
+ #: wppa-settings-autosave.php:7832
13533
  msgid "A real life preview. To update: refresh the page."
13534
  msgstr ""
13535
 
13536
+ #: wppa-settings-autosave.php:7843
13537
  msgid "Watermark thumbnails"
13538
  msgstr "Vignettes filigrane"
13539
 
13540
+ #: wppa-settings-autosave.php:7844
13541
  msgid "Watermark also the thumbnail image files."
13542
  msgstr ""
13543
 
13544
+ #: wppa-settings-autosave.php:7852
13545
  msgid "Slideshow elements sequence order settings"
13546
  msgstr ""
13547
 
13548
+ #: wppa-settings-autosave.php:7858 wppa-settings-autosave.php:7904
13549
  msgid "StartStop"
13550
  msgstr "DémarrerArréter"
13551
 
13552
+ #: wppa-settings-autosave.php:7859 wppa-settings-autosave.php:7905
13553
  msgid "SlideFrame"
13554
  msgstr ""
13555
 
13556
+ #: wppa-settings-autosave.php:7861
13557
  msgid "Desc"
13558
  msgstr "Desc"
13559
 
13560
+ #: wppa-settings-autosave.php:7864 wppa-settings-autosave.php:7909
13561
  msgid "FilmStrip"
13562
  msgstr "FilmStrip"
13563
 
13564
+ #: wppa-settings-autosave.php:7865 wppa-settings-autosave.php:7910
13565
  msgid "Browsebar"
13566
  msgstr ""
13567
 
13568
+ #: wppa-settings-autosave.php:7867 wppa-settings-autosave.php:7912
13569
  msgid "IPTC data"
13570
  msgstr "Données IPTC"
13571
 
13572
+ #: wppa-settings-autosave.php:7868 wppa-settings-autosave.php:7913
13573
  msgid "EXIF data"
13574
  msgstr "Données EXIF"
13575
 
13576
+ #: wppa-settings-autosave.php:7869 wppa-settings-autosave.php:7914
13577
  msgid "Share box"
13578
  msgstr "Boîte de partage"
13579
 
13580
+ #: wppa-settings-autosave.php:7871 wppa-settings-autosave.php:7916
13581
  msgid "Enabled"
13582
  msgstr "Activé"
13583
 
13584
+ #: wppa-settings-autosave.php:7872 wppa-settings-autosave.php:7917
13585
  msgid "Disabled"
13586
  msgstr "Désactivé"
13587
 
13588
+ #: wppa-settings-autosave.php:7874 wppa-settings-autosave.php:7919
13589
  msgid "Start/Stop & Slower/Faster navigation bar"
13590
  msgstr ""
13591
 
13592
+ #: wppa-settings-autosave.php:7875 wppa-settings-autosave.php:7920
13593
  msgid "The Slide Frame"
13594
  msgstr ""
13595
 
13596
+ #: wppa-settings-autosave.php:7875 wppa-settings-autosave.php:7920
13597
  msgid "( Always )"
13598
  msgstr "( Toujours )"
13599
 
13600
+ #: wppa-settings-autosave.php:7876
13601
  msgid "Photo Name Box"
13602
  msgstr "Boîte de nom de la photo"
13603
 
13604
+ #: wppa-settings-autosave.php:7877
13605
  msgid "Photo Description Box"
13606
  msgstr ""
13607
 
13608
+ #: wppa-settings-autosave.php:7878 wppa-settings-autosave.php:7922
13609
  msgid "Custom Box"
13610
  msgstr "Boîte personnalisée"
13611
 
13612
+ #: wppa-settings-autosave.php:7879 wppa-settings-autosave.php:7923
13613
  msgid "Rating Bar"
13614
  msgstr "Barre de vote"
13615
 
13616
+ #: wppa-settings-autosave.php:7880 wppa-settings-autosave.php:7924
13617
  msgid "Film Strip with embedded Start/Stop and Goto functionality"
13618
  msgstr ""
13619
 
13620
+ #: wppa-settings-autosave.php:7881 wppa-settings-autosave.php:7925
13621
  msgid "Browse Bar with Photo X of Y counter"
13622
  msgstr ""
13623
 
13624
+ #: wppa-settings-autosave.php:7882 wppa-settings-autosave.php:7926
13625
  msgid "Comments Box"
13626
  msgstr "Boîte de commentaires"
13627
 
13628
+ #: wppa-settings-autosave.php:7883 wppa-settings-autosave.php:7927
13629
  msgid "IPTC box"
13630
  msgstr "Boîte IPTC"
13631
 
13632
+ #: wppa-settings-autosave.php:7884 wppa-settings-autosave.php:7928
13633
  msgid "EXIF box"
13634
  msgstr "Boîte EXIF"
13635
 
13636
+ #: wppa-settings-autosave.php:7885 wppa-settings-autosave.php:7929
13637
  msgid "Social media share box"
13638
  msgstr "Boîte de partage social"
13639
 
13640
+ #: wppa-settings-autosave.php:7891 wppa-settings-autosave.php:7935
13641
  msgid "Move Up"
13642
  msgstr ""
13643
 
13644
+ #: wppa-settings-autosave.php:7906
13645
  msgid "NameDesc"
13646
  msgstr "NomDesc"
13647
 
13648
+ #: wppa-settings-autosave.php:7921
13649
  msgid "Photo Name & Description Box"
13650
  msgstr ""
13651
 
13652
+ #: wppa-settings-autosave.php:7945
13653
  msgid "Swap Namedesc"
13654
  msgstr ""
13655
 
13656
+ #: wppa-settings-autosave.php:7946
13657
  msgid "Swap the order sequence of name and description"
13658
  msgstr ""
13659
 
13660
+ #: wppa-settings-autosave.php:7954
13661
  msgid "Split Name and Desc"
13662
  msgstr ""
13663
 
13664
+ #: wppa-settings-autosave.php:7955
13665
  msgid "Put Name and Description in separate boxes"
13666
  msgstr ""
13667
 
13668
+ #: wppa-settings-autosave.php:7958
13669
  msgid "Please reload this page after the green checkmark appears!"
13670
  msgstr ""
13671
 
13672
+ #: wppa-settings-autosave.php:7963
13673
  msgid "Source file management and other upload/import settings and actions."
13674
  msgstr ""
13675
 
13676
+ #: wppa-settings-autosave.php:7965
13677
  msgid "Keep sourcefiles admin"
13678
  msgstr ""
13679
 
13680
+ #: wppa-settings-autosave.php:7966
13681
  msgid "Keep the original uploaded and imported photo files."
13682
  msgstr ""
13683
 
13684
+ #: wppa-settings-autosave.php:7967 wppa-settings-autosave.php:7977
13685
  msgid ""
13686
  "The files will be kept in a separate directory with subdirectories for each "
13687
  "album"
13688
  msgstr ""
13689
 
13690
+ #: wppa-settings-autosave.php:7968 wppa-settings-autosave.php:7978
13691
  msgid ""
13692
  "These files can be used to update the photos used in displaying in wppa+ and "
13693
  "optionally for downloading original, un-downsized images."
13694
  msgstr ""
13695
 
13696
+ #: wppa-settings-autosave.php:7975
13697
  msgid "Keep sourcefiles frontend"
13698
  msgstr ""
13699
 
13700
+ #: wppa-settings-autosave.php:7976
13701
  msgid "Keep the original frontend uploaded photo files."
13702
  msgstr "Keep the original frontend uploaded photo files."
13703
 
13704
+ #: wppa-settings-autosave.php:7985
13705
  msgid "Source directory"
13706
  msgstr "Répertoire source"
13707
 
13708
+ #: wppa-settings-autosave.php:7986
13709
  msgid "The path to the directory where the original photofiles will be saved."
13710
  msgstr ""
13711
 
13712
+ #: wppa-settings-autosave.php:7987
13713
  msgid "You may change the directory path, but it can not be an url."
13714
  msgstr ""
13715
 
13716
+ #: wppa-settings-autosave.php:7988
13717
  msgid ""
13718
  "The parent of the directory that you enter here must exist and be writable."
13719
  msgstr ""
13720
 
13721
+ #: wppa-settings-autosave.php:7989
13722
  msgid "The directory itsself will be created if it does not exist yet."
13723
  msgstr ""
13724
 
13725
+ #: wppa-settings-autosave.php:7996
13726
  msgid "Keep sync"
13727
  msgstr ""
13728
 
13729
+ #: wppa-settings-autosave.php:7997
13730
  msgid "Keep source synchronously with wppa system."
13731
  msgstr ""
13732
 
13733
+ #: wppa-settings-autosave.php:7998
13734
  msgid ""
13735
  "If checked, photos that are deleted from wppa, will also be removed from the "
13736
  "sourcefiles."
13737
  msgstr ""
13738
 
13739
+ #: wppa-settings-autosave.php:7999
13740
  msgid ""
13741
  "Also, copying or moving photos to different albums, will also copy/move the "
13742
  "sourcefiles."
13743
  msgstr ""
13744
 
13745
+ #: wppa-settings-autosave.php:8006
13746
  msgid "Remake add"
13747
  msgstr ""
13748
 
13749
+ #: wppa-settings-autosave.php:8007
13750
  msgid "Photos will be added from the source pool"
13751
  msgstr ""
13752
 
13753
+ #: wppa-settings-autosave.php:8008
13754
  msgid ""
13755
  "If checked: If photo files are found in the source directory that do not "
13756
  "exist in the corresponding album, they will be added to the album."
13757
  msgstr ""
13758
 
13759
+ #: wppa-settings-autosave.php:8015
13760
  msgid "Save IPTC data"
13761
  msgstr "Sauver les données IPTC"
13762
 
13763
+ #: wppa-settings-autosave.php:8016
13764
  msgid "Store the iptc data from the photo into the iptc db table"
13765
  msgstr ""
13766
 
13767
+ #: wppa-settings-autosave.php:8017
13768
  msgid ""
13769
  "You will need this if you enabled the display of iptc data in Table II-B17 "
13770
  "or if you use it in the photo descriptions."
13771
  msgstr ""
13772
 
13773
+ #: wppa-settings-autosave.php:8024
13774
  msgid "Save EXIF data"
13775
  msgstr "Sauver les données EXIF"
13776
 
13777
+ #: wppa-settings-autosave.php:8025
13778
  msgid "Store the exif data from the photo into the exif db table"
13779
  msgstr ""
13780
 
13781
+ #: wppa-settings-autosave.php:8026
13782
  msgid ""
13783
  "You will need this if you enabled the display of exif data in Table II-B18 "
13784
  "or if you use it in the photo descriptions."
13785
  msgstr ""
13786
 
13787
+ #: wppa-settings-autosave.php:8033
13788
  msgid "Max EXIF tag array size"
13789
  msgstr ""
13790
 
13791
+ #: wppa-settings-autosave.php:8034
13792
  msgid "Truncate array tags to ..."
13793
  msgstr ""
13794
 
13795
+ #: wppa-settings-autosave.php:8035
13796
  msgid "A value of 0 disables this feature"
13797
  msgstr ""
13798
 
13799
+ #: wppa-settings-autosave.php:8037
13800
  msgid "elements"
13801
  msgstr "éléments"
13802
 
13803
+ #: wppa-settings-autosave.php:8042
13804
  msgid "Import Create page"
13805
  msgstr ""
13806
 
13807
+ #: wppa-settings-autosave.php:8043
13808
  msgid "Create wp page when a directory to album is imported."
13809
  msgstr ""
13810
 
13811
+ #: wppa-settings-autosave.php:8044
13812
  msgid ""
13813
  "As soon as an album is created when a directory is imported, a wp page is "
13814
  "made that displays the album content."
13815
  msgstr ""
13816
 
13817
+ #: wppa-settings-autosave.php:8052
13818
  msgid "Page content"
13819
  msgstr "Contenu de la page"
13820
 
13821
+ #: wppa-settings-autosave.php:8053
13822
  msgid "The content of the page. Must contain <b>w#album</b>"
13823
  msgstr ""
13824
 
13825
+ #: wppa-settings-autosave.php:8054
13826
  msgid ""
13827
  "The content of the page. Note: it must contain w#album. This will be "
13828
  "replaced by the album number in the generated shortcode."
13829
  msgstr ""
13830
 
13831
+ #: wppa-settings-autosave.php:8062
13832
  msgid "Page type"
13833
  msgstr "Type de la page"
13834
 
13835
+ #: wppa-settings-autosave.php:8063
13836
  msgid "Select the type of page to create."
13837
  msgstr ""
13838
 
13839
+ #: wppa-settings-autosave.php:8067
13840
  msgid "Post"
13841
  msgstr "Article"
13842
 
13843
+ #: wppa-settings-autosave.php:8074
13844
  msgid "Page status"
13845
  msgstr "Statut de la page"
13846
 
13847
+ #: wppa-settings-autosave.php:8075
13848
  msgid "Select the initial status of the page."
13849
  msgstr ""
13850
 
13851
+ #: wppa-settings-autosave.php:8079
13852
  msgid "Published"
13853
  msgstr "Publié"
13854
 
13855
+ #: wppa-settings-autosave.php:8079
13856
  msgid "Draft"
13857
  msgstr "Brouillon"
13858
 
13859
+ #: wppa-settings-autosave.php:8087
13860
  msgid "Permalink root"
13861
  msgstr ""
13862
 
13863
+ #: wppa-settings-autosave.php:8088
13864
  msgid "The name of the root for the photofile ermalink structure."
13865
  msgstr ""
13866
 
13867
+ #: wppa-settings-autosave.php:8089
13868
  msgid ""
13869
  "Choose a convenient name like \"albums\" or so; this will be the name of a "
13870
  "folder inside .../wp-content/. Make sure you choose a unique name"
13871
  msgstr ""
13872
 
13873
+ #: wppa-settings-autosave.php:8097
13874
  msgid "Import parent check"
13875
  msgstr ""
13876
 
13877
+ #: wppa-settings-autosave.php:8098
13878
  msgid "On import dirs to albums: keep dir tree as albums."
13879
  msgstr ""
13880
 
13881
+ #: wppa-settings-autosave.php:8099
13882
  msgid ""
13883
  "Untick only if all your albums have unique names. Then: additional photos "
13884
  "may be ftp'd to toplevel depot subdirs."
13885
  msgstr ""
13886
 
13887
+ #: wppa-settings-autosave.php:8106
13888
  msgid "IPTC need utf8 conversion"
13889
  msgstr ""
13890
 
13891
+ #: wppa-settings-autosave.php:8107
13892
  msgid "This setting converts iso to utf8 in iptc text."
13893
  msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
13894
 
13895
+ #: wppa-settings-autosave.php:8108
13896
  msgid "Untick if you have funny characters in iptc data"
13897
  msgstr ""
13898
 
13899
+ #: wppa-settings-autosave.php:8115
13900
  msgid "Keep dir to album files"
13901
  msgstr ""
13902
 
13903
+ #: wppa-settings-autosave.php:8116
13904
  msgid "Keep imported files after dir to album import"
13905
  msgstr ""
13906
 
13907
+ #: wppa-settings-autosave.php:8125
13908
  msgid "Other plugins related settings"
13909
  msgstr ""
13910
 
13911
+ #: wppa-settings-autosave.php:8127
13912
  msgid "Foreign shortcodes general"
13913
  msgstr ""
13914
 
13915
+ #: wppa-settings-autosave.php:8128
13916
  msgid "Enable foreign shortcodes in album names, albums desc and photo names"
13917
  msgstr ""
13918
 
13919
+ #: wppa-settings-autosave.php:8136
13920
  msgid "Foreign shortcodes fullsize"
13921
  msgstr ""
13922
 
13923
+ #: wppa-settings-autosave.php:8137
13924
  msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
13925
  msgstr ""
13926
 
13927
+ #: wppa-settings-autosave.php:8138 wppa-settings-autosave.php:8149
13928
  msgid ""
13929
  "When checked, you can use shortcodes from other plugins in the description "
13930
  "of photos."
13931
  msgstr ""
13932
 
13933
+ #: wppa-settings-autosave.php:8139
13934
  msgid "The shortcodes will be expanded in the descriptions of fullsize images."
13935
  msgstr ""
13936
 
13937
+ #: wppa-settings-autosave.php:8140 wppa-settings-autosave.php:8151
13938
  msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
13939
  msgstr ""
13940
 
13941
+ #: wppa-settings-autosave.php:8147
13942
  msgid "Foreign shortcodes thumbnails"
13943
  msgstr "Foreign shortcodes thumbnails"
13944
 
13945
+ #: wppa-settings-autosave.php:8148
13946
  msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
13947
  msgstr ""
13948
 
13949
+ #: wppa-settings-autosave.php:8150
13950
  msgid ""
13951
  "The shortcodes will be expanded in the descriptions of thumbnail images."
13952
  msgstr ""
13953
 
13954
+ #: wppa-settings-autosave.php:8158
13955
  msgid "Lightbox keyname"
13956
  msgstr ""
13957
 
13958
+ #: wppa-settings-autosave.php:8159
13959
  msgid "The identifier of lightbox."
13960
  msgstr ""
13961
 
13962
+ #: wppa-settings-autosave.php:8160
13963
  msgid ""
13964
  "If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
13965
  "lbox-id here."
13966
  msgstr ""
13967
 
13968
+ #: wppa-settings-autosave.php:8167
13969
  msgid "myCRED / Cube Points: Comment"
13970
  msgstr ""
13971
 
13972
+ #: wppa-settings-autosave.php:8168
13973
  msgid "Number of points for a comment"
13974
  msgstr "Nombre de points pour un commentaire"
13975
 
13976
+ #: wppa-settings-autosave.php:8169 wppa-settings-autosave.php:8178
13977
+ #: wppa-settings-autosave.php:8187
13978
  msgid "This setting requires the plugin myCRED or Cube Points"
13979
  msgstr ""
13980
 
13981
+ #: wppa-settings-autosave.php:8171
13982
  msgid "points per comment"
13983
  msgstr "points par commentaire"
13984
 
13985
+ #: wppa-settings-autosave.php:8176
13986
  msgid "myCRED / Cube Points: Rating"
13987
  msgstr ""
13988
 
13989
+ #: wppa-settings-autosave.php:8177
13990
  msgid "Number of points for a rating vote"
13991
  msgstr ""
13992
 
13993
+ #: wppa-settings-autosave.php:8180
13994
  msgid "points per vote"
13995
  msgstr ""
13996
 
13997
+ #: wppa-settings-autosave.php:8185
13998
  msgid "myCRED / Cube Points: Upload"
13999
  msgstr ""
14000
 
14001
+ #: wppa-settings-autosave.php:8186
14002
  msgid "Number of points for a successfull frontend upload"
14003
  msgstr ""
14004
 
14005
+ #: wppa-settings-autosave.php:8189
14006
  msgid "points per upload"
14007
  msgstr "points par chargement"
14008
 
14009
+ #: wppa-settings-autosave.php:8194
14010
  msgid "Use SCABN"
14011
  msgstr "Utilise SCABN"
14012
 
14013
+ #: wppa-settings-autosave.php:8195
14014
  msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
14015
  msgstr ""
14016
 
14017
+ #: wppa-settings-autosave.php:8196
14018
  msgid ""
14019
  "If checked, the shortcode to use for the \"add to cart\" button in photo "
14020
  "descriptions is [cart ...]"
14021
  msgstr ""
14022
 
14023
+ #: wppa-settings-autosave.php:8197
14024
  msgid ""
14025
  "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
14026
  msgstr ""
14027
 
14028
+ #: wppa-settings-autosave.php:8198
14029
  msgid "The shortcode for the check-out page is still [scabn]"
14030
  msgstr ""
14031
 
14032
+ #: wppa-settings-autosave.php:8199
14033
  msgid ""
14034
  "The arguments are the same, the defaults are: name = photoname, price = 0.01."
14035
  msgstr ""
14036
 
14037
+ #: wppa-settings-autosave.php:8200
14038
  msgid ""
14039
  "Supplying the price should be sufficient; supply a name only when it differs "
14040
  "from the photo name."
14041
  msgstr ""
14042
 
14043
+ #: wppa-settings-autosave.php:8201
14044
  msgid "This shortcode handler will also work with Ajax enabled."
14045
  msgstr ""
14046
 
14047
+ #: wppa-settings-autosave.php:8202
14048
  msgid ""
14049
  "Using this interface makes sure that the item urls and callback action urls "
14050
  "are correct."
14051
  msgstr ""
14052
 
14053
+ #: wppa-settings-autosave.php:8209
14054
  msgid "Use CM Tooltip Glossary"
14055
  msgstr ""
14056
 
14057
+ #: wppa-settings-autosave.php:8210
14058
  msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
14059
  msgstr ""
14060
 
14061
+ #: wppa-settings-autosave.php:8211
14062
  msgid ""
14063
  "You MUST set Table IV-A13: Defer javascript, also if you do not want this "
14064
  "plugin to act on album and photo descriptions!"
14065
  msgstr ""
14066
 
14067
+ #: wppa-settings-autosave.php:8219
14068
  msgid "External services related settings and actions."
14069
  msgstr ""
14070
 
14071
+ #: wppa-settings-autosave.php:8221
14072
  msgid "QR Code widget size"
14073
  msgstr ""
14074
 
14075
+ #: wppa-settings-autosave.php:8222
14076
  msgid "The size of the QR code display."
14077
  msgstr ""
14078
 
14079
+ #: wppa-settings-autosave.php:8230
14080
  msgid "QR color"
14081
  msgstr "Couleur QR code"
14082
 
14083
+ #: wppa-settings-autosave.php:8231
14084
  msgid "The display color of the qr code (dark)"
14085
  msgstr ""
14086
 
14087
+ #: wppa-settings-autosave.php:8232
14088
  msgid "This color MUST be given in hexadecimal format!"
14089
  msgstr ""
14090
 
14091
+ #: wppa-settings-autosave.php:8239
14092
  msgid "QR background color"
14093
  msgstr "Couleur de fond de QR Code"
14094
 
14095
+ #: wppa-settings-autosave.php:8240
14096
  msgid "The background color of the qr code (light)"
14097
  msgstr ""
14098
 
14099
+ #: wppa-settings-autosave.php:8248
14100
  msgid "CDN Service"
14101
  msgstr ""
14102
 
14103
+ #: wppa-settings-autosave.php:8249
14104
  msgid "Select a CDN Service you want to use."
14105
  msgstr ""
14106
 
14107
+ #: wppa-settings-autosave.php:8252
14108
  msgid "Cloudinary in maintenance mode"
14109
  msgstr ""
14110
 
14111
+ #: wppa-settings-autosave.php:8262
14112
  msgid "Cloud name"
14113
  msgstr "Nom du nuage"
14114
 
14115
+ #: wppa-settings-autosave.php:8271
14116
  msgid "API key"
14117
  msgstr "Clé API"
14118
 
14119
+ #: wppa-settings-autosave.php:8280
14120
  msgid "API secret"
14121
  msgstr "Secret API"
14122
 
14123
+ #: wppa-settings-autosave.php:8289
14124
  msgid "Delete all"
14125
  msgstr "Tout effacer"
14126
 
14127
+ #: wppa-settings-autosave.php:8290
14128
  msgid "Deletes them all !!!"
14129
  msgstr ""
14130
 
14131
+ #: wppa-settings-autosave.php:8298
14132
  msgid "Delete derived images"
14133
  msgstr ""
14134
 
14135
+ #: wppa-settings-autosave.php:8299
14136
  msgid "Deletes all derived images !!!"
14137
  msgstr ""
14138
 
14139
+ #: wppa-settings-autosave.php:8307
14140
  msgid "Max lifetime"
14141
  msgstr ""
14142
 
14143
+ #: wppa-settings-autosave.php:8308
14144
  msgid "Old images from local server, new images from Cloudinary."
14145
  msgstr ""
14146
 
14147
+ #: wppa-settings-autosave.php:8309
14148
  msgid ""
14149
  "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
14150
  msgstr ""
14151
 
14152
+ #: wppa-settings-autosave.php:8311
14153
  msgid "Forever"
14154
  msgstr "Infini"
14155
 
14156
+ #: wppa-settings-autosave.php:8342
14157
  msgid "Cloudinary usage"
14158
  msgstr ""
14159
 
14160
+ #: wppa-settings-autosave.php:8378
14161
  msgid "Cloudinary usage data not available"
14162
  msgstr "Données d'utilisation Cloudinary non disponibles"
14163
 
14164
+ #: wppa-settings-autosave.php:8382
14165
  msgid "Cloudinary routines not installed."
14166
  msgstr ""
14167
 
14168
+ #: wppa-settings-autosave.php:8393
14169
  msgid "Cloudinary"
14170
  msgstr "Cloudinary"
14171
 
14172
+ #: wppa-settings-autosave.php:8394
14173
  msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
14174
  msgstr ""
14175
 
14176
+ #: wppa-settings-autosave.php:8403
14177
  msgid "GPX Implementation"
14178
  msgstr "Implémentation GPX"
14179
 
14180
+ #: wppa-settings-autosave.php:8404
14181
  msgid "The way the maps are produced."
14182
  msgstr ""
14183
 
14184
+ #: wppa-settings-autosave.php:8405
14185
  msgid "Select the way the maps are produced."
14186
  msgstr ""
14187
 
14188
+ #: wppa-settings-autosave.php:8406
14189
  msgid ""
14190
  "When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
14191
  msgstr ""
14192
 
14193
+ #: wppa-settings-autosave.php:8407
14194
  msgid ""
14195
  "When using WPPA+ Embedded code, you can use Ajax, but there are less display "
14196
  "options."
14197
  msgstr ""
14198
 
14199
+ #: wppa-settings-autosave.php:8409
14200
  msgid "WPPA+ Embedded code"
14201
  msgstr ""
14202
 
14203
+ #: wppa-settings-autosave.php:8409
14204
  msgid "Google maps GPX viewer plugin"
14205
  msgstr ""
14206
 
14207
+ #: wppa-settings-autosave.php:8417
14208
  msgid "Map height"
14209
  msgstr ""
14210
 
14211
+ #: wppa-settings-autosave.php:8418
14212
  msgid "The height of the map display."
14213
  msgstr ""
14214
 
14215
+ #: wppa-settings-autosave.php:8426
14216
  msgid "Google maps API key"
14217
  msgstr ""
14218
 
14219
+ #: wppa-settings-autosave.php:8427
14220
  msgid "Enter your Google maps api key here if you have one."
14221
  msgstr ""
14222
 
14223
+ #: wppa-settings-autosave.php:8435
14224
  msgid "GPX Shortcode"
14225
  msgstr ""
14226
 
14227
+ #: wppa-settings-autosave.php:8436
14228
  msgid "The shortcode to be used for the gpx feature."
14229
  msgstr ""
14230
 
14231
+ #: wppa-settings-autosave.php:8437
14232
  msgid ""
14233
  "Enter / modify the shortcode to be generated for the gpx plugin. It must "
14234
  "contain w#lat and w#lon as placeholders for the lattitude and longitude."
14235
  msgstr ""
14236
 
14237
+ #: wppa-settings-autosave.php:8438
14238
  msgid "This item is required for using Google maps GPX viewer plugin only"
14239
  msgstr ""
14240
 
14241
+ #: wppa-settings-autosave.php:8445
14242
  msgid "Fotomoto"
14243
  msgstr ""
14244
 
14245
+ #: wppa-settings-autosave.php:8446
14246
  msgid "Yes, we use Fotomoto on this site. Read the help text!"
14247
  msgstr ""
14248
 
14249
+ #: wppa-settings-autosave.php:8447
14250
  msgid "In order to function properly:"
14251
  msgstr ""
14252
 
14253
+ #: wppa-settings-autosave.php:8448
14254
  msgid "1. Get yourself a Fotomoto account."
14255
  msgstr ""
14256
 
14257
+ #: wppa-settings-autosave.php:8449
14258
  msgid ""
14259
  "2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
14260
  "the \"Use API Mode:\" checkbox."
14261
  msgstr ""
14262
 
14263
+ #: wppa-settings-autosave.php:8450
14264
  msgid "Note: Do NOT Disable the Custom box in Table II-B14."
14265
  msgstr ""
14266
 
14267
+ #: wppa-settings-autosave.php:8451
14268
  msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
14269
  msgstr ""
14270
 
14271
+ #: wppa-settings-autosave.php:8459
14272
  msgid "Fotomoto fontsize"
14273
  msgstr ""
14274
 
14275
+ #: wppa-settings-autosave.php:8460
14276
  msgid "Fontsize for the Fotomoto toolbar."
14277
  msgstr ""
14278
 
14279
+ #: wppa-settings-autosave.php:8461
14280
  msgid ""
14281
  "If you set it here, it overrules a possible setting for font-size in ."
14282
  "FotomotoToolbarClass on the Fotomoto dashboard."
14283
  msgstr ""
14284
 
14285
+ #: wppa-settings-autosave.php:8469
14286
  msgid "Hide toolbar on running slideshows"
14287
  msgstr ""
14288
 
14289
+ #: wppa-settings-autosave.php:8470
14290
  msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
14291
  msgstr ""
14292
 
14293
+ #: wppa-settings-autosave.php:8477
14294
  msgid "Fotomoto minwidth"
14295
  msgstr ""
14296
 
14297
+ #: wppa-settings-autosave.php:8478
14298
  msgid "Minimum width to display Fotomoto toolbar."
14299
  msgstr ""
14300
 
14301
+ #: wppa-settings-autosave.php:8479
14302
  msgid ""
14303
  "The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
14304
  msgstr ""
14305
 
14306
+ #: wppa-settings-autosave.php:8504
14307
  msgid "Table X:"
14308
  msgstr ""
14309
 
14310
+ #: wppa-settings-autosave.php:8504
14311
  msgid "IPTC Configuration:"
14312
  msgstr ""
14313
 
14314
+ #: wppa-settings-autosave.php:8505
14315
  msgid "This table defines the IPTC configuration"
14316
  msgstr ""
14317
 
14318
+ #: wppa-settings-autosave.php:8536 wppa-settings-autosave.php:8604
14319
  msgid "Display"
14320
  msgstr "Afficher"
14321
 
14322
+ #: wppa-settings-autosave.php:8536 wppa-settings-autosave.php:8604
14323
  msgid "Hide"
14324
  msgstr "Cacher"
14325
 
14326
+ #: wppa-settings-autosave.php:8536 wppa-settings-autosave.php:8604
14327
  msgid "Optional"
14328
  msgstr "Optionnel"
14329
 
14330
+ #: wppa-settings-autosave.php:8566
14331
  msgid "Table XI:"
14332
  msgstr ""
14333
 
14334
+ #: wppa-settings-autosave.php:8566
14335
  msgid "EXIF Configuration:"
14336
  msgstr "Configuration EXIF:"
14337
 
14338
+ #: wppa-settings-autosave.php:8567
14339
  msgid "This table defines the EXIF configuration"
14340
  msgstr ""
14341
 
14342
+ #: wppa-settings-autosave.php:8590
14343
  msgid ""
14344
  "Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
14345
  "enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
14346
  "add <b>'--enable-exif'</b> to the php <b>Configure Command</b>."
14347
  msgstr ""
14348
 
14349
+ #: wppa-settings-autosave.php:8634
14350
  msgid "Table XII:"
14351
  msgstr ""
14352
 
14353
+ #: wppa-settings-autosave.php:8634
14354
  msgid "WPPA+ and PHP Configuration:"
14355
  msgstr "Configuration WPPA+ et PHP:"
14356
 
14357
+ #: wppa-settings-autosave.php:8635
14358
  msgid ""
14359
  "This table lists all WPPA+ constants and PHP server configuration parameters "
14360
  "and is read only"
14361
  msgstr ""
14362
 
14363
+ #: wppa-settings-autosave.php:8650
14364
  msgid "Value"
14365
  msgstr "Valeur"
14366
 
14367
+ #: wppa-settings-autosave.php:8655
14368
  msgid "Albums db table name."
14369
  msgstr ""
14370
 
14371
+ #: wppa-settings-autosave.php:8660
14372
  msgid "Photos db table name."
14373
  msgstr "Nom de la table photos dans la base de données."
14374
 
14375
+ #: wppa-settings-autosave.php:8665
14376
  msgid "Rating db table name."
14377
  msgstr ""
14378
 
14379
+ #: wppa-settings-autosave.php:8670
14380
  msgid "Comments db table name."
14381
  msgstr ""
14382
 
14383
+ #: wppa-settings-autosave.php:8675
14384
  msgid "IPTC db table name."
14385
  msgstr "Nom de la table IPTC dans la base de donnée."
14386
 
14387
+ #: wppa-settings-autosave.php:8680
14388
  msgid "EXIF db table name."
14389
  msgstr "Nom de la table EXIF dans la base de donnée."
14390
 
14391
+ #: wppa-settings-autosave.php:8685
14392
  msgid "Index db table name."
14393
  msgstr "Nom de la table Index dans la base de donnée."
14394
 
14395
+ #: wppa-settings-autosave.php:8690
14396
  msgid "Plugins main file name."
14397
  msgstr ""
14398
 
14399
+ #: wppa-settings-autosave.php:8695
14400
  msgid "ABSPATH windows proof"
14401
  msgstr ""
14402
 
14403
+ #: wppa-settings-autosave.php:8700
14404
  msgid "Path to plugins directory."
14405
  msgstr ""
14406
 
14407
+ #: wppa-settings-autosave.php:8705
14408
  msgid "Plugins directory name."
14409
  msgstr ""
14410
 
14411
+ #: wppa-settings-autosave.php:8710
14412
  msgid "Plugins directory url."
14413
  msgstr ""
14414
 
14415
+ #: wppa-settings-autosave.php:8715
14416
  msgid "The relative upload directory."
14417
  msgstr ""
14418
 
14419
+ #: wppa-settings-autosave.php:8720
14420
  msgid "The upload directory path."
14421
  msgstr ""
14422
 
14423
+ #: wppa-settings-autosave.php:8725
14424
  msgid "The upload directory url."
14425
  msgstr ""
14426
 
14427
+ #: wppa-settings-autosave.php:8730
14428
  msgid "The relative depot directory."
14429
  msgstr ""
14430
 
14431
+ #: wppa-settings-autosave.php:8735
14432
  msgid "The depot directory path."
14433
  msgstr ""
14434
 
14435
+ #: wppa-settings-autosave.php:8740
14436
  msgid "The depot directory url."
14437
  msgstr ""
14438
 
14439
+ #: wppa-settings-autosave.php:8745
14440
  msgid "The path to wp-content."
14441
  msgstr ""
14442
 
14443
+ #: wppa-settings-autosave.php:8750
14444
  msgid "WP Base upload dir."
14445
  msgstr ""
14446
 
14447
+ #: wppa-settings-autosave.php:8756
14448
  msgid "WP Content url."
14449
  msgstr ""
14450
 
14451
+ #: wppa-settings-autosave.php:8773
14452
  #, php-format
14453
  msgid "<br />Memory used on this page: %6.2f Mb."
14454
  msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
14455
 
14456
+ #: wppa-settings-autosave.php:8774
14457
  #, php-format
14458
  msgid "<br />There are %d settings and %d runtime parameters."
14459
  msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
14460
 
14461
+ #: wppa-settings-autosave.php:8853
14462
  msgid "The default for this setting is:"
14463
  msgstr ""
14464
 
14465
+ #: wppa-settings-autosave.php:8870
14466
  msgid "Click for help"
14467
  msgstr "Cliquer pour l'aide"
14468
 
14469
+ #: wppa-settings-autosave.php:8914 wppa-settings-autosave.php:8932
14470
+ #: wppa-settings-autosave.php:8961 wppa-settings-autosave.php:8984
14471
+ #: wppa-settings-autosave.php:9014 wppa-settings-autosave.php:9041
14472
+ #: wppa-settings-autosave.php:9067 wppa-settings-autosave.php:9115
14473
  msgid "Slug ="
14474
  msgstr "Slug ="
14475
 
14476
+ #: wppa-settings-autosave.php:8984 wppa-settings-autosave.php:9014
14477
+ #: wppa-settings-autosave.php:9041 wppa-settings-autosave.php:9067
14478
  msgid "Values = yes, no"
14479
  msgstr "Valeurs=oui,non"
14480
 
14481
+ #: wppa-settings-autosave.php:9013 wppa-settings-autosave.php:9039
14482
+ #: wppa-settings-autosave.php:9066
14483
  msgid "Warning!"
14484
  msgstr "Attention!"
14485
 
14486
+ #: wppa-settings-autosave.php:9040 wppa-settings-autosave.php:9066
14487
  msgid "Please read the help"
14488
  msgstr "Veuillez consulter l'aide"
14489
 
14490
+ #: wppa-settings-autosave.php:9115
14491
  msgid "Values = "
14492
  msgstr "Values = "
14493
 
14494
+ #: wppa-settings-autosave.php:9190
14495
  msgid "Checked"
14496
  msgstr "Coché"
14497
 
14498
+ #: wppa-settings-autosave.php:9191
14499
  msgid "Unchecked"
14500
  msgstr "Décoché"
14501
 
14502
+ #: wppa-settings-autosave.php:9196
14503
  msgid "the photo specific link."
14504
  msgstr ""
14505
 
14506
+ #: wppa-settings-autosave.php:9228
14507
  msgid "Show!"
14508
  msgstr "Montrer!"
14509
 
14510
+ #: wppa-settings-autosave.php:9248
14511
  msgid "Not done yet"
14512
  msgstr "Pas encore fait"
14513
 
14514
+ #: wppa-settings-autosave.php:9255
14515
  msgid "Start!"
14516
  msgstr "Démarrer!"
14517
 
14518
+ #: wppa-settings-autosave.php:9260
14519
  msgid "Locked!"
14520
  msgstr "Verrouillé!"
14521
 
14522
+ #: wppa-settings-autosave.php:9291
14523
  msgid ""
14524
  "You can not have popup and lightbox on thumbnails at the same time. Uncheck "
14525
  "either Table IV-C8 or choose a different linktype in Table VI-2."
14526
  msgstr ""
14527
 
14528
+ #: wppa-settings-autosave.php:9294
14529
  #, php-format
14530
  msgid ""
14531
  "It is important that you select a page that contains at least %%wppa%% or "
14532
  "[wppa][/wppa]."
14533
  msgstr ""
14534
 
14535
+ #: wppa-settings-autosave.php:9295
14536
  msgid ""
14537
  "If you ommit this, the link will not work at all or simply refresh the "
14538
  "(home)page."
14585
  msgid "Enter new tags:"
14586
  msgstr "Entrez les nouveaux tags:"
14587
 
14588
+ #: wppa-setup.php:971
14589
  msgid "Vote for me!"
14590
  msgstr "Votez pour moi !"
14591
 
14592
+ #: wppa-setup.php:972
14593
  msgid "Voted for me"
14594
  msgstr "Ont voté pour moi"
14595
 
14596
+ #: wppa-setup.php:1294
14597
  msgid "NEW"
14598
  msgstr "NOUVEAU"
14599
 
14600
+ #: wppa-setup.php:1296
14601
  msgid "MODIFIED"
14602
  msgstr "MODIFIE"
14603
 
14604
+ #: wppa-setup.php:1345
14605
  msgid "Search in current section"
14606
  msgstr "Rechercher dans la section courante"
14607
 
14608
+ #: wppa-setup.php:1346
14609
  msgid "Search in current results"
14610
  msgstr "Rechercher dans les résultats courants"
14611
 
14612
+ #: wppa-setup.php:1416
14613
  msgid "Type your custom url here"
14614
  msgstr "Tapez votre URL personnalisée ici"
14615
 
14616
+ #: wppa-setup.php:1417
14617
  msgid "Type the title here"
14618
  msgstr "Entrez ici le titre de la page"
14619
 
14620
+ #: wppa-setup.php:1429 wppa-topten-widget.php:13 wppa-topten-widget.php:47
14621
  #: wppa-topten-widget.php:247
14622
  msgid "Top Ten Photos"
14623
  msgstr "Meilleures photos"
14624
 
14625
+ #: wppa-setup.php:1432 wppa-thumbnail-widget.php:13
14626
  #: wppa-thumbnail-widget.php:166
14627
  msgid "Thumbnail Photos"
14628
  msgstr "Vignettes"
14629
 
14630
+ #: wppa-setup.php:1435
14631
  msgid "Search photos"
14632
  msgstr "Rechercher dans les photos"
14633
 
14634
+ #: wppa-setup.php:1478
14635
  msgid ""
14636
  "The uploads directory does not exist, please do a regular WP upload first."
14637
  msgstr ""
14638
 
14639
+ #: wppa-setup.php:1482
14640
  msgid "Successfully created uploads directory."
14641
  msgstr ""
14642
 
14643
+ #: wppa-setup.php:1493
14644
  msgid "Could not create the wppa directory."
14645
  msgstr "Impossible de créer le répertoire WPPA."
14646
 
14647
+ #: wppa-setup.php:1497
14648
  msgid "Successfully created wppa directory."
14649
  msgstr ""
14650
 
14651
+ #: wppa-setup.php:1507
14652
  msgid "Could not create the wppa thumbs directory."
14653
  msgstr "Impossible de créer le répertoire de vignettes WPPA."
14654
 
14655
+ #: wppa-setup.php:1511
14656
  msgid "Successfully created wppa thumbs directory."
14657
  msgstr ""
14658
 
14659
+ #: wppa-setup.php:1521
14660
  msgid "Could not create the wppa watermarks directory."
14661
  msgstr ""
14662
 
14663
+ #: wppa-setup.php:1525
14664
  msgid "Successfully created wppa watermarks directory."
14665
  msgstr ""
14666
 
14667
+ #: wppa-setup.php:1535
14668
  msgid "Could not create the wppa fonts directory."
14669
  msgstr ""
14670
 
14671
+ #: wppa-setup.php:1539
14672
  msgid "Successfully created wppa fonts directory."
14673
  msgstr ""
14674
 
14675
+ #: wppa-setup.php:1551
14676
  msgid "Unable to create depot directory."
14677
  msgstr ""
14678
 
14679
+ #: wppa-setup.php:1555
14680
  msgid "Successfully created wppa depot directory."
14681
  msgstr ""
14682
 
14683
+ #: wppa-setup.php:1566
14684
  msgid "Unable to create user depot directory"
14685
  msgstr ""
14686
 
14687
+ #: wppa-setup.php:1570
14688
  msgid "Successfully created wppa user depot directory."
14689
  msgstr ""
14690
 
14691
+ #: wppa-setup.php:1580
14692
  msgid "Unable to create temp directory"
14693
  msgstr ""
14694
 
14695
+ #: wppa-setup.php:1584
14696
  msgid "Successfully created temp directory."
14697
  msgstr ""
14698
 
14699
+ #: wppa-setup.php:1592
14700
  #, php-format
14701
  msgid ""
14702
  "Ask your administrator to give you more rights, or create <b>%s</b> manually "
14810
  "To see the full size images, you need to enable javascript in your browser."
14811
  msgstr "Vous devez activer Javascript pour voir les images pleine grandeur."
14812
 
14813
+ #: wppa-slideshow.php:602
14814
  msgid "Checkout"
14815
  msgstr "Checkout"
14816
 
14817
+ #: wppa-slideshow.php:662
14818
  #, php-format
14819
  msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14820
  msgstr "Nombre de votes: <span id=\"wppa-vote-count-%s\" >%s</span>&nbsp;"
14821
 
14822
+ #: wppa-slideshow.php:678 wppa-slideshow.php:821 wppa-slideshow.php:883
14823
  #, php-format
14824
  msgid "You must <a href=\"%s\">login</a> to vote"
14825
  msgstr "Vous devez vous <a href=\"%s\">connecter</a> pour voter"
14826
 
14827
+ #: wppa-slideshow.php:681 wppa-slideshow.php:824 wppa-slideshow.php:886
14828
  msgid "You must login to vote"
14829
  msgstr "Se connecter pour voter"
14830
 
14831
+ #: wppa-slideshow.php:717
14832
  msgid "very low"
14833
  msgstr "très basse"
14834
 
14835
+ #: wppa-slideshow.php:718
14836
  msgid "low"
14837
  msgstr "basse"
14838
 
14839
+ #: wppa-slideshow.php:719
14840
  msgid "average"
14841
  msgstr "moyenne"
14842
 
14843
+ #: wppa-slideshow.php:720
14844
  msgid "high"
14845
  msgstr "haute"
14846
 
14847
+ #: wppa-slideshow.php:721
14848
  msgid "very high"
14849
  msgstr "très haute"
14850
 
14851
+ #: wppa-slideshow.php:768 wppa-slideshow.php:854
14852
  msgid "Click this if you do NOT like this image!"
14853
  msgstr "Cliquez ici si vous N'aimez PAS cette image !"
14854
 
14855
+ #: wppa-slideshow.php:776 wppa-slideshow.php:862
14856
  msgid "Are you sure you want to mark this image as inappropriate?"
14857
  msgstr "Etes-vous sûr de vouloir marquer cette image comme inappropriée ?"
14858
 
14859
+ #: wppa-slideshow.php:784 wppa-slideshow.php:871
14860
  msgid "Number of people who marked this photo as inappropriate"
14861
  msgstr "Nombre de personnes qui ont marqué cette photo comme inappropriée"
14862
 
14863
+ #: wppa-slideshow.php:878
14864
  msgid "My rating:"
14865
  msgstr "Mon vote:"
14866
 
14867
+ #: wppa-slideshow.php:970
14868
  msgid "First"
14869
  msgstr "Premier"
14870
 
14871
+ #: wppa-slideshow.php:1001
14872
  msgid "Last"
14873
  msgstr "Dernier"
14874
 
14875
+ #: wppa-slideshow.php:1204
14876
  #, php-format
14877
  msgid "Photo %s of %s"
14878
  msgstr "Photo %s de %s"
14879
 
14880
+ #: wppa-slideshow.php:1256
14881
  msgid "Click to start/stop"
14882
  msgstr "Cliquer pour lancer/arrêter"
14883
 
14884
+ #: wppa-slideshow.php:1268
14885
  msgid "- - - Comments box activated - - -"
14886
  msgstr "- - - Boîte de commentaires activée - - -"
14887
 
14888
+ #: wppa-slideshow.php:1292
14889
  msgid "- - - IPTC box activated - - -"
14890
  msgstr "- - - Boîte IPTC activée - - -"
14891
 
14892
+ #: wppa-slideshow.php:1316
14893
  msgid "- - - EXIF box activated - - -"
14894
  msgstr "- - - Boîte EXIF activée - - -"
14895
 
16502
  msgid "There are too many photos in the selection to show a preview ( %d )"
16503
  msgstr ""
16504
 
16505
+ #: wppa-widget-functions.php:150
16506
  msgid "- select (another) album or a set -"
16507
  msgstr "- Sélectionner album ou set -"
16508
 
16509
+ #: wppa-widget-functions.php:185
16510
  msgid "- all albums -"
16511
  msgstr "- tous les albums -"
16512
 
16513
+ #: wppa-widget-functions.php:187
16514
  msgid "- all -separate- albums -"
16515
  msgstr "- tous les albums -séparés --"
16516
 
16517
+ #: wppa-widget-functions.php:189
16518
  msgid "- all albums except -separate-"
16519
  msgstr "- tous les albums excepté -séparés--"
16520
 
16521
+ #: wppa-widget-functions.php:191
16522
  msgid "- top rated photos -"
16523
  msgstr "- photos les mieux notées -"
16524
 
16525
+ #: wppa-widget-functions.php:192
16526
  msgid "- start over -"
16527
  msgstr "- repartir de zéro -"
16528
 
languages/wp-photo-album-plus-he_IL.mo CHANGED
Binary file
languages/wp-photo-album-plus-he_IL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:12+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:03+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: he_IL\n"
@@ -118,7 +118,7 @@ msgstr ""
118
  msgid "New"
119
  msgstr "אלבום"
120
 
121
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
122
  msgid "Slideshow"
123
  msgstr "מצגת תמונות"
124
 
@@ -562,23 +562,28 @@ msgid_plural "%d max ratings"
562
  msgstr[0] "דירוג ממוצע"
563
  msgstr[1] "דירוג ממוצע"
564
 
565
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
566
  #, php-format
567
  msgid "%d vote"
568
  msgid_plural "%d votes"
569
  msgstr[0] ""
570
  msgstr[1] ""
571
 
572
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
573
- #, php-format
574
- msgid "Mean value: %4.2f."
575
- msgstr ""
576
 
577
  #: wppa-boxes-html.php:3288
578
  #, fuzzy, php-format
579
  msgid "Photo %s not found."
580
  msgstr "תמונה לא נמצאה."
581
 
 
 
 
 
 
582
  #: wppa-boxes-html.php:3695
583
  msgid "Refresh"
584
  msgstr ""
@@ -1295,7 +1300,7 @@ msgid "You can upload after"
1295
  msgstr "כדי לראות את התמונות בגודל מלא עליך לאפשר javascript בדפדפן שלה."
1296
 
1297
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1298
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1299
  msgid "Download"
1300
  msgstr ""
1301
 
@@ -1307,163 +1312,167 @@ msgstr ""
1307
  msgid "Press f for fullscreen."
1308
  msgstr ""
1309
 
1310
- #: wppa-non-admin.php:422
 
 
 
 
1311
  msgid ""
1312
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1313
  "dismiss this notice."
1314
  msgstr ""
1315
 
1316
- #: wppa-non-admin.php:423
1317
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1318
  msgstr ""
1319
 
1320
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1321
  msgid "Start"
1322
  msgstr "התחל"
1323
 
1324
- #: wppa-non-admin.php:663
1325
  msgid "Stop"
1326
  msgstr ""
1327
 
1328
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1329
  msgid "Slower"
1330
  msgstr "לאט יותר"
1331
 
1332
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1333
  msgid "Faster"
1334
  msgstr "מהר יותר"
1335
 
1336
- #: wppa-non-admin.php:666
1337
  #, fuzzy
1338
  msgid "Photo"
1339
  msgstr "תמונה"
1340
 
1341
- #: wppa-non-admin.php:667
1342
  msgid "of"
1343
  msgstr ""
1344
 
1345
- #: wppa-non-admin.php:668
1346
  #, fuzzy
1347
  msgid "Previous photo"
1348
  msgstr "תמונה קודמת"
1349
 
1350
- #: wppa-non-admin.php:669
1351
  #, fuzzy
1352
  msgid "Next photo"
1353
  msgstr "עריכה!"
1354
 
1355
- #: wppa-non-admin.php:670
1356
  #, fuzzy
1357
  msgid "Prev."
1358
  msgstr "תמונה קודמת"
1359
 
1360
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1361
  msgid "Next"
1362
  msgstr "קדימה"
1363
 
1364
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1365
  #: wppa-slideshow.php:832
1366
  msgid "Average&nbsp;rating"
1367
  msgstr "דירוג ממוצע"
1368
 
1369
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1370
  #: wppa-slideshow.php:814
1371
  msgid "My&nbsp;rating"
1372
  msgstr "הדירוג שלי"
1373
 
1374
- #: wppa-non-admin.php:674
1375
  msgid "Avg."
1376
  msgstr ""
1377
 
1378
- #: wppa-non-admin.php:675
1379
  msgid "Mine"
1380
  msgstr ""
1381
 
1382
- #: wppa-non-admin.php:676
1383
  #, fuzzy
1384
  msgid "You marked this image as inappropriate."
1385
  msgstr "כדי לראות את התמונות בגודל מלא עליך לאפשר javascript בדפדפן שלה."
1386
 
1387
- #: wppa-non-admin.php:679
1388
  msgid "Please enter your name"
1389
  msgstr ""
1390
 
1391
- #: wppa-non-admin.php:680
1392
  msgid "Please enter a valid email address"
1393
  msgstr ""
1394
 
1395
- #: wppa-non-admin.php:681
1396
  #, fuzzy
1397
  msgid "Please enter a comment"
1398
  msgstr "השאר הערה"
1399
 
1400
- #: wppa-non-admin.php:715
1401
  msgid "Double click to start/stop slideshow running"
1402
  msgstr ""
1403
 
1404
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1405
  msgid "wrote"
1406
  msgstr ""
1407
 
1408
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1409
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1410
  #, fuzzy
1411
  msgid "Photo not found"
1412
  msgstr "תמונה לא נמצאה."
1413
 
1414
- #: wppa-non-admin.php:794
1415
  #, fuzzy
1416
  msgid "There are no commented photos (yet)"
1417
  msgstr "תמונות"
1418
 
1419
- #: wppa-non-admin.php:797
1420
  #, fuzzy
1421
  msgid "View the featured photos"
1422
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
1423
 
1424
- #: wppa-non-admin.php:799
1425
  msgid "There are no featured photos (yet)"
1426
  msgstr ""
1427
 
1428
- #: wppa-non-admin.php:802
1429
  #, fuzzy
1430
  msgid "View the most recent uploaded photos"
1431
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
1432
 
1433
- #: wppa-non-admin.php:804
1434
  #, fuzzy
1435
  msgid "There are no uploaded photos (yet)"
1436
  msgstr "תמונות"
1437
 
1438
- #: wppa-non-admin.php:808
1439
  msgid "By:"
1440
  msgstr ""
1441
 
1442
- #: wppa-non-admin.php:811
1443
  msgid "No album defined (yet)"
1444
  msgstr ""
1445
 
1446
- #: wppa-non-admin.php:815
1447
  msgid "There are no photos (yet)"
1448
  msgstr ""
1449
 
1450
- #: wppa-non-admin.php:818
1451
  msgid "There are too many registered users in the system for this widget"
1452
  msgstr ""
1453
 
1454
- #: wppa-non-admin.php:819
1455
  #, fuzzy
1456
  msgid "Photos uploaded by"
1457
  msgstr "תמונות"
1458
 
1459
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1460
  #, php-format
1461
  msgid "%d view"
1462
  msgid_plural "%d views"
1463
  msgstr[0] ""
1464
  msgstr[1] ""
1465
 
1466
- #: wppa-non-admin.php:825
1467
  #, fuzzy
1468
  msgid "There are no rated photos (yet)"
1469
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
@@ -1638,3 +1647,75 @@ msgstr ""
1638
  #. Author URI of the plugin/theme
1639
  msgid "http://wppa.opajaap.nl/"
1640
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: he_IL\n"
118
  msgid "New"
119
  msgstr "אלבום"
120
 
121
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
122
  msgid "Slideshow"
123
  msgstr "מצגת תמונות"
124
 
562
  msgstr[0] "דירוג ממוצע"
563
  msgstr[1] "דירוג ממוצע"
564
 
565
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
566
  #, php-format
567
  msgid "%d vote"
568
  msgid_plural "%d votes"
569
  msgstr[0] ""
570
  msgstr[1] ""
571
 
572
+ #: wppa-boxes-html.php:3280
573
+ #, fuzzy, php-format
574
+ msgid "Rating: %4.2f."
575
+ msgstr "דירוגים: %s"
576
 
577
  #: wppa-boxes-html.php:3288
578
  #, fuzzy, php-format
579
  msgid "Photo %s not found."
580
  msgstr "תמונה לא נמצאה."
581
 
582
+ #: wppa-boxes-html.php:3343
583
+ #, php-format
584
+ msgid "Mean value: %4.2f."
585
+ msgstr ""
586
+
587
  #: wppa-boxes-html.php:3695
588
  msgid "Refresh"
589
  msgstr ""
1300
  msgstr "כדי לראות את התמונות בגודל מלא עליך לאפשר javascript בדפדפן שלה."
1301
 
1302
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1303
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1304
  msgid "Download"
1305
  msgstr ""
1306
 
1312
  msgid "Press f for fullscreen."
1313
  msgstr ""
1314
 
1315
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1316
+ msgid "Toggle fullscreen"
1317
+ msgstr ""
1318
+
1319
+ #: wppa-non-admin.php:423
1320
  msgid ""
1321
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1322
  "dismiss this notice."
1323
  msgstr ""
1324
 
1325
+ #: wppa-non-admin.php:424
1326
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1327
  msgstr ""
1328
 
1329
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1330
  msgid "Start"
1331
  msgstr "התחל"
1332
 
1333
+ #: wppa-non-admin.php:665
1334
  msgid "Stop"
1335
  msgstr ""
1336
 
1337
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1338
  msgid "Slower"
1339
  msgstr "לאט יותר"
1340
 
1341
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1342
  msgid "Faster"
1343
  msgstr "מהר יותר"
1344
 
1345
+ #: wppa-non-admin.php:668
1346
  #, fuzzy
1347
  msgid "Photo"
1348
  msgstr "תמונה"
1349
 
1350
+ #: wppa-non-admin.php:669
1351
  msgid "of"
1352
  msgstr ""
1353
 
1354
+ #: wppa-non-admin.php:670
1355
  #, fuzzy
1356
  msgid "Previous photo"
1357
  msgstr "תמונה קודמת"
1358
 
1359
+ #: wppa-non-admin.php:671
1360
  #, fuzzy
1361
  msgid "Next photo"
1362
  msgstr "עריכה!"
1363
 
1364
+ #: wppa-non-admin.php:672
1365
  #, fuzzy
1366
  msgid "Prev."
1367
  msgstr "תמונה קודמת"
1368
 
1369
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1370
  msgid "Next"
1371
  msgstr "קדימה"
1372
 
1373
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1374
  #: wppa-slideshow.php:832
1375
  msgid "Average&nbsp;rating"
1376
  msgstr "דירוג ממוצע"
1377
 
1378
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1379
  #: wppa-slideshow.php:814
1380
  msgid "My&nbsp;rating"
1381
  msgstr "הדירוג שלי"
1382
 
1383
+ #: wppa-non-admin.php:676
1384
  msgid "Avg."
1385
  msgstr ""
1386
 
1387
+ #: wppa-non-admin.php:677
1388
  msgid "Mine"
1389
  msgstr ""
1390
 
1391
+ #: wppa-non-admin.php:678
1392
  #, fuzzy
1393
  msgid "You marked this image as inappropriate."
1394
  msgstr "כדי לראות את התמונות בגודל מלא עליך לאפשר javascript בדפדפן שלה."
1395
 
1396
+ #: wppa-non-admin.php:681
1397
  msgid "Please enter your name"
1398
  msgstr ""
1399
 
1400
+ #: wppa-non-admin.php:682
1401
  msgid "Please enter a valid email address"
1402
  msgstr ""
1403
 
1404
+ #: wppa-non-admin.php:683
1405
  #, fuzzy
1406
  msgid "Please enter a comment"
1407
  msgstr "השאר הערה"
1408
 
1409
+ #: wppa-non-admin.php:717
1410
  msgid "Double click to start/stop slideshow running"
1411
  msgstr ""
1412
 
1413
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1414
  msgid "wrote"
1415
  msgstr ""
1416
 
1417
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1418
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1419
  #, fuzzy
1420
  msgid "Photo not found"
1421
  msgstr "תמונה לא נמצאה."
1422
 
1423
+ #: wppa-non-admin.php:796
1424
  #, fuzzy
1425
  msgid "There are no commented photos (yet)"
1426
  msgstr "תמונות"
1427
 
1428
+ #: wppa-non-admin.php:799
1429
  #, fuzzy
1430
  msgid "View the featured photos"
1431
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
1432
 
1433
+ #: wppa-non-admin.php:801
1434
  msgid "There are no featured photos (yet)"
1435
  msgstr ""
1436
 
1437
+ #: wppa-non-admin.php:804
1438
  #, fuzzy
1439
  msgid "View the most recent uploaded photos"
1440
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
1441
 
1442
+ #: wppa-non-admin.php:806
1443
  #, fuzzy
1444
  msgid "There are no uploaded photos (yet)"
1445
  msgstr "תמונות"
1446
 
1447
+ #: wppa-non-admin.php:810
1448
  msgid "By:"
1449
  msgstr ""
1450
 
1451
+ #: wppa-non-admin.php:813
1452
  msgid "No album defined (yet)"
1453
  msgstr ""
1454
 
1455
+ #: wppa-non-admin.php:817
1456
  msgid "There are no photos (yet)"
1457
  msgstr ""
1458
 
1459
+ #: wppa-non-admin.php:820
1460
  msgid "There are too many registered users in the system for this widget"
1461
  msgstr ""
1462
 
1463
+ #: wppa-non-admin.php:821
1464
  #, fuzzy
1465
  msgid "Photos uploaded by"
1466
  msgstr "תמונות"
1467
 
1468
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1469
  #, php-format
1470
  msgid "%d view"
1471
  msgid_plural "%d views"
1472
  msgstr[0] ""
1473
  msgstr[1] ""
1474
 
1475
+ #: wppa-non-admin.php:827
1476
  #, fuzzy
1477
  msgid "There are no rated photos (yet)"
1478
  msgstr "צפה בתמונות שמדורגות הכי גבוה"
1647
  #. Author URI of the plugin/theme
1648
  msgid "http://wppa.opajaap.nl/"
1649
  msgstr ""
1650
+
1651
+ #, fuzzy
1652
+ #~ msgid "%d Comment"
1653
+ #~ msgid_plural "%d Comments"
1654
+ #~ msgstr[0] "הערות %d"
1655
+ #~ msgstr[1] "הערות %d"
1656
+
1657
+ #, fuzzy
1658
+ #~ msgid "%d View"
1659
+ #~ msgid_plural "%d Views"
1660
+ #~ msgstr[0] "צפייה"
1661
+ #~ msgstr[1] "צפייה"
1662
+
1663
+ #~ msgid "albums"
1664
+ #~ msgstr "אלבומים"
1665
+
1666
+ #~ msgid "photo"
1667
+ #~ msgstr "תמונה"
1668
+
1669
+ #~ msgid "photos"
1670
+ #~ msgstr "תמונות"
1671
+
1672
+ #, fuzzy
1673
+ #~ msgid ""
1674
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1675
+ #~ "multiple file upload"
1676
+ #~ msgstr "כדי לראות את התמונות בגודל מלא עליך לאפשר javascript בדפדפן שלה."
1677
+
1678
+ #, fuzzy
1679
+ #~ msgid "Votes: %s."
1680
+ #~ msgstr "דירוגים: %s"
1681
+
1682
+ #~ msgid "Home"
1683
+ #~ msgstr "בית"
1684
+
1685
+ #~ msgid "seconds"
1686
+ #~ msgstr "שניות"
1687
+
1688
+ #~ msgid "minutes"
1689
+ #~ msgstr "דקות"
1690
+
1691
+ #~ msgid "hours"
1692
+ #~ msgstr "שעות"
1693
+
1694
+ #~ msgid "days"
1695
+ #~ msgstr "ימים"
1696
+
1697
+ #~ msgid "weeks"
1698
+ #~ msgstr "שבועות"
1699
+
1700
+ #~ msgid "months"
1701
+ #~ msgstr "חודשים"
1702
+
1703
+ #~ msgid "years"
1704
+ #~ msgstr "שנים"
1705
+
1706
+ #, fuzzy
1707
+ #~ msgid "1 Comment"
1708
+ #~ msgid_plural "%s Comments"
1709
+ #~ msgstr[0] "שנייה אחת"
1710
+ #~ msgstr[1] "שנייה אחת"
1711
+
1712
+ #~ msgid "There are"
1713
+ #~ msgstr "ישנם"
1714
+
1715
+ #, fuzzy
1716
+ #~ msgid "Comments:"
1717
+ #~ msgstr "הערות %d"
1718
+
1719
+ #, fuzzy
1720
+ #~ msgid "Views:"
1721
+ #~ msgstr "צפייה"
languages/wp-photo-album-plus-hu_HU.mo CHANGED
Binary file
languages/wp-photo-album-plus-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:12+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:02+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: hu_HU\n"
@@ -116,7 +116,7 @@ msgstr "%s új képként feltöltésre került"
116
  msgid "New"
117
  msgstr "%s új képként feltöltésre került"
118
 
119
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
120
  msgid "Slideshow"
121
  msgstr "Vetítés"
122
 
@@ -550,23 +550,28 @@ msgid_plural "%d max ratings"
550
  msgstr[0] "Értékelésem:"
551
  msgstr[1] "Értékelésem:"
552
 
553
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
554
  #, php-format
555
  msgid "%d vote"
556
  msgid_plural "%d votes"
557
  msgstr[0] ""
558
  msgstr[1] ""
559
 
560
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
561
- #, php-format
562
- msgid "Mean value: %4.2f."
563
- msgstr ""
564
 
565
  #: wppa-boxes-html.php:3288
566
  #, fuzzy, php-format
567
  msgid "Photo %s not found."
568
  msgstr "Nincs a keresett kép."
569
 
 
 
 
 
 
570
  #: wppa-boxes-html.php:3695
571
  msgid "Refresh"
572
  msgstr ""
@@ -1259,7 +1264,7 @@ msgid "You can upload after"
1259
  msgstr "Feltöltési lehetőség még"
1260
 
1261
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1262
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1263
  msgid "Download"
1264
  msgstr "Letöltés"
1265
 
@@ -1271,164 +1276,168 @@ msgstr "Nagyítás"
1271
  msgid "Press f for fullscreen."
1272
  msgstr ""
1273
 
1274
- #: wppa-non-admin.php:422
 
 
 
 
1275
  msgid ""
1276
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1277
  "dismiss this notice."
1278
  msgstr ""
1279
 
1280
- #: wppa-non-admin.php:423
1281
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1282
  msgstr ""
1283
 
1284
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1285
  msgid "Start"
1286
  msgstr "Indít"
1287
 
1288
- #: wppa-non-admin.php:663
1289
  msgid "Stop"
1290
  msgstr ""
1291
 
1292
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1293
  msgid "Slower"
1294
  msgstr "Lassabban"
1295
 
1296
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1297
  msgid "Faster"
1298
  msgstr "Gyorsabban"
1299
 
1300
- #: wppa-non-admin.php:666
1301
  #, fuzzy
1302
  msgid "Photo"
1303
  msgstr "Kép"
1304
 
1305
- #: wppa-non-admin.php:667
1306
  msgid "of"
1307
  msgstr ""
1308
 
1309
- #: wppa-non-admin.php:668
1310
  #, fuzzy
1311
  msgid "Previous photo"
1312
  msgstr "Előző"
1313
 
1314
- #: wppa-non-admin.php:669
1315
  #, fuzzy
1316
  msgid "Next photo"
1317
  msgstr "Kép szerkesztése"
1318
 
1319
- #: wppa-non-admin.php:670
1320
  #, fuzzy
1321
  msgid "Prev."
1322
  msgstr "Előző"
1323
 
1324
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1325
  msgid "Next"
1326
  msgstr "Következő"
1327
 
1328
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1329
  #: wppa-slideshow.php:832
1330
  msgid "Average&nbsp;rating"
1331
  msgstr "Átlag &nbsp;értékelés"
1332
 
1333
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1334
  #: wppa-slideshow.php:814
1335
  msgid "My&nbsp;rating"
1336
  msgstr "Értékelésem"
1337
 
1338
- #: wppa-non-admin.php:674
1339
  msgid "Avg."
1340
  msgstr ""
1341
 
1342
- #: wppa-non-admin.php:675
1343
  msgid "Mine"
1344
  msgstr ""
1345
 
1346
- #: wppa-non-admin.php:676
1347
  #, fuzzy
1348
  msgid "You marked this image as inappropriate."
1349
  msgstr "Egészen bizonyos, hogy ezt a képet alkalmatlannak jelöljük?"
1350
 
1351
- #: wppa-non-admin.php:679
1352
  msgid "Please enter your name"
1353
  msgstr ""
1354
 
1355
- #: wppa-non-admin.php:680
1356
  msgid "Please enter a valid email address"
1357
  msgstr ""
1358
 
1359
- #: wppa-non-admin.php:681
1360
  #, fuzzy
1361
  msgid "Please enter a comment"
1362
  msgstr "Minden véleményt örömmel fogadunk!"
1363
 
1364
- #: wppa-non-admin.php:715
1365
  msgid "Double click to start/stop slideshow running"
1366
  msgstr ""
1367
 
1368
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1369
  #, fuzzy
1370
  msgid "wrote"
1371
  msgstr "szerint:"
1372
 
1373
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1374
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1375
  #, fuzzy
1376
  msgid "Photo not found"
1377
  msgstr "Nincs a keresett kép."
1378
 
1379
- #: wppa-non-admin.php:794
1380
  #, fuzzy
1381
  msgid "There are no commented photos (yet)"
1382
  msgstr "Legutóbbi hozzászólás"
1383
 
1384
- #: wppa-non-admin.php:797
1385
  #, fuzzy
1386
  msgid "View the featured photos"
1387
  msgstr "Legjobbnak értékelt képek"
1388
 
1389
- #: wppa-non-admin.php:799
1390
  msgid "There are no featured photos (yet)"
1391
  msgstr ""
1392
 
1393
- #: wppa-non-admin.php:802
1394
  #, fuzzy
1395
  msgid "View the most recent uploaded photos"
1396
  msgstr "Legjobbnak értékelt képek"
1397
 
1398
- #: wppa-non-admin.php:804
1399
  #, fuzzy
1400
  msgid "There are no uploaded photos (yet)"
1401
  msgstr "Legutóbbi képfeltöltések"
1402
 
1403
- #: wppa-non-admin.php:808
1404
  msgid "By:"
1405
  msgstr ""
1406
 
1407
- #: wppa-non-admin.php:811
1408
  msgid "No album defined (yet)"
1409
  msgstr ""
1410
 
1411
- #: wppa-non-admin.php:815
1412
  msgid "There are no photos (yet)"
1413
  msgstr ""
1414
 
1415
- #: wppa-non-admin.php:818
1416
  msgid "There are too many registered users in the system for this widget"
1417
  msgstr ""
1418
 
1419
- #: wppa-non-admin.php:819
1420
  #, fuzzy
1421
  msgid "Photos uploaded by"
1422
  msgstr "A képet feltöltötte: "
1423
 
1424
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1425
  #, php-format
1426
  msgid "%d view"
1427
  msgid_plural "%d views"
1428
  msgstr[0] ""
1429
  msgstr[1] ""
1430
 
1431
- #: wppa-non-admin.php:825
1432
  #, fuzzy
1433
  msgid "There are no rated photos (yet)"
1434
  msgstr "Legjobbnak értékelt képek"
@@ -1600,3 +1609,80 @@ msgstr ""
1600
  #. Author URI of the plugin/theme
1601
  msgid "http://wppa.opajaap.nl/"
1602
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: hu_HU\n"
116
  msgid "New"
117
  msgstr "%s új képként feltöltésre került"
118
 
119
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
120
  msgid "Slideshow"
121
  msgstr "Vetítés"
122
 
550
  msgstr[0] "Értékelésem:"
551
  msgstr[1] "Értékelésem:"
552
 
553
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
554
  #, php-format
555
  msgid "%d vote"
556
  msgid_plural "%d votes"
557
  msgstr[0] ""
558
  msgstr[1] ""
559
 
560
+ #: wppa-boxes-html.php:3280
561
+ #, fuzzy, php-format
562
+ msgid "Rating: %4.2f."
563
+ msgstr "Maximális feltöltés elérés"
564
 
565
  #: wppa-boxes-html.php:3288
566
  #, fuzzy, php-format
567
  msgid "Photo %s not found."
568
  msgstr "Nincs a keresett kép."
569
 
570
+ #: wppa-boxes-html.php:3343
571
+ #, php-format
572
+ msgid "Mean value: %4.2f."
573
+ msgstr ""
574
+
575
  #: wppa-boxes-html.php:3695
576
  msgid "Refresh"
577
  msgstr ""
1264
  msgstr "Feltöltési lehetőség még"
1265
 
1266
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1267
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1268
  msgid "Download"
1269
  msgstr "Letöltés"
1270
 
1276
  msgid "Press f for fullscreen."
1277
  msgstr ""
1278
 
1279
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1280
+ msgid "Toggle fullscreen"
1281
+ msgstr ""
1282
+
1283
+ #: wppa-non-admin.php:423
1284
  msgid ""
1285
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1286
  "dismiss this notice."
1287
  msgstr ""
1288
 
1289
+ #: wppa-non-admin.php:424
1290
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1291
  msgstr ""
1292
 
1293
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1294
  msgid "Start"
1295
  msgstr "Indít"
1296
 
1297
+ #: wppa-non-admin.php:665
1298
  msgid "Stop"
1299
  msgstr ""
1300
 
1301
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1302
  msgid "Slower"
1303
  msgstr "Lassabban"
1304
 
1305
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1306
  msgid "Faster"
1307
  msgstr "Gyorsabban"
1308
 
1309
+ #: wppa-non-admin.php:668
1310
  #, fuzzy
1311
  msgid "Photo"
1312
  msgstr "Kép"
1313
 
1314
+ #: wppa-non-admin.php:669
1315
  msgid "of"
1316
  msgstr ""
1317
 
1318
+ #: wppa-non-admin.php:670
1319
  #, fuzzy
1320
  msgid "Previous photo"
1321
  msgstr "Előző"
1322
 
1323
+ #: wppa-non-admin.php:671
1324
  #, fuzzy
1325
  msgid "Next photo"
1326
  msgstr "Kép szerkesztése"
1327
 
1328
+ #: wppa-non-admin.php:672
1329
  #, fuzzy
1330
  msgid "Prev."
1331
  msgstr "Előző"
1332
 
1333
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1334
  msgid "Next"
1335
  msgstr "Következő"
1336
 
1337
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1338
  #: wppa-slideshow.php:832
1339
  msgid "Average&nbsp;rating"
1340
  msgstr "Átlag &nbsp;értékelés"
1341
 
1342
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1343
  #: wppa-slideshow.php:814
1344
  msgid "My&nbsp;rating"
1345
  msgstr "Értékelésem"
1346
 
1347
+ #: wppa-non-admin.php:676
1348
  msgid "Avg."
1349
  msgstr ""
1350
 
1351
+ #: wppa-non-admin.php:677
1352
  msgid "Mine"
1353
  msgstr ""
1354
 
1355
+ #: wppa-non-admin.php:678
1356
  #, fuzzy
1357
  msgid "You marked this image as inappropriate."
1358
  msgstr "Egészen bizonyos, hogy ezt a képet alkalmatlannak jelöljük?"
1359
 
1360
+ #: wppa-non-admin.php:681
1361
  msgid "Please enter your name"
1362
  msgstr ""
1363
 
1364
+ #: wppa-non-admin.php:682
1365
  msgid "Please enter a valid email address"
1366
  msgstr ""
1367
 
1368
+ #: wppa-non-admin.php:683
1369
  #, fuzzy
1370
  msgid "Please enter a comment"
1371
  msgstr "Minden véleményt örömmel fogadunk!"
1372
 
1373
+ #: wppa-non-admin.php:717
1374
  msgid "Double click to start/stop slideshow running"
1375
  msgstr ""
1376
 
1377
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1378
  #, fuzzy
1379
  msgid "wrote"
1380
  msgstr "szerint:"
1381
 
1382
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1383
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1384
  #, fuzzy
1385
  msgid "Photo not found"
1386
  msgstr "Nincs a keresett kép."
1387
 
1388
+ #: wppa-non-admin.php:796
1389
  #, fuzzy
1390
  msgid "There are no commented photos (yet)"
1391
  msgstr "Legutóbbi hozzászólás"
1392
 
1393
+ #: wppa-non-admin.php:799
1394
  #, fuzzy
1395
  msgid "View the featured photos"
1396
  msgstr "Legjobbnak értékelt képek"
1397
 
1398
+ #: wppa-non-admin.php:801
1399
  msgid "There are no featured photos (yet)"
1400
  msgstr ""
1401
 
1402
+ #: wppa-non-admin.php:804
1403
  #, fuzzy
1404
  msgid "View the most recent uploaded photos"
1405
  msgstr "Legjobbnak értékelt képek"
1406
 
1407
+ #: wppa-non-admin.php:806
1408
  #, fuzzy
1409
  msgid "There are no uploaded photos (yet)"
1410
  msgstr "Legutóbbi képfeltöltések"
1411
 
1412
+ #: wppa-non-admin.php:810
1413
  msgid "By:"
1414
  msgstr ""
1415
 
1416
+ #: wppa-non-admin.php:813
1417
  msgid "No album defined (yet)"
1418
  msgstr ""
1419
 
1420
+ #: wppa-non-admin.php:817
1421
  msgid "There are no photos (yet)"
1422
  msgstr ""
1423
 
1424
+ #: wppa-non-admin.php:820
1425
  msgid "There are too many registered users in the system for this widget"
1426
  msgstr ""
1427
 
1428
+ #: wppa-non-admin.php:821
1429
  #, fuzzy
1430
  msgid "Photos uploaded by"
1431
  msgstr "A képet feltöltötte: "
1432
 
1433
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1434
  #, php-format
1435
  msgid "%d view"
1436
  msgid_plural "%d views"
1437
  msgstr[0] ""
1438
  msgstr[1] ""
1439
 
1440
+ #: wppa-non-admin.php:827
1441
  #, fuzzy
1442
  msgid "There are no rated photos (yet)"
1443
  msgstr "Legjobbnak értékelt képek"
1609
  #. Author URI of the plugin/theme
1610
  msgid "http://wppa.opajaap.nl/"
1611
  msgstr ""
1612
+
1613
+ #, fuzzy
1614
+ #~ msgid "%d Comment"
1615
+ #~ msgid_plural "%d Comments"
1616
+ #~ msgstr[0] "%d hozzászólás"
1617
+ #~ msgstr[1] "%d hozzászólás"
1618
+
1619
+ #, fuzzy
1620
+ #~ msgid "%d View"
1621
+ #~ msgid_plural "%d Views"
1622
+ #~ msgstr[0] "Megtekintés:"
1623
+ #~ msgstr[1] "Megtekintés:"
1624
+
1625
+ #~ msgid "albums"
1626
+ #~ msgstr "album"
1627
+
1628
+ #~ msgid "photo"
1629
+ #~ msgstr "kép"
1630
+
1631
+ #~ msgid "photos"
1632
+ #~ msgstr "kép"
1633
+
1634
+ #~ msgid ""
1635
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1636
+ #~ "multiple file upload"
1637
+ #~ msgstr ""
1638
+ #~ "%s kép egyidejű feltöltésére van lehetőség, amennyiben a böngészőnk "
1639
+ #~ "támogatja a HTML-5 többszörös fájlfeltöltést"
1640
+
1641
+ #, fuzzy
1642
+ #~ msgid "Votes: %s."
1643
+ #~ msgstr "%s szavazat"
1644
+
1645
+ #~ msgid "Home"
1646
+ #~ msgstr "Kezdőlap"
1647
+
1648
+ #~ msgid "seconds"
1649
+ #~ msgstr "mp"
1650
+
1651
+ #~ msgid "minutes"
1652
+ #~ msgstr "perc"
1653
+
1654
+ #~ msgid "hours"
1655
+ #~ msgstr "óra"
1656
+
1657
+ #~ msgid "days"
1658
+ #~ msgstr "nap"
1659
+
1660
+ #~ msgid "weeks"
1661
+ #~ msgstr "hét"
1662
+
1663
+ #~ msgid "months"
1664
+ #~ msgstr "hónap"
1665
+
1666
+ #~ msgid "years"
1667
+ #~ msgstr "év"
1668
+
1669
+ #, fuzzy
1670
+ #~ msgid "1 Comment"
1671
+ #~ msgid_plural "%s Comments"
1672
+ #~ msgstr[0] "1 hozzászólás"
1673
+ #~ msgstr[1] "1 hozzászólás"
1674
+
1675
+ #, fuzzy
1676
+ #~ msgid "Download:"
1677
+ #~ msgstr "Letöltés"
1678
+
1679
+ #~ msgid "There are"
1680
+ #~ msgstr "Összesen"
1681
+
1682
+ #, fuzzy
1683
+ #~ msgid "Comments:"
1684
+ #~ msgstr "Hozászólás"
1685
+
1686
+ #, fuzzy
1687
+ #~ msgid "Views:"
1688
+ #~ msgstr "Megtekintés:"
languages/wp-photo-album-plus-it_IT.mo CHANGED
Binary file
languages/wp-photo-album-plus-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:12+0100\n"
5
- "PO-Revision-Date: 2015-12-25 13:13+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: it_IT\n"
@@ -115,7 +115,7 @@ msgstr "Nuovo!"
115
  msgid "New"
116
  msgstr "Nuovo"
117
 
118
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
119
  msgid "Slideshow"
120
  msgstr "Slideshow"
121
 
@@ -533,16 +533,16 @@ msgid_plural "%d max ratings"
533
  msgstr[0] "Valutazione:"
534
  msgstr[1] "Valutazione:"
535
 
536
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
537
  #, php-format
538
  msgid "%d vote"
539
  msgid_plural "%d votes"
540
  msgstr[0] ""
541
  msgstr[1] ""
542
 
543
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
544
- #, php-format
545
- msgid "Mean value: %4.2f."
546
  msgstr "Valore medio: % 4.2f."
547
 
548
  #: wppa-boxes-html.php:3288
@@ -550,6 +550,11 @@ msgstr "Valore medio: % 4.2f."
550
  msgid "Photo %s not found."
551
  msgstr "Photo %s non trovato."
552
 
 
 
 
 
 
553
  #: wppa-boxes-html.php:3695
554
  #, fuzzy
555
  msgid "Refresh"
@@ -1277,7 +1282,7 @@ msgid "You can upload after"
1277
  msgstr "Puoi caricare dopo"
1278
 
1279
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1280
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1281
  #, fuzzy
1282
  msgid "Download"
1283
  msgstr ""
@@ -1292,165 +1297,169 @@ msgstr "Zoom avanti"
1292
  msgid "Press f for fullscreen."
1293
  msgstr ""
1294
 
1295
- #: wppa-non-admin.php:422
 
 
 
 
1296
  msgid ""
1297
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1298
  "dismiss this notice."
1299
  msgstr ""
1300
 
1301
- #: wppa-non-admin.php:423
1302
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1303
  msgstr ""
1304
 
1305
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1306
  msgid "Start"
1307
  msgstr "Avvio"
1308
 
1309
- #: wppa-non-admin.php:663
1310
  msgid "Stop"
1311
  msgstr ""
1312
 
1313
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1314
  msgid "Slower"
1315
  msgstr "+ lento"
1316
 
1317
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1318
  msgid "Faster"
1319
  msgstr "+ veloce"
1320
 
1321
- #: wppa-non-admin.php:666
1322
  #, fuzzy
1323
  msgid "Photo"
1324
  msgstr "Foto"
1325
 
1326
- #: wppa-non-admin.php:667
1327
  msgid "of"
1328
  msgstr ""
1329
 
1330
- #: wppa-non-admin.php:668
1331
  #, fuzzy
1332
  msgid "Previous photo"
1333
  msgstr "Forrige billede"
1334
 
1335
- #: wppa-non-admin.php:669
1336
  #, fuzzy
1337
  msgid "Next photo"
1338
  msgstr "Modifica foto"
1339
 
1340
- #: wppa-non-admin.php:670
1341
  #, fuzzy
1342
  msgid "Prev."
1343
  msgstr "Forrige billede"
1344
 
1345
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1346
  msgid "Next"
1347
  msgstr "Succ."
1348
 
1349
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1350
  #: wppa-slideshow.php:832
1351
  msgid "Average&nbsp;rating"
1352
  msgstr "Voto&nbsp;medio"
1353
 
1354
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1355
  #: wppa-slideshow.php:814
1356
  msgid "My&nbsp;rating"
1357
  msgstr "Mio&nbsp;voto"
1358
 
1359
- #: wppa-non-admin.php:674
1360
  msgid "Avg."
1361
  msgstr ""
1362
 
1363
- #: wppa-non-admin.php:675
1364
  msgid "Mine"
1365
  msgstr ""
1366
 
1367
- #: wppa-non-admin.php:676
1368
  #, fuzzy
1369
  msgid "You marked this image as inappropriate."
1370
  msgstr ""
1371
  "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
1372
  "upassende."
1373
 
1374
- #: wppa-non-admin.php:679
1375
  msgid "Please enter your name"
1376
  msgstr ""
1377
 
1378
- #: wppa-non-admin.php:680
1379
  msgid "Please enter a valid email address"
1380
  msgstr ""
1381
 
1382
- #: wppa-non-admin.php:681
1383
  #, fuzzy
1384
  msgid "Please enter a comment"
1385
  msgstr "Lascia un commento"
1386
 
1387
- #: wppa-non-admin.php:715
1388
  msgid "Double click to start/stop slideshow running"
1389
  msgstr ""
1390
 
1391
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1392
  msgid "wrote"
1393
  msgstr "scritto"
1394
 
1395
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1396
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1397
  #, fuzzy
1398
  msgid "Photo not found"
1399
  msgstr "Photo %s non trovato."
1400
 
1401
- #: wppa-non-admin.php:794
1402
  #, fuzzy
1403
  msgid "There are no commented photos (yet)"
1404
  msgstr "Foto commentate di recente"
1405
 
1406
- #: wppa-non-admin.php:797
1407
  #, fuzzy
1408
  msgid "View the featured photos"
1409
  msgstr "Vedi le foto più votate"
1410
 
1411
- #: wppa-non-admin.php:799
1412
  msgid "There are no featured photos (yet)"
1413
  msgstr ""
1414
 
1415
- #: wppa-non-admin.php:802
1416
  #, fuzzy
1417
  msgid "View the most recent uploaded photos"
1418
  msgstr "Vedi le foto più votate"
1419
 
1420
- #: wppa-non-admin.php:804
1421
  #, fuzzy
1422
  msgid "There are no uploaded photos (yet)"
1423
  msgstr "Foto caricate di recente"
1424
 
1425
- #: wppa-non-admin.php:808
1426
  msgid "By:"
1427
  msgstr ""
1428
 
1429
- #: wppa-non-admin.php:811
1430
  msgid "No album defined (yet)"
1431
  msgstr ""
1432
 
1433
- #: wppa-non-admin.php:815
1434
  msgid "There are no photos (yet)"
1435
  msgstr ""
1436
 
1437
- #: wppa-non-admin.php:818
1438
  msgid "There are too many registered users in the system for this widget"
1439
  msgstr ""
1440
 
1441
- #: wppa-non-admin.php:819
1442
  #, fuzzy
1443
  msgid "Photos uploaded by"
1444
  msgstr "Foto caricate nell'album numero"
1445
 
1446
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1447
  #, php-format
1448
  msgid "%d view"
1449
  msgid_plural "%d views"
1450
  msgstr[0] ""
1451
  msgstr[1] ""
1452
 
1453
- #: wppa-non-admin.php:825
1454
  #, fuzzy
1455
  msgid "There are no rated photos (yet)"
1456
  msgstr "Vedi le foto più votate"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: it_IT\n"
115
  msgid "New"
116
  msgstr "Nuovo"
117
 
118
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
119
  msgid "Slideshow"
120
  msgstr "Slideshow"
121
 
533
  msgstr[0] "Valutazione:"
534
  msgstr[1] "Valutazione:"
535
 
536
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
537
  #, php-format
538
  msgid "%d vote"
539
  msgid_plural "%d votes"
540
  msgstr[0] ""
541
  msgstr[1] ""
542
 
543
+ #: wppa-boxes-html.php:3280
544
+ #, fuzzy, php-format
545
+ msgid "Rating: %4.2f."
546
  msgstr "Valore medio: % 4.2f."
547
 
548
  #: wppa-boxes-html.php:3288
550
  msgid "Photo %s not found."
551
  msgstr "Photo %s non trovato."
552
 
553
+ #: wppa-boxes-html.php:3343
554
+ #, php-format
555
+ msgid "Mean value: %4.2f."
556
+ msgstr "Valore medio: % 4.2f."
557
+
558
  #: wppa-boxes-html.php:3695
559
  #, fuzzy
560
  msgid "Refresh"
1282
  msgstr "Puoi caricare dopo"
1283
 
1284
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1285
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1286
  #, fuzzy
1287
  msgid "Download"
1288
  msgstr ""
1297
  msgid "Press f for fullscreen."
1298
  msgstr ""
1299
 
1300
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1301
+ msgid "Toggle fullscreen"
1302
+ msgstr ""
1303
+
1304
+ #: wppa-non-admin.php:423
1305
  msgid ""
1306
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1307
  "dismiss this notice."
1308
  msgstr ""
1309
 
1310
+ #: wppa-non-admin.php:424
1311
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1312
  msgstr ""
1313
 
1314
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1315
  msgid "Start"
1316
  msgstr "Avvio"
1317
 
1318
+ #: wppa-non-admin.php:665
1319
  msgid "Stop"
1320
  msgstr ""
1321
 
1322
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1323
  msgid "Slower"
1324
  msgstr "+ lento"
1325
 
1326
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1327
  msgid "Faster"
1328
  msgstr "+ veloce"
1329
 
1330
+ #: wppa-non-admin.php:668
1331
  #, fuzzy
1332
  msgid "Photo"
1333
  msgstr "Foto"
1334
 
1335
+ #: wppa-non-admin.php:669
1336
  msgid "of"
1337
  msgstr ""
1338
 
1339
+ #: wppa-non-admin.php:670
1340
  #, fuzzy
1341
  msgid "Previous photo"
1342
  msgstr "Forrige billede"
1343
 
1344
+ #: wppa-non-admin.php:671
1345
  #, fuzzy
1346
  msgid "Next photo"
1347
  msgstr "Modifica foto"
1348
 
1349
+ #: wppa-non-admin.php:672
1350
  #, fuzzy
1351
  msgid "Prev."
1352
  msgstr "Forrige billede"
1353
 
1354
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1355
  msgid "Next"
1356
  msgstr "Succ."
1357
 
1358
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1359
  #: wppa-slideshow.php:832
1360
  msgid "Average&nbsp;rating"
1361
  msgstr "Voto&nbsp;medio"
1362
 
1363
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1364
  #: wppa-slideshow.php:814
1365
  msgid "My&nbsp;rating"
1366
  msgstr "Mio&nbsp;voto"
1367
 
1368
+ #: wppa-non-admin.php:676
1369
  msgid "Avg."
1370
  msgstr ""
1371
 
1372
+ #: wppa-non-admin.php:677
1373
  msgid "Mine"
1374
  msgstr ""
1375
 
1376
+ #: wppa-non-admin.php:678
1377
  #, fuzzy
1378
  msgid "You marked this image as inappropriate."
1379
  msgstr ""
1380
  "Er du sikker p&aring;, at du vil markere dette billed som v&aelig;rende "
1381
  "upassende."
1382
 
1383
+ #: wppa-non-admin.php:681
1384
  msgid "Please enter your name"
1385
  msgstr ""
1386
 
1387
+ #: wppa-non-admin.php:682
1388
  msgid "Please enter a valid email address"
1389
  msgstr ""
1390
 
1391
+ #: wppa-non-admin.php:683
1392
  #, fuzzy
1393
  msgid "Please enter a comment"
1394
  msgstr "Lascia un commento"
1395
 
1396
+ #: wppa-non-admin.php:717
1397
  msgid "Double click to start/stop slideshow running"
1398
  msgstr ""
1399
 
1400
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1401
  msgid "wrote"
1402
  msgstr "scritto"
1403
 
1404
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1405
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1406
  #, fuzzy
1407
  msgid "Photo not found"
1408
  msgstr "Photo %s non trovato."
1409
 
1410
+ #: wppa-non-admin.php:796
1411
  #, fuzzy
1412
  msgid "There are no commented photos (yet)"
1413
  msgstr "Foto commentate di recente"
1414
 
1415
+ #: wppa-non-admin.php:799
1416
  #, fuzzy
1417
  msgid "View the featured photos"
1418
  msgstr "Vedi le foto più votate"
1419
 
1420
+ #: wppa-non-admin.php:801
1421
  msgid "There are no featured photos (yet)"
1422
  msgstr ""
1423
 
1424
+ #: wppa-non-admin.php:804
1425
  #, fuzzy
1426
  msgid "View the most recent uploaded photos"
1427
  msgstr "Vedi le foto più votate"
1428
 
1429
+ #: wppa-non-admin.php:806
1430
  #, fuzzy
1431
  msgid "There are no uploaded photos (yet)"
1432
  msgstr "Foto caricate di recente"
1433
 
1434
+ #: wppa-non-admin.php:810
1435
  msgid "By:"
1436
  msgstr ""
1437
 
1438
+ #: wppa-non-admin.php:813
1439
  msgid "No album defined (yet)"
1440
  msgstr ""
1441
 
1442
+ #: wppa-non-admin.php:817
1443
  msgid "There are no photos (yet)"
1444
  msgstr ""
1445
 
1446
+ #: wppa-non-admin.php:820
1447
  msgid "There are too many registered users in the system for this widget"
1448
  msgstr ""
1449
 
1450
+ #: wppa-non-admin.php:821
1451
  #, fuzzy
1452
  msgid "Photos uploaded by"
1453
  msgstr "Foto caricate nell'album numero"
1454
 
1455
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1456
  #, php-format
1457
  msgid "%d view"
1458
  msgid_plural "%d views"
1459
  msgstr[0] ""
1460
  msgstr[1] ""
1461
 
1462
+ #: wppa-non-admin.php:827
1463
  #, fuzzy
1464
  msgid "There are no rated photos (yet)"
1465
  msgstr "Vedi le foto più votate"
languages/wp-photo-album-plus-ja.mo CHANGED
Binary file
languages/wp-photo-album-plus-ja.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:12+0100\n"
5
- "PO-Revision-Date: 2015-12-25 13:13+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: ja_JP\n"
@@ -123,7 +123,7 @@ msgstr ""
123
  "新しいページを作成し、「フォトギャラリー」などの名前にし、コンテンツには次の"
124
  "ように記載します:"
125
 
126
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
127
  msgid "Slideshow"
128
  msgstr "スライドショー"
129
 
@@ -584,16 +584,16 @@ msgid_plural "%d max ratings"
584
  msgstr[0] "投票:"
585
  msgstr[1] "投票:"
586
 
587
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
588
  #, php-format
589
  msgid "%d vote"
590
  msgid_plural "%d votes"
591
  msgstr[0] ""
592
  msgstr[1] ""
593
 
594
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
595
  #, fuzzy, php-format
596
- msgid "Mean value: %4.2f."
597
  msgstr "平均値:"
598
 
599
  #: wppa-boxes-html.php:3288
@@ -601,6 +601,11 @@ msgstr "平均値:"
601
  msgid "Photo %s not found."
602
  msgstr "写真が見当たりません。"
603
 
 
 
 
 
 
604
  #: wppa-boxes-html.php:3695
605
  msgid "Refresh"
606
  msgstr ""
@@ -1347,7 +1352,7 @@ msgid "You can upload after"
1347
  msgstr "写真をアップロードしてください。"
1348
 
1349
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1350
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1351
  msgid "Download"
1352
  msgstr ""
1353
 
@@ -1359,164 +1364,168 @@ msgstr ""
1359
  msgid "Press f for fullscreen."
1360
  msgstr ""
1361
 
1362
- #: wppa-non-admin.php:422
 
 
 
 
1363
  msgid ""
1364
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1365
  "dismiss this notice."
1366
  msgstr ""
1367
 
1368
- #: wppa-non-admin.php:423
1369
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1370
  msgstr ""
1371
 
1372
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1373
  msgid "Start"
1374
  msgstr "開始"
1375
 
1376
- #: wppa-non-admin.php:663
1377
  msgid "Stop"
1378
  msgstr ""
1379
 
1380
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1381
  msgid "Slower"
1382
  msgstr "遅く"
1383
 
1384
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1385
  msgid "Faster"
1386
  msgstr "速く"
1387
 
1388
- #: wppa-non-admin.php:666
1389
  #, fuzzy
1390
  msgid "Photo"
1391
  msgstr "写真"
1392
 
1393
- #: wppa-non-admin.php:667
1394
  msgid "of"
1395
  msgstr ""
1396
 
1397
- #: wppa-non-admin.php:668
1398
  #, fuzzy
1399
  msgid "Previous photo"
1400
  msgstr "写真をブラウズ"
1401
 
1402
- #: wppa-non-admin.php:669
1403
  #, fuzzy
1404
  msgid "Next photo"
1405
  msgstr "編集"
1406
 
1407
- #: wppa-non-admin.php:670
1408
  #, fuzzy
1409
  msgid "Prev."
1410
  msgstr "写真をブラウズ"
1411
 
1412
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1413
  #, fuzzy
1414
  msgid "Next"
1415
  msgstr "次のページ"
1416
 
1417
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1418
  #: wppa-slideshow.php:832
1419
  msgid "Average&nbsp;rating"
1420
  msgstr "平均&nbsp;評価"
1421
 
1422
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1423
  #: wppa-slideshow.php:814
1424
  msgid "My&nbsp;rating"
1425
  msgstr "わたしの&nbsp;評価"
1426
 
1427
- #: wppa-non-admin.php:674
1428
  msgid "Avg."
1429
  msgstr ""
1430
 
1431
- #: wppa-non-admin.php:675
1432
  msgid "Mine"
1433
  msgstr ""
1434
 
1435
- #: wppa-non-admin.php:676
1436
  #, fuzzy
1437
  msgid "You marked this image as inappropriate."
1438
  msgstr "本当にこのアルバムを削除しますか?"
1439
 
1440
- #: wppa-non-admin.php:679
1441
  msgid "Please enter your name"
1442
  msgstr ""
1443
 
1444
- #: wppa-non-admin.php:680
1445
  msgid "Please enter a valid email address"
1446
  msgstr ""
1447
 
1448
- #: wppa-non-admin.php:681
1449
  #, fuzzy
1450
  msgid "Please enter a comment"
1451
  msgstr "コメントを残す"
1452
 
1453
- #: wppa-non-admin.php:715
1454
  msgid "Double click to start/stop slideshow running"
1455
  msgstr ""
1456
 
1457
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1458
  msgid "wrote"
1459
  msgstr ""
1460
 
1461
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1462
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1463
  #, fuzzy
1464
  msgid "Photo not found"
1465
  msgstr "写真が見当たりません。"
1466
 
1467
- #: wppa-non-admin.php:794
1468
  #, fuzzy
1469
  msgid "There are no commented photos (yet)"
1470
  msgstr "写真"
1471
 
1472
- #: wppa-non-admin.php:797
1473
  #, fuzzy
1474
  msgid "View the featured photos"
1475
  msgstr "評価の高い写真"
1476
 
1477
- #: wppa-non-admin.php:799
1478
  msgid "There are no featured photos (yet)"
1479
  msgstr ""
1480
 
1481
- #: wppa-non-admin.php:802
1482
  #, fuzzy
1483
  msgid "View the most recent uploaded photos"
1484
  msgstr "評価の高い写真"
1485
 
1486
- #: wppa-non-admin.php:804
1487
  #, fuzzy
1488
  msgid "There are no uploaded photos (yet)"
1489
  msgstr "次のアルバム番号の写真を更新しました: "
1490
 
1491
- #: wppa-non-admin.php:808
1492
  msgid "By:"
1493
  msgstr ""
1494
 
1495
- #: wppa-non-admin.php:811
1496
  msgid "No album defined (yet)"
1497
  msgstr ""
1498
 
1499
- #: wppa-non-admin.php:815
1500
  msgid "There are no photos (yet)"
1501
  msgstr ""
1502
 
1503
- #: wppa-non-admin.php:818
1504
  msgid "There are too many registered users in the system for this widget"
1505
  msgstr ""
1506
 
1507
- #: wppa-non-admin.php:819
1508
  #, fuzzy
1509
  msgid "Photos uploaded by"
1510
  msgstr "次のアルバム番号の写真を更新しました: "
1511
 
1512
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1513
  #, php-format
1514
  msgid "%d view"
1515
  msgid_plural "%d views"
1516
  msgstr[0] ""
1517
  msgstr[1] ""
1518
 
1519
- #: wppa-non-admin.php:825
1520
  #, fuzzy
1521
  msgid "There are no rated photos (yet)"
1522
  msgstr "評価の高い写真"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:47+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: ja_JP\n"
123
  "新しいページを作成し、「フォトギャラリー」などの名前にし、コンテンツには次の"
124
  "ように記載します:"
125
 
126
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
127
  msgid "Slideshow"
128
  msgstr "スライドショー"
129
 
584
  msgstr[0] "投票:"
585
  msgstr[1] "投票:"
586
 
587
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
588
  #, php-format
589
  msgid "%d vote"
590
  msgid_plural "%d votes"
591
  msgstr[0] ""
592
  msgstr[1] ""
593
 
594
+ #: wppa-boxes-html.php:3280
595
  #, fuzzy, php-format
596
+ msgid "Rating: %4.2f."
597
  msgstr "平均値:"
598
 
599
  #: wppa-boxes-html.php:3288
601
  msgid "Photo %s not found."
602
  msgstr "写真が見当たりません。"
603
 
604
+ #: wppa-boxes-html.php:3343
605
+ #, fuzzy, php-format
606
+ msgid "Mean value: %4.2f."
607
+ msgstr "平均値:"
608
+
609
  #: wppa-boxes-html.php:3695
610
  msgid "Refresh"
611
  msgstr ""
1352
  msgstr "写真をアップロードしてください。"
1353
 
1354
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1355
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1356
  msgid "Download"
1357
  msgstr ""
1358
 
1364
  msgid "Press f for fullscreen."
1365
  msgstr ""
1366
 
1367
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1368
+ msgid "Toggle fullscreen"
1369
+ msgstr ""
1370
+
1371
+ #: wppa-non-admin.php:423
1372
  msgid ""
1373
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1374
  "dismiss this notice."
1375
  msgstr ""
1376
 
1377
+ #: wppa-non-admin.php:424
1378
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1379
  msgstr ""
1380
 
1381
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1382
  msgid "Start"
1383
  msgstr "開始"
1384
 
1385
+ #: wppa-non-admin.php:665
1386
  msgid "Stop"
1387
  msgstr ""
1388
 
1389
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1390
  msgid "Slower"
1391
  msgstr "遅く"
1392
 
1393
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1394
  msgid "Faster"
1395
  msgstr "速く"
1396
 
1397
+ #: wppa-non-admin.php:668
1398
  #, fuzzy
1399
  msgid "Photo"
1400
  msgstr "写真"
1401
 
1402
+ #: wppa-non-admin.php:669
1403
  msgid "of"
1404
  msgstr ""
1405
 
1406
+ #: wppa-non-admin.php:670
1407
  #, fuzzy
1408
  msgid "Previous photo"
1409
  msgstr "写真をブラウズ"
1410
 
1411
+ #: wppa-non-admin.php:671
1412
  #, fuzzy
1413
  msgid "Next photo"
1414
  msgstr "編集"
1415
 
1416
+ #: wppa-non-admin.php:672
1417
  #, fuzzy
1418
  msgid "Prev."
1419
  msgstr "写真をブラウズ"
1420
 
1421
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1422
  #, fuzzy
1423
  msgid "Next"
1424
  msgstr "次のページ"
1425
 
1426
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1427
  #: wppa-slideshow.php:832
1428
  msgid "Average&nbsp;rating"
1429
  msgstr "平均&nbsp;評価"
1430
 
1431
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1432
  #: wppa-slideshow.php:814
1433
  msgid "My&nbsp;rating"
1434
  msgstr "わたしの&nbsp;評価"
1435
 
1436
+ #: wppa-non-admin.php:676
1437
  msgid "Avg."
1438
  msgstr ""
1439
 
1440
+ #: wppa-non-admin.php:677
1441
  msgid "Mine"
1442
  msgstr ""
1443
 
1444
+ #: wppa-non-admin.php:678
1445
  #, fuzzy
1446
  msgid "You marked this image as inappropriate."
1447
  msgstr "本当にこのアルバムを削除しますか?"
1448
 
1449
+ #: wppa-non-admin.php:681
1450
  msgid "Please enter your name"
1451
  msgstr ""
1452
 
1453
+ #: wppa-non-admin.php:682
1454
  msgid "Please enter a valid email address"
1455
  msgstr ""
1456
 
1457
+ #: wppa-non-admin.php:683
1458
  #, fuzzy
1459
  msgid "Please enter a comment"
1460
  msgstr "コメントを残す"
1461
 
1462
+ #: wppa-non-admin.php:717
1463
  msgid "Double click to start/stop slideshow running"
1464
  msgstr ""
1465
 
1466
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1467
  msgid "wrote"
1468
  msgstr ""
1469
 
1470
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1471
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1472
  #, fuzzy
1473
  msgid "Photo not found"
1474
  msgstr "写真が見当たりません。"
1475
 
1476
+ #: wppa-non-admin.php:796
1477
  #, fuzzy
1478
  msgid "There are no commented photos (yet)"
1479
  msgstr "写真"
1480
 
1481
+ #: wppa-non-admin.php:799
1482
  #, fuzzy
1483
  msgid "View the featured photos"
1484
  msgstr "評価の高い写真"
1485
 
1486
+ #: wppa-non-admin.php:801
1487
  msgid "There are no featured photos (yet)"
1488
  msgstr ""
1489
 
1490
+ #: wppa-non-admin.php:804
1491
  #, fuzzy
1492
  msgid "View the most recent uploaded photos"
1493
  msgstr "評価の高い写真"
1494
 
1495
+ #: wppa-non-admin.php:806
1496
  #, fuzzy
1497
  msgid "There are no uploaded photos (yet)"
1498
  msgstr "次のアルバム番号の写真を更新しました: "
1499
 
1500
+ #: wppa-non-admin.php:810
1501
  msgid "By:"
1502
  msgstr ""
1503
 
1504
+ #: wppa-non-admin.php:813
1505
  msgid "No album defined (yet)"
1506
  msgstr ""
1507
 
1508
+ #: wppa-non-admin.php:817
1509
  msgid "There are no photos (yet)"
1510
  msgstr ""
1511
 
1512
+ #: wppa-non-admin.php:820
1513
  msgid "There are too many registered users in the system for this widget"
1514
  msgstr ""
1515
 
1516
+ #: wppa-non-admin.php:821
1517
  #, fuzzy
1518
  msgid "Photos uploaded by"
1519
  msgstr "次のアルバム番号の写真を更新しました: "
1520
 
1521
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1522
  #, php-format
1523
  msgid "%d view"
1524
  msgid_plural "%d views"
1525
  msgstr[0] ""
1526
  msgstr[1] ""
1527
 
1528
+ #: wppa-non-admin.php:827
1529
  #, fuzzy
1530
  msgid "There are no rated photos (yet)"
1531
  msgstr "評価の高い写真"
languages/wp-photo-album-plus-pl_PL.mo CHANGED
Binary file
languages/wp-photo-album-plus-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:07+0100\n"
5
- "PO-Revision-Date: 2015-12-26 20:58+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: Artur Bogdański <artur@arturbogdanski.pl>\n"
8
  "Language: pl_PL\n"
@@ -118,7 +118,7 @@ msgstr "Nowość"
118
  msgid "New"
119
  msgstr "Nowy"
120
 
121
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
122
  msgid "Slideshow"
123
  msgstr "Pokaz slajdów"
124
 
@@ -534,7 +534,7 @@ msgstr[0] "%d maksymalna ocena"
534
  msgstr[1] "%d maksymalne oceny"
535
  msgstr[2] "%d maksymalnych ocen"
536
 
537
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
538
  #, php-format
539
  msgid "%d vote"
540
  msgid_plural "%d votes"
@@ -542,16 +542,21 @@ msgstr[0] "%d głos"
542
  msgstr[1] "%d głosy"
543
  msgstr[2] "%d głosów"
544
 
545
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
546
  #, php-format
547
- msgid "Mean value: %4.2f."
548
- msgstr "Średnia wartość: %4.2f."
549
 
550
  #: wppa-boxes-html.php:3288
551
  #, php-format
552
  msgid "Photo %s not found."
553
  msgstr "Zdjęcie %s nie znalezione."
554
 
 
 
 
 
 
555
  #: wppa-boxes-html.php:3695
556
  msgid "Refresh"
557
  msgstr "Odśwież"
@@ -1232,7 +1237,7 @@ msgid "You can upload after"
1232
  msgstr "Możesz przesłać potem"
1233
 
1234
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1235
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1236
  msgid "Download"
1237
  msgstr "Pobierz"
1238
 
@@ -1244,7 +1249,11 @@ msgstr "Powiększ"
1244
  msgid "Press f for fullscreen."
1245
  msgstr "Naciśnij przycisk f by przejść do pełnego ekranu"
1246
 
1247
- #: wppa-non-admin.php:422
 
 
 
 
1248
  msgid ""
1249
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1250
  "dismiss this notice."
@@ -1252,139 +1261,139 @@ msgstr ""
1252
  "Klawisze: f = następny tryb; q, x = wyjście; p = poprzednia, n = następny, s "
1253
  "= start / stop, d = odrzuć tę informację."
1254
 
1255
- #: wppa-non-admin.php:423
1256
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1257
  msgstr ""
1258
  "Klawisze: f = nestępny tryb; q, x = wyjście; d = odrzucić tę informację."
1259
 
1260
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1261
  msgid "Start"
1262
  msgstr "Start"
1263
 
1264
- #: wppa-non-admin.php:663
1265
  msgid "Stop"
1266
  msgstr "Stop"
1267
 
1268
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1269
  msgid "Slower"
1270
  msgstr "Wolniej"
1271
 
1272
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1273
  msgid "Faster"
1274
  msgstr "Szybciej"
1275
 
1276
- #: wppa-non-admin.php:666
1277
  msgid "Photo"
1278
  msgstr "Zdjęcie"
1279
 
1280
- #: wppa-non-admin.php:667
1281
  msgid "of"
1282
  msgstr "z"
1283
 
1284
- #: wppa-non-admin.php:668
1285
  msgid "Previous photo"
1286
  msgstr "poprzednie zdjęcie"
1287
 
1288
- #: wppa-non-admin.php:669
1289
  msgid "Next photo"
1290
  msgstr "następne zdjęcie"
1291
 
1292
- #: wppa-non-admin.php:670
1293
  msgid "Prev."
1294
  msgstr "poprz."
1295
 
1296
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1297
  msgid "Next"
1298
  msgstr "nast."
1299
 
1300
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1301
  #: wppa-slideshow.php:832
1302
  msgid "Average&nbsp;rating"
1303
  msgstr "Średnia&nbsp;ocena"
1304
 
1305
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1306
  #: wppa-slideshow.php:814
1307
  msgid "My&nbsp;rating"
1308
  msgstr "Moja&nbsp;ocena"
1309
 
1310
- #: wppa-non-admin.php:674
1311
  msgid "Avg."
1312
  msgstr "Śr."
1313
 
1314
- #: wppa-non-admin.php:675
1315
  msgid "Mine"
1316
  msgstr "Moja"
1317
 
1318
- #: wppa-non-admin.php:676
1319
  msgid "You marked this image as inappropriate."
1320
  msgstr "Oznaczono to zdjęcie jako nieodpowiednie."
1321
 
1322
- #: wppa-non-admin.php:679
1323
  msgid "Please enter your name"
1324
  msgstr "Proszę wpisać imię"
1325
 
1326
- #: wppa-non-admin.php:680
1327
  msgid "Please enter a valid email address"
1328
  msgstr "Proszę wpisać poprawny adres e-mail"
1329
 
1330
- #: wppa-non-admin.php:681
1331
  msgid "Please enter a comment"
1332
  msgstr "Proszę wpisać komentarz"
1333
 
1334
- #: wppa-non-admin.php:715
1335
  msgid "Double click to start/stop slideshow running"
1336
  msgstr "Kliknij dwukrotnie, aby rozpocząć / zatrzymać pokaz slajdów"
1337
 
1338
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1339
  msgid "wrote"
1340
  msgstr "napisał"
1341
 
1342
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1343
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1344
  msgid "Photo not found"
1345
  msgstr "Zdjęcie nie znalezione."
1346
 
1347
- #: wppa-non-admin.php:794
1348
  msgid "There are no commented photos (yet)"
1349
  msgstr "Nie ma jeszcze zdjęć z komentarzami"
1350
 
1351
- #: wppa-non-admin.php:797
1352
  msgid "View the featured photos"
1353
  msgstr "Zobacz polecane zdjęcia"
1354
 
1355
- #: wppa-non-admin.php:799
1356
  msgid "There are no featured photos (yet)"
1357
  msgstr "Nie ma jeszcze polecanych zdjęć"
1358
 
1359
- #: wppa-non-admin.php:802
1360
  msgid "View the most recent uploaded photos"
1361
  msgstr "Zobacz ostatnio przesłane zdjęcia"
1362
 
1363
- #: wppa-non-admin.php:804
1364
  msgid "There are no uploaded photos (yet)"
1365
  msgstr "nie ma jeszcze żadnych przesłanych zdjęć"
1366
 
1367
- #: wppa-non-admin.php:808
1368
  msgid "By:"
1369
  msgstr "przez"
1370
 
1371
- #: wppa-non-admin.php:811
1372
  msgid "No album defined (yet)"
1373
  msgstr "Nie ma zdefiniowanego albumu"
1374
 
1375
- #: wppa-non-admin.php:815
1376
  msgid "There are no photos (yet)"
1377
  msgstr "Nie ma jeszcze zdjęć"
1378
 
1379
- #: wppa-non-admin.php:818
1380
  msgid "There are too many registered users in the system for this widget"
1381
  msgstr "Zbyt wielu użytkowników by używać tego widgeta"
1382
 
1383
- #: wppa-non-admin.php:819
1384
  msgid "Photos uploaded by"
1385
  msgstr "Zdjęcia przesłane przez"
1386
 
1387
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1388
  #, php-format
1389
  msgid "%d view"
1390
  msgid_plural "%d views"
@@ -1392,7 +1401,7 @@ msgstr[0] "%d wyświetlenie"
1392
  msgstr[1] "%d wyświetlenia"
1393
  msgstr[2] "%d wyświetleń"
1394
 
1395
- #: wppa-non-admin.php:825
1396
  msgid "There are no rated photos (yet)"
1397
  msgstr "Nie ma jeszcze ocenionych zdjęć"
1398
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:47+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:48+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: Artur Bogdański <artur@arturbogdanski.pl>\n"
8
  "Language: pl_PL\n"
118
  msgid "New"
119
  msgstr "Nowy"
120
 
121
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
122
  msgid "Slideshow"
123
  msgstr "Pokaz slajdów"
124
 
534
  msgstr[1] "%d maksymalne oceny"
535
  msgstr[2] "%d maksymalnych ocen"
536
 
537
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
538
  #, php-format
539
  msgid "%d vote"
540
  msgid_plural "%d votes"
542
  msgstr[1] "%d głosy"
543
  msgstr[2] "%d głosów"
544
 
545
+ #: wppa-boxes-html.php:3280
546
  #, php-format
547
+ msgid "Rating: %4.2f."
548
+ msgstr "Ocena: %4.2f."
549
 
550
  #: wppa-boxes-html.php:3288
551
  #, php-format
552
  msgid "Photo %s not found."
553
  msgstr "Zdjęcie %s nie znalezione."
554
 
555
+ #: wppa-boxes-html.php:3343
556
+ #, php-format
557
+ msgid "Mean value: %4.2f."
558
+ msgstr "Średnia wartość: %4.2f."
559
+
560
  #: wppa-boxes-html.php:3695
561
  msgid "Refresh"
562
  msgstr "Odśwież"
1237
  msgstr "Możesz przesłać potem"
1238
 
1239
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1240
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1241
  msgid "Download"
1242
  msgstr "Pobierz"
1243
 
1249
  msgid "Press f for fullscreen."
1250
  msgstr "Naciśnij przycisk f by przejść do pełnego ekranu"
1251
 
1252
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1253
+ msgid "Toggle fullscreen"
1254
+ msgstr "Włącza tryb pełnoekranowy"
1255
+
1256
+ #: wppa-non-admin.php:423
1257
  msgid ""
1258
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1259
  "dismiss this notice."
1261
  "Klawisze: f = następny tryb; q, x = wyjście; p = poprzednia, n = następny, s "
1262
  "= start / stop, d = odrzuć tę informację."
1263
 
1264
+ #: wppa-non-admin.php:424
1265
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1266
  msgstr ""
1267
  "Klawisze: f = nestępny tryb; q, x = wyjście; d = odrzucić tę informację."
1268
 
1269
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1270
  msgid "Start"
1271
  msgstr "Start"
1272
 
1273
+ #: wppa-non-admin.php:665
1274
  msgid "Stop"
1275
  msgstr "Stop"
1276
 
1277
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1278
  msgid "Slower"
1279
  msgstr "Wolniej"
1280
 
1281
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1282
  msgid "Faster"
1283
  msgstr "Szybciej"
1284
 
1285
+ #: wppa-non-admin.php:668
1286
  msgid "Photo"
1287
  msgstr "Zdjęcie"
1288
 
1289
+ #: wppa-non-admin.php:669
1290
  msgid "of"
1291
  msgstr "z"
1292
 
1293
+ #: wppa-non-admin.php:670
1294
  msgid "Previous photo"
1295
  msgstr "poprzednie zdjęcie"
1296
 
1297
+ #: wppa-non-admin.php:671
1298
  msgid "Next photo"
1299
  msgstr "następne zdjęcie"
1300
 
1301
+ #: wppa-non-admin.php:672
1302
  msgid "Prev."
1303
  msgstr "poprz."
1304
 
1305
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1306
  msgid "Next"
1307
  msgstr "nast."
1308
 
1309
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1310
  #: wppa-slideshow.php:832
1311
  msgid "Average&nbsp;rating"
1312
  msgstr "Średnia&nbsp;ocena"
1313
 
1314
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1315
  #: wppa-slideshow.php:814
1316
  msgid "My&nbsp;rating"
1317
  msgstr "Moja&nbsp;ocena"
1318
 
1319
+ #: wppa-non-admin.php:676
1320
  msgid "Avg."
1321
  msgstr "Śr."
1322
 
1323
+ #: wppa-non-admin.php:677
1324
  msgid "Mine"
1325
  msgstr "Moja"
1326
 
1327
+ #: wppa-non-admin.php:678
1328
  msgid "You marked this image as inappropriate."
1329
  msgstr "Oznaczono to zdjęcie jako nieodpowiednie."
1330
 
1331
+ #: wppa-non-admin.php:681
1332
  msgid "Please enter your name"
1333
  msgstr "Proszę wpisać imię"
1334
 
1335
+ #: wppa-non-admin.php:682
1336
  msgid "Please enter a valid email address"
1337
  msgstr "Proszę wpisać poprawny adres e-mail"
1338
 
1339
+ #: wppa-non-admin.php:683
1340
  msgid "Please enter a comment"
1341
  msgstr "Proszę wpisać komentarz"
1342
 
1343
+ #: wppa-non-admin.php:717
1344
  msgid "Double click to start/stop slideshow running"
1345
  msgstr "Kliknij dwukrotnie, aby rozpocząć / zatrzymać pokaz slajdów"
1346
 
1347
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1348
  msgid "wrote"
1349
  msgstr "napisał"
1350
 
1351
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1352
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1353
  msgid "Photo not found"
1354
  msgstr "Zdjęcie nie znalezione."
1355
 
1356
+ #: wppa-non-admin.php:796
1357
  msgid "There are no commented photos (yet)"
1358
  msgstr "Nie ma jeszcze zdjęć z komentarzami"
1359
 
1360
+ #: wppa-non-admin.php:799
1361
  msgid "View the featured photos"
1362
  msgstr "Zobacz polecane zdjęcia"
1363
 
1364
+ #: wppa-non-admin.php:801
1365
  msgid "There are no featured photos (yet)"
1366
  msgstr "Nie ma jeszcze polecanych zdjęć"
1367
 
1368
+ #: wppa-non-admin.php:804
1369
  msgid "View the most recent uploaded photos"
1370
  msgstr "Zobacz ostatnio przesłane zdjęcia"
1371
 
1372
+ #: wppa-non-admin.php:806
1373
  msgid "There are no uploaded photos (yet)"
1374
  msgstr "nie ma jeszcze żadnych przesłanych zdjęć"
1375
 
1376
+ #: wppa-non-admin.php:810
1377
  msgid "By:"
1378
  msgstr "przez"
1379
 
1380
+ #: wppa-non-admin.php:813
1381
  msgid "No album defined (yet)"
1382
  msgstr "Nie ma zdefiniowanego albumu"
1383
 
1384
+ #: wppa-non-admin.php:817
1385
  msgid "There are no photos (yet)"
1386
  msgstr "Nie ma jeszcze zdjęć"
1387
 
1388
+ #: wppa-non-admin.php:820
1389
  msgid "There are too many registered users in the system for this widget"
1390
  msgstr "Zbyt wielu użytkowników by używać tego widgeta"
1391
 
1392
+ #: wppa-non-admin.php:821
1393
  msgid "Photos uploaded by"
1394
  msgstr "Zdjęcia przesłane przez"
1395
 
1396
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1397
  #, php-format
1398
  msgid "%d view"
1399
  msgid_plural "%d views"
1401
  msgstr[1] "%d wyświetlenia"
1402
  msgstr[2] "%d wyświetleń"
1403
 
1404
+ #: wppa-non-admin.php:827
1405
  msgid "There are no rated photos (yet)"
1406
  msgstr "Nie ma jeszcze ocenionych zdjęć"
1407
 
languages/wp-photo-album-plus-pt_BR.mo CHANGED
Binary file
languages/wp-photo-album-plus-pt_BR.po CHANGED
@@ -2,8 +2,8 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Photo Album Plus\n"
5
- "POT-Creation-Date: 2015-12-25 13:11+0100\n"
6
- "PO-Revision-Date: 2015-12-26 13:04+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
9
  "Language: pt_BR\n"
@@ -114,7 +114,7 @@ msgstr "Novo!"
114
  msgid "New"
115
  msgstr "Novo"
116
 
117
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
118
  msgid "Slideshow"
119
  msgstr "Slideshow"
120
 
@@ -531,16 +531,16 @@ msgid_plural "%d max ratings"
531
  msgstr[0] "Minha classificação"
532
  msgstr[1] "Minha classificação"
533
 
534
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
542
- #, php-format
543
- msgid "Mean value: %4.2f."
544
  msgstr "Valor médio: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
@@ -548,6 +548,11 @@ msgstr "Valor médio: %4.2f."
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s não encontrada."
550
 
 
 
 
 
 
551
  #: wppa-boxes-html.php:3695
552
  msgid "Refresh"
553
  msgstr "Atualizar"
@@ -1220,7 +1225,7 @@ msgid "You can upload after"
1220
  msgstr "Voce pode enviar após"
1221
 
1222
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1223
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1224
  msgid "Download"
1225
  msgstr "Descarregado"
1226
 
@@ -1232,7 +1237,12 @@ msgstr "Zoom aproximar"
1232
  msgid "Press f for fullscreen."
1233
  msgstr "Pressione f para fullscreen."
1234
 
1235
- #: wppa-non-admin.php:422
 
 
 
 
 
1236
  msgid ""
1237
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1238
  "dismiss this notice."
@@ -1240,151 +1250,151 @@ msgstr ""
1240
  "Chaves: f = próximo modo; q,x = sair; p = anterior, n = seguinte, s = "
1241
  "iniciar/parar, d = descartar esse aviso."
1242
 
1243
- #: wppa-non-admin.php:423
1244
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1245
  msgstr "Chaves: f = modo seguinte; q,x = saída; d = ignorar este aviso."
1246
 
1247
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1248
  msgid "Start"
1249
  msgstr "Iniciar"
1250
 
1251
- #: wppa-non-admin.php:663
1252
  msgid "Stop"
1253
  msgstr "Parar"
1254
 
1255
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1256
  msgid "Slower"
1257
  msgstr "Devagar"
1258
 
1259
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1260
  msgid "Faster"
1261
  msgstr "Rápido"
1262
 
1263
- #: wppa-non-admin.php:666
1264
  msgid "Photo"
1265
  msgstr "Foto"
1266
 
1267
- #: wppa-non-admin.php:667
1268
  msgid "of"
1269
  msgstr "de"
1270
 
1271
- #: wppa-non-admin.php:668
1272
  msgid "Previous photo"
1273
  msgstr "Foto anterior"
1274
 
1275
- #: wppa-non-admin.php:669
1276
  msgid "Next photo"
1277
  msgstr "Próxima foto"
1278
 
1279
- #: wppa-non-admin.php:670
1280
  msgid "Prev."
1281
  msgstr "Anterior"
1282
 
1283
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1284
  msgid "Next"
1285
  msgstr "Próximo"
1286
 
1287
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1288
  #: wppa-slideshow.php:832
1289
  msgid "Average&nbsp;rating"
1290
  msgstr "Classificação&nbsp;Média"
1291
 
1292
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1293
  #: wppa-slideshow.php:814
1294
  msgid "My&nbsp;rating"
1295
  msgstr "Minha&nbsp;classificação"
1296
 
1297
- #: wppa-non-admin.php:674
1298
  msgid "Avg."
1299
  msgstr "Média"
1300
 
1301
- #: wppa-non-admin.php:675
1302
  msgid "Mine"
1303
  msgstr "Minas"
1304
 
1305
- #: wppa-non-admin.php:676
1306
  msgid "You marked this image as inappropriate."
1307
  msgstr "Você marcou esta imagem como inapropriada."
1308
 
1309
- #: wppa-non-admin.php:679
1310
  msgid "Please enter your name"
1311
  msgstr "Por favor, insira o seu nome"
1312
 
1313
- #: wppa-non-admin.php:680
1314
  msgid "Please enter a valid email address"
1315
  msgstr "Introduza um endereço de e-mail válido"
1316
 
1317
- #: wppa-non-admin.php:681
1318
  msgid "Please enter a comment"
1319
  msgstr "Por favor entre um comentário"
1320
 
1321
- #: wppa-non-admin.php:715
1322
  msgid "Double click to start/stop slideshow running"
1323
  msgstr "Clique duplo para iniciar/parar um slideshow"
1324
 
1325
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1326
  msgid "wrote"
1327
  msgstr "escreveu"
1328
 
1329
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1330
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1331
  #, fuzzy
1332
  msgid "Photo not found"
1333
  msgstr "Foto %s não encontrada."
1334
 
1335
- #: wppa-non-admin.php:794
1336
  #, fuzzy
1337
  msgid "There are no commented photos (yet)"
1338
  msgstr "Fotos comentadas recentemente"
1339
 
1340
- #: wppa-non-admin.php:797
1341
  #, fuzzy
1342
  msgid "View the featured photos"
1343
  msgstr "Ver fotos mais votadas"
1344
 
1345
- #: wppa-non-admin.php:799
1346
  msgid "There are no featured photos (yet)"
1347
  msgstr ""
1348
 
1349
- #: wppa-non-admin.php:802
1350
  #, fuzzy
1351
  msgid "View the most recent uploaded photos"
1352
  msgstr "Ver fotos mais votadas"
1353
 
1354
- #: wppa-non-admin.php:804
1355
  #, fuzzy
1356
  msgid "There are no uploaded photos (yet)"
1357
  msgstr "Fotos enviadas recentemente"
1358
 
1359
- #: wppa-non-admin.php:808
1360
  msgid "By:"
1361
  msgstr ""
1362
 
1363
- #: wppa-non-admin.php:811
1364
  msgid "No album defined (yet)"
1365
  msgstr ""
1366
 
1367
- #: wppa-non-admin.php:815
1368
  msgid "There are no photos (yet)"
1369
  msgstr ""
1370
 
1371
- #: wppa-non-admin.php:818
1372
  msgid "There are too many registered users in the system for this widget"
1373
  msgstr ""
1374
 
1375
- #: wppa-non-admin.php:819
1376
  #, fuzzy
1377
  msgid "Photos uploaded by"
1378
  msgstr "Foto enviada"
1379
 
1380
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1381
  #, php-format
1382
  msgid "%d view"
1383
  msgid_plural "%d views"
1384
  msgstr[0] ""
1385
  msgstr[1] ""
1386
 
1387
- #: wppa-non-admin.php:825
1388
  #, fuzzy
1389
  msgid "There are no rated photos (yet)"
1390
  msgstr "Ver fotos mais votadas"
@@ -1555,3 +1565,87 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1555
  #. Author URI of the plugin/theme
1556
  msgid "http://wppa.opajaap.nl/"
1557
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Photo Album Plus\n"
5
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
6
+ "PO-Revision-Date: 2016-01-13 11:46+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
9
  "Language: pt_BR\n"
114
  msgid "New"
115
  msgstr "Novo"
116
 
117
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
118
  msgid "Slideshow"
119
  msgstr "Slideshow"
120
 
531
  msgstr[0] "Minha classificação"
532
  msgstr[1] "Minha classificação"
533
 
534
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
+ #: wppa-boxes-html.php:3280
542
+ #, fuzzy, php-format
543
+ msgid "Rating: %4.2f."
544
  msgstr "Valor médio: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s não encontrada."
550
 
551
+ #: wppa-boxes-html.php:3343
552
+ #, php-format
553
+ msgid "Mean value: %4.2f."
554
+ msgstr "Valor médio: %4.2f."
555
+
556
  #: wppa-boxes-html.php:3695
557
  msgid "Refresh"
558
  msgstr "Atualizar"
1225
  msgstr "Voce pode enviar após"
1226
 
1227
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1228
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1229
  msgid "Download"
1230
  msgstr "Descarregado"
1231
 
1237
  msgid "Press f for fullscreen."
1238
  msgstr "Pressione f para fullscreen."
1239
 
1240
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1241
+ #, fuzzy
1242
+ msgid "Toggle fullscreen"
1243
+ msgstr "Pressione f para fullscreen."
1244
+
1245
+ #: wppa-non-admin.php:423
1246
  msgid ""
1247
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1248
  "dismiss this notice."
1250
  "Chaves: f = próximo modo; q,x = sair; p = anterior, n = seguinte, s = "
1251
  "iniciar/parar, d = descartar esse aviso."
1252
 
1253
+ #: wppa-non-admin.php:424
1254
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1255
  msgstr "Chaves: f = modo seguinte; q,x = saída; d = ignorar este aviso."
1256
 
1257
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1258
  msgid "Start"
1259
  msgstr "Iniciar"
1260
 
1261
+ #: wppa-non-admin.php:665
1262
  msgid "Stop"
1263
  msgstr "Parar"
1264
 
1265
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1266
  msgid "Slower"
1267
  msgstr "Devagar"
1268
 
1269
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1270
  msgid "Faster"
1271
  msgstr "Rápido"
1272
 
1273
+ #: wppa-non-admin.php:668
1274
  msgid "Photo"
1275
  msgstr "Foto"
1276
 
1277
+ #: wppa-non-admin.php:669
1278
  msgid "of"
1279
  msgstr "de"
1280
 
1281
+ #: wppa-non-admin.php:670
1282
  msgid "Previous photo"
1283
  msgstr "Foto anterior"
1284
 
1285
+ #: wppa-non-admin.php:671
1286
  msgid "Next photo"
1287
  msgstr "Próxima foto"
1288
 
1289
+ #: wppa-non-admin.php:672
1290
  msgid "Prev."
1291
  msgstr "Anterior"
1292
 
1293
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1294
  msgid "Next"
1295
  msgstr "Próximo"
1296
 
1297
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1298
  #: wppa-slideshow.php:832
1299
  msgid "Average&nbsp;rating"
1300
  msgstr "Classificação&nbsp;Média"
1301
 
1302
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1303
  #: wppa-slideshow.php:814
1304
  msgid "My&nbsp;rating"
1305
  msgstr "Minha&nbsp;classificação"
1306
 
1307
+ #: wppa-non-admin.php:676
1308
  msgid "Avg."
1309
  msgstr "Média"
1310
 
1311
+ #: wppa-non-admin.php:677
1312
  msgid "Mine"
1313
  msgstr "Minas"
1314
 
1315
+ #: wppa-non-admin.php:678
1316
  msgid "You marked this image as inappropriate."
1317
  msgstr "Você marcou esta imagem como inapropriada."
1318
 
1319
+ #: wppa-non-admin.php:681
1320
  msgid "Please enter your name"
1321
  msgstr "Por favor, insira o seu nome"
1322
 
1323
+ #: wppa-non-admin.php:682
1324
  msgid "Please enter a valid email address"
1325
  msgstr "Introduza um endereço de e-mail válido"
1326
 
1327
+ #: wppa-non-admin.php:683
1328
  msgid "Please enter a comment"
1329
  msgstr "Por favor entre um comentário"
1330
 
1331
+ #: wppa-non-admin.php:717
1332
  msgid "Double click to start/stop slideshow running"
1333
  msgstr "Clique duplo para iniciar/parar um slideshow"
1334
 
1335
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1336
  msgid "wrote"
1337
  msgstr "escreveu"
1338
 
1339
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1340
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1341
  #, fuzzy
1342
  msgid "Photo not found"
1343
  msgstr "Foto %s não encontrada."
1344
 
1345
+ #: wppa-non-admin.php:796
1346
  #, fuzzy
1347
  msgid "There are no commented photos (yet)"
1348
  msgstr "Fotos comentadas recentemente"
1349
 
1350
+ #: wppa-non-admin.php:799
1351
  #, fuzzy
1352
  msgid "View the featured photos"
1353
  msgstr "Ver fotos mais votadas"
1354
 
1355
+ #: wppa-non-admin.php:801
1356
  msgid "There are no featured photos (yet)"
1357
  msgstr ""
1358
 
1359
+ #: wppa-non-admin.php:804
1360
  #, fuzzy
1361
  msgid "View the most recent uploaded photos"
1362
  msgstr "Ver fotos mais votadas"
1363
 
1364
+ #: wppa-non-admin.php:806
1365
  #, fuzzy
1366
  msgid "There are no uploaded photos (yet)"
1367
  msgstr "Fotos enviadas recentemente"
1368
 
1369
+ #: wppa-non-admin.php:810
1370
  msgid "By:"
1371
  msgstr ""
1372
 
1373
+ #: wppa-non-admin.php:813
1374
  msgid "No album defined (yet)"
1375
  msgstr ""
1376
 
1377
+ #: wppa-non-admin.php:817
1378
  msgid "There are no photos (yet)"
1379
  msgstr ""
1380
 
1381
+ #: wppa-non-admin.php:820
1382
  msgid "There are too many registered users in the system for this widget"
1383
  msgstr ""
1384
 
1385
+ #: wppa-non-admin.php:821
1386
  #, fuzzy
1387
  msgid "Photos uploaded by"
1388
  msgstr "Foto enviada"
1389
 
1390
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1391
  #, php-format
1392
  msgid "%d view"
1393
  msgid_plural "%d views"
1394
  msgstr[0] ""
1395
  msgstr[1] ""
1396
 
1397
+ #: wppa-non-admin.php:827
1398
  #, fuzzy
1399
  msgid "There are no rated photos (yet)"
1400
  msgstr "Ver fotos mais votadas"
1565
  #. Author URI of the plugin/theme
1566
  msgid "http://wppa.opajaap.nl/"
1567
  msgstr "http://wppa.opajaap.nl/"
1568
+
1569
+ #, fuzzy
1570
+ #~ msgid "%d Comment"
1571
+ #~ msgid_plural "%d Comments"
1572
+ #~ msgstr[0] "%d comentários"
1573
+ #~ msgstr[1] "%d comentários"
1574
+
1575
+ #, fuzzy
1576
+ #~ msgid "%d View"
1577
+ #~ msgid_plural "%d Views"
1578
+ #~ msgstr[0] "Ver"
1579
+ #~ msgstr[1] "Ver"
1580
+
1581
+ #~ msgid "No dislikes"
1582
+ #~ msgstr "Sem desaprovar"
1583
+
1584
+ #~ msgid "dislikes"
1585
+ #~ msgstr "desaprovar"
1586
+
1587
+ #~ msgid "albums"
1588
+ #~ msgstr "álbums"
1589
+
1590
+ #~ msgid "photo"
1591
+ #~ msgstr "fotografia"
1592
+
1593
+ #~ msgid "photos"
1594
+ #~ msgstr "fotografias"
1595
+
1596
+ #~ msgid "Categories:"
1597
+ #~ msgstr "Categorias:"
1598
+
1599
+ #~ msgid ""
1600
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1601
+ #~ "multiple file upload"
1602
+ #~ msgstr ""
1603
+ #~ "Você pode fazer upload de até %s fotos de uma vez, se o seu browser "
1604
+ #~ "HTML-5 suportar múltiplo de upload de arquivos"
1605
+
1606
+ #~ msgid "Max ratings: %s."
1607
+ #~ msgstr "Classificações máx.: %s"
1608
+
1609
+ #~ msgid "Votes: %s."
1610
+ #~ msgstr "Votos: %s"
1611
+
1612
+ #~ msgid "Home"
1613
+ #~ msgstr "Inicio"
1614
+
1615
+ #~ msgid "seconds"
1616
+ #~ msgstr "segundos"
1617
+
1618
+ #~ msgid "minutes"
1619
+ #~ msgstr "minutos"
1620
+
1621
+ #~ msgid "hours"
1622
+ #~ msgstr "horas"
1623
+
1624
+ #~ msgid "days"
1625
+ #~ msgstr "dias"
1626
+
1627
+ #~ msgid "weeks"
1628
+ #~ msgstr "semanas"
1629
+
1630
+ #~ msgid "months"
1631
+ #~ msgstr "meses"
1632
+
1633
+ #~ msgid "years"
1634
+ #~ msgstr "anos"
1635
+
1636
+ #~ msgid "1 Comment"
1637
+ #~ msgid_plural "%s Comments"
1638
+ #~ msgstr[0] "1 Comentário"
1639
+ #~ msgstr[1] "%s Comentário"
1640
+
1641
+ #~ msgid "Download:"
1642
+ #~ msgstr "Descarregado:"
1643
+
1644
+ #~ msgid "There are"
1645
+ #~ msgstr "Existem"
1646
+
1647
+ #~ msgid "Comments:"
1648
+ #~ msgstr "Comentários:"
1649
+
1650
+ #~ msgid "Views:"
1651
+ #~ msgstr "Visualizações:"
languages/wp-photo-album-plus-pt_PT.mo CHANGED
Binary file
languages/wp-photo-album-plus-pt_PT.po CHANGED
@@ -2,8 +2,8 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Photo Album Plus\n"
5
- "POT-Creation-Date: 2015-12-25 13:11+0100\n"
6
- "PO-Revision-Date: 2015-12-26 13:04+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
9
  "Language: pt_PT\n"
@@ -114,7 +114,7 @@ msgstr "Novo!"
114
  msgid "New"
115
  msgstr "Novo"
116
 
117
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
118
  msgid "Slideshow"
119
  msgstr "Slideshow"
120
 
@@ -531,16 +531,16 @@ msgid_plural "%d max ratings"
531
  msgstr[0] "Minha classificação"
532
  msgstr[1] "Minha classificação"
533
 
534
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
542
- #, php-format
543
- msgid "Mean value: %4.2f."
544
  msgstr "Valor médio: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
@@ -548,6 +548,11 @@ msgstr "Valor médio: %4.2f."
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s não encontrada."
550
 
 
 
 
 
 
551
  #: wppa-boxes-html.php:3695
552
  msgid "Refresh"
553
  msgstr "Atualizar"
@@ -1220,7 +1225,7 @@ msgid "You can upload after"
1220
  msgstr "Voce pode enviar após"
1221
 
1222
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1223
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1224
  msgid "Download"
1225
  msgstr "Descarregado"
1226
 
@@ -1232,7 +1237,12 @@ msgstr "Zoom aproximar"
1232
  msgid "Press f for fullscreen."
1233
  msgstr "Pressione f para fullscreen."
1234
 
1235
- #: wppa-non-admin.php:422
 
 
 
 
 
1236
  msgid ""
1237
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1238
  "dismiss this notice."
@@ -1240,151 +1250,151 @@ msgstr ""
1240
  "Chaves: f = próximo modo; q,x = sair; p = anterior, n = seguinte, s = "
1241
  "iniciar/parar, d = descartar esse aviso."
1242
 
1243
- #: wppa-non-admin.php:423
1244
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1245
  msgstr "Chaves: f = modo seguinte; q,x = saída; d = ignorar este aviso."
1246
 
1247
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1248
  msgid "Start"
1249
  msgstr "Iniciar"
1250
 
1251
- #: wppa-non-admin.php:663
1252
  msgid "Stop"
1253
  msgstr "Parar"
1254
 
1255
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1256
  msgid "Slower"
1257
  msgstr "Devagar"
1258
 
1259
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1260
  msgid "Faster"
1261
  msgstr "Rápido"
1262
 
1263
- #: wppa-non-admin.php:666
1264
  msgid "Photo"
1265
  msgstr "Foto"
1266
 
1267
- #: wppa-non-admin.php:667
1268
  msgid "of"
1269
  msgstr "de"
1270
 
1271
- #: wppa-non-admin.php:668
1272
  msgid "Previous photo"
1273
  msgstr "Foto anterior"
1274
 
1275
- #: wppa-non-admin.php:669
1276
  msgid "Next photo"
1277
  msgstr "Próxima foto"
1278
 
1279
- #: wppa-non-admin.php:670
1280
  msgid "Prev."
1281
  msgstr "Anterior"
1282
 
1283
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1284
  msgid "Next"
1285
  msgstr "Próximo"
1286
 
1287
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1288
  #: wppa-slideshow.php:832
1289
  msgid "Average&nbsp;rating"
1290
  msgstr "Classificação&nbsp;Média"
1291
 
1292
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1293
  #: wppa-slideshow.php:814
1294
  msgid "My&nbsp;rating"
1295
  msgstr "Minha&nbsp;classificação"
1296
 
1297
- #: wppa-non-admin.php:674
1298
  msgid "Avg."
1299
  msgstr "Média"
1300
 
1301
- #: wppa-non-admin.php:675
1302
  msgid "Mine"
1303
  msgstr "Minas"
1304
 
1305
- #: wppa-non-admin.php:676
1306
  msgid "You marked this image as inappropriate."
1307
  msgstr "Você marcou esta imagem como inapropriada."
1308
 
1309
- #: wppa-non-admin.php:679
1310
  msgid "Please enter your name"
1311
  msgstr "Por favor, insira o seu nome"
1312
 
1313
- #: wppa-non-admin.php:680
1314
  msgid "Please enter a valid email address"
1315
  msgstr "Introduza um endereço de e-mail válido"
1316
 
1317
- #: wppa-non-admin.php:681
1318
  msgid "Please enter a comment"
1319
  msgstr "Por favor entre um comentário"
1320
 
1321
- #: wppa-non-admin.php:715
1322
  msgid "Double click to start/stop slideshow running"
1323
  msgstr "Clique duplo para iniciar/parar um slideshow"
1324
 
1325
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1326
  msgid "wrote"
1327
  msgstr "escreveu"
1328
 
1329
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1330
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1331
  #, fuzzy
1332
  msgid "Photo not found"
1333
  msgstr "Foto %s não encontrada."
1334
 
1335
- #: wppa-non-admin.php:794
1336
  #, fuzzy
1337
  msgid "There are no commented photos (yet)"
1338
  msgstr "Fotos comentadas recentemente"
1339
 
1340
- #: wppa-non-admin.php:797
1341
  #, fuzzy
1342
  msgid "View the featured photos"
1343
  msgstr "Ver fotos mais votadas"
1344
 
1345
- #: wppa-non-admin.php:799
1346
  msgid "There are no featured photos (yet)"
1347
  msgstr ""
1348
 
1349
- #: wppa-non-admin.php:802
1350
  #, fuzzy
1351
  msgid "View the most recent uploaded photos"
1352
  msgstr "Ver fotos mais votadas"
1353
 
1354
- #: wppa-non-admin.php:804
1355
  #, fuzzy
1356
  msgid "There are no uploaded photos (yet)"
1357
  msgstr "Fotos enviadas recentemente"
1358
 
1359
- #: wppa-non-admin.php:808
1360
  msgid "By:"
1361
  msgstr ""
1362
 
1363
- #: wppa-non-admin.php:811
1364
  msgid "No album defined (yet)"
1365
  msgstr ""
1366
 
1367
- #: wppa-non-admin.php:815
1368
  msgid "There are no photos (yet)"
1369
  msgstr ""
1370
 
1371
- #: wppa-non-admin.php:818
1372
  msgid "There are too many registered users in the system for this widget"
1373
  msgstr ""
1374
 
1375
- #: wppa-non-admin.php:819
1376
  #, fuzzy
1377
  msgid "Photos uploaded by"
1378
  msgstr "Foto enviada"
1379
 
1380
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1381
  #, php-format
1382
  msgid "%d view"
1383
  msgid_plural "%d views"
1384
  msgstr[0] ""
1385
  msgstr[1] ""
1386
 
1387
- #: wppa-non-admin.php:825
1388
  #, fuzzy
1389
  msgid "There are no rated photos (yet)"
1390
  msgstr "Ver fotos mais votadas"
@@ -1555,3 +1565,87 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1555
  #. Author URI of the plugin/theme
1556
  msgid "http://wppa.opajaap.nl/"
1557
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP Photo Album Plus\n"
5
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
6
+ "PO-Revision-Date: 2016-01-13 11:46+0100\n"
7
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
9
  "Language: pt_PT\n"
114
  msgid "New"
115
  msgstr "Novo"
116
 
117
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
118
  msgid "Slideshow"
119
  msgstr "Slideshow"
120
 
531
  msgstr[0] "Minha classificação"
532
  msgstr[1] "Minha classificação"
533
 
534
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
+ #: wppa-boxes-html.php:3280
542
+ #, fuzzy, php-format
543
+ msgid "Rating: %4.2f."
544
  msgstr "Valor médio: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s não encontrada."
550
 
551
+ #: wppa-boxes-html.php:3343
552
+ #, php-format
553
+ msgid "Mean value: %4.2f."
554
+ msgstr "Valor médio: %4.2f."
555
+
556
  #: wppa-boxes-html.php:3695
557
  msgid "Refresh"
558
  msgstr "Atualizar"
1225
  msgstr "Voce pode enviar após"
1226
 
1227
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1228
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1229
  msgid "Download"
1230
  msgstr "Descarregado"
1231
 
1237
  msgid "Press f for fullscreen."
1238
  msgstr "Pressione f para fullscreen."
1239
 
1240
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1241
+ #, fuzzy
1242
+ msgid "Toggle fullscreen"
1243
+ msgstr "Pressione f para fullscreen."
1244
+
1245
+ #: wppa-non-admin.php:423
1246
  msgid ""
1247
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1248
  "dismiss this notice."
1250
  "Chaves: f = próximo modo; q,x = sair; p = anterior, n = seguinte, s = "
1251
  "iniciar/parar, d = descartar esse aviso."
1252
 
1253
+ #: wppa-non-admin.php:424
1254
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1255
  msgstr "Chaves: f = modo seguinte; q,x = saída; d = ignorar este aviso."
1256
 
1257
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1258
  msgid "Start"
1259
  msgstr "Iniciar"
1260
 
1261
+ #: wppa-non-admin.php:665
1262
  msgid "Stop"
1263
  msgstr "Parar"
1264
 
1265
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1266
  msgid "Slower"
1267
  msgstr "Devagar"
1268
 
1269
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1270
  msgid "Faster"
1271
  msgstr "Rápido"
1272
 
1273
+ #: wppa-non-admin.php:668
1274
  msgid "Photo"
1275
  msgstr "Foto"
1276
 
1277
+ #: wppa-non-admin.php:669
1278
  msgid "of"
1279
  msgstr "de"
1280
 
1281
+ #: wppa-non-admin.php:670
1282
  msgid "Previous photo"
1283
  msgstr "Foto anterior"
1284
 
1285
+ #: wppa-non-admin.php:671
1286
  msgid "Next photo"
1287
  msgstr "Próxima foto"
1288
 
1289
+ #: wppa-non-admin.php:672
1290
  msgid "Prev."
1291
  msgstr "Anterior"
1292
 
1293
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1294
  msgid "Next"
1295
  msgstr "Próximo"
1296
 
1297
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1298
  #: wppa-slideshow.php:832
1299
  msgid "Average&nbsp;rating"
1300
  msgstr "Classificação&nbsp;Média"
1301
 
1302
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1303
  #: wppa-slideshow.php:814
1304
  msgid "My&nbsp;rating"
1305
  msgstr "Minha&nbsp;classificação"
1306
 
1307
+ #: wppa-non-admin.php:676
1308
  msgid "Avg."
1309
  msgstr "Média"
1310
 
1311
+ #: wppa-non-admin.php:677
1312
  msgid "Mine"
1313
  msgstr "Minas"
1314
 
1315
+ #: wppa-non-admin.php:678
1316
  msgid "You marked this image as inappropriate."
1317
  msgstr "Você marcou esta imagem como inapropriada."
1318
 
1319
+ #: wppa-non-admin.php:681
1320
  msgid "Please enter your name"
1321
  msgstr "Por favor, insira o seu nome"
1322
 
1323
+ #: wppa-non-admin.php:682
1324
  msgid "Please enter a valid email address"
1325
  msgstr "Introduza um endereço de e-mail válido"
1326
 
1327
+ #: wppa-non-admin.php:683
1328
  msgid "Please enter a comment"
1329
  msgstr "Por favor entre um comentário"
1330
 
1331
+ #: wppa-non-admin.php:717
1332
  msgid "Double click to start/stop slideshow running"
1333
  msgstr "Clique duplo para iniciar/parar um slideshow"
1334
 
1335
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1336
  msgid "wrote"
1337
  msgstr "escreveu"
1338
 
1339
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1340
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1341
  #, fuzzy
1342
  msgid "Photo not found"
1343
  msgstr "Foto %s não encontrada."
1344
 
1345
+ #: wppa-non-admin.php:796
1346
  #, fuzzy
1347
  msgid "There are no commented photos (yet)"
1348
  msgstr "Fotos comentadas recentemente"
1349
 
1350
+ #: wppa-non-admin.php:799
1351
  #, fuzzy
1352
  msgid "View the featured photos"
1353
  msgstr "Ver fotos mais votadas"
1354
 
1355
+ #: wppa-non-admin.php:801
1356
  msgid "There are no featured photos (yet)"
1357
  msgstr ""
1358
 
1359
+ #: wppa-non-admin.php:804
1360
  #, fuzzy
1361
  msgid "View the most recent uploaded photos"
1362
  msgstr "Ver fotos mais votadas"
1363
 
1364
+ #: wppa-non-admin.php:806
1365
  #, fuzzy
1366
  msgid "There are no uploaded photos (yet)"
1367
  msgstr "Fotos enviadas recentemente"
1368
 
1369
+ #: wppa-non-admin.php:810
1370
  msgid "By:"
1371
  msgstr ""
1372
 
1373
+ #: wppa-non-admin.php:813
1374
  msgid "No album defined (yet)"
1375
  msgstr ""
1376
 
1377
+ #: wppa-non-admin.php:817
1378
  msgid "There are no photos (yet)"
1379
  msgstr ""
1380
 
1381
+ #: wppa-non-admin.php:820
1382
  msgid "There are too many registered users in the system for this widget"
1383
  msgstr ""
1384
 
1385
+ #: wppa-non-admin.php:821
1386
  #, fuzzy
1387
  msgid "Photos uploaded by"
1388
  msgstr "Foto enviada"
1389
 
1390
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1391
  #, php-format
1392
  msgid "%d view"
1393
  msgid_plural "%d views"
1394
  msgstr[0] ""
1395
  msgstr[1] ""
1396
 
1397
+ #: wppa-non-admin.php:827
1398
  #, fuzzy
1399
  msgid "There are no rated photos (yet)"
1400
  msgstr "Ver fotos mais votadas"
1565
  #. Author URI of the plugin/theme
1566
  msgid "http://wppa.opajaap.nl/"
1567
  msgstr "http://wppa.opajaap.nl/"
1568
+
1569
+ #, fuzzy
1570
+ #~ msgid "%d Comment"
1571
+ #~ msgid_plural "%d Comments"
1572
+ #~ msgstr[0] "%d comentários"
1573
+ #~ msgstr[1] "%d comentários"
1574
+
1575
+ #, fuzzy
1576
+ #~ msgid "%d View"
1577
+ #~ msgid_plural "%d Views"
1578
+ #~ msgstr[0] "Ver"
1579
+ #~ msgstr[1] "Ver"
1580
+
1581
+ #~ msgid "No dislikes"
1582
+ #~ msgstr "Sem desaprovar"
1583
+
1584
+ #~ msgid "dislikes"
1585
+ #~ msgstr "desaprovar"
1586
+
1587
+ #~ msgid "albums"
1588
+ #~ msgstr "álbums"
1589
+
1590
+ #~ msgid "photo"
1591
+ #~ msgstr "fotografia"
1592
+
1593
+ #~ msgid "photos"
1594
+ #~ msgstr "fotografias"
1595
+
1596
+ #~ msgid "Categories:"
1597
+ #~ msgstr "Categorias:"
1598
+
1599
+ #~ msgid ""
1600
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1601
+ #~ "multiple file upload"
1602
+ #~ msgstr ""
1603
+ #~ "Você pode fazer upload de até %s fotos de uma vez, se o seu browser "
1604
+ #~ "HTML-5 suportar múltiplo de upload de arquivos"
1605
+
1606
+ #~ msgid "Max ratings: %s."
1607
+ #~ msgstr "Classificações máx.: %s"
1608
+
1609
+ #~ msgid "Votes: %s."
1610
+ #~ msgstr "Votos: %s"
1611
+
1612
+ #~ msgid "Home"
1613
+ #~ msgstr "Inicio"
1614
+
1615
+ #~ msgid "seconds"
1616
+ #~ msgstr "segundos"
1617
+
1618
+ #~ msgid "minutes"
1619
+ #~ msgstr "minutos"
1620
+
1621
+ #~ msgid "hours"
1622
+ #~ msgstr "horas"
1623
+
1624
+ #~ msgid "days"
1625
+ #~ msgstr "dias"
1626
+
1627
+ #~ msgid "weeks"
1628
+ #~ msgstr "semanas"
1629
+
1630
+ #~ msgid "months"
1631
+ #~ msgstr "meses"
1632
+
1633
+ #~ msgid "years"
1634
+ #~ msgstr "anos"
1635
+
1636
+ #~ msgid "1 Comment"
1637
+ #~ msgid_plural "%s Comments"
1638
+ #~ msgstr[0] "1 Comentário"
1639
+ #~ msgstr[1] "%s Comentário"
1640
+
1641
+ #~ msgid "Download:"
1642
+ #~ msgstr "Descarregado:"
1643
+
1644
+ #~ msgid "There are"
1645
+ #~ msgstr "Existem"
1646
+
1647
+ #~ msgid "Comments:"
1648
+ #~ msgstr "Comentários:"
1649
+
1650
+ #~ msgid "Views:"
1651
+ #~ msgstr "Visualizações:"
languages/wp-photo-album-plus-ru_RU.mo CHANGED
Binary file
languages/wp-photo-album-plus-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:10+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:05+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: ru_RU\n"
@@ -113,7 +113,7 @@ msgstr "Новое!"
113
  msgid "New"
114
  msgstr "Новый"
115
 
116
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
117
  msgid "Slideshow"
118
  msgstr "Слайдшоу"
119
 
@@ -530,16 +530,16 @@ msgid_plural "%d max ratings"
530
  msgstr[0] "Моя оценка:"
531
  msgstr[1] "Моя оценка:"
532
 
533
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
534
  #, php-format
535
  msgid "%d vote"
536
  msgid_plural "%d votes"
537
  msgstr[0] ""
538
  msgstr[1] ""
539
 
540
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
541
- #, php-format
542
- msgid "Mean value: %4.2f."
543
  msgstr "Среднее значение: %4.2f."
544
 
545
  #: wppa-boxes-html.php:3288
@@ -547,6 +547,11 @@ msgstr "Среднее значение: %4.2f."
547
  msgid "Photo %s not found."
548
  msgstr "Фото %s не найдено."
549
 
 
 
 
 
 
550
  #: wppa-boxes-html.php:3695
551
  msgid "Refresh"
552
  msgstr "Обновить"
@@ -1221,7 +1226,7 @@ msgid "You can upload after"
1221
  msgstr "Вы можете загрузить после"
1222
 
1223
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1224
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1225
  msgid "Download"
1226
  msgstr "Загрузить"
1227
 
@@ -1233,7 +1238,12 @@ msgstr "Приближение"
1233
  msgid "Press f for fullscreen."
1234
  msgstr "Для полноэкранного режима нажмите клавишу f."
1235
 
1236
- #: wppa-non-admin.php:422
 
 
 
 
 
1237
  #, fuzzy
1238
  msgid ""
1239
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
@@ -1242,153 +1252,153 @@ msgstr ""
1242
  "Ключи: f = следующий режим; выход = выход; p = Предыдущая, n = далее, s = "
1243
  "старт/стоп, d = уволить этого уведомления."
1244
 
1245
- #: wppa-non-admin.php:423
1246
  #, fuzzy
1247
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1248
  msgstr ""
1249
  "Ключи: f = следующий режим; выход = выход; d = уволить этого уведомления."
1250
 
1251
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1252
  msgid "Start"
1253
  msgstr "Начать"
1254
 
1255
- #: wppa-non-admin.php:663
1256
  msgid "Stop"
1257
  msgstr "Упор"
1258
 
1259
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1260
  msgid "Slower"
1261
  msgstr "Медленнее"
1262
 
1263
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1264
  msgid "Faster"
1265
  msgstr "Быстрее"
1266
 
1267
- #: wppa-non-admin.php:666
1268
  msgid "Photo"
1269
  msgstr "Фото"
1270
 
1271
- #: wppa-non-admin.php:667
1272
  msgid "of"
1273
  msgstr "грузовой"
1274
 
1275
- #: wppa-non-admin.php:668
1276
  msgid "Previous photo"
1277
  msgstr "Предыдущая фотография"
1278
 
1279
- #: wppa-non-admin.php:669
1280
  msgid "Next photo"
1281
  msgstr "Следующая фотография"
1282
 
1283
- #: wppa-non-admin.php:670
1284
  msgid "Prev."
1285
  msgstr "предыдущий"
1286
 
1287
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1288
  msgid "Next"
1289
  msgstr "След."
1290
 
1291
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1292
  #: wppa-slideshow.php:832
1293
  msgid "Average&nbsp;rating"
1294
  msgstr "Средний&nbsp;рейтинг"
1295
 
1296
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1297
  #: wppa-slideshow.php:814
1298
  msgid "My&nbsp;rating"
1299
  msgstr "Мой &nbsp; рейтинг"
1300
 
1301
- #: wppa-non-admin.php:674
1302
  msgid "Avg."
1303
  msgstr "Ср."
1304
 
1305
- #: wppa-non-admin.php:675
1306
  msgid "Mine"
1307
  msgstr "Добыча"
1308
 
1309
- #: wppa-non-admin.php:676
1310
  msgid "You marked this image as inappropriate."
1311
  msgstr "Вы отметили это изображение как неуместные."
1312
 
1313
- #: wppa-non-admin.php:679
1314
  msgid "Please enter your name"
1315
  msgstr "Пожалуйста, введите ваше имя"
1316
 
1317
- #: wppa-non-admin.php:680
1318
  msgid "Please enter a valid email address"
1319
  msgstr "Пожалуйста, введите корректный адрес электронной почты"
1320
 
1321
- #: wppa-non-admin.php:681
1322
  msgid "Please enter a comment"
1323
  msgstr "Пожалуйста, введите ваш комментарий"
1324
 
1325
- #: wppa-non-admin.php:715
1326
  msgid "Double click to start/stop slideshow running"
1327
  msgstr "Дважды щелкните, чтобы запустить/остановить запуск слайд-шоу"
1328
 
1329
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1330
  msgid "wrote"
1331
  msgstr "написал(а)"
1332
 
1333
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1334
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1335
  #, fuzzy
1336
  msgid "Photo not found"
1337
  msgstr "Фото %s не найдено."
1338
 
1339
- #: wppa-non-admin.php:794
1340
  #, fuzzy
1341
  msgid "There are no commented photos (yet)"
1342
  msgstr "Недавно комментировали"
1343
 
1344
- #: wppa-non-admin.php:797
1345
  #, fuzzy
1346
  msgid "View the featured photos"
1347
  msgstr "Смотреть самые лучшие фото"
1348
 
1349
- #: wppa-non-admin.php:799
1350
  msgid "There are no featured photos (yet)"
1351
  msgstr ""
1352
 
1353
- #: wppa-non-admin.php:802
1354
  #, fuzzy
1355
  msgid "View the most recent uploaded photos"
1356
  msgstr "Смотреть самые лучшие фото"
1357
 
1358
- #: wppa-non-admin.php:804
1359
  #, fuzzy
1360
  msgid "There are no uploaded photos (yet)"
1361
  msgstr "Недавно добавленные фото"
1362
 
1363
- #: wppa-non-admin.php:808
1364
  msgid "By:"
1365
  msgstr ""
1366
 
1367
- #: wppa-non-admin.php:811
1368
  msgid "No album defined (yet)"
1369
  msgstr ""
1370
 
1371
- #: wppa-non-admin.php:815
1372
  msgid "There are no photos (yet)"
1373
  msgstr ""
1374
 
1375
- #: wppa-non-admin.php:818
1376
  msgid "There are too many registered users in the system for this widget"
1377
  msgstr ""
1378
 
1379
- #: wppa-non-admin.php:819
1380
  #, fuzzy
1381
  msgid "Photos uploaded by"
1382
  msgstr "Загрузить Фото"
1383
 
1384
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1385
  #, php-format
1386
  msgid "%d view"
1387
  msgid_plural "%d views"
1388
  msgstr[0] ""
1389
  msgstr[1] ""
1390
 
1391
- #: wppa-non-admin.php:825
1392
  #, fuzzy
1393
  msgid "There are no rated photos (yet)"
1394
  msgstr "Смотреть самые лучшие фото"
@@ -1557,3 +1567,87 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1557
  #. Author URI of the plugin/theme
1558
  msgid "http://wppa.opajaap.nl/"
1559
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:44+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:44+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: ru_RU\n"
113
  msgid "New"
114
  msgstr "Новый"
115
 
116
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
117
  msgid "Slideshow"
118
  msgstr "Слайдшоу"
119
 
530
  msgstr[0] "Моя оценка:"
531
  msgstr[1] "Моя оценка:"
532
 
533
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
534
  #, php-format
535
  msgid "%d vote"
536
  msgid_plural "%d votes"
537
  msgstr[0] ""
538
  msgstr[1] ""
539
 
540
+ #: wppa-boxes-html.php:3280
541
+ #, fuzzy, php-format
542
+ msgid "Rating: %4.2f."
543
  msgstr "Среднее значение: %4.2f."
544
 
545
  #: wppa-boxes-html.php:3288
547
  msgid "Photo %s not found."
548
  msgstr "Фото %s не найдено."
549
 
550
+ #: wppa-boxes-html.php:3343
551
+ #, php-format
552
+ msgid "Mean value: %4.2f."
553
+ msgstr "Среднее значение: %4.2f."
554
+
555
  #: wppa-boxes-html.php:3695
556
  msgid "Refresh"
557
  msgstr "Обновить"
1226
  msgstr "Вы можете загрузить после"
1227
 
1228
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1229
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1230
  msgid "Download"
1231
  msgstr "Загрузить"
1232
 
1238
  msgid "Press f for fullscreen."
1239
  msgstr "Для полноэкранного режима нажмите клавишу f."
1240
 
1241
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1242
+ #, fuzzy
1243
+ msgid "Toggle fullscreen"
1244
+ msgstr "Для полноэкранного режима нажмите клавишу f."
1245
+
1246
+ #: wppa-non-admin.php:423
1247
  #, fuzzy
1248
  msgid ""
1249
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1252
  "Ключи: f = следующий режим; выход = выход; p = Предыдущая, n = далее, s = "
1253
  "старт/стоп, d = уволить этого уведомления."
1254
 
1255
+ #: wppa-non-admin.php:424
1256
  #, fuzzy
1257
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1258
  msgstr ""
1259
  "Ключи: f = следующий режим; выход = выход; d = уволить этого уведомления."
1260
 
1261
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1262
  msgid "Start"
1263
  msgstr "Начать"
1264
 
1265
+ #: wppa-non-admin.php:665
1266
  msgid "Stop"
1267
  msgstr "Упор"
1268
 
1269
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1270
  msgid "Slower"
1271
  msgstr "Медленнее"
1272
 
1273
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1274
  msgid "Faster"
1275
  msgstr "Быстрее"
1276
 
1277
+ #: wppa-non-admin.php:668
1278
  msgid "Photo"
1279
  msgstr "Фото"
1280
 
1281
+ #: wppa-non-admin.php:669
1282
  msgid "of"
1283
  msgstr "грузовой"
1284
 
1285
+ #: wppa-non-admin.php:670
1286
  msgid "Previous photo"
1287
  msgstr "Предыдущая фотография"
1288
 
1289
+ #: wppa-non-admin.php:671
1290
  msgid "Next photo"
1291
  msgstr "Следующая фотография"
1292
 
1293
+ #: wppa-non-admin.php:672
1294
  msgid "Prev."
1295
  msgstr "предыдущий"
1296
 
1297
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1298
  msgid "Next"
1299
  msgstr "След."
1300
 
1301
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1302
  #: wppa-slideshow.php:832
1303
  msgid "Average&nbsp;rating"
1304
  msgstr "Средний&nbsp;рейтинг"
1305
 
1306
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1307
  #: wppa-slideshow.php:814
1308
  msgid "My&nbsp;rating"
1309
  msgstr "Мой &nbsp; рейтинг"
1310
 
1311
+ #: wppa-non-admin.php:676
1312
  msgid "Avg."
1313
  msgstr "Ср."
1314
 
1315
+ #: wppa-non-admin.php:677
1316
  msgid "Mine"
1317
  msgstr "Добыча"
1318
 
1319
+ #: wppa-non-admin.php:678
1320
  msgid "You marked this image as inappropriate."
1321
  msgstr "Вы отметили это изображение как неуместные."
1322
 
1323
+ #: wppa-non-admin.php:681
1324
  msgid "Please enter your name"
1325
  msgstr "Пожалуйста, введите ваше имя"
1326
 
1327
+ #: wppa-non-admin.php:682
1328
  msgid "Please enter a valid email address"
1329
  msgstr "Пожалуйста, введите корректный адрес электронной почты"
1330
 
1331
+ #: wppa-non-admin.php:683
1332
  msgid "Please enter a comment"
1333
  msgstr "Пожалуйста, введите ваш комментарий"
1334
 
1335
+ #: wppa-non-admin.php:717
1336
  msgid "Double click to start/stop slideshow running"
1337
  msgstr "Дважды щелкните, чтобы запустить/остановить запуск слайд-шоу"
1338
 
1339
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1340
  msgid "wrote"
1341
  msgstr "написал(а)"
1342
 
1343
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1344
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1345
  #, fuzzy
1346
  msgid "Photo not found"
1347
  msgstr "Фото %s не найдено."
1348
 
1349
+ #: wppa-non-admin.php:796
1350
  #, fuzzy
1351
  msgid "There are no commented photos (yet)"
1352
  msgstr "Недавно комментировали"
1353
 
1354
+ #: wppa-non-admin.php:799
1355
  #, fuzzy
1356
  msgid "View the featured photos"
1357
  msgstr "Смотреть самые лучшие фото"
1358
 
1359
+ #: wppa-non-admin.php:801
1360
  msgid "There are no featured photos (yet)"
1361
  msgstr ""
1362
 
1363
+ #: wppa-non-admin.php:804
1364
  #, fuzzy
1365
  msgid "View the most recent uploaded photos"
1366
  msgstr "Смотреть самые лучшие фото"
1367
 
1368
+ #: wppa-non-admin.php:806
1369
  #, fuzzy
1370
  msgid "There are no uploaded photos (yet)"
1371
  msgstr "Недавно добавленные фото"
1372
 
1373
+ #: wppa-non-admin.php:810
1374
  msgid "By:"
1375
  msgstr ""
1376
 
1377
+ #: wppa-non-admin.php:813
1378
  msgid "No album defined (yet)"
1379
  msgstr ""
1380
 
1381
+ #: wppa-non-admin.php:817
1382
  msgid "There are no photos (yet)"
1383
  msgstr ""
1384
 
1385
+ #: wppa-non-admin.php:820
1386
  msgid "There are too many registered users in the system for this widget"
1387
  msgstr ""
1388
 
1389
+ #: wppa-non-admin.php:821
1390
  #, fuzzy
1391
  msgid "Photos uploaded by"
1392
  msgstr "Загрузить Фото"
1393
 
1394
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1395
  #, php-format
1396
  msgid "%d view"
1397
  msgid_plural "%d views"
1398
  msgstr[0] ""
1399
  msgstr[1] ""
1400
 
1401
+ #: wppa-non-admin.php:827
1402
  #, fuzzy
1403
  msgid "There are no rated photos (yet)"
1404
  msgstr "Смотреть самые лучшие фото"
1567
  #. Author URI of the plugin/theme
1568
  msgid "http://wppa.opajaap.nl/"
1569
  msgstr "http://wppa.opajaap.nl/"
1570
+
1571
+ #, fuzzy
1572
+ #~ msgid "%d Comment"
1573
+ #~ msgid_plural "%d Comments"
1574
+ #~ msgstr[0] "%d комментариев"
1575
+ #~ msgstr[1] "%d комментариев"
1576
+
1577
+ #, fuzzy
1578
+ #~ msgid "%d View"
1579
+ #~ msgid_plural "%d Views"
1580
+ #~ msgstr[0] "Смотреть"
1581
+ #~ msgstr[1] "Смотреть"
1582
+
1583
+ #~ msgid "No dislikes"
1584
+ #~ msgstr "Не нравится"
1585
+
1586
+ #~ msgid "dislikes"
1587
+ #~ msgstr "не понравилось"
1588
+
1589
+ #~ msgid "albums"
1590
+ #~ msgstr "альбомов"
1591
+
1592
+ #~ msgid "photo"
1593
+ #~ msgstr "фото"
1594
+
1595
+ #~ msgid "photos"
1596
+ #~ msgstr "фото"
1597
+
1598
+ #~ msgid "Categories:"
1599
+ #~ msgstr "Категория:"
1600
+
1601
+ #~ msgid ""
1602
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1603
+ #~ "multiple file upload"
1604
+ #~ msgstr ""
1605
+ #~ "Вы можете загрузить за один раз до %s фотографий, если Ваш браузер "
1606
+ #~ "поддерживает множественную загрузку файлов HTML-5"
1607
+
1608
+ #~ msgid "Max ratings: %s."
1609
+ #~ msgstr "Макс рейтинги: %s."
1610
+
1611
+ #~ msgid "Votes: %s."
1612
+ #~ msgstr "Голосов: %s."
1613
+
1614
+ #~ msgid "Home"
1615
+ #~ msgstr "В начало"
1616
+
1617
+ #~ msgid "seconds"
1618
+ #~ msgstr "секунд"
1619
+
1620
+ #~ msgid "minutes"
1621
+ #~ msgstr "минут"
1622
+
1623
+ #~ msgid "hours"
1624
+ #~ msgstr "часов"
1625
+
1626
+ #~ msgid "days"
1627
+ #~ msgstr "дней"
1628
+
1629
+ #~ msgid "weeks"
1630
+ #~ msgstr "недель"
1631
+
1632
+ #~ msgid "months"
1633
+ #~ msgstr "месяцев"
1634
+
1635
+ #~ msgid "years"
1636
+ #~ msgstr "лет"
1637
+
1638
+ #~ msgid "1 Comment"
1639
+ #~ msgid_plural "%s Comments"
1640
+ #~ msgstr[0] "Комментарии (1)"
1641
+ #~ msgstr[1] "Комментарии (%s)"
1642
+
1643
+ #~ msgid "Download:"
1644
+ #~ msgstr "Скачать:"
1645
+
1646
+ #~ msgid "There are"
1647
+ #~ msgstr "Здесь"
1648
+
1649
+ #~ msgid "Comments:"
1650
+ #~ msgstr "Комментарии:"
1651
+
1652
+ #~ msgid "Views:"
1653
+ #~ msgstr "Просмотры:"
languages/wp-photo-album-plus-sk_SK.mo CHANGED
Binary file
languages/wp-photo-album-plus-sk_SK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:10+0100\n"
5
- "PO-Revision-Date: 2015-12-25 13:10+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: sk_SK\n"
@@ -116,7 +116,7 @@ msgstr "Nové!"
116
  msgid "New"
117
  msgstr "Nové"
118
 
119
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
120
  msgid "Slideshow"
121
  msgstr "Slideshow"
122
 
@@ -531,16 +531,16 @@ msgid_plural "%d max ratings"
531
  msgstr[0] "Moje hodnotenie"
532
  msgstr[1] "Moje hodnotenie"
533
 
534
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
542
- #, php-format
543
- msgid "Mean value: %4.2f."
544
  msgstr "Stredná hodnota: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
@@ -548,6 +548,11 @@ msgstr "Stredná hodnota: %4.2f."
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s nebol nájdený."
550
 
 
 
 
 
 
551
  #: wppa-boxes-html.php:3695
552
  msgid "Refresh"
553
  msgstr "Obnoviť"
@@ -1215,7 +1220,7 @@ msgid "You can upload after"
1215
  msgstr "Môžete nahrať po"
1216
 
1217
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1218
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1219
  msgid "Download"
1220
  msgstr "Stiahnúť"
1221
 
@@ -1227,7 +1232,12 @@ msgstr "Priblížiť"
1227
  msgid "Press f for fullscreen."
1228
  msgstr "Stlačte tlačidlo f na celú obrazovku."
1229
 
1230
- #: wppa-non-admin.php:422
 
 
 
 
 
1231
  msgid ""
1232
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1233
  "dismiss this notice."
@@ -1235,151 +1245,151 @@ msgstr ""
1235
  "Skratky: f = ďalší režim; q,x = výstupu; p = predchádzajúca, n = vedľa, s = "
1236
  "štart/stop, d = zamietol tohto oznámenia."
1237
 
1238
- #: wppa-non-admin.php:423
1239
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1240
  msgstr "Skratky: f = ďalší režim; q,x = výstupu; d = zamietol tohto oznámenia."
1241
 
1242
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1243
  msgid "Start"
1244
  msgstr "Štart"
1245
 
1246
- #: wppa-non-admin.php:663
1247
  msgid "Stop"
1248
  msgstr "Zastaviť"
1249
 
1250
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1251
  msgid "Slower"
1252
  msgstr "Pomalší"
1253
 
1254
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1255
  msgid "Faster"
1256
  msgstr "Rýchlejšie"
1257
 
1258
- #: wppa-non-admin.php:666
1259
  msgid "Photo"
1260
  msgstr "Foto"
1261
 
1262
- #: wppa-non-admin.php:667
1263
  msgid "of"
1264
  msgstr "z"
1265
 
1266
- #: wppa-non-admin.php:668
1267
  msgid "Previous photo"
1268
  msgstr "Předcházející fotka"
1269
 
1270
- #: wppa-non-admin.php:669
1271
  msgid "Next photo"
1272
  msgstr "Další fotka"
1273
 
1274
- #: wppa-non-admin.php:670
1275
  msgid "Prev."
1276
  msgstr "Späť"
1277
 
1278
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1279
  msgid "Next"
1280
  msgstr "Ďalší"
1281
 
1282
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1283
  #: wppa-slideshow.php:832
1284
  msgid "Average&nbsp;rating"
1285
  msgstr "Priemerné hodnotenie"
1286
 
1287
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1288
  #: wppa-slideshow.php:814
1289
  msgid "My&nbsp;rating"
1290
  msgstr "Moje hodnotenie"
1291
 
1292
- #: wppa-non-admin.php:674
1293
  msgid "Avg."
1294
  msgstr "Priem."
1295
 
1296
- #: wppa-non-admin.php:675
1297
  msgid "Mine"
1298
  msgstr "Moje"
1299
 
1300
- #: wppa-non-admin.php:676
1301
  msgid "You marked this image as inappropriate."
1302
  msgstr "Označili ste tento obrázok ako nevhodné."
1303
 
1304
- #: wppa-non-admin.php:679
1305
  msgid "Please enter your name"
1306
  msgstr "Napíš svoje meno prosím"
1307
 
1308
- #: wppa-non-admin.php:680
1309
  msgid "Please enter a valid email address"
1310
  msgstr "Zadajte platnú e-mailovú adresu"
1311
 
1312
- #: wppa-non-admin.php:681
1313
  msgid "Please enter a comment"
1314
  msgstr "Zadajte, prosím, komentár"
1315
 
1316
- #: wppa-non-admin.php:715
1317
  msgid "Double click to start/stop slideshow running"
1318
  msgstr "Dvakrát kliknite na prezentáciu so systémom štart/stop"
1319
 
1320
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1321
  msgid "wrote"
1322
  msgstr "napísal"
1323
 
1324
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1325
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1326
  #, fuzzy
1327
  msgid "Photo not found"
1328
  msgstr "Foto %s nebol nájdený."
1329
 
1330
- #: wppa-non-admin.php:794
1331
  #, fuzzy
1332
  msgid "There are no commented photos (yet)"
1333
  msgstr "Nedávno komentované fotografie"
1334
 
1335
- #: wppa-non-admin.php:797
1336
  #, fuzzy
1337
  msgid "View the featured photos"
1338
  msgstr "Zobraziť najlepšie hodnotené fotografie"
1339
 
1340
- #: wppa-non-admin.php:799
1341
  msgid "There are no featured photos (yet)"
1342
  msgstr ""
1343
 
1344
- #: wppa-non-admin.php:802
1345
  #, fuzzy
1346
  msgid "View the most recent uploaded photos"
1347
  msgstr "Zobraziť najlepšie hodnotené fotografie"
1348
 
1349
- #: wppa-non-admin.php:804
1350
  #, fuzzy
1351
  msgid "There are no uploaded photos (yet)"
1352
  msgstr "Nedávno nahrané fotografie"
1353
 
1354
- #: wppa-non-admin.php:808
1355
  msgid "By:"
1356
  msgstr ""
1357
 
1358
- #: wppa-non-admin.php:811
1359
  msgid "No album defined (yet)"
1360
  msgstr ""
1361
 
1362
- #: wppa-non-admin.php:815
1363
  msgid "There are no photos (yet)"
1364
  msgstr ""
1365
 
1366
- #: wppa-non-admin.php:818
1367
  msgid "There are too many registered users in the system for this widget"
1368
  msgstr ""
1369
 
1370
- #: wppa-non-admin.php:819
1371
  #, fuzzy
1372
  msgid "Photos uploaded by"
1373
  msgstr "Foto upload"
1374
 
1375
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1376
  #, php-format
1377
  msgid "%d view"
1378
  msgid_plural "%d views"
1379
  msgstr[0] ""
1380
  msgstr[1] ""
1381
 
1382
- #: wppa-non-admin.php:825
1383
  #, fuzzy
1384
  msgid "There are no rated photos (yet)"
1385
  msgstr "Zobraziť najlepšie hodnotené fotografie"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:45+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:45+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: sk_SK\n"
116
  msgid "New"
117
  msgstr "Nové"
118
 
119
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
120
  msgid "Slideshow"
121
  msgstr "Slideshow"
122
 
531
  msgstr[0] "Moje hodnotenie"
532
  msgstr[1] "Moje hodnotenie"
533
 
534
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
535
  #, php-format
536
  msgid "%d vote"
537
  msgid_plural "%d votes"
538
  msgstr[0] ""
539
  msgstr[1] ""
540
 
541
+ #: wppa-boxes-html.php:3280
542
+ #, fuzzy, php-format
543
+ msgid "Rating: %4.2f."
544
  msgstr "Stredná hodnota: %4.2f."
545
 
546
  #: wppa-boxes-html.php:3288
548
  msgid "Photo %s not found."
549
  msgstr "Foto %s nebol nájdený."
550
 
551
+ #: wppa-boxes-html.php:3343
552
+ #, php-format
553
+ msgid "Mean value: %4.2f."
554
+ msgstr "Stredná hodnota: %4.2f."
555
+
556
  #: wppa-boxes-html.php:3695
557
  msgid "Refresh"
558
  msgstr "Obnoviť"
1220
  msgstr "Môžete nahrať po"
1221
 
1222
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1223
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1224
  msgid "Download"
1225
  msgstr "Stiahnúť"
1226
 
1232
  msgid "Press f for fullscreen."
1233
  msgstr "Stlačte tlačidlo f na celú obrazovku."
1234
 
1235
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1236
+ #, fuzzy
1237
+ msgid "Toggle fullscreen"
1238
+ msgstr "Stlačte tlačidlo f na celú obrazovku."
1239
+
1240
+ #: wppa-non-admin.php:423
1241
  msgid ""
1242
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1243
  "dismiss this notice."
1245
  "Skratky: f = ďalší režim; q,x = výstupu; p = predchádzajúca, n = vedľa, s = "
1246
  "štart/stop, d = zamietol tohto oznámenia."
1247
 
1248
+ #: wppa-non-admin.php:424
1249
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1250
  msgstr "Skratky: f = ďalší režim; q,x = výstupu; d = zamietol tohto oznámenia."
1251
 
1252
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1253
  msgid "Start"
1254
  msgstr "Štart"
1255
 
1256
+ #: wppa-non-admin.php:665
1257
  msgid "Stop"
1258
  msgstr "Zastaviť"
1259
 
1260
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1261
  msgid "Slower"
1262
  msgstr "Pomalší"
1263
 
1264
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1265
  msgid "Faster"
1266
  msgstr "Rýchlejšie"
1267
 
1268
+ #: wppa-non-admin.php:668
1269
  msgid "Photo"
1270
  msgstr "Foto"
1271
 
1272
+ #: wppa-non-admin.php:669
1273
  msgid "of"
1274
  msgstr "z"
1275
 
1276
+ #: wppa-non-admin.php:670
1277
  msgid "Previous photo"
1278
  msgstr "Předcházející fotka"
1279
 
1280
+ #: wppa-non-admin.php:671
1281
  msgid "Next photo"
1282
  msgstr "Další fotka"
1283
 
1284
+ #: wppa-non-admin.php:672
1285
  msgid "Prev."
1286
  msgstr "Späť"
1287
 
1288
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1289
  msgid "Next"
1290
  msgstr "Ďalší"
1291
 
1292
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1293
  #: wppa-slideshow.php:832
1294
  msgid "Average&nbsp;rating"
1295
  msgstr "Priemerné hodnotenie"
1296
 
1297
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1298
  #: wppa-slideshow.php:814
1299
  msgid "My&nbsp;rating"
1300
  msgstr "Moje hodnotenie"
1301
 
1302
+ #: wppa-non-admin.php:676
1303
  msgid "Avg."
1304
  msgstr "Priem."
1305
 
1306
+ #: wppa-non-admin.php:677
1307
  msgid "Mine"
1308
  msgstr "Moje"
1309
 
1310
+ #: wppa-non-admin.php:678
1311
  msgid "You marked this image as inappropriate."
1312
  msgstr "Označili ste tento obrázok ako nevhodné."
1313
 
1314
+ #: wppa-non-admin.php:681
1315
  msgid "Please enter your name"
1316
  msgstr "Napíš svoje meno prosím"
1317
 
1318
+ #: wppa-non-admin.php:682
1319
  msgid "Please enter a valid email address"
1320
  msgstr "Zadajte platnú e-mailovú adresu"
1321
 
1322
+ #: wppa-non-admin.php:683
1323
  msgid "Please enter a comment"
1324
  msgstr "Zadajte, prosím, komentár"
1325
 
1326
+ #: wppa-non-admin.php:717
1327
  msgid "Double click to start/stop slideshow running"
1328
  msgstr "Dvakrát kliknite na prezentáciu so systémom štart/stop"
1329
 
1330
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1331
  msgid "wrote"
1332
  msgstr "napísal"
1333
 
1334
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1335
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1336
  #, fuzzy
1337
  msgid "Photo not found"
1338
  msgstr "Foto %s nebol nájdený."
1339
 
1340
+ #: wppa-non-admin.php:796
1341
  #, fuzzy
1342
  msgid "There are no commented photos (yet)"
1343
  msgstr "Nedávno komentované fotografie"
1344
 
1345
+ #: wppa-non-admin.php:799
1346
  #, fuzzy
1347
  msgid "View the featured photos"
1348
  msgstr "Zobraziť najlepšie hodnotené fotografie"
1349
 
1350
+ #: wppa-non-admin.php:801
1351
  msgid "There are no featured photos (yet)"
1352
  msgstr ""
1353
 
1354
+ #: wppa-non-admin.php:804
1355
  #, fuzzy
1356
  msgid "View the most recent uploaded photos"
1357
  msgstr "Zobraziť najlepšie hodnotené fotografie"
1358
 
1359
+ #: wppa-non-admin.php:806
1360
  #, fuzzy
1361
  msgid "There are no uploaded photos (yet)"
1362
  msgstr "Nedávno nahrané fotografie"
1363
 
1364
+ #: wppa-non-admin.php:810
1365
  msgid "By:"
1366
  msgstr ""
1367
 
1368
+ #: wppa-non-admin.php:813
1369
  msgid "No album defined (yet)"
1370
  msgstr ""
1371
 
1372
+ #: wppa-non-admin.php:817
1373
  msgid "There are no photos (yet)"
1374
  msgstr ""
1375
 
1376
+ #: wppa-non-admin.php:820
1377
  msgid "There are too many registered users in the system for this widget"
1378
  msgstr ""
1379
 
1380
+ #: wppa-non-admin.php:821
1381
  #, fuzzy
1382
  msgid "Photos uploaded by"
1383
  msgstr "Foto upload"
1384
 
1385
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1386
  #, php-format
1387
  msgid "%d view"
1388
  msgid_plural "%d views"
1389
  msgstr[0] ""
1390
  msgstr[1] ""
1391
 
1392
+ #: wppa-non-admin.php:827
1393
  #, fuzzy
1394
  msgid "There are no rated photos (yet)"
1395
  msgstr "Zobraziť najlepšie hodnotené fotografie"
languages/wp-photo-album-plus-tr_TR.mo CHANGED
Binary file
languages/wp-photo-album-plus-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:10+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:05+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: tr_TR\n"
@@ -113,7 +113,7 @@ msgstr "Yeni!"
113
  msgid "New"
114
  msgstr "Yeni"
115
 
116
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
117
  msgid "Slideshow"
118
  msgstr "Slayt Gösterisi"
119
 
@@ -529,16 +529,16 @@ msgid_plural "%d max ratings"
529
  msgstr[0] "Benim oylaması:"
530
  msgstr[1] "Benim oylaması:"
531
 
532
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
- #, php-format
541
- msgid "Mean value: %4.2f."
542
  msgstr "Değer anlamı: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
@@ -546,6 +546,11 @@ msgstr "Değer anlamı: %4.2f."
546
  msgid "Photo %s not found."
547
  msgstr "Fotoğraf %s bulunamadı."
548
 
 
 
 
 
 
549
  #: wppa-boxes-html.php:3695
550
  msgid "Refresh"
551
  msgstr "Yenile"
@@ -1215,7 +1220,7 @@ msgid "You can upload after"
1215
  msgstr "Yüklemenize şu kadar kaldı:"
1216
 
1217
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1218
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1219
  msgid "Download"
1220
  msgstr "Karşıdan Yükle"
1221
 
@@ -1227,7 +1232,12 @@ msgstr "Yaklaştır"
1227
  msgid "Press f for fullscreen."
1228
  msgstr "F tam ekran için tuşuna basın."
1229
 
1230
- #: wppa-non-admin.php:422
 
 
 
 
 
1231
  msgid ""
1232
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1233
  "dismiss this notice."
@@ -1235,151 +1245,151 @@ msgstr ""
1235
  "Anahtarlar: f = sonraki modu; q,x = çıkış; p = önceki, n sonra s = Başlat/"
1236
  "Durdur, d = = bu bildirimi görevden."
1237
 
1238
- #: wppa-non-admin.php:423
1239
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1240
  msgstr "Anahtarlar: f = sonraki modu; q,x = çıkış; d = bu bildirimi görevden."
1241
 
1242
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1243
  msgid "Start"
1244
  msgstr " "
1245
 
1246
- #: wppa-non-admin.php:663
1247
  msgid "Stop"
1248
  msgstr "Durdur"
1249
 
1250
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1251
  msgid "Slower"
1252
  msgstr "Daha yavaş"
1253
 
1254
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1255
  msgid "Faster"
1256
  msgstr "Daha hızlı"
1257
 
1258
- #: wppa-non-admin.php:666
1259
  msgid "Photo"
1260
  msgstr "Fotoğraf"
1261
 
1262
- #: wppa-non-admin.php:667
1263
  msgid "of"
1264
  msgstr "/"
1265
 
1266
- #: wppa-non-admin.php:668
1267
  msgid "Previous photo"
1268
  msgstr "Önceki fotoğraf"
1269
 
1270
- #: wppa-non-admin.php:669
1271
  msgid "Next photo"
1272
  msgstr "Sonraki fotoğraf"
1273
 
1274
- #: wppa-non-admin.php:670
1275
  msgid "Prev."
1276
  msgstr "Önceki"
1277
 
1278
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1279
  msgid "Next"
1280
  msgstr "Sonraki"
1281
 
1282
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1283
  #: wppa-slideshow.php:832
1284
  msgid "Average&nbsp;rating"
1285
  msgstr "Ortalama&nbsp;puan"
1286
 
1287
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1288
  #: wppa-slideshow.php:814
1289
  msgid "My&nbsp;rating"
1290
  msgstr "Benim&nbsp;puanlamam"
1291
 
1292
- #: wppa-non-admin.php:674
1293
  msgid "Avg."
1294
  msgstr "Ort."
1295
 
1296
- #: wppa-non-admin.php:675
1297
  msgid "Mine"
1298
  msgstr "Maden"
1299
 
1300
- #: wppa-non-admin.php:676
1301
  msgid "You marked this image as inappropriate."
1302
  msgstr "Sen uygunsuz olarak bu görseli kutladı."
1303
 
1304
- #: wppa-non-admin.php:679
1305
  msgid "Please enter your name"
1306
  msgstr "Lütfen isminizi girin"
1307
 
1308
- #: wppa-non-admin.php:680
1309
  msgid "Please enter a valid email address"
1310
  msgstr "Lütfen geçerli bir e-posta adresi girin"
1311
 
1312
- #: wppa-non-admin.php:681
1313
  msgid "Please enter a comment"
1314
  msgstr "Lütfen bir yorum girin"
1315
 
1316
- #: wppa-non-admin.php:715
1317
  msgid "Double click to start/stop slideshow running"
1318
  msgstr "Başlat/Durdur çalışan slayt gösterisi için çift tıklatın"
1319
 
1320
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1321
  msgid "wrote"
1322
  msgstr "yazdı"
1323
 
1324
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1325
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1326
  #, fuzzy
1327
  msgid "Photo not found"
1328
  msgstr "Fotoğraf %s bulunamadı."
1329
 
1330
- #: wppa-non-admin.php:794
1331
  #, fuzzy
1332
  msgid "There are no commented photos (yet)"
1333
  msgstr "En son yorum yapılan fotoğraflar"
1334
 
1335
- #: wppa-non-admin.php:797
1336
  #, fuzzy
1337
  msgid "View the featured photos"
1338
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
1339
 
1340
- #: wppa-non-admin.php:799
1341
  msgid "There are no featured photos (yet)"
1342
  msgstr ""
1343
 
1344
- #: wppa-non-admin.php:802
1345
  #, fuzzy
1346
  msgid "View the most recent uploaded photos"
1347
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
1348
 
1349
- #: wppa-non-admin.php:804
1350
  #, fuzzy
1351
  msgid "There are no uploaded photos (yet)"
1352
  msgstr "En son yüklenen fotoğraflar"
1353
 
1354
- #: wppa-non-admin.php:808
1355
  msgid "By:"
1356
  msgstr ""
1357
 
1358
- #: wppa-non-admin.php:811
1359
  msgid "No album defined (yet)"
1360
  msgstr ""
1361
 
1362
- #: wppa-non-admin.php:815
1363
  msgid "There are no photos (yet)"
1364
  msgstr ""
1365
 
1366
- #: wppa-non-admin.php:818
1367
  msgid "There are too many registered users in the system for this widget"
1368
  msgstr ""
1369
 
1370
- #: wppa-non-admin.php:819
1371
  #, fuzzy
1372
  msgid "Photos uploaded by"
1373
  msgstr "Fotoğraf Yükle"
1374
 
1375
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1376
  #, php-format
1377
  msgid "%d view"
1378
  msgid_plural "%d views"
1379
  msgstr[0] ""
1380
  msgstr[1] ""
1381
 
1382
- #: wppa-non-admin.php:825
1383
  #, fuzzy
1384
  msgid "There are no rated photos (yet)"
1385
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
@@ -1551,3 +1561,87 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1551
  #. Author URI of the plugin/theme
1552
  msgid "http://wppa.opajaap.nl/"
1553
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:45+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:45+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: tr_TR\n"
113
  msgid "New"
114
  msgstr "Yeni"
115
 
116
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
117
  msgid "Slideshow"
118
  msgstr "Slayt Gösterisi"
119
 
529
  msgstr[0] "Benim oylaması:"
530
  msgstr[1] "Benim oylaması:"
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
+ #: wppa-boxes-html.php:3280
540
+ #, fuzzy, php-format
541
+ msgid "Rating: %4.2f."
542
  msgstr "Değer anlamı: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
546
  msgid "Photo %s not found."
547
  msgstr "Fotoğraf %s bulunamadı."
548
 
549
+ #: wppa-boxes-html.php:3343
550
+ #, php-format
551
+ msgid "Mean value: %4.2f."
552
+ msgstr "Değer anlamı: %4.2f."
553
+
554
  #: wppa-boxes-html.php:3695
555
  msgid "Refresh"
556
  msgstr "Yenile"
1220
  msgstr "Yüklemenize şu kadar kaldı:"
1221
 
1222
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1223
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1224
  msgid "Download"
1225
  msgstr "Karşıdan Yükle"
1226
 
1232
  msgid "Press f for fullscreen."
1233
  msgstr "F tam ekran için tuşuna basın."
1234
 
1235
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1236
+ #, fuzzy
1237
+ msgid "Toggle fullscreen"
1238
+ msgstr "F tam ekran için tuşuna basın."
1239
+
1240
+ #: wppa-non-admin.php:423
1241
  msgid ""
1242
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1243
  "dismiss this notice."
1245
  "Anahtarlar: f = sonraki modu; q,x = çıkış; p = önceki, n sonra s = Başlat/"
1246
  "Durdur, d = = bu bildirimi görevden."
1247
 
1248
+ #: wppa-non-admin.php:424
1249
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1250
  msgstr "Anahtarlar: f = sonraki modu; q,x = çıkış; d = bu bildirimi görevden."
1251
 
1252
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1253
  msgid "Start"
1254
  msgstr " "
1255
 
1256
+ #: wppa-non-admin.php:665
1257
  msgid "Stop"
1258
  msgstr "Durdur"
1259
 
1260
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1261
  msgid "Slower"
1262
  msgstr "Daha yavaş"
1263
 
1264
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1265
  msgid "Faster"
1266
  msgstr "Daha hızlı"
1267
 
1268
+ #: wppa-non-admin.php:668
1269
  msgid "Photo"
1270
  msgstr "Fotoğraf"
1271
 
1272
+ #: wppa-non-admin.php:669
1273
  msgid "of"
1274
  msgstr "/"
1275
 
1276
+ #: wppa-non-admin.php:670
1277
  msgid "Previous photo"
1278
  msgstr "Önceki fotoğraf"
1279
 
1280
+ #: wppa-non-admin.php:671
1281
  msgid "Next photo"
1282
  msgstr "Sonraki fotoğraf"
1283
 
1284
+ #: wppa-non-admin.php:672
1285
  msgid "Prev."
1286
  msgstr "Önceki"
1287
 
1288
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1289
  msgid "Next"
1290
  msgstr "Sonraki"
1291
 
1292
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1293
  #: wppa-slideshow.php:832
1294
  msgid "Average&nbsp;rating"
1295
  msgstr "Ortalama&nbsp;puan"
1296
 
1297
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1298
  #: wppa-slideshow.php:814
1299
  msgid "My&nbsp;rating"
1300
  msgstr "Benim&nbsp;puanlamam"
1301
 
1302
+ #: wppa-non-admin.php:676
1303
  msgid "Avg."
1304
  msgstr "Ort."
1305
 
1306
+ #: wppa-non-admin.php:677
1307
  msgid "Mine"
1308
  msgstr "Maden"
1309
 
1310
+ #: wppa-non-admin.php:678
1311
  msgid "You marked this image as inappropriate."
1312
  msgstr "Sen uygunsuz olarak bu görseli kutladı."
1313
 
1314
+ #: wppa-non-admin.php:681
1315
  msgid "Please enter your name"
1316
  msgstr "Lütfen isminizi girin"
1317
 
1318
+ #: wppa-non-admin.php:682
1319
  msgid "Please enter a valid email address"
1320
  msgstr "Lütfen geçerli bir e-posta adresi girin"
1321
 
1322
+ #: wppa-non-admin.php:683
1323
  msgid "Please enter a comment"
1324
  msgstr "Lütfen bir yorum girin"
1325
 
1326
+ #: wppa-non-admin.php:717
1327
  msgid "Double click to start/stop slideshow running"
1328
  msgstr "Başlat/Durdur çalışan slayt gösterisi için çift tıklatın"
1329
 
1330
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1331
  msgid "wrote"
1332
  msgstr "yazdı"
1333
 
1334
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1335
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1336
  #, fuzzy
1337
  msgid "Photo not found"
1338
  msgstr "Fotoğraf %s bulunamadı."
1339
 
1340
+ #: wppa-non-admin.php:796
1341
  #, fuzzy
1342
  msgid "There are no commented photos (yet)"
1343
  msgstr "En son yorum yapılan fotoğraflar"
1344
 
1345
+ #: wppa-non-admin.php:799
1346
  #, fuzzy
1347
  msgid "View the featured photos"
1348
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
1349
 
1350
+ #: wppa-non-admin.php:801
1351
  msgid "There are no featured photos (yet)"
1352
  msgstr ""
1353
 
1354
+ #: wppa-non-admin.php:804
1355
  #, fuzzy
1356
  msgid "View the most recent uploaded photos"
1357
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
1358
 
1359
+ #: wppa-non-admin.php:806
1360
  #, fuzzy
1361
  msgid "There are no uploaded photos (yet)"
1362
  msgstr "En son yüklenen fotoğraflar"
1363
 
1364
+ #: wppa-non-admin.php:810
1365
  msgid "By:"
1366
  msgstr ""
1367
 
1368
+ #: wppa-non-admin.php:813
1369
  msgid "No album defined (yet)"
1370
  msgstr ""
1371
 
1372
+ #: wppa-non-admin.php:817
1373
  msgid "There are no photos (yet)"
1374
  msgstr ""
1375
 
1376
+ #: wppa-non-admin.php:820
1377
  msgid "There are too many registered users in the system for this widget"
1378
  msgstr ""
1379
 
1380
+ #: wppa-non-admin.php:821
1381
  #, fuzzy
1382
  msgid "Photos uploaded by"
1383
  msgstr "Fotoğraf Yükle"
1384
 
1385
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1386
  #, php-format
1387
  msgid "%d view"
1388
  msgid_plural "%d views"
1389
  msgstr[0] ""
1390
  msgstr[1] ""
1391
 
1392
+ #: wppa-non-admin.php:827
1393
  #, fuzzy
1394
  msgid "There are no rated photos (yet)"
1395
  msgstr "En yüksek puan alan fotoğrafları görüntüle"
1561
  #. Author URI of the plugin/theme
1562
  msgid "http://wppa.opajaap.nl/"
1563
  msgstr "http://wppa.opajaap.nl/"
1564
+
1565
+ #, fuzzy
1566
+ #~ msgid "%d Comment"
1567
+ #~ msgid_plural "%d Comments"
1568
+ #~ msgstr[0] "%d yorumlar"
1569
+ #~ msgstr[1] "%d yorumlar"
1570
+
1571
+ #, fuzzy
1572
+ #~ msgid "%d View"
1573
+ #~ msgid_plural "%d Views"
1574
+ #~ msgstr[0] "Toplam"
1575
+ #~ msgstr[1] "Toplam"
1576
+
1577
+ #~ msgid "No dislikes"
1578
+ #~ msgstr "Hiç hoşlanmadığı şeyleri"
1579
+
1580
+ #~ msgid "dislikes"
1581
+ #~ msgstr "Beğenilmeyenler"
1582
+
1583
+ #~ msgid "albums"
1584
+ #~ msgstr "albüm var."
1585
+
1586
+ #~ msgid "photo"
1587
+ #~ msgstr "fotoğraf var."
1588
+
1589
+ #~ msgid "photos"
1590
+ #~ msgstr "fotoğraf var."
1591
+
1592
+ #~ msgid "Categories:"
1593
+ #~ msgstr "Kategoriler:"
1594
+
1595
+ #~ msgid ""
1596
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1597
+ #~ "multiple file upload"
1598
+ #~ msgstr ""
1599
+ #~ "Tarayıcınız HTML-5 çoklu dosya yüklemeyi destekliyorsa bir kerede en "
1600
+ #~ "fazla %s fotoğraf yükleyebilirsiniz"
1601
+
1602
+ #~ msgid "Max ratings: %s."
1603
+ #~ msgstr "Azami derecelendirme:%s."
1604
+
1605
+ #~ msgid "Votes: %s."
1606
+ #~ msgstr "Oy:%s."
1607
+
1608
+ #~ msgid "Home"
1609
+ #~ msgstr "Anasayfa"
1610
+
1611
+ #~ msgid "seconds"
1612
+ #~ msgstr "saniye"
1613
+
1614
+ #~ msgid "minutes"
1615
+ #~ msgstr "dakika"
1616
+
1617
+ #~ msgid "hours"
1618
+ #~ msgstr "saat"
1619
+
1620
+ #~ msgid "days"
1621
+ #~ msgstr "gün"
1622
+
1623
+ #~ msgid "weeks"
1624
+ #~ msgstr "hafta"
1625
+
1626
+ #~ msgid "months"
1627
+ #~ msgstr "ay"
1628
+
1629
+ #~ msgid "years"
1630
+ #~ msgstr "yıl"
1631
+
1632
+ #~ msgid "1 Comment"
1633
+ #~ msgid_plural "%s Comments"
1634
+ #~ msgstr[0] "1 Yorum"
1635
+ #~ msgstr[1] "%s Yorum"
1636
+
1637
+ #~ msgid "Download:"
1638
+ #~ msgstr "İndirme:"
1639
+
1640
+ #~ msgid "There are"
1641
+ #~ msgstr "Burada"
1642
+
1643
+ #~ msgid "Comments:"
1644
+ #~ msgstr "Yorum:"
1645
+
1646
+ #~ msgid "Views:"
1647
+ #~ msgstr "Görüntülemeler:"
languages/wp-photo-album-plus-uk_UA.mo CHANGED
Binary file
languages/wp-photo-album-plus-uk_UA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:10+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:06+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: uk_UA\n"
@@ -112,7 +112,7 @@ msgstr "Нове!"
112
  msgid "New"
113
  msgstr "Новий"
114
 
115
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
116
  msgid "Slideshow"
117
  msgstr "Слайд-шоу"
118
 
@@ -529,16 +529,16 @@ msgid_plural "%d max ratings"
529
  msgstr[0] "Мій рейтинг:"
530
  msgstr[1] "Мій рейтинг:"
531
 
532
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
540
- #, php-format
541
- msgid "Mean value: %4.2f."
542
  msgstr "Середнє значення: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
@@ -546,6 +546,11 @@ msgstr "Середнє значення: %4.2f."
546
  msgid "Photo %s not found."
547
  msgstr "Фото %s не знайдений."
548
 
 
 
 
 
 
549
  #: wppa-boxes-html.php:3695
550
  msgid "Refresh"
551
  msgstr "Оновити"
@@ -1221,7 +1226,7 @@ msgid "You can upload after"
1221
  msgstr "Ви можете завантажити після"
1222
 
1223
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1224
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1225
  msgid "Download"
1226
  msgstr "Завантажити"
1227
 
@@ -1233,7 +1238,12 @@ msgstr "Збільшення"
1233
  msgid "Press f for fullscreen."
1234
  msgstr "Натисніть клавішу f для повноекранний режим."
1235
 
1236
- #: wppa-non-admin.php:422
 
 
 
 
 
1237
  msgid ""
1238
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1239
  "dismiss this notice."
@@ -1241,152 +1251,152 @@ msgstr ""
1241
  "Ключі: f = наступний режим; q,х = вихід; р = попередня, п = Далі, s = "
1242
  "старт / стоп, d = звільнити цього повідомлення."
1243
 
1244
- #: wppa-non-admin.php:423
1245
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1246
  msgstr ""
1247
  "Ключі: f = наступного режим; q,х = вихід; d = відхилити це повідомлення."
1248
 
1249
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1250
  msgid "Start"
1251
  msgstr "Початок"
1252
 
1253
- #: wppa-non-admin.php:663
1254
  msgid "Stop"
1255
  msgstr "Зупинити"
1256
 
1257
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1258
  msgid "Slower"
1259
  msgstr "Повільніше"
1260
 
1261
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1262
  msgid "Faster"
1263
  msgstr "Швидше"
1264
 
1265
- #: wppa-non-admin.php:666
1266
  msgid "Photo"
1267
  msgstr "Фото"
1268
 
1269
- #: wppa-non-admin.php:667
1270
  msgid "of"
1271
  msgstr "з"
1272
 
1273
- #: wppa-non-admin.php:668
1274
  msgid "Previous photo"
1275
  msgstr "Попереднє фото"
1276
 
1277
- #: wppa-non-admin.php:669
1278
  msgid "Next photo"
1279
  msgstr "Наступну фотографію"
1280
 
1281
- #: wppa-non-admin.php:670
1282
  msgid "Prev."
1283
  msgstr "Попередній"
1284
 
1285
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1286
  msgid "Next"
1287
  msgstr "Наступний"
1288
 
1289
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1290
  #: wppa-slideshow.php:832
1291
  msgid "Average&nbsp;rating"
1292
  msgstr "Середній рейтинг"
1293
 
1294
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1295
  #: wppa-slideshow.php:814
1296
  msgid "My&nbsp;rating"
1297
  msgstr "Мій рейтинг"
1298
 
1299
- #: wppa-non-admin.php:674
1300
  msgid "Avg."
1301
  msgstr "Avg."
1302
 
1303
- #: wppa-non-admin.php:675
1304
  msgid "Mine"
1305
  msgstr "Міна"
1306
 
1307
- #: wppa-non-admin.php:676
1308
  msgid "You marked this image as inappropriate."
1309
  msgstr "Ви позначили цей образ як неприйнятне."
1310
 
1311
- #: wppa-non-admin.php:679
1312
  msgid "Please enter your name"
1313
  msgstr "Будь ласка, введіть ваше ім'я"
1314
 
1315
- #: wppa-non-admin.php:680
1316
  msgid "Please enter a valid email address"
1317
  msgstr "Будь ласка, введіть дійсну адресу електронної пошти"
1318
 
1319
- #: wppa-non-admin.php:681
1320
  msgid "Please enter a comment"
1321
  msgstr "Будь ласка, введіть коментар"
1322
 
1323
- #: wppa-non-admin.php:715
1324
  msgid "Double click to start/stop slideshow running"
1325
  msgstr "Двічі клацніть для запуску/зупинки слайд-шоу під керуванням"
1326
 
1327
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1328
  msgid "wrote"
1329
  msgstr "писав"
1330
 
1331
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1332
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1333
  #, fuzzy
1334
  msgid "Photo not found"
1335
  msgstr "Фото %s не знайдений."
1336
 
1337
- #: wppa-non-admin.php:794
1338
  #, fuzzy
1339
  msgid "There are no commented photos (yet)"
1340
  msgstr "Нещодавно коментовані фото"
1341
 
1342
- #: wppa-non-admin.php:797
1343
  #, fuzzy
1344
  msgid "View the featured photos"
1345
  msgstr "Перегляд Топ Фото"
1346
 
1347
- #: wppa-non-admin.php:799
1348
  msgid "There are no featured photos (yet)"
1349
  msgstr ""
1350
 
1351
- #: wppa-non-admin.php:802
1352
  #, fuzzy
1353
  msgid "View the most recent uploaded photos"
1354
  msgstr "Перегляд Топ Фото"
1355
 
1356
- #: wppa-non-admin.php:804
1357
  #, fuzzy
1358
  msgid "There are no uploaded photos (yet)"
1359
  msgstr "Нещодавно додані фото"
1360
 
1361
- #: wppa-non-admin.php:808
1362
  msgid "By:"
1363
  msgstr ""
1364
 
1365
- #: wppa-non-admin.php:811
1366
  msgid "No album defined (yet)"
1367
  msgstr ""
1368
 
1369
- #: wppa-non-admin.php:815
1370
  msgid "There are no photos (yet)"
1371
  msgstr ""
1372
 
1373
- #: wppa-non-admin.php:818
1374
  msgid "There are too many registered users in the system for this widget"
1375
  msgstr ""
1376
 
1377
- #: wppa-non-admin.php:819
1378
  #, fuzzy
1379
  msgid "Photos uploaded by"
1380
  msgstr "Фото Завантажити"
1381
 
1382
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1383
  #, php-format
1384
  msgid "%d view"
1385
  msgid_plural "%d views"
1386
  msgstr[0] ""
1387
  msgstr[1] ""
1388
 
1389
- #: wppa-non-admin.php:825
1390
  #, fuzzy
1391
  msgid "There are no rated photos (yet)"
1392
  msgstr "Перегляд Топ Фото"
@@ -1557,3 +1567,87 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1557
  #. Author URI of the plugin/theme
1558
  msgid "http://wppa.opajaap.nl/"
1559
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:46+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: uk_UA\n"
112
  msgid "New"
113
  msgstr "Новий"
114
 
115
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
116
  msgid "Slideshow"
117
  msgstr "Слайд-шоу"
118
 
529
  msgstr[0] "Мій рейтинг:"
530
  msgstr[1] "Мій рейтинг:"
531
 
532
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
533
  #, php-format
534
  msgid "%d vote"
535
  msgid_plural "%d votes"
536
  msgstr[0] ""
537
  msgstr[1] ""
538
 
539
+ #: wppa-boxes-html.php:3280
540
+ #, fuzzy, php-format
541
+ msgid "Rating: %4.2f."
542
  msgstr "Середнє значення: %4.2f."
543
 
544
  #: wppa-boxes-html.php:3288
546
  msgid "Photo %s not found."
547
  msgstr "Фото %s не знайдений."
548
 
549
+ #: wppa-boxes-html.php:3343
550
+ #, php-format
551
+ msgid "Mean value: %4.2f."
552
+ msgstr "Середнє значення: %4.2f."
553
+
554
  #: wppa-boxes-html.php:3695
555
  msgid "Refresh"
556
  msgstr "Оновити"
1226
  msgstr "Ви можете завантажити після"
1227
 
1228
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1229
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1230
  msgid "Download"
1231
  msgstr "Завантажити"
1232
 
1238
  msgid "Press f for fullscreen."
1239
  msgstr "Натисніть клавішу f для повноекранний режим."
1240
 
1241
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1242
+ #, fuzzy
1243
+ msgid "Toggle fullscreen"
1244
+ msgstr "Натисніть клавішу f для повноекранний режим."
1245
+
1246
+ #: wppa-non-admin.php:423
1247
  msgid ""
1248
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1249
  "dismiss this notice."
1251
  "Ключі: f = наступний режим; q,х = вихід; р = попередня, п = Далі, s = "
1252
  "старт / стоп, d = звільнити цього повідомлення."
1253
 
1254
+ #: wppa-non-admin.php:424
1255
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1256
  msgstr ""
1257
  "Ключі: f = наступного режим; q,х = вихід; d = відхилити це повідомлення."
1258
 
1259
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1260
  msgid "Start"
1261
  msgstr "Початок"
1262
 
1263
+ #: wppa-non-admin.php:665
1264
  msgid "Stop"
1265
  msgstr "Зупинити"
1266
 
1267
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1268
  msgid "Slower"
1269
  msgstr "Повільніше"
1270
 
1271
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1272
  msgid "Faster"
1273
  msgstr "Швидше"
1274
 
1275
+ #: wppa-non-admin.php:668
1276
  msgid "Photo"
1277
  msgstr "Фото"
1278
 
1279
+ #: wppa-non-admin.php:669
1280
  msgid "of"
1281
  msgstr "з"
1282
 
1283
+ #: wppa-non-admin.php:670
1284
  msgid "Previous photo"
1285
  msgstr "Попереднє фото"
1286
 
1287
+ #: wppa-non-admin.php:671
1288
  msgid "Next photo"
1289
  msgstr "Наступну фотографію"
1290
 
1291
+ #: wppa-non-admin.php:672
1292
  msgid "Prev."
1293
  msgstr "Попередній"
1294
 
1295
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1296
  msgid "Next"
1297
  msgstr "Наступний"
1298
 
1299
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1300
  #: wppa-slideshow.php:832
1301
  msgid "Average&nbsp;rating"
1302
  msgstr "Середній рейтинг"
1303
 
1304
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1305
  #: wppa-slideshow.php:814
1306
  msgid "My&nbsp;rating"
1307
  msgstr "Мій рейтинг"
1308
 
1309
+ #: wppa-non-admin.php:676
1310
  msgid "Avg."
1311
  msgstr "Avg."
1312
 
1313
+ #: wppa-non-admin.php:677
1314
  msgid "Mine"
1315
  msgstr "Міна"
1316
 
1317
+ #: wppa-non-admin.php:678
1318
  msgid "You marked this image as inappropriate."
1319
  msgstr "Ви позначили цей образ як неприйнятне."
1320
 
1321
+ #: wppa-non-admin.php:681
1322
  msgid "Please enter your name"
1323
  msgstr "Будь ласка, введіть ваше ім'я"
1324
 
1325
+ #: wppa-non-admin.php:682
1326
  msgid "Please enter a valid email address"
1327
  msgstr "Будь ласка, введіть дійсну адресу електронної пошти"
1328
 
1329
+ #: wppa-non-admin.php:683
1330
  msgid "Please enter a comment"
1331
  msgstr "Будь ласка, введіть коментар"
1332
 
1333
+ #: wppa-non-admin.php:717
1334
  msgid "Double click to start/stop slideshow running"
1335
  msgstr "Двічі клацніть для запуску/зупинки слайд-шоу під керуванням"
1336
 
1337
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1338
  msgid "wrote"
1339
  msgstr "писав"
1340
 
1341
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1342
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1343
  #, fuzzy
1344
  msgid "Photo not found"
1345
  msgstr "Фото %s не знайдений."
1346
 
1347
+ #: wppa-non-admin.php:796
1348
  #, fuzzy
1349
  msgid "There are no commented photos (yet)"
1350
  msgstr "Нещодавно коментовані фото"
1351
 
1352
+ #: wppa-non-admin.php:799
1353
  #, fuzzy
1354
  msgid "View the featured photos"
1355
  msgstr "Перегляд Топ Фото"
1356
 
1357
+ #: wppa-non-admin.php:801
1358
  msgid "There are no featured photos (yet)"
1359
  msgstr ""
1360
 
1361
+ #: wppa-non-admin.php:804
1362
  #, fuzzy
1363
  msgid "View the most recent uploaded photos"
1364
  msgstr "Перегляд Топ Фото"
1365
 
1366
+ #: wppa-non-admin.php:806
1367
  #, fuzzy
1368
  msgid "There are no uploaded photos (yet)"
1369
  msgstr "Нещодавно додані фото"
1370
 
1371
+ #: wppa-non-admin.php:810
1372
  msgid "By:"
1373
  msgstr ""
1374
 
1375
+ #: wppa-non-admin.php:813
1376
  msgid "No album defined (yet)"
1377
  msgstr ""
1378
 
1379
+ #: wppa-non-admin.php:817
1380
  msgid "There are no photos (yet)"
1381
  msgstr ""
1382
 
1383
+ #: wppa-non-admin.php:820
1384
  msgid "There are too many registered users in the system for this widget"
1385
  msgstr ""
1386
 
1387
+ #: wppa-non-admin.php:821
1388
  #, fuzzy
1389
  msgid "Photos uploaded by"
1390
  msgstr "Фото Завантажити"
1391
 
1392
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1393
  #, php-format
1394
  msgid "%d view"
1395
  msgid_plural "%d views"
1396
  msgstr[0] ""
1397
  msgstr[1] ""
1398
 
1399
+ #: wppa-non-admin.php:827
1400
  #, fuzzy
1401
  msgid "There are no rated photos (yet)"
1402
  msgstr "Перегляд Топ Фото"
1567
  #. Author URI of the plugin/theme
1568
  msgid "http://wppa.opajaap.nl/"
1569
  msgstr "http://wppa.opajaap.nl/"
1570
+
1571
+ #, fuzzy
1572
+ #~ msgid "%d Comment"
1573
+ #~ msgid_plural "%d Comments"
1574
+ #~ msgstr[0] " %d коментарі"
1575
+ #~ msgstr[1] " %d коментарі"
1576
+
1577
+ #, fuzzy
1578
+ #~ msgid "%d View"
1579
+ #~ msgid_plural "%d Views"
1580
+ #~ msgstr[0] "Вид"
1581
+ #~ msgstr[1] "Вид"
1582
+
1583
+ #~ msgid "No dislikes"
1584
+ #~ msgstr "Немає не любить"
1585
+
1586
+ #~ msgid "dislikes"
1587
+ #~ msgstr "Не сподобалося"
1588
+
1589
+ #~ msgid "albums"
1590
+ #~ msgstr "Фотоальбоми"
1591
+
1592
+ #~ msgid "photo"
1593
+ #~ msgstr "фото"
1594
+
1595
+ #~ msgid "photos"
1596
+ #~ msgstr "фото"
1597
+
1598
+ #~ msgid "Categories:"
1599
+ #~ msgstr "Категорія"
1600
+
1601
+ #~ msgid ""
1602
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1603
+ #~ "multiple file upload"
1604
+ #~ msgstr ""
1605
+ #~ "Ви можете завантажити до %s фотографій одночасно, якщо ваш браузер "
1606
+ #~ "підтримує HTML-5 множинну завантаження файлів"
1607
+
1608
+ #~ msgid "Max ratings: %s."
1609
+ #~ msgstr "Максимальна кількість оцінок: %s."
1610
+
1611
+ #~ msgid "Votes: %s."
1612
+ #~ msgstr "Голосів: %s."
1613
+
1614
+ #~ msgid "Home"
1615
+ #~ msgstr "Додому"
1616
+
1617
+ #~ msgid "seconds"
1618
+ #~ msgstr "секунди"
1619
+
1620
+ #~ msgid "minutes"
1621
+ #~ msgstr "хвилин"
1622
+
1623
+ #~ msgid "hours"
1624
+ #~ msgstr "годин"
1625
+
1626
+ #~ msgid "days"
1627
+ #~ msgstr "днів"
1628
+
1629
+ #~ msgid "weeks"
1630
+ #~ msgstr "тижні"
1631
+
1632
+ #~ msgid "months"
1633
+ #~ msgstr "місяців"
1634
+
1635
+ #~ msgid "years"
1636
+ #~ msgstr "років"
1637
+
1638
+ #~ msgid "1 Comment"
1639
+ #~ msgid_plural "%s Comments"
1640
+ #~ msgstr[0] "1 коментар"
1641
+ #~ msgstr[1] "%s коментар"
1642
+
1643
+ #~ msgid "Download:"
1644
+ #~ msgstr "Звантаження:"
1645
+
1646
+ #~ msgid "There are"
1647
+ #~ msgstr "Є"
1648
+
1649
+ #~ msgid "Comments:"
1650
+ #~ msgstr "Коментарі:"
1651
+
1652
+ #~ msgid "Views:"
1653
+ #~ msgstr "Переглядів:"
languages/wp-photo-album-plus-zh_CN.mo CHANGED
Binary file
languages/wp-photo-album-plus-zh_CN.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:11+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:04+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: zh_CN\n"
@@ -111,7 +111,7 @@ msgstr "新!"
111
  msgid "New"
112
  msgstr "新建"
113
 
114
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
115
  msgid "Slideshow"
116
  msgstr "幻灯片"
117
 
@@ -522,16 +522,16 @@ msgid_plural "%d max ratings"
522
  msgstr[0] "我的评价:"
523
  msgstr[1] "我的评价:"
524
 
525
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
526
  #, php-format
527
  msgid "%d vote"
528
  msgid_plural "%d votes"
529
  msgstr[0] ""
530
  msgstr[1] ""
531
 
532
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
533
- #, php-format
534
- msgid "Mean value: %4.2f."
535
  msgstr "平均值:%4.2f。"
536
 
537
  #: wppa-boxes-html.php:3288
@@ -539,6 +539,11 @@ msgstr "平均值:%4.2f。"
539
  msgid "Photo %s not found."
540
  msgstr "照片%s未找到。"
541
 
 
 
 
 
 
542
  #: wppa-boxes-html.php:3695
543
  msgid "Refresh"
544
  msgstr "刷新"
@@ -1208,7 +1213,7 @@ msgid "You can upload after"
1208
  msgstr "您可以上传后,"
1209
 
1210
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1211
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1212
  msgid "Download"
1213
  msgstr "下载"
1214
 
@@ -1220,7 +1225,12 @@ msgstr "放大"
1220
  msgid "Press f for fullscreen."
1221
  msgstr "全屏显示的,请按 f。"
1222
 
1223
- #: wppa-non-admin.php:422
 
 
 
 
 
1224
  msgid ""
1225
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1226
  "dismiss this notice."
@@ -1228,151 +1238,151 @@ msgstr ""
1228
  "键: f = 下一模式;q,x = 退出;p = 以前,n = 下一步,s = 启动/停止,d = 驳回此"
1229
  "通知。"
1230
 
1231
- #: wppa-non-admin.php:423
1232
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1233
  msgstr "键: f = 下一模式;q,x = 退出;d = 驳回此通知。"
1234
 
1235
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1236
  msgid "Start"
1237
  msgstr "开始"
1238
 
1239
- #: wppa-non-admin.php:663
1240
  msgid "Stop"
1241
  msgstr "停止"
1242
 
1243
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1244
  msgid "Slower"
1245
  msgstr "较慢"
1246
 
1247
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1248
  msgid "Faster"
1249
  msgstr "较快"
1250
 
1251
- #: wppa-non-admin.php:666
1252
  msgid "Photo"
1253
  msgstr "照片"
1254
 
1255
- #: wppa-non-admin.php:667
1256
  msgid "of"
1257
  msgstr "共"
1258
 
1259
- #: wppa-non-admin.php:668
1260
  msgid "Previous photo"
1261
  msgstr "以前的照片"
1262
 
1263
- #: wppa-non-admin.php:669
1264
  msgid "Next photo"
1265
  msgstr "下一张照片"
1266
 
1267
- #: wppa-non-admin.php:670
1268
  msgid "Prev."
1269
  msgstr "上一条."
1270
 
1271
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1272
  msgid "Next"
1273
  msgstr "下一页"
1274
 
1275
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1276
  #: wppa-slideshow.php:832
1277
  msgid "Average&nbsp;rating"
1278
  msgstr "平均评级"
1279
 
1280
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1281
  #: wppa-slideshow.php:814
1282
  msgid "My&nbsp;rating"
1283
  msgstr "我的评分"
1284
 
1285
- #: wppa-non-admin.php:674
1286
  msgid "Avg."
1287
  msgstr "平均"
1288
 
1289
- #: wppa-non-admin.php:675
1290
  msgid "Mine"
1291
  msgstr "挖"
1292
 
1293
- #: wppa-non-admin.php:676
1294
  msgid "You marked this image as inappropriate."
1295
  msgstr "您标记这是不恰当的图像。"
1296
 
1297
- #: wppa-non-admin.php:679
1298
  msgid "Please enter your name"
1299
  msgstr "填写你的名字"
1300
 
1301
- #: wppa-non-admin.php:680
1302
  msgid "Please enter a valid email address"
1303
  msgstr "请输入一个有效的email地址"
1304
 
1305
- #: wppa-non-admin.php:681
1306
  msgid "Please enter a comment"
1307
  msgstr "请输入注释"
1308
 
1309
- #: wppa-non-admin.php:715
1310
  msgid "Double click to start/stop slideshow running"
1311
  msgstr "双击启动/停止运行的幻灯片放映"
1312
 
1313
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1314
  msgid "wrote"
1315
  msgstr "寫作"
1316
 
1317
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1318
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1319
  #, fuzzy
1320
  msgid "Photo not found"
1321
  msgstr "照片%s未找到。"
1322
 
1323
- #: wppa-non-admin.php:794
1324
  #, fuzzy
1325
  msgid "There are no commented photos (yet)"
1326
  msgstr "最近评论照片"
1327
 
1328
- #: wppa-non-admin.php:797
1329
  #, fuzzy
1330
  msgid "View the featured photos"
1331
  msgstr "看最精彩的照片"
1332
 
1333
- #: wppa-non-admin.php:799
1334
  msgid "There are no featured photos (yet)"
1335
  msgstr ""
1336
 
1337
- #: wppa-non-admin.php:802
1338
  #, fuzzy
1339
  msgid "View the most recent uploaded photos"
1340
  msgstr "看最精彩的照片"
1341
 
1342
- #: wppa-non-admin.php:804
1343
  #, fuzzy
1344
  msgid "There are no uploaded photos (yet)"
1345
  msgstr "最近上传的照片"
1346
 
1347
- #: wppa-non-admin.php:808
1348
  msgid "By:"
1349
  msgstr ""
1350
 
1351
- #: wppa-non-admin.php:811
1352
  msgid "No album defined (yet)"
1353
  msgstr ""
1354
 
1355
- #: wppa-non-admin.php:815
1356
  msgid "There are no photos (yet)"
1357
  msgstr ""
1358
 
1359
- #: wppa-non-admin.php:818
1360
  msgid "There are too many registered users in the system for this widget"
1361
  msgstr ""
1362
 
1363
- #: wppa-non-admin.php:819
1364
  #, fuzzy
1365
  msgid "Photos uploaded by"
1366
  msgstr "上传照片"
1367
 
1368
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1369
  #, php-format
1370
  msgid "%d view"
1371
  msgid_plural "%d views"
1372
  msgstr[0] ""
1373
  msgstr[1] ""
1374
 
1375
- #: wppa-non-admin.php:825
1376
  #, fuzzy
1377
  msgid "There are no rated photos (yet)"
1378
  msgstr "看最精彩的照片"
@@ -1539,3 +1549,85 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1539
  #. Author URI of the plugin/theme
1540
  msgid "http://wppa.opajaap.nl/"
1541
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:46+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:46+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: zh_CN\n"
111
  msgid "New"
112
  msgstr "新建"
113
 
114
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
115
  msgid "Slideshow"
116
  msgstr "幻灯片"
117
 
522
  msgstr[0] "我的评价:"
523
  msgstr[1] "我的评价:"
524
 
525
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
526
  #, php-format
527
  msgid "%d vote"
528
  msgid_plural "%d votes"
529
  msgstr[0] ""
530
  msgstr[1] ""
531
 
532
+ #: wppa-boxes-html.php:3280
533
+ #, fuzzy, php-format
534
+ msgid "Rating: %4.2f."
535
  msgstr "平均值:%4.2f。"
536
 
537
  #: wppa-boxes-html.php:3288
539
  msgid "Photo %s not found."
540
  msgstr "照片%s未找到。"
541
 
542
+ #: wppa-boxes-html.php:3343
543
+ #, php-format
544
+ msgid "Mean value: %4.2f."
545
+ msgstr "平均值:%4.2f。"
546
+
547
  #: wppa-boxes-html.php:3695
548
  msgid "Refresh"
549
  msgstr "刷新"
1213
  msgstr "您可以上传后,"
1214
 
1215
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1216
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1217
  msgid "Download"
1218
  msgstr "下载"
1219
 
1225
  msgid "Press f for fullscreen."
1226
  msgstr "全屏显示的,请按 f。"
1227
 
1228
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1229
+ #, fuzzy
1230
+ msgid "Toggle fullscreen"
1231
+ msgstr "全屏显示的,请按 f。"
1232
+
1233
+ #: wppa-non-admin.php:423
1234
  msgid ""
1235
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1236
  "dismiss this notice."
1238
  "键: f = 下一模式;q,x = 退出;p = 以前,n = 下一步,s = 启动/停止,d = 驳回此"
1239
  "通知。"
1240
 
1241
+ #: wppa-non-admin.php:424
1242
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1243
  msgstr "键: f = 下一模式;q,x = 退出;d = 驳回此通知。"
1244
 
1245
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1246
  msgid "Start"
1247
  msgstr "开始"
1248
 
1249
+ #: wppa-non-admin.php:665
1250
  msgid "Stop"
1251
  msgstr "停止"
1252
 
1253
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1254
  msgid "Slower"
1255
  msgstr "较慢"
1256
 
1257
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1258
  msgid "Faster"
1259
  msgstr "较快"
1260
 
1261
+ #: wppa-non-admin.php:668
1262
  msgid "Photo"
1263
  msgstr "照片"
1264
 
1265
+ #: wppa-non-admin.php:669
1266
  msgid "of"
1267
  msgstr "共"
1268
 
1269
+ #: wppa-non-admin.php:670
1270
  msgid "Previous photo"
1271
  msgstr "以前的照片"
1272
 
1273
+ #: wppa-non-admin.php:671
1274
  msgid "Next photo"
1275
  msgstr "下一张照片"
1276
 
1277
+ #: wppa-non-admin.php:672
1278
  msgid "Prev."
1279
  msgstr "上一条."
1280
 
1281
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1282
  msgid "Next"
1283
  msgstr "下一页"
1284
 
1285
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1286
  #: wppa-slideshow.php:832
1287
  msgid "Average&nbsp;rating"
1288
  msgstr "平均评级"
1289
 
1290
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1291
  #: wppa-slideshow.php:814
1292
  msgid "My&nbsp;rating"
1293
  msgstr "我的评分"
1294
 
1295
+ #: wppa-non-admin.php:676
1296
  msgid "Avg."
1297
  msgstr "平均"
1298
 
1299
+ #: wppa-non-admin.php:677
1300
  msgid "Mine"
1301
  msgstr "挖"
1302
 
1303
+ #: wppa-non-admin.php:678
1304
  msgid "You marked this image as inappropriate."
1305
  msgstr "您标记这是不恰当的图像。"
1306
 
1307
+ #: wppa-non-admin.php:681
1308
  msgid "Please enter your name"
1309
  msgstr "填写你的名字"
1310
 
1311
+ #: wppa-non-admin.php:682
1312
  msgid "Please enter a valid email address"
1313
  msgstr "请输入一个有效的email地址"
1314
 
1315
+ #: wppa-non-admin.php:683
1316
  msgid "Please enter a comment"
1317
  msgstr "请输入注释"
1318
 
1319
+ #: wppa-non-admin.php:717
1320
  msgid "Double click to start/stop slideshow running"
1321
  msgstr "双击启动/停止运行的幻灯片放映"
1322
 
1323
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1324
  msgid "wrote"
1325
  msgstr "寫作"
1326
 
1327
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1328
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1329
  #, fuzzy
1330
  msgid "Photo not found"
1331
  msgstr "照片%s未找到。"
1332
 
1333
+ #: wppa-non-admin.php:796
1334
  #, fuzzy
1335
  msgid "There are no commented photos (yet)"
1336
  msgstr "最近评论照片"
1337
 
1338
+ #: wppa-non-admin.php:799
1339
  #, fuzzy
1340
  msgid "View the featured photos"
1341
  msgstr "看最精彩的照片"
1342
 
1343
+ #: wppa-non-admin.php:801
1344
  msgid "There are no featured photos (yet)"
1345
  msgstr ""
1346
 
1347
+ #: wppa-non-admin.php:804
1348
  #, fuzzy
1349
  msgid "View the most recent uploaded photos"
1350
  msgstr "看最精彩的照片"
1351
 
1352
+ #: wppa-non-admin.php:806
1353
  #, fuzzy
1354
  msgid "There are no uploaded photos (yet)"
1355
  msgstr "最近上传的照片"
1356
 
1357
+ #: wppa-non-admin.php:810
1358
  msgid "By:"
1359
  msgstr ""
1360
 
1361
+ #: wppa-non-admin.php:813
1362
  msgid "No album defined (yet)"
1363
  msgstr ""
1364
 
1365
+ #: wppa-non-admin.php:817
1366
  msgid "There are no photos (yet)"
1367
  msgstr ""
1368
 
1369
+ #: wppa-non-admin.php:820
1370
  msgid "There are too many registered users in the system for this widget"
1371
  msgstr ""
1372
 
1373
+ #: wppa-non-admin.php:821
1374
  #, fuzzy
1375
  msgid "Photos uploaded by"
1376
  msgstr "上传照片"
1377
 
1378
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1379
  #, php-format
1380
  msgid "%d view"
1381
  msgid_plural "%d views"
1382
  msgstr[0] ""
1383
  msgstr[1] ""
1384
 
1385
+ #: wppa-non-admin.php:827
1386
  #, fuzzy
1387
  msgid "There are no rated photos (yet)"
1388
  msgstr "看最精彩的照片"
1549
  #. Author URI of the plugin/theme
1550
  msgid "http://wppa.opajaap.nl/"
1551
  msgstr "http://wppa.opajaap.nl/"
1552
+
1553
+ #, fuzzy
1554
+ #~ msgid "%d Comment"
1555
+ #~ msgid_plural "%d Comments"
1556
+ #~ msgstr[0] "%d 評論"
1557
+ #~ msgstr[1] "%d 評論"
1558
+
1559
+ #, fuzzy
1560
+ #~ msgid "%d View"
1561
+ #~ msgid_plural "%d Views"
1562
+ #~ msgstr[0] "查看"
1563
+ #~ msgstr[1] "查看"
1564
+
1565
+ #~ msgid "No dislikes"
1566
+ #~ msgstr "没有不喜欢的东西"
1567
+
1568
+ #~ msgid "dislikes"
1569
+ #~ msgstr "不喜欢的东西"
1570
+
1571
+ #~ msgid "albums"
1572
+ #~ msgstr "相簿"
1573
+
1574
+ #~ msgid "photo"
1575
+ #~ msgstr "相片"
1576
+
1577
+ #~ msgid "photos"
1578
+ #~ msgstr "照片"
1579
+
1580
+ #~ msgid "Categories:"
1581
+ #~ msgstr "分类:"
1582
+
1583
+ #~ msgid ""
1584
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1585
+ #~ "multiple file upload"
1586
+ #~ msgstr "高达你可以上传到 %s 的照片一次,如果您的浏览器支持HTML-5多文件上传"
1587
+
1588
+ #~ msgid "Max ratings: %s."
1589
+ #~ msgstr "最大額定值:%s 的。"
1590
+
1591
+ #~ msgid "Votes: %s."
1592
+ #~ msgstr "票:%s。"
1593
+
1594
+ #~ msgid "Home"
1595
+ #~ msgstr "首页"
1596
+
1597
+ #~ msgid "seconds"
1598
+ #~ msgstr "秒"
1599
+
1600
+ #~ msgid "minutes"
1601
+ #~ msgstr "分钟"
1602
+
1603
+ #~ msgid "hours"
1604
+ #~ msgstr "小时"
1605
+
1606
+ #~ msgid "days"
1607
+ #~ msgstr "天"
1608
+
1609
+ #~ msgid "weeks"
1610
+ #~ msgstr "星期"
1611
+
1612
+ #~ msgid "months"
1613
+ #~ msgstr "月"
1614
+
1615
+ #~ msgid "years"
1616
+ #~ msgstr "年"
1617
+
1618
+ #~ msgid "1 Comment"
1619
+ #~ msgid_plural "%s Comments"
1620
+ #~ msgstr[0] "1条评论"
1621
+ #~ msgstr[1] "%s 条评论"
1622
+
1623
+ #~ msgid "Download:"
1624
+ #~ msgstr "下載:"
1625
+
1626
+ #~ msgid "There are"
1627
+ #~ msgstr "存在"
1628
+
1629
+ #~ msgid "Comments:"
1630
+ #~ msgstr "评论:"
1631
+
1632
+ #~ msgid "Views:"
1633
+ #~ msgstr "浏览次数:"
languages/wp-photo-album-plus-zh_TW.mo CHANGED
Binary file
languages/wp-photo-album-plus-zh_TW.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
- "POT-Creation-Date: 2015-12-25 13:10+0100\n"
5
- "PO-Revision-Date: 2015-12-26 13:05+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: zh_TW\n"
@@ -111,7 +111,7 @@ msgstr "新!"
111
  msgid "New"
112
  msgstr "新"
113
 
114
- #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:661
115
  msgid "Slideshow"
116
  msgstr "幻燈片"
117
 
@@ -522,16 +522,16 @@ msgid_plural "%d max ratings"
522
  msgstr[0] "我的評價:"
523
  msgstr[1] "我的評價:"
524
 
525
- #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:822
526
  #, php-format
527
  msgid "%d vote"
528
  msgid_plural "%d votes"
529
  msgstr[0] ""
530
  msgstr[1] ""
531
 
532
- #: wppa-boxes-html.php:3280 wppa-boxes-html.php:3343
533
- #, php-format
534
- msgid "Mean value: %4.2f."
535
  msgstr "平均值:%4.2f。"
536
 
537
  #: wppa-boxes-html.php:3288
@@ -539,6 +539,11 @@ msgstr "平均值:%4.2f。"
539
  msgid "Photo %s not found."
540
  msgstr "照片%s未找到。"
541
 
 
 
 
 
 
542
  #: wppa-boxes-html.php:3695
543
  msgid "Refresh"
544
  msgstr "刷新"
@@ -1203,7 +1208,7 @@ msgid "You can upload after"
1203
  msgstr "你可以上傳後"
1204
 
1205
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1206
- #: wppa-functions.php:4341 wppa-non-admin.php:720
1207
  msgid "Download"
1208
  msgstr "下載"
1209
 
@@ -1215,7 +1220,12 @@ msgstr "放大"
1215
  msgid "Press f for fullscreen."
1216
  msgstr "全屏顯示的,請按 f。"
1217
 
1218
- #: wppa-non-admin.php:422
 
 
 
 
 
1219
  msgid ""
1220
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1221
  "dismiss this notice."
@@ -1223,151 +1233,151 @@ msgstr ""
1223
  "鍵: f = 下一模式;q,x = 退出;p = 以前,n = 下一步,s = 啟動/停止,d = 駁回此通"
1224
  "知。"
1225
 
1226
- #: wppa-non-admin.php:423
1227
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1228
  msgstr "鍵: f = 下一模式;q,x = 退出;d = 駁回此通知。"
1229
 
1230
- #: wppa-non-admin.php:662 wppa-slideshow.php:228
1231
  msgid "Start"
1232
  msgstr "開始"
1233
 
1234
- #: wppa-non-admin.php:663
1235
  msgid "Stop"
1236
  msgstr "停止"
1237
 
1238
- #: wppa-non-admin.php:664 wppa-slideshow.php:220
1239
  msgid "Slower"
1240
  msgstr "較慢"
1241
 
1242
- #: wppa-non-admin.php:665 wppa-slideshow.php:236
1243
  msgid "Faster"
1244
  msgstr "更快"
1245
 
1246
- #: wppa-non-admin.php:666
1247
  msgid "Photo"
1248
  msgstr "照片"
1249
 
1250
- #: wppa-non-admin.php:667
1251
  msgid "of"
1252
  msgstr "於"
1253
 
1254
- #: wppa-non-admin.php:668
1255
  msgid "Previous photo"
1256
  msgstr "以前的照片"
1257
 
1258
- #: wppa-non-admin.php:669
1259
  msgid "Next photo"
1260
  msgstr "下一張照片"
1261
 
1262
- #: wppa-non-admin.php:670
1263
  msgid "Prev."
1264
  msgstr "上一条."
1265
 
1266
- #: wppa-non-admin.php:671 wppa-slideshow.php:990
1267
  msgid "Next"
1268
  msgstr "下"
1269
 
1270
- #: wppa-non-admin.php:672 wppa-slideshow.php:729 wppa-slideshow.php:741
1271
  #: wppa-slideshow.php:832
1272
  msgid "Average&nbsp;rating"
1273
  msgstr "平均評級"
1274
 
1275
- #: wppa-non-admin.php:673 wppa-slideshow.php:791 wppa-slideshow.php:803
1276
  #: wppa-slideshow.php:814
1277
  msgid "My&nbsp;rating"
1278
  msgstr "我的評級"
1279
 
1280
- #: wppa-non-admin.php:674
1281
  msgid "Avg."
1282
  msgstr "平均"
1283
 
1284
- #: wppa-non-admin.php:675
1285
  msgid "Mine"
1286
  msgstr "採礦"
1287
 
1288
- #: wppa-non-admin.php:676
1289
  msgid "You marked this image as inappropriate."
1290
  msgstr "您標記這是不恰當的圖像。"
1291
 
1292
- #: wppa-non-admin.php:679
1293
  msgid "Please enter your name"
1294
  msgstr "請輸入你的姓名"
1295
 
1296
- #: wppa-non-admin.php:680
1297
  msgid "Please enter a valid email address"
1298
  msgstr "請輸入有效的電子信箱"
1299
 
1300
- #: wppa-non-admin.php:681
1301
  msgid "Please enter a comment"
1302
  msgstr "請輸入注釋"
1303
 
1304
- #: wppa-non-admin.php:715
1305
  msgid "Double click to start/stop slideshow running"
1306
  msgstr "按兩下啟動/停止運行的投影片放映"
1307
 
1308
- #: wppa-non-admin.php:792 wppa-thumbnails.php:493
1309
  msgid "wrote"
1310
  msgstr "寫作"
1311
 
1312
- #: wppa-non-admin.php:793 wppa-non-admin.php:798 wppa-non-admin.php:803
1313
- #: wppa-non-admin.php:807 wppa-non-admin.php:814 wppa-non-admin.php:824
1314
  #, fuzzy
1315
  msgid "Photo not found"
1316
  msgstr "照片%s未找到。"
1317
 
1318
- #: wppa-non-admin.php:794
1319
  #, fuzzy
1320
  msgid "There are no commented photos (yet)"
1321
  msgstr "新增留言"
1322
 
1323
- #: wppa-non-admin.php:797
1324
  #, fuzzy
1325
  msgid "View the featured photos"
1326
  msgstr "觀看最受好評相片"
1327
 
1328
- #: wppa-non-admin.php:799
1329
  msgid "There are no featured photos (yet)"
1330
  msgstr ""
1331
 
1332
- #: wppa-non-admin.php:802
1333
  #, fuzzy
1334
  msgid "View the most recent uploaded photos"
1335
  msgstr "觀看最受好評相片"
1336
 
1337
- #: wppa-non-admin.php:804
1338
  #, fuzzy
1339
  msgid "There are no uploaded photos (yet)"
1340
  msgstr "新增相片"
1341
 
1342
- #: wppa-non-admin.php:808
1343
  msgid "By:"
1344
  msgstr ""
1345
 
1346
- #: wppa-non-admin.php:811
1347
  msgid "No album defined (yet)"
1348
  msgstr ""
1349
 
1350
- #: wppa-non-admin.php:815
1351
  msgid "There are no photos (yet)"
1352
  msgstr ""
1353
 
1354
- #: wppa-non-admin.php:818
1355
  msgid "There are too many registered users in the system for this widget"
1356
  msgstr ""
1357
 
1358
- #: wppa-non-admin.php:819
1359
  #, fuzzy
1360
  msgid "Photos uploaded by"
1361
  msgstr "上传照片"
1362
 
1363
- #: wppa-non-admin.php:823 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1364
  #, php-format
1365
  msgid "%d view"
1366
  msgid_plural "%d views"
1367
  msgstr[0] ""
1368
  msgstr[1] ""
1369
 
1370
- #: wppa-non-admin.php:825
1371
  #, fuzzy
1372
  msgid "There are no rated photos (yet)"
1373
  msgstr "觀看最受好評相片"
@@ -1534,3 +1544,85 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
1534
  #. Author URI of the plugin/theme
1535
  msgid "http://wppa.opajaap.nl/"
1536
  msgstr "http://wppa.opajaap.nl/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP Photo Album Plus\n"
4
+ "POT-Creation-Date: 2016-01-13 11:45+0100\n"
5
+ "PO-Revision-Date: 2016-01-13 11:45+0100\n"
6
  "Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
7
  "Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
8
  "Language: zh_TW\n"
111
  msgid "New"
112
  msgstr "新"
113
 
114
+ #: wppa-album-covers.php:1681 wppa-boxes-html.php:828 wppa-non-admin.php:663
115
  msgid "Slideshow"
116
  msgstr "幻燈片"
117
 
522
  msgstr[0] "我的評價:"
523
  msgstr[1] "我的評價:"
524
 
525
+ #: wppa-boxes-html.php:3276 wppa-boxes-html.php:3339 wppa-non-admin.php:824
526
  #, php-format
527
  msgid "%d vote"
528
  msgid_plural "%d votes"
529
  msgstr[0] ""
530
  msgstr[1] ""
531
 
532
+ #: wppa-boxes-html.php:3280
533
+ #, fuzzy, php-format
534
+ msgid "Rating: %4.2f."
535
  msgstr "平均值:%4.2f。"
536
 
537
  #: wppa-boxes-html.php:3288
539
  msgid "Photo %s not found."
540
  msgstr "照片%s未找到。"
541
 
542
+ #: wppa-boxes-html.php:3343
543
+ #, php-format
544
+ msgid "Mean value: %4.2f."
545
+ msgstr "平均值:%4.2f。"
546
+
547
  #: wppa-boxes-html.php:3695
548
  msgid "Refresh"
549
  msgstr "刷新"
1208
  msgstr "你可以上傳後"
1209
 
1210
  #: wppa-functions.php:4326 wppa-functions.php:4330 wppa-functions.php:4337
1211
+ #: wppa-functions.php:4341 wppa-non-admin.php:722
1212
  msgid "Download"
1213
  msgstr "下載"
1214
 
1220
  msgid "Press f for fullscreen."
1221
  msgstr "全屏顯示的,請按 f。"
1222
 
1223
+ #: wppa-non-admin.php:359 wppa-non-admin.php:429
1224
+ #, fuzzy
1225
+ msgid "Toggle fullscreen"
1226
+ msgstr "全屏顯示的,請按 f。"
1227
+
1228
+ #: wppa-non-admin.php:423
1229
  msgid ""
1230
  "Keys: f = next mode; q,x = exit; p = previous, n = next, s = start/stop, d = "
1231
  "dismiss this notice."
1233
  "鍵: f = 下一模式;q,x = 退出;p = 以前,n = 下一步,s = 啟動/停止,d = 駁回此通"
1234
  "知。"
1235
 
1236
+ #: wppa-non-admin.php:424
1237
  msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
1238
  msgstr "鍵: f = 下一模式;q,x = 退出;d = 駁回此通知。"
1239
 
1240
+ #: wppa-non-admin.php:664 wppa-slideshow.php:228
1241
  msgid "Start"
1242
  msgstr "開始"
1243
 
1244
+ #: wppa-non-admin.php:665
1245
  msgid "Stop"
1246
  msgstr "停止"
1247
 
1248
+ #: wppa-non-admin.php:666 wppa-slideshow.php:220
1249
  msgid "Slower"
1250
  msgstr "較慢"
1251
 
1252
+ #: wppa-non-admin.php:667 wppa-slideshow.php:236
1253
  msgid "Faster"
1254
  msgstr "更快"
1255
 
1256
+ #: wppa-non-admin.php:668
1257
  msgid "Photo"
1258
  msgstr "照片"
1259
 
1260
+ #: wppa-non-admin.php:669
1261
  msgid "of"
1262
  msgstr "於"
1263
 
1264
+ #: wppa-non-admin.php:670
1265
  msgid "Previous photo"
1266
  msgstr "以前的照片"
1267
 
1268
+ #: wppa-non-admin.php:671
1269
  msgid "Next photo"
1270
  msgstr "下一張照片"
1271
 
1272
+ #: wppa-non-admin.php:672
1273
  msgid "Prev."
1274
  msgstr "上一条."
1275
 
1276
+ #: wppa-non-admin.php:673 wppa-slideshow.php:990
1277
  msgid "Next"
1278
  msgstr "下"
1279
 
1280
+ #: wppa-non-admin.php:674 wppa-slideshow.php:729 wppa-slideshow.php:741
1281
  #: wppa-slideshow.php:832
1282
  msgid "Average&nbsp;rating"
1283
  msgstr "平均評級"
1284
 
1285
+ #: wppa-non-admin.php:675 wppa-slideshow.php:791 wppa-slideshow.php:803
1286
  #: wppa-slideshow.php:814
1287
  msgid "My&nbsp;rating"
1288
  msgstr "我的評級"
1289
 
1290
+ #: wppa-non-admin.php:676
1291
  msgid "Avg."
1292
  msgstr "平均"
1293
 
1294
+ #: wppa-non-admin.php:677
1295
  msgid "Mine"
1296
  msgstr "採礦"
1297
 
1298
+ #: wppa-non-admin.php:678
1299
  msgid "You marked this image as inappropriate."
1300
  msgstr "您標記這是不恰當的圖像。"
1301
 
1302
+ #: wppa-non-admin.php:681
1303
  msgid "Please enter your name"
1304
  msgstr "請輸入你的姓名"
1305
 
1306
+ #: wppa-non-admin.php:682
1307
  msgid "Please enter a valid email address"
1308
  msgstr "請輸入有效的電子信箱"
1309
 
1310
+ #: wppa-non-admin.php:683
1311
  msgid "Please enter a comment"
1312
  msgstr "請輸入注釋"
1313
 
1314
+ #: wppa-non-admin.php:717
1315
  msgid "Double click to start/stop slideshow running"
1316
  msgstr "按兩下啟動/停止運行的投影片放映"
1317
 
1318
+ #: wppa-non-admin.php:794 wppa-thumbnails.php:493
1319
  msgid "wrote"
1320
  msgstr "寫作"
1321
 
1322
+ #: wppa-non-admin.php:795 wppa-non-admin.php:800 wppa-non-admin.php:805
1323
+ #: wppa-non-admin.php:809 wppa-non-admin.php:816 wppa-non-admin.php:826
1324
  #, fuzzy
1325
  msgid "Photo not found"
1326
  msgstr "照片%s未找到。"
1327
 
1328
+ #: wppa-non-admin.php:796
1329
  #, fuzzy
1330
  msgid "There are no commented photos (yet)"
1331
  msgstr "新增留言"
1332
 
1333
+ #: wppa-non-admin.php:799
1334
  #, fuzzy
1335
  msgid "View the featured photos"
1336
  msgstr "觀看最受好評相片"
1337
 
1338
+ #: wppa-non-admin.php:801
1339
  msgid "There are no featured photos (yet)"
1340
  msgstr ""
1341
 
1342
+ #: wppa-non-admin.php:804
1343
  #, fuzzy
1344
  msgid "View the most recent uploaded photos"
1345
  msgstr "觀看最受好評相片"
1346
 
1347
+ #: wppa-non-admin.php:806
1348
  #, fuzzy
1349
  msgid "There are no uploaded photos (yet)"
1350
  msgstr "新增相片"
1351
 
1352
+ #: wppa-non-admin.php:810
1353
  msgid "By:"
1354
  msgstr ""
1355
 
1356
+ #: wppa-non-admin.php:813
1357
  msgid "No album defined (yet)"
1358
  msgstr ""
1359
 
1360
+ #: wppa-non-admin.php:817
1361
  msgid "There are no photos (yet)"
1362
  msgstr ""
1363
 
1364
+ #: wppa-non-admin.php:820
1365
  msgid "There are too many registered users in the system for this widget"
1366
  msgstr ""
1367
 
1368
+ #: wppa-non-admin.php:821
1369
  #, fuzzy
1370
  msgid "Photos uploaded by"
1371
  msgstr "上传照片"
1372
 
1373
+ #: wppa-non-admin.php:825 wppa-thumbnails.php:645 wppa-thumbnails.php:1420
1374
  #, php-format
1375
  msgid "%d view"
1376
  msgid_plural "%d views"
1377
  msgstr[0] ""
1378
  msgstr[1] ""
1379
 
1380
+ #: wppa-non-admin.php:827
1381
  #, fuzzy
1382
  msgid "There are no rated photos (yet)"
1383
  msgstr "觀看最受好評相片"
1544
  #. Author URI of the plugin/theme
1545
  msgid "http://wppa.opajaap.nl/"
1546
  msgstr "http://wppa.opajaap.nl/"
1547
+
1548
+ #, fuzzy
1549
+ #~ msgid "%d Comment"
1550
+ #~ msgid_plural "%d Comments"
1551
+ #~ msgstr[0] "%d 評論"
1552
+ #~ msgstr[1] "%d 評論"
1553
+
1554
+ #, fuzzy
1555
+ #~ msgid "%d View"
1556
+ #~ msgid_plural "%d Views"
1557
+ #~ msgstr[0] "觀看"
1558
+ #~ msgstr[1] "觀看"
1559
+
1560
+ #~ msgid "No dislikes"
1561
+ #~ msgstr "沒有不喜歡的東西"
1562
+
1563
+ #~ msgid "dislikes"
1564
+ #~ msgstr "不喜歡的東西"
1565
+
1566
+ #~ msgid "albums"
1567
+ #~ msgstr "相簿"
1568
+
1569
+ #~ msgid "photo"
1570
+ #~ msgstr "相片"
1571
+
1572
+ #~ msgid "photos"
1573
+ #~ msgstr "相片"
1574
+
1575
+ #~ msgid "Categories:"
1576
+ #~ msgstr "分类:"
1577
+
1578
+ #~ msgid ""
1579
+ #~ "You may upload up to %s photos at once if your browser supports HTML-5 "
1580
+ #~ "multiple file upload"
1581
+ #~ msgstr "你可以上載最多%s張相片,如果你的瀏覽器支援HTML5的多檔案上載"
1582
+
1583
+ #~ msgid "Max ratings: %s."
1584
+ #~ msgstr "最大額定值:%s 的。"
1585
+
1586
+ #~ msgid "Votes: %s."
1587
+ #~ msgstr "票:%s。"
1588
+
1589
+ #~ msgid "Home"
1590
+ #~ msgstr "首頁"
1591
+
1592
+ #~ msgid "seconds"
1593
+ #~ msgstr "秒"
1594
+
1595
+ #~ msgid "minutes"
1596
+ #~ msgstr "分鐘"
1597
+
1598
+ #~ msgid "hours"
1599
+ #~ msgstr "小時"
1600
+
1601
+ #~ msgid "days"
1602
+ #~ msgstr "天"
1603
+
1604
+ #~ msgid "weeks"
1605
+ #~ msgstr "星期"
1606
+
1607
+ #~ msgid "months"
1608
+ #~ msgstr "個月"
1609
+
1610
+ #~ msgid "years"
1611
+ #~ msgstr "年"
1612
+
1613
+ #~ msgid "1 Comment"
1614
+ #~ msgid_plural "%s Comments"
1615
+ #~ msgstr[0] "1 條評論"
1616
+ #~ msgstr[1] "%s 條評論"
1617
+
1618
+ #~ msgid "Download:"
1619
+ #~ msgstr "下載:"
1620
+
1621
+ #~ msgid "There are"
1622
+ #~ msgstr "存在"
1623
+
1624
+ #~ msgid "Comments:"
1625
+ #~ msgstr "评论:"
1626
+
1627
+ #~ msgid "Views:"
1628
+ #~ msgstr "浏览次数:"
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: opajaap
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source&currency_code=USD&lc=US
4
  Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
5
- Version: 6.3.17
6
- Stable tag: 6.3.17
7
  Author: J.N. Breetvelt
8
  Author URI: http://www.opajaap.nl/
9
  Requires at least: 3.9
@@ -189,6 +189,22 @@ Oh, just Google on 'picture resizer' and you will find a bunch of free programs
189
 
190
  See for additional information: http://wppa.opajaap.nl/changelog/
191
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  = 6.3.17 =
193
 
194
  = Bug Fixes =
2
  Contributors: opajaap
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source&currency_code=USD&lc=US
4
  Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
5
+ Version: 6.3.18
6
+ Stable tag: 6.3.18
7
  Author: J.N. Breetvelt
8
  Author URI: http://www.opajaap.nl/
9
  Requires at least: 3.9
189
 
190
  See for additional information: http://wppa.opajaap.nl/changelog/
191
 
192
+ = 6.3.18 =
193
+
194
+ = Bug Fixes =
195
+
196
+ * Photo of the day selection result for Display method Change every ( any time period ), when the Use albums selection is - top rated photos - returned Not found. Fixed.
197
+ * Go to fullscreen mode by icon button in laghtbox did not work properly under certain circumstances. Fixed.
198
+ * On the frontpage the links are no longer 'prettyfied' to avoid 404 errors due to improper redirection.
199
+
200
+ = Other Changes =
201
+
202
+ * Photo of the day: Day of year is order #, has now jan 1 = 0, in stead of jan 1 = 366.
203
+ * Fixed a missing initialization.
204
+ * Added alt="..." for the fullscreen icon button in lightbox.
205
+ * Table II-H15 allows you to (dis)-connect frontend upload to the camera on mobile divices.
206
+ * Ajaxified breadcrumb links.
207
+
208
  = 6.3.17 =
209
 
210
  = Bug Fixes =
wppa-boxes-html.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Various wppa boxes
6
- * Version 6.3.17
7
  *
8
  *
9
  */
@@ -193,7 +193,7 @@ global $wppa_session;
193
  ' type="checkbox"' .
194
  ' name="wppa-subsearch"' .
195
  ' class="wppa-search-sub-box"' .
196
- ( empty( $wppa_session['display_searchstring'] ) ? 'disabled="disabled"' : '' ) .
197
  ' onchange="wppaSubboxChange(this)"' .
198
  ' /> '.
199
  wppa_opt( 'search_in_results' ) .
@@ -1897,7 +1897,7 @@ static $seqno;
1897
  '<input' .
1898
  ' type="file"' .
1899
  ' accept="image/*"' .
1900
- ' capture' .
1901
  ' class="wppa-user-file"' .
1902
  ' style="' .
1903
  'width:auto;' .
@@ -1918,7 +1918,7 @@ static $seqno;
1918
  '<input' .
1919
  ' type="file"' .
1920
  ' accept="image/*"' .
1921
- ' capture' .
1922
  ' multiple="multiple"' .
1923
  ' class="wppa-user-file"' .
1924
  ' style="' .
@@ -3277,7 +3277,7 @@ function wppa_bestof_html( $args, $widget = true ) {
3277
  }
3278
  if ( $meanrat == 'yes' ) {
3279
  $m = $data[$id]['meanrating'];
3280
- $result .= sprintf( __( 'Mean value: %4.2f.', 'wp-photo-album-plus' ), $m ).'<br />';
3281
  }
3282
  $result .= '</div>';
3283
  $result .= '<div style="clear:both" ></div>';
3
  * Package: wp-photo-album-plus
4
  *
5
  * Various wppa boxes
6
+ * Version 6.3.18
7
  *
8
  *
9
  */
193
  ' type="checkbox"' .
194
  ' name="wppa-subsearch"' .
195
  ' class="wppa-search-sub-box"' .
196
+ ( empty( $wppa_session['display_searchstring'] ) ? ' disabled="disabled"' : '' ) .
197
  ' onchange="wppaSubboxChange(this)"' .
198
  ' /> '.
199
  wppa_opt( 'search_in_results' ) .
1897
  '<input' .
1898
  ' type="file"' .
1899
  ' accept="image/*"' .
1900
+ ( wppa_switch( 'camera_connect' ) ? ' capture="capture"' : '' ) .
1901
  ' class="wppa-user-file"' .
1902
  ' style="' .
1903
  'width:auto;' .
1918
  '<input' .
1919
  ' type="file"' .
1920
  ' accept="image/*"' .
1921
+ ( wppa_switch( 'camera_connect' ) ? ' capture="capture"' : '' ) .
1922
  ' multiple="multiple"' .
1923
  ' class="wppa-user-file"' .
1924
  ' style="' .
3277
  }
3278
  if ( $meanrat == 'yes' ) {
3279
  $m = $data[$id]['meanrating'];
3280
+ $result .= sprintf( __( 'Rating: %4.2f.', 'wp-photo-album-plus' ), $m ).'<br />';
3281
  }
3282
  $result .= '</div>';
3283
  $result .= '<div style="clear:both" ></div>';
wppa-breadcrumb.php CHANGED
@@ -125,7 +125,7 @@ global $wppa_session;
125
  wppa_crumb_ancestors( $alb, $to_cover );
126
  // }
127
 
128
- // The album and optionall placeholder for photo
129
 
130
  // Supersearch ?
131
  if ( wppa( 'supersearch' ) ) {
@@ -180,8 +180,9 @@ global $wppa_session;
180
 
181
  if ( wppa( 'is_slide' ) ) {
182
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-supersearch='.stripslashes( wppa( 'supersearch' ) );
 
183
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
184
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
185
  }
186
 
187
  $href = '';
@@ -204,8 +205,9 @@ global $wppa_session;
204
  if ( wppa( 'is_slide' ) ) {
205
  $value = __( 'Searchstring:' , 'wp-photo-album-plus') . ' ' . ( isset ( $wppa_session['display_searchstring'] ) ? $wppa_session['display_searchstring'] : stripslashes( wppa( 'searchstring' ) ) ) . $albtxt;
206
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-searchstring='.stripslashes( str_replace( ' ', '+', $wppa_session['use_searchstring'] ) );
 
207
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
208
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
209
  }
210
  $value = __( 'Searchstring:' , 'wp-photo-album-plus') . ' ' . ( isset ( $wppa_session['display_searchstring'] ) ? $wppa_session['display_searchstring'] : stripslashes( wppa( 'searchstring' ) ) ) . $albtxt;
211
  $href = '';
@@ -257,12 +259,14 @@ global $wppa_session;
257
  $value = sprintf( __( 'Photos by %s' , 'wp-photo-album-plus'), $user );
258
  if ( wppa( 'start_album' ) ) {
259
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' ).'&amp;wppa-album='.wppa( 'start_album' );
 
260
  }
261
  else {
262
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' );
 
263
  }
264
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
265
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
266
  }
267
  $value = sprintf( __( 'Photos by %s' , 'wp-photo-album-plus'), $user );
268
  $href = '';
@@ -273,14 +277,16 @@ global $wppa_session;
273
  if ( wppa( 'start_album' ) ) {
274
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
275
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
276
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
277
- wppa_bcitem( $value, $href, $title, 'b7' );
278
  }
279
  if ( wppa( 'is_slide' ) ) {
280
  $value = __( 'Top rated photos' , 'wp-photo-album-plus');
281
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-topten='.wppa( 'topten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
 
282
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
283
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
284
  }
285
  $value = __( 'Top rated photos' , 'wp-photo-album-plus');
286
  $href = '';
@@ -291,8 +297,9 @@ global $wppa_session;
291
  if ( wppa( 'start_album' ) ) {
292
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
293
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
294
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
295
- wppa_bcitem( $value, $href, $title, 'b7' );
296
  }
297
  if ( wppa( 'is_slide' ) ) {
298
  if ( wppa_switch( 'lasten_use_modified' ) ) {
@@ -302,8 +309,9 @@ global $wppa_session;
302
  $value = __( 'Recently uploaded photos' , 'wp-photo-album-plus');
303
  }
304
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-lasten='.wppa( 'lasten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
 
305
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
306
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
307
  }
308
  if ( wppa_switch( 'lasten_use_modified' ) ) {
309
  $value = __( 'Recently modified photos' , 'wp-photo-album-plus');
@@ -319,14 +327,16 @@ global $wppa_session;
319
  if ( wppa( 'start_album' ) ) {
320
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
321
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
322
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
323
- wppa_bcitem( $value, $href, $title, 'b7' );
324
  }
325
  if ( wppa( 'is_slide' ) ) {
326
  $value = __( 'Recently commented photos' , 'wp-photo-album-plus');
327
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-comten='.wppa( 'comten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
 
328
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
329
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
330
  }
331
  $value = __( 'Recently commented photos' , 'wp-photo-album-plus');
332
  $href = '';
@@ -337,14 +347,16 @@ global $wppa_session;
337
  if ( wppa( 'start_album' ) ) {
338
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
339
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
340
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
341
- wppa_bcitem( $value, $href, $title, 'b7' );
342
  }
343
  if ( wppa( 'is_slide' ) ) {
344
  $value = __( 'Featured photos' , 'wp-photo-album-plus');
345
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-featen='.wppa( 'featen_count' ).'&amp;wppa-album='.wppa( 'start_album' );
 
346
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
347
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
348
  }
349
  $value = __( 'Featured photos' , 'wp-photo-album-plus');
350
  $href = '';
@@ -355,8 +367,9 @@ global $wppa_session;
355
  if ( wppa( 'is_slide' ) ) {
356
  $value = __( 'Related photos' , 'wp-photo-album-plus');
357
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
 
358
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
359
- wppa_bcitem( $value, $href, $title, 'b8' );
360
  }
361
  $value = __( 'Related photos' , 'wp-photo-album-plus');
362
  $href = '';
@@ -370,11 +383,13 @@ global $wppa_session;
370
  $value .= ' (' . __( 'Inverted', 'wp-photo-album-plus' ) . ')';
371
  }
372
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
 
373
  if ( wppa( 'is_inverse' ) ) {
374
  $thumbhref .= '&amp;wppa-inv=1';
 
375
  }
376
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
377
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
378
  }
379
  $value = __( 'Tagged photos:' , 'wp-photo-album-plus').'&nbsp;'.str_replace( ';', ' '.__( 'or' , 'wp-photo-album-plus').' ', str_replace( ',', ' '.__( 'and' , 'wp-photo-album-plus').' ', trim( wppa( 'is_tag' ), ',;' ) ) );
380
  if ( wppa_get_get( 'inv' ) ) {
@@ -388,8 +403,9 @@ global $wppa_session;
388
  if ( wppa( 'is_slide' ) ) {
389
  $value = __( 'Category:' , 'wp-photo-album-plus').'&nbsp;'.wppa( 'is_cat' );//str_replace( ';', ' '.__( 'or' ).' ', str_replace( ',', ' '.__( 'and' ).' ', trim( wppa( 'is_tag' ), ',;' ) ) );
390
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-cat='.wppa( 'is_cat' ).'&amp;wppa-album='.wppa( 'start_album' );
 
391
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
392
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
393
  }
394
  $value = __( 'Category:' , 'wp-photo-album-plus').'&nbsp;'.wppa( 'is_cat' );//str_replace( ';', ' '.__( 'or' ).' ', str_replace( ',', ' '.__( 'and' ).' ', trim( wppa( 'is_tag' ), ',;' ) ) );
395
  $href = '';
@@ -401,14 +417,16 @@ global $wppa_session;
401
  if ( wppa( 'last_albums_parent' ) ) {
402
  $value = wppa_get_album_name( $alb );
403
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
404
  $title = __( 'Album:' , 'wp-photo-album-plus').' '.$value;
405
- wppa_bcitem( $value, $href, $title, 'b7' );
406
  }
407
  if ( wppa( 'is_slide' ) ) {
408
  $value = __( 'Recently updated albums' , 'wp-photo-album-plus');
409
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
410
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
411
- wppa_bcitem( $value, $thumbhref, $title, 'b8' );
412
  }
413
  $value = __( 'Recently updated albums' , 'wp-photo-album-plus');
414
  $href = '';
@@ -426,8 +444,9 @@ global $wppa_session;
426
  if ( wppa( 'is_slide' ) ) {
427
  $value = $is_albenum ? $various : wppa_get_album_name( $alb );
428
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
 
429
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
430
- wppa_bcitem( $value, $href, $title, 'b7' );
431
  }
432
  $value = $is_albenum ? $various : wppa_get_album_name( $alb );
433
  $href = '';
@@ -481,7 +500,7 @@ global $wppa_session;
481
 
482
  // Display a breadcrumb item with optionally a seperator if it is a link.
483
  // If it's a link, it's not the last item
484
- function wppa_bcitem( $value = '', $href = '', $title = '', $class = '' ) {
485
  static $sep;
486
 
487
  // Convert url to pretty
@@ -491,7 +510,9 @@ static $sep;
491
  if ( ! $value ) return; // No content
492
  if ( $href ) {
493
  wppa_out( '<a' .
494
- ' href="' . $href . '"' .
 
 
495
  ' class="wppa-nav-text ' . $class . '"' .
496
  ' style="' . __wcs( 'wppa-nav-text' ).'"' .
497
  ' title="' . esc_attr( $title ) . '" >' .
125
  wppa_crumb_ancestors( $alb, $to_cover );
126
  // }
127
 
128
+ // The album and optional placeholder for photo
129
 
130
  // Supersearch ?
131
  if ( wppa( 'supersearch' ) ) {
180
 
181
  if ( wppa( 'is_slide' ) ) {
182
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-supersearch='.stripslashes( wppa( 'supersearch' ) );
183
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-supersearch='.stripslashes( wppa( 'supersearch' ) );
184
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
185
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
186
  }
187
 
188
  $href = '';
205
  if ( wppa( 'is_slide' ) ) {
206
  $value = __( 'Searchstring:' , 'wp-photo-album-plus') . ' ' . ( isset ( $wppa_session['display_searchstring'] ) ? $wppa_session['display_searchstring'] : stripslashes( wppa( 'searchstring' ) ) ) . $albtxt;
207
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-searchstring='.stripslashes( str_replace( ' ', '+', $wppa_session['use_searchstring'] ) );
208
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-searchstring='.stripslashes( str_replace( ' ', '+', $wppa_session['use_searchstring'] ) );
209
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
210
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
211
  }
212
  $value = __( 'Searchstring:' , 'wp-photo-album-plus') . ' ' . ( isset ( $wppa_session['display_searchstring'] ) ? $wppa_session['display_searchstring'] : stripslashes( wppa( 'searchstring' ) ) ) . $albtxt;
213
  $href = '';
259
  $value = sprintf( __( 'Photos by %s' , 'wp-photo-album-plus'), $user );
260
  if ( wppa( 'start_album' ) ) {
261
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' ).'&amp;wppa-album='.wppa( 'start_album' );
262
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' ).'&amp;wppa-album='.wppa( 'start_album' );
263
  }
264
  else {
265
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' );
266
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-upldr='.wppa( 'is_upldr' );
267
  }
268
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
269
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
270
  }
271
  $value = sprintf( __( 'Photos by %s' , 'wp-photo-album-plus'), $user );
272
  $href = '';
277
  if ( wppa( 'start_album' ) ) {
278
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
279
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
280
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
281
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
282
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
283
  }
284
  if ( wppa( 'is_slide' ) ) {
285
  $value = __( 'Top rated photos' , 'wp-photo-album-plus');
286
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-topten='.wppa( 'topten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
287
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-topten='.wppa( 'topten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
288
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
289
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
290
  }
291
  $value = __( 'Top rated photos' , 'wp-photo-album-plus');
292
  $href = '';
297
  if ( wppa( 'start_album' ) ) {
298
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
299
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
300
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
301
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
302
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
303
  }
304
  if ( wppa( 'is_slide' ) ) {
305
  if ( wppa_switch( 'lasten_use_modified' ) ) {
309
  $value = __( 'Recently uploaded photos' , 'wp-photo-album-plus');
310
  }
311
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-lasten='.wppa( 'lasten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
312
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-lasten='.wppa( 'lasten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
313
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
314
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
315
  }
316
  if ( wppa_switch( 'lasten_use_modified' ) ) {
317
  $value = __( 'Recently modified photos' , 'wp-photo-album-plus');
327
  if ( wppa( 'start_album' ) ) {
328
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
329
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
330
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
331
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
332
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
333
  }
334
  if ( wppa( 'is_slide' ) ) {
335
  $value = __( 'Recently commented photos' , 'wp-photo-album-plus');
336
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-comten='.wppa( 'comten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
337
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-comten='.wppa( 'comten_count' ).'&amp;wppa-album='.wppa( 'start_album' );
338
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
339
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
340
  }
341
  $value = __( 'Recently commented photos' , 'wp-photo-album-plus');
342
  $href = '';
347
  if ( wppa( 'start_album' ) ) {
348
  $value = $is_albenum ? __( 'Various albums' , 'wp-photo-album-plus') : wppa_get_album_name( $alb );
349
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
350
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
351
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
352
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
353
  }
354
  if ( wppa( 'is_slide' ) ) {
355
  $value = __( 'Featured photos' , 'wp-photo-album-plus');
356
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-featen='.wppa( 'featen_count' ).'&amp;wppa-album='.wppa( 'start_album' );
357
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-featen='.wppa( 'featen_count' ).'&amp;wppa-album='.wppa( 'start_album' );
358
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
359
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
360
  }
361
  $value = __( 'Featured photos' , 'wp-photo-album-plus');
362
  $href = '';
367
  if ( wppa( 'is_slide' ) ) {
368
  $value = __( 'Related photos' , 'wp-photo-album-plus');
369
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
370
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
371
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
372
+ wppa_bcitem( $value, $href, $title, 'b8', $ajax );
373
  }
374
  $value = __( 'Related photos' , 'wp-photo-album-plus');
375
  $href = '';
383
  $value .= ' (' . __( 'Inverted', 'wp-photo-album-plus' ) . ')';
384
  }
385
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
386
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-tag='.wppa( 'is_tag' ).'&amp;wppa-album='.wppa( 'start_album' );
387
  if ( wppa( 'is_inverse' ) ) {
388
  $thumbhref .= '&amp;wppa-inv=1';
389
+ $thumbajax .= '&amp;wppa-inv=1';
390
  }
391
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
392
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
393
  }
394
  $value = __( 'Tagged photos:' , 'wp-photo-album-plus').'&nbsp;'.str_replace( ';', ' '.__( 'or' , 'wp-photo-album-plus').' ', str_replace( ',', ' '.__( 'and' , 'wp-photo-album-plus').' ', trim( wppa( 'is_tag' ), ',;' ) ) );
395
  if ( wppa_get_get( 'inv' ) ) {
403
  if ( wppa( 'is_slide' ) ) {
404
  $value = __( 'Category:' , 'wp-photo-album-plus').'&nbsp;'.wppa( 'is_cat' );//str_replace( ';', ' '.__( 'or' ).' ', str_replace( ',', ' '.__( 'and' ).' ', trim( wppa( 'is_tag' ), ',;' ) ) );
405
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-cat='.wppa( 'is_cat' ).'&amp;wppa-album='.wppa( 'start_album' );
406
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-cat='.wppa( 'is_cat' ).'&amp;wppa-album='.wppa( 'start_album' );
407
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
408
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
409
  }
410
  $value = __( 'Category:' , 'wp-photo-album-plus').'&nbsp;'.wppa( 'is_cat' );//str_replace( ';', ' '.__( 'or' ).' ', str_replace( ',', ' '.__( 'and' ).' ', trim( wppa( 'is_tag' ), ',;' ) ) );
411
  $href = '';
417
  if ( wppa( 'last_albums_parent' ) ) {
418
  $value = wppa_get_album_name( $alb );
419
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
420
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
421
  $title = __( 'Album:' , 'wp-photo-album-plus').' '.$value;
422
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
423
  }
424
  if ( wppa( 'is_slide' ) ) {
425
  $value = __( 'Recently updated albums' , 'wp-photo-album-plus');
426
  $thumbhref = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
427
+ $thumbajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
428
  $title = __( 'View the thumbnails' , 'wp-photo-album-plus');
429
+ wppa_bcitem( $value, $thumbhref, $title, 'b8', $thumbajax );
430
  }
431
  $value = __( 'Recently updated albums' , 'wp-photo-album-plus');
432
  $href = '';
444
  if ( wppa( 'is_slide' ) ) {
445
  $value = $is_albenum ? $various : wppa_get_album_name( $alb );
446
  $href = wppa_get_permalink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
447
+ $ajax = wppa_get_ajaxlink().'wppa-cover=0&amp;wppa-occur='.wppa( 'occur' ).'&amp;wppa-album='.wppa( 'start_album' );
448
  $title = $is_albenum ? __( 'Albums:' , 'wp-photo-album-plus').' '.wppa( 'start_album' ) : __( 'Album:' , 'wp-photo-album-plus').' '.$value;
449
+ wppa_bcitem( $value, $href, $title, 'b7', $ajax );
450
  }
451
  $value = $is_albenum ? $various : wppa_get_album_name( $alb );
452
  $href = '';
500
 
501
  // Display a breadcrumb item with optionally a seperator if it is a link.
502
  // If it's a link, it's not the last item
503
+ function wppa_bcitem( $value = '', $href = '', $title = '', $class = '', $ajax = '' ) {
504
  static $sep;
505
 
506
  // Convert url to pretty
510
  if ( ! $value ) return; // No content
511
  if ( $href ) {
512
  wppa_out( '<a' .
513
+ ( $ajax && wppa_switch( 'allow_ajax' ) ?
514
+ ' onclick="wppaDoAjaxRender(' . wppa( 'mocc' ) . ', \'' . $ajax . '\', \'' . $href . '\' );"' :
515
+ ' href="' . $href . '"' ) .
516
  ' class="wppa-nav-text ' . $class . '"' .
517
  ' style="' . __wcs( 'wppa-nav-text' ).'"' .
518
  ' title="' . esc_attr( $title ) . '" >' .
wppa-functions.php CHANGED
@@ -592,7 +592,7 @@ global $wppa_session;
592
  // Update searchroot in search boxes
593
  $rt = $wppa_session['search_root'];
594
  if ( ! $rt ) $rt = '0'; // must be non-empty string
595
- wppa_add( 'src_script', 'jQuery(document).ready(function(){wppaUpdateSearchRoot( \'' . esc_js( wppa_display_root( $rt ) ) . '\', ' . $rt . ' )});' );
596
 
597
  // If not search forget previous results
598
  if ( ! wppa( 'src' ) ) {
592
  // Update searchroot in search boxes
593
  $rt = $wppa_session['search_root'];
594
  if ( ! $rt ) $rt = '0'; // must be non-empty string
595
+ wppa_add( 'src_script', 'jQuery(document).ready(function(){wppaUpdateSearchRoot( \'' . esc_js( wppa_display_root( $rt ) ) . '\', \'' . $rt . '\' )});' );
596
 
597
  // If not search forget previous results
598
  if ( ! wppa( 'src' ) ) {
wppa-links.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Frontend links
6
- * Version 6.3.11
7
  *
8
  */
9
 
@@ -420,6 +420,11 @@ function wppa_convert_to_pretty( $xuri ) {
420
  // Only when permalink structure is not default
421
  if ( ! get_option('permalink_structure') ) return $uri;
422
 
 
 
 
 
 
423
  // Any querystring?
424
  if ( strpos( $uri, '?' ) === false ) {
425
  return $uri;
@@ -441,6 +446,18 @@ function wppa_convert_to_pretty( $xuri ) {
441
  $amps = false;
442
  }
443
  $parts = explode( '?', $uri );
 
 
 
 
 
 
 
 
 
 
 
 
444
  $args = explode( '&', $parts[1] );
445
  $order = array( 'occur', 'woccur',
446
  'searchstring',
@@ -462,6 +479,7 @@ function wppa_convert_to_pretty( $xuri ) {
462
  'debug',
463
  'inv',
464
  );
 
465
  $uri = $parts[0] . '?';
466
  $first = true;
467
  foreach ( $order as $item ) {
3
  * Package: wp-photo-album-plus
4
  *
5
  * Frontend links
6
+ * Version 6.3.18
7
  *
8
  */
9
 
420
  // Only when permalink structure is not default
421
  if ( ! get_option('permalink_structure') ) return $uri;
422
 
423
+ // Not on front page, the redirection will fail...
424
+ // if ( is_front_page() ) {
425
+ // return $uri;
426
+ // }
427
+
428
  // Any querystring?
429
  if ( strpos( $uri, '?' ) === false ) {
430
  return $uri;
446
  $amps = false;
447
  }
448
  $parts = explode( '?', $uri );
449
+
450
+ // If is_front_page(), redirection will fail
451
+ // During ajax, is_front_page() returns always false
452
+ // So we test on the existence of a page id ( a single / ) instead
453
+ // If no slash found, its http://mysite.com/wppaspec/.... this will fail: return xuri
454
+ $temp = $parts[0]; // Befor the ?
455
+ $temp = rtrim( $temp, '/' ); // remove potential trailing slash
456
+ $temp = str_replace( '//', '', $temp ); // Remove //
457
+ if ( strpos( $temp, '/' ) === false ) {
458
+ return $xuri; // return original
459
+ }
460
+
461
  $args = explode( '&', $parts[1] );
462
  $order = array( 'occur', 'woccur',
463
  'searchstring',
479
  'debug',
480
  'inv',
481
  );
482
+
483
  $uri = $parts[0] . '?';
484
  $first = true;
485
  foreach ( $order as $item ) {
wppa-non-admin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the non admin stuff
6
- * Version 6.3.17
7
  *
8
  */
9
 
@@ -356,6 +356,7 @@ global $wppa_session;
356
  ' id="wppa-fulls-btn"' .
357
  ' src="'.wppa_get_imgdir('fulls.png').'"' .
358
  ' style="height:32px;z-index:100091;position:fixed;top:0;right:0;"' .
 
359
  ' onclick="wppaOvlFull()"' .
360
  ' ontouchstart="wppaOvlFull()"' .
361
  ' onmouseover="jQuery(this).fadeTo(600,1);"' .
@@ -425,6 +426,7 @@ global $wppa_session;
425
  wppaOvlAudioStart = '.( wppa_switch( 'ovl_audio_start' ) ? 'true' : 'false' ).';
426
  wppaOvlShowLegenda = '.( wppa_switch( 'ovl_show_legenda' ) && ! wppa( 'is_mobile' ) ? 'true' : 'false' ).';
427
  wppaOvlShowStartStop = '.( wppa_switch( 'ovl_show_startstop' ) ? 'true' : 'false' ).';
 
428
  </script>
429
  ';
430
  }
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the non admin stuff
6
+ * Version 6.3.18
7
  *
8
  */
9
 
356
  ' id="wppa-fulls-btn"' .
357
  ' src="'.wppa_get_imgdir('fulls.png').'"' .
358
  ' style="height:32px;z-index:100091;position:fixed;top:0;right:0;"' .
359
+ ' alt="' . __( 'Toggle fullscreen', 'wp-photo-album-plus' ) . '"' .
360
  ' onclick="wppaOvlFull()"' .
361
  ' ontouchstart="wppaOvlFull()"' .
362
  ' onmouseover="jQuery(this).fadeTo(600,1);"' .
426
  wppaOvlAudioStart = '.( wppa_switch( 'ovl_audio_start' ) ? 'true' : 'false' ).';
427
  wppaOvlShowLegenda = '.( wppa_switch( 'ovl_show_legenda' ) && ! wppa( 'is_mobile' ) ? 'true' : 'false' ).';
428
  wppaOvlShowStartStop = '.( wppa_switch( 'ovl_show_startstop' ) ? 'true' : 'false' ).';
429
+ wppaToggleFullScreen = "'. __( 'Toggle fullscreen', 'wp-photo-album-plus' ) . '";
430
  </script>
431
  ';
432
  }
wppa-potd-widget.php CHANGED
@@ -111,7 +111,7 @@ class PhotoOfTheDay extends WP_Widget {
111
  ' style="width: '.wppa_opt('wppa_potd_widget_width').'px;'.$cursor.'"' .
112
  ' ' . wppa_get_imgalt( $id ) .
113
  ( $title ? 'title="' . $title . '"' : '' ) .
114
- '/ >';
115
  }
116
 
117
  // Close the link
111
  ' style="width: '.wppa_opt('wppa_potd_widget_width').'px;'.$cursor.'"' .
112
  ' ' . wppa_get_imgalt( $id ) .
113
  ( $title ? 'title="' . $title . '"' : '' ) .
114
+ ' />';
115
  }
116
 
117
  // Close the link
wppa-settings-autosave.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
- * Version 6.3.17
7
  *
8
  */
9
 
@@ -2685,6 +2685,15 @@ global $wppa_tags;
2685
  $tags = 'upload';
2686
  wppa_setting($slug, '14', $name, $desc, $html, $help, $clas, $tags);
2687
 
 
 
 
 
 
 
 
 
 
2688
  }
2689
  wppa_setting_subheader( 'J', '1', __( 'Miscellaneous visibility settings' , 'wp-photo-album-plus') );
2690
  {
@@ -8100,7 +8109,7 @@ global $wppa_tags;
8100
  $slug = 'wppa_iptc_need_utf8';
8101
  $html = wppa_checkbox($slug);
8102
  $clas = '';
8103
- $tags = 'system,upload';
8104
  wppa_setting($slug, '16', $name, $desc, $html, $help, $clas, $tags);
8105
 
8106
  $name = __('Keep dir to album files', 'wp-photo-album-plus');
@@ -8802,6 +8811,7 @@ global $wppa_defaults;
8802
  global $wppa_table;
8803
  global $wppa_subtable;
8804
  global $no_default;
 
8805
 
8806
  if ( is_array($slug) ) $slugs = $slug;
8807
  else {
@@ -8835,20 +8845,29 @@ global $no_default;
8835
  $result .= '<td>'.$html.'</td>';
8836
  }
8837
 
8838
- if ( $help ) {
 
8839
  $hlp = esc_js($name).':\n\n'.$help;
8840
  if ( ! $no_default ) {
8841
  if ( $slugs ) {
8842
  $hlp .= '\n\n'.__('The default for this setting is:', 'wp-photo-album-plus');
8843
  if ( count($slugs) == 1) {
8844
- if ( $slugs[0] != '' ) $hlp .= ' '.esc_js(wppa_dflt($slugs[0]));
 
 
 
 
 
8845
  }
8846
  else foreach ( array_keys($slugs) as $slugidx ) {
8847
  if ( $slugs[$slugidx] != '' && isset($nums[$slugidx]) ) $hlp .= ' '.$nums[$slugidx].'. '.esc_js(wppa_dflt($slugs[$slugidx]));
 
 
 
8848
  }
8849
  }
8850
  }
8851
- $result .= '<td><input type="button" style="font-size: 11px; height:20px; padding:0; cursor: pointer;" title="'.__('Click for help', 'wp-photo-album-plus').'" onclick="alert('."'".$hlp."'".')" value="&nbsp;?&nbsp;"></td>';
8852
  }
8853
  else {
8854
  $result .= '<td></td>';//$hlp = __('No help available');
@@ -9164,7 +9183,7 @@ global $no_default;
9164
  if ( $slug == '' ) return '';
9165
  if ( $no_default ) return '';
9166
 
9167
- $dflt = $wppa_defaults[$slug];
9168
 
9169
  $dft = $dflt;
9170
  switch ($dflt) {
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
+ * Version 6.3.18
7
  *
8
  */
9
 
2685
  $tags = 'upload';
2686
  wppa_setting($slug, '14', $name, $desc, $html, $help, $clas, $tags);
2687
 
2688
+ $name = __('Camera connect', 'wp-photo-album-plus');
2689
+ $desc = __('Connect frontend upload to camara on mobile devices with camera', 'wp-photo-album-plus');
2690
+ $help = '';
2691
+ $slug = 'wppa_camera_connect';
2692
+ $html = wppa_checkbox($slug);
2693
+ $clas = 'wppa_feup';
2694
+ $tags = 'upload';
2695
+ wppa_setting($slug, '15', $name, $desc, $html, $help, $clas, $tags);
2696
+
2697
  }
2698
  wppa_setting_subheader( 'J', '1', __( 'Miscellaneous visibility settings' , 'wp-photo-album-plus') );
2699
  {
8109
  $slug = 'wppa_iptc_need_utf8';
8110
  $html = wppa_checkbox($slug);
8111
  $clas = '';
8112
+ $tags = 'system,upload,meta';
8113
  wppa_setting($slug, '16', $name, $desc, $html, $help, $clas, $tags);
8114
 
8115
  $name = __('Keep dir to album files', 'wp-photo-album-plus');
8811
  global $wppa_table;
8812
  global $wppa_subtable;
8813
  global $no_default;
8814
+ global $wppa_opt;
8815
 
8816
  if ( is_array($slug) ) $slugs = $slug;
8817
  else {
8845
  $result .= '<td>'.$html.'</td>';
8846
  }
8847
 
8848
+ if ( $help || ( defined( 'WP_DEBUG') && WP_DEBUG ) ) {
8849
+ $is_dflt = true;
8850
  $hlp = esc_js($name).':\n\n'.$help;
8851
  if ( ! $no_default ) {
8852
  if ( $slugs ) {
8853
  $hlp .= '\n\n'.__('The default for this setting is:', 'wp-photo-album-plus');
8854
  if ( count($slugs) == 1) {
8855
+ if ( $slugs[0] != '' ) {
8856
+ $hlp .= ' '.esc_js(wppa_dflt($slugs[0]));
8857
+ if ( $wppa_opt[$slugs[0]] != $wppa_defaults[$slugs[0]] ) {
8858
+ $is_dflt = false;
8859
+ }
8860
+ }
8861
  }
8862
  else foreach ( array_keys($slugs) as $slugidx ) {
8863
  if ( $slugs[$slugidx] != '' && isset($nums[$slugidx]) ) $hlp .= ' '.$nums[$slugidx].'. '.esc_js(wppa_dflt($slugs[$slugidx]));
8864
+ if ( $slugs[$slugidx] != '' && $wppa_opt[$slugs[$slugidx]] != $wppa_defaults[$slugs[$slugidx]] ) {
8865
+ $is_dflt = false;
8866
+ }
8867
  }
8868
  }
8869
  }
8870
+ $result .= '<td><input type="button" style="font-size: 11px; height:20px; padding:0; cursor: pointer;" title="'.__('Click for help', 'wp-photo-album-plus').'" onclick="alert('."'".$hlp."'".')" value="&nbsp;' . ( $is_dflt ? '?' : '!' ) . '&nbsp;"></td>';
8871
  }
8872
  else {
8873
  $result .= '<td></td>';//$hlp = __('No help available');
9183
  if ( $slug == '' ) return '';
9184
  if ( $no_default ) return '';
9185
 
9186
+ $dflt = isset( $wppa_defaults[$slug] ) ? $wppa_defaults[$slug] : '';
9187
 
9188
  $dft = $dflt;
9189
  switch ($dflt) {
wppa-setup.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the setup stuff
6
- * Version 6.3.17
7
  *
8
  */
9
 
@@ -805,6 +805,7 @@ Hide Camera info
805
  'wppa_up_tag_input_on' => 'yes',
806
  'wppa_up_tag_input_title' => __( 'Enter new tags:' , 'wp-photo-album-plus'),
807
  'wppa_up_tag_preview' => 'yes',
 
808
 
809
  // J Custom datafields
810
  'wppa_custom_fields' => 'no',
@@ -1356,6 +1357,7 @@ Hide Camera info
1356
  'wppa_watermark_opacity' => '20',
1357
  'wppa_watermark_opacity_text' => '80',
1358
  'wppa_watermark_thumbs' => 'no',
 
1359
 
1360
  // G Slide order
1361
  'wppa_slide_order' => '0,1,2,3,4,5,6,7,8,9,10',
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the setup stuff
6
+ * Version 6.3.18
7
  *
8
  */
9
 
805
  'wppa_up_tag_input_on' => 'yes',
806
  'wppa_up_tag_input_title' => __( 'Enter new tags:' , 'wp-photo-album-plus'),
807
  'wppa_up_tag_preview' => 'yes',
808
+ 'wppa_camera_connect' => 'yes',
809
 
810
  // J Custom datafields
811
  'wppa_custom_fields' => 'no',
1357
  'wppa_watermark_opacity' => '20',
1358
  'wppa_watermark_opacity_text' => '80',
1359
  'wppa_watermark_thumbs' => 'no',
1360
+ 'wppa_watermark_preview' => '',
1361
 
1362
  // G Slide order
1363
  'wppa_slide_order' => '0,1,2,3,4,5,6,7,8,9,10',
wppa-slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the slideshow high level functions
6
- * Version 6.3.14
7
  *
8
  */
9
 
@@ -360,8 +360,8 @@ function wppa_slide_frame() {
360
  ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
361
  ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
362
 
363
- */
364
-
365
 
366
  wppa_out( '<img' .
367
  ' id="ubb-'.wppa( 'mocc' ).'-l"' .
@@ -386,6 +386,7 @@ function wppa_slide_frame() {
386
  ' onmouseout="wppaUbb('.wppa( 'mocc' ).',\'l\',\'hide\')"' .
387
  ' onclick="wppaUbb('.wppa( 'mocc' ).',\'l\',\'click\')"' .
388
  ' ontouchend="wppaUbb('.wppa( 'mocc' ).',\'l\',\'click\')"' .
 
389
  ' />' .
390
  '<img' .
391
  ' id="ubb-'.wppa( 'mocc' ).'-r"' .
@@ -410,6 +411,7 @@ function wppa_slide_frame() {
410
  ' onmouseout="wppaUbb('.wppa( 'mocc' ).',\'r\',\'hide\')"' .
411
  ' onclick="wppaUbb('.wppa( 'mocc' ).',\'r\',\'click\')"' .
412
  ' ontouchend="wppaUbb('.wppa( 'mocc' ).',\'r\',\'click\')"' .
 
413
  ' />'
414
  );
415
  }
@@ -1116,10 +1118,11 @@ function wppa_startstop_icons() {
1116
  'box-shadow:none;' .
1117
  '"' .
1118
  ' onclick="wppaStartStop( ' . wppa( 'mocc' ) . ', -1 );"' .
1119
- ' onmouseover="jQuery(this).fadeTo(200,0.8)"' .
1120
- ' onmouseout="jQuery(this).fadeTo(200,0)"' .
1121
- ' ontouchstart="jQuery(this).fadeTo(200,0.8)"' .
1122
  ' ontouchend="wppaStartStop( ' . wppa( 'mocc' ) . ', -1 );"' .
 
1123
  ' />' );
1124
  }
1125
 
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the slideshow high level functions
6
+ * Version 6.3.18
7
  *
8
  */
9
 
360
  ' ontouchstart="jQuery(this).stop().fadeTo(200,1);"' +
361
  ' onload="jQuery(this).stop().fadeTo(5000,0);"' +
362
 
363
+ */
364
+
365
 
366
  wppa_out( '<img' .
367
  ' id="ubb-'.wppa( 'mocc' ).'-l"' .
386
  ' onmouseout="wppaUbb('.wppa( 'mocc' ).',\'l\',\'hide\')"' .
387
  ' onclick="wppaUbb('.wppa( 'mocc' ).',\'l\',\'click\')"' .
388
  ' ontouchend="wppaUbb('.wppa( 'mocc' ).',\'l\',\'click\')"' .
389
+ ' onload="wppaUbb('.wppa( 'mocc' ).',\'l\',\'hide\')"' .
390
  ' />' .
391
  '<img' .
392
  ' id="ubb-'.wppa( 'mocc' ).'-r"' .
411
  ' onmouseout="wppaUbb('.wppa( 'mocc' ).',\'r\',\'hide\')"' .
412
  ' onclick="wppaUbb('.wppa( 'mocc' ).',\'r\',\'click\')"' .
413
  ' ontouchend="wppaUbb('.wppa( 'mocc' ).',\'r\',\'click\')"' .
414
+ ' onload="wppaUbb('.wppa( 'mocc' ).',\'l\',\'hide\')"' .
415
  ' />'
416
  );
417
  }
1118
  'box-shadow:none;' .
1119
  '"' .
1120
  ' onclick="wppaStartStop( ' . wppa( 'mocc' ) . ', -1 );"' .
1121
+ ' onmouseover="jQuery(this).fadeTo(200,0.8);"' .
1122
+ ' onmouseout="jQuery(this).fadeTo(200,0);"' .
1123
+ ' ontouchstart="jQuery(this).fadeTo(200,0.8);"' .
1124
  ' ontouchend="wppaStartStop( ' . wppa( 'mocc' ) . ', -1 );"' .
1125
+ ' onload="jQuery(this).fadeTo(1000,0);"' .
1126
  ' />' );
1127
  }
1128
 
wppa-widget-admin.php CHANGED
@@ -3,15 +3,15 @@
3
  * Pachkage: wp-photo-album-plus
4
  *
5
  * admin sidebar widget
6
- * version 6.3.17
7
  *
8
  */
9
 
10
  function _wppa_sidebar_page_options() {
11
  global $wpdb;
12
-
13
  $options_error = false;
14
-
15
  if (isset($_GET['walbum'])) {
16
  $walbum = wppa_walbum_sanitize($_GET['walbum']);
17
  wppa_update_option('wppa_widget_album', $walbum);
@@ -20,7 +20,7 @@ global $wpdb;
20
  if ( ! wp_verify_nonce( $_REQUEST['wppa-update-check'], 'wppa-update-check' ) ) {
21
  echo 'Trying:'.$_REQUEST['wppa-update-check'];
22
  }
23
-
24
  if (isset($_POST['wppa-widgettitle'])) wppa_update_option('wppa_widgettitle', $_POST['wppa-widgettitle']);
25
  if (isset($_POST['wppa-potd-align'])) wppa_update_option('wppa_potd_align', $_POST['wppa-potd-align']);
26
  if (isset($_POST['wppa-widget-albums'])) wppa_update_option('wppa_widget_album', wppa_walbum_sanitize($_POST['wppa-widget-albums']));
@@ -41,20 +41,20 @@ global $wpdb;
41
  $options_error = true;
42
  }
43
  }
44
- if (!$options_error && isset($_POST['wppa-set-submit'])) wppa_update_message(__('Changes Saved. Don\'t forget to activate the widget!', 'wp-photo-album-plus'));
45
- }
46
  wppa_initialize_runtime('force');
47
  ?>
48
-
49
  <div class="wrap">
50
  <?php $iconurl = WPPA_URL.'/images/settings32.png'; ?>
51
  <div id="icon-album" class="icon32" style="background: transparent url(<?php echo($iconurl); ?>) no-repeat">
52
  <br />
53
  </div>
54
  <h2><?php _e('Photo of the Day Widget Settings', 'wp-photo-album-plus'); ?></h2>
55
-
56
  <?php $action_url = wppa_dbg_url(get_admin_url().'admin.php?page=wppa_photo_of_the_day') ?>
57
-
58
  <form action="<?php echo $action_url ?>" method="post">
59
  <?php echo wp_nonce_field('wppa-update-check', 'wppa-update-check'); ?>
60
 
@@ -68,8 +68,8 @@ global $wpdb;
68
  <input type="text" name="wppa-widgettitle" id="wppa-widgettitle" value="<?php echo wppa_opt( 'widgettitle' ) ?>" />
69
  <span class="description"><br/><?php _e('Enter/modify the title for the widget. This is a default and can be overriden at widget activation.', 'wp-photo-album-plus'); ?></span>
70
  </td>
71
- </tr>
72
-
73
  <tr valign="top">
74
  <th scope="row">
75
  <label ><?php _e('Widget Photo Width:', 'wp-photo-album-plus'); ?></label>
@@ -145,12 +145,12 @@ global $wpdb;
145
  <?php $sel = 'selected="selected"'; ?>
146
  <?php $method = wppa_opt( 'widget_method' ); ?>
147
  <select name="wppa-widget-method" id="wppa-wm" onchange="wppaCheckWidgetMethod()" >
148
- <option value="1" <?php if ($method == '1') echo($sel); ?>><?php _e('Fixed photo', 'wp-photo-album-plus'); ?></option>
149
  <option value="2" <?php if ($method == '2') echo($sel); ?>><?php _e('Random', 'wp-photo-album-plus'); ?></option>
150
  <option value="3" <?php if ($method == '3') echo($sel); ?>><?php _e('Last upload', 'wp-photo-album-plus'); ?></option>
151
  <option value="4" <?php if ($method == '4') echo($sel); ?>><?php _e('Change every', 'wp-photo-album-plus'); ?></option>
152
  </select>
153
- <?php $period = wppa_opt( 'widget_period' );
154
  $text = esc_attr(__('The page will now be reloaded', 'wp-photo-album-plus' ));
155
  $onchange = esc_attr('alert(\''.$text.'\');wppaPotdChangePeriod()');
156
  ?>
@@ -201,7 +201,7 @@ global $wpdb;
201
  }
202
  echo '</select>';
203
  $photo_order = date_i18n( $date_key ) - get_option( 'wppa_potd_offset', '0' );
204
- while ( $photo_order < '1' ) {
205
  $photo_order += $n_days;
206
  }
207
  echo '. '.sprintf( __('Todays photo order# = %s.', 'wp-photo-album-plus'), $photo_order );
@@ -228,7 +228,7 @@ global $wpdb;
228
  <?php _e('Links are set on the <b>Photo Albums -> Settings</b> screen.', 'wp-photo-album-plus'); ?>
229
  </td>
230
  </tr>
231
- <?php }
232
  else { ?>
233
  <tr class="wppa-wlu" >
234
  <th scope="row">
@@ -256,7 +256,7 @@ global $wpdb;
256
  <option value="desc" <?php if ($subtit == 'desc') echo($sel); ?>><?php _e('Description', 'wp-photo-album-plus'); ?></option>
257
  <option value="owner" <?php if ( $subtit == 'owner' ) echo $sel ?>><?php _e('Owner', 'wp-photo-album-plus'); ?></option>
258
  </select>
259
- <span class="description"><br/><?php _e('Select the content of the subtitle.', 'wp-photo-album-plus'); ?></span>
260
  </td>
261
  </tr>
262
  </tbody>
@@ -264,24 +264,24 @@ global $wpdb;
264
  <p>
265
  <input type="submit" class="button-primary" name="wppa-set-submit" value="<?php _e('Save Changes', 'wp-photo-album-plus'); ?>" />
266
  </p>
267
- <?php
268
  $alb = wppa_opt( 'widget_album' );
269
  $opt = wppa_is_int( $alb ) ? ' ' . wppa_get_photo_order( $alb ) . ' ' : '';
270
  $photos = wppa_get_widgetphotos( $alb, $opt );
271
  $cnt = count( $photos );
272
  if ( empty( $photos ) ) {
273
  echo '<p>' . __('No photos yet in this album.', 'wp-photo-album-plus') . '</p>';
274
- }
275
  elseif ( $cnt > '5000' ) {
276
  echo '<p>' . sprintf( __( 'There are too many photos in the selection to show a preview ( %d )', 'wp-photo-album-plus' ), $cnt ) . '</p>';
277
  }
278
  else {
279
  $curid = wppa_opt( 'widget_photo' );
280
-
281
  // Process photos
282
- foreach ( $photos as $photo ) {
283
  $id = $photo['id'];
284
-
285
  // Open container div
286
  echo '<div' .
287
  ' class="photoselect"' .
@@ -290,7 +290,7 @@ global $wpdb;
290
  'height:300px;' .
291
  // 'overflow:auto;' .
292
  '" >';
293
-
294
  // Open image container div
295
  echo '<div' .
296
  ' style="' .
@@ -299,14 +299,14 @@ global $wpdb;
299
  'overflow:hidden;' .
300
  'text-align:center;' .
301
  '" >';
302
-
303
  // The image if a video
304
  if ( wppa_is_video( $id ) ) {
305
  echo wppa_get_video_html( array( 'id' => $id,
306
  'style' => 'width:180px;'
307
  ));
308
  }
309
-
310
  // The image if a photo
311
  else {
312
  echo '<img' .
@@ -315,23 +315,23 @@ global $wpdb;
315
  'max-width:180px;' .
316
  'max-height:135px;' .
317
  'margin:auto;' .
318
- '"' .
319
  ' alt="' . esc_attr( wppa_get_photo_name( $photo['id'] ) ) .'" />';
320
-
321
  // Audio ?
322
  if ( wppa_has_audio( $id ) ) {
323
  echo wppa_get_audio_html( array( 'id' => $id,
324
- 'style' => 'width:180px;' .
325
  'position:relative;' .
326
- 'bottom:' . ( wppa_get_audio_control_height() + 4 ) .'px;'
327
  ));
328
  }
329
- }
330
-
331
  // Close image container div
332
  echo '</div>'
333
-
334
-
335
  ?>
336
  <div style="clear:both;width:100%;margin:3px 0;" >
337
  <div style="font-size:9px; line-height:10px;float:left;"><?php echo '(#'.$photo['p_order'].')' ?></div>
@@ -342,7 +342,7 @@ global $wpdb;
342
  <div style="font-size:9px; line-height:10px;"><?php echo wppa_get_photo_desc($photo['id']) ?></div>
343
  </div>
344
  </div>
345
- <?php
346
  }
347
  echo '<div class="clear"></div>';
348
  } ?>
3
  * Pachkage: wp-photo-album-plus
4
  *
5
  * admin sidebar widget
6
+ * version 6.3.18
7
  *
8
  */
9
 
10
  function _wppa_sidebar_page_options() {
11
  global $wpdb;
12
+
13
  $options_error = false;
14
+
15
  if (isset($_GET['walbum'])) {
16
  $walbum = wppa_walbum_sanitize($_GET['walbum']);
17
  wppa_update_option('wppa_widget_album', $walbum);
20
  if ( ! wp_verify_nonce( $_REQUEST['wppa-update-check'], 'wppa-update-check' ) ) {
21
  echo 'Trying:'.$_REQUEST['wppa-update-check'];
22
  }
23
+
24
  if (isset($_POST['wppa-widgettitle'])) wppa_update_option('wppa_widgettitle', $_POST['wppa-widgettitle']);
25
  if (isset($_POST['wppa-potd-align'])) wppa_update_option('wppa_potd_align', $_POST['wppa-potd-align']);
26
  if (isset($_POST['wppa-widget-albums'])) wppa_update_option('wppa_widget_album', wppa_walbum_sanitize($_POST['wppa-widget-albums']));
41
  $options_error = true;
42
  }
43
  }
44
+ if (!$options_error && isset($_POST['wppa-set-submit'])) wppa_update_message(__('Changes Saved. Don\'t forget to activate the widget!', 'wp-photo-album-plus'));
45
+ }
46
  wppa_initialize_runtime('force');
47
  ?>
48
+
49
  <div class="wrap">
50
  <?php $iconurl = WPPA_URL.'/images/settings32.png'; ?>
51
  <div id="icon-album" class="icon32" style="background: transparent url(<?php echo($iconurl); ?>) no-repeat">
52
  <br />
53
  </div>
54
  <h2><?php _e('Photo of the Day Widget Settings', 'wp-photo-album-plus'); ?></h2>
55
+
56
  <?php $action_url = wppa_dbg_url(get_admin_url().'admin.php?page=wppa_photo_of_the_day') ?>
57
+
58
  <form action="<?php echo $action_url ?>" method="post">
59
  <?php echo wp_nonce_field('wppa-update-check', 'wppa-update-check'); ?>
60
 
68
  <input type="text" name="wppa-widgettitle" id="wppa-widgettitle" value="<?php echo wppa_opt( 'widgettitle' ) ?>" />
69
  <span class="description"><br/><?php _e('Enter/modify the title for the widget. This is a default and can be overriden at widget activation.', 'wp-photo-album-plus'); ?></span>
70
  </td>
71
+ </tr>
72
+
73
  <tr valign="top">
74
  <th scope="row">
75
  <label ><?php _e('Widget Photo Width:', 'wp-photo-album-plus'); ?></label>
145
  <?php $sel = 'selected="selected"'; ?>
146
  <?php $method = wppa_opt( 'widget_method' ); ?>
147
  <select name="wppa-widget-method" id="wppa-wm" onchange="wppaCheckWidgetMethod()" >
148
+ <option value="1" <?php if ($method == '1') echo($sel); ?>><?php _e('Fixed photo', 'wp-photo-album-plus'); ?></option>
149
  <option value="2" <?php if ($method == '2') echo($sel); ?>><?php _e('Random', 'wp-photo-album-plus'); ?></option>
150
  <option value="3" <?php if ($method == '3') echo($sel); ?>><?php _e('Last upload', 'wp-photo-album-plus'); ?></option>
151
  <option value="4" <?php if ($method == '4') echo($sel); ?>><?php _e('Change every', 'wp-photo-album-plus'); ?></option>
152
  </select>
153
+ <?php $period = wppa_opt( 'widget_period' );
154
  $text = esc_attr(__('The page will now be reloaded', 'wp-photo-album-plus' ));
155
  $onchange = esc_attr('alert(\''.$text.'\');wppaPotdChangePeriod()');
156
  ?>
201
  }
202
  echo '</select>';
203
  $photo_order = date_i18n( $date_key ) - get_option( 'wppa_potd_offset', '0' );
204
+ while ( $photo_order < '0' ) {
205
  $photo_order += $n_days;
206
  }
207
  echo '. '.sprintf( __('Todays photo order# = %s.', 'wp-photo-album-plus'), $photo_order );
228
  <?php _e('Links are set on the <b>Photo Albums -> Settings</b> screen.', 'wp-photo-album-plus'); ?>
229
  </td>
230
  </tr>
231
+ <?php }
232
  else { ?>
233
  <tr class="wppa-wlu" >
234
  <th scope="row">
256
  <option value="desc" <?php if ($subtit == 'desc') echo($sel); ?>><?php _e('Description', 'wp-photo-album-plus'); ?></option>
257
  <option value="owner" <?php if ( $subtit == 'owner' ) echo $sel ?>><?php _e('Owner', 'wp-photo-album-plus'); ?></option>
258
  </select>
259
+ <span class="description"><br/><?php _e('Select the content of the subtitle.', 'wp-photo-album-plus'); ?></span>
260
  </td>
261
  </tr>
262
  </tbody>
264
  <p>
265
  <input type="submit" class="button-primary" name="wppa-set-submit" value="<?php _e('Save Changes', 'wp-photo-album-plus'); ?>" />
266
  </p>
267
+ <?php
268
  $alb = wppa_opt( 'widget_album' );
269
  $opt = wppa_is_int( $alb ) ? ' ' . wppa_get_photo_order( $alb ) . ' ' : '';
270
  $photos = wppa_get_widgetphotos( $alb, $opt );
271
  $cnt = count( $photos );
272
  if ( empty( $photos ) ) {
273
  echo '<p>' . __('No photos yet in this album.', 'wp-photo-album-plus') . '</p>';
274
+ }
275
  elseif ( $cnt > '5000' ) {
276
  echo '<p>' . sprintf( __( 'There are too many photos in the selection to show a preview ( %d )', 'wp-photo-album-plus' ), $cnt ) . '</p>';
277
  }
278
  else {
279
  $curid = wppa_opt( 'widget_photo' );
280
+
281
  // Process photos
282
+ foreach ( $photos as $photo ) {
283
  $id = $photo['id'];
284
+
285
  // Open container div
286
  echo '<div' .
287
  ' class="photoselect"' .
290
  'height:300px;' .
291
  // 'overflow:auto;' .
292
  '" >';
293
+
294
  // Open image container div
295
  echo '<div' .
296
  ' style="' .
299
  'overflow:hidden;' .
300
  'text-align:center;' .
301
  '" >';
302
+
303
  // The image if a video
304
  if ( wppa_is_video( $id ) ) {
305
  echo wppa_get_video_html( array( 'id' => $id,
306
  'style' => 'width:180px;'
307
  ));
308
  }
309
+
310
  // The image if a photo
311
  else {
312
  echo '<img' .
315
  'max-width:180px;' .
316
  'max-height:135px;' .
317
  'margin:auto;' .
318
+ '"' .
319
  ' alt="' . esc_attr( wppa_get_photo_name( $photo['id'] ) ) .'" />';
320
+
321
  // Audio ?
322
  if ( wppa_has_audio( $id ) ) {
323
  echo wppa_get_audio_html( array( 'id' => $id,
324
+ 'style' => 'width:180px;' .
325
  'position:relative;' .
326
+ 'bottom:' . ( wppa_get_audio_control_height() + 4 ) .'px;'
327
  ));
328
  }
329
+ }
330
+
331
  // Close image container div
332
  echo '</div>'
333
+
334
+
335
  ?>
336
  <div style="clear:both;width:100%;margin:3px 0;" >
337
  <div style="font-size:9px; line-height:10px;float:left;"><?php echo '(#'.$photo['p_order'].')' ?></div>
342
  <div style="font-size:9px; line-height:10px;"><?php echo wppa_get_photo_desc($photo['id']) ?></div>
343
  </div>
344
  </div>
345
+ <?php
346
  }
347
  echo '<div class="clear"></div>';
348
  } ?>
wppa-widget-functions.php CHANGED
@@ -2,7 +2,7 @@
2
  /* wppa-widget-functions.php
3
  /* Package: wp-photo-album-plus
4
  /*
5
- /* Version 6.3.17
6
  /*
7
  */
8
 
@@ -309,7 +309,7 @@ global $wpdb;
309
  if ( $photos ) {
310
  $d = strval(intval(date_i18n( "z" )));
311
  $d -= get_option( 'wppa_potd_offset', '0' );
312
- while ( $d < '1' ) $d += '366';
313
  foreach ( $photos as $img ) {
314
  if ( $img['p_order'] == $d ) $image = $img;
315
  }
@@ -321,10 +321,37 @@ global $wpdb;
321
  $u = floor( $u );
322
  $u /= $per;
323
  $u = floor( $u );
 
 
 
324
  if ( $photos ) {
325
  $p = count( $photos );
326
  $idn = fmod( $u, $p );
327
- $photos = wppa_get_widgetphotos( $album, "ORDER BY RAND(".$idn.")" ); // Added to randomize
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  $image = $photos[$idn];
329
  }
330
  else {
2
  /* wppa-widget-functions.php
3
  /* Package: wp-photo-album-plus
4
  /*
5
+ /* Version 6.3.18
6
  /*
7
  */
8
 
309
  if ( $photos ) {
310
  $d = strval(intval(date_i18n( "z" )));
311
  $d -= get_option( 'wppa_potd_offset', '0' );
312
+ while ( $d < '0' ) $d += '366';
313
  foreach ( $photos as $img ) {
314
  if ( $img['p_order'] == $d ) $image = $img;
315
  }
321
  $u = floor( $u );
322
  $u /= $per;
323
  $u = floor( $u );
324
+
325
+ // Find the right photo out of the photos found by wppa_get_widgetphotos(),
326
+ // based on the Change every { any timeperiod } algorithm.
327
  if ( $photos ) {
328
  $p = count( $photos );
329
  $idn = fmod( $u, $p );
330
+
331
+ // If from topten,...
332
+ if ( $album == 'topten' ) {
333
+
334
+ // Do a re-read of the same to order by rand, reproduceable
335
+ // This can not be done by wppa_get_widgetphotos(),
336
+ // it does already ORDER BY for the top selection criterium.
337
+ // So we save the ids, and do a SELECT WHERE id IN ( array of found ids ) ORDER BY RAND( seed )
338
+ $ids = array();
339
+ foreach( $photos as $photo ) {
340
+ $ids[] = $photo['id'];
341
+ }
342
+ $photos = $wpdb->get_results( "SELECT `id`, `p_order` " .
343
+ "FROM `".WPPA_PHOTOS."` " .
344
+ "WHERE `id` IN (" . implode( ',', $ids ) . ") " .
345
+ "ORDER BY RAND(".$idn.")",
346
+ ARRAY_A );
347
+ }
348
+
349
+ // Not from topten, use wppa_get_widgetphotos() to get a reproduceable random sequence
350
+ else {
351
+ $photos = wppa_get_widgetphotos( $album, " ORDER BY RAND(".$idn.")" );
352
+ }
353
+
354
+ // Image found
355
  $image = $photos[$idn];
356
  }
357
  else {
wppa.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
- * Version: 6.3.17
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
@@ -29,12 +29,12 @@ global $wpdb;
29
  /* when new options are added and when the wppa_setup() routine
30
  /* must be called right after update for any other reason.
31
  */
32
- global $wppa_revno; $wppa_revno = '6317';
33
 
34
  /* This is the api interface version number
35
  /* It is incremented at any code change.
36
  */
37
- global $wppa_api_version; $wppa_api_version = '6-3-17-000';
38
 
39
  /* start timers */
40
  global $wppa_starttime; $wppa_starttime = microtime(true);
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
+ * Version: 6.3.18
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
29
  /* when new options are added and when the wppa_setup() routine
30
  /* must be called right after update for any other reason.
31
  */
32
+ global $wppa_revno; $wppa_revno = '6318';
33
 
34
  /* This is the api interface version number
35
  /* It is incremented at any code change.
36
  */
37
+ global $wppa_api_version; $wppa_api_version = '6-3-18-000';
38
 
39
  /* start timers */
40
  global $wppa_starttime; $wppa_starttime = microtime(true);