Version Description
Download this release
Release Info
Developer | opajaap |
Plugin | WP Photo Album Plus |
Version | 6.5.00 |
Comparing to | |
See all releases |
Code changes from version 6.4.20 to 6.5.00
- js/wppa-ajax-front.js +58 -2
- js/wppa-ajax-front.min.js +5 -1
- js/wppa-slideshow.js +6 -2
- js/wppa-slideshow.min.js +3 -2
- languages/wp-photo-album-plus-fr_FR.mo +0 -0
- languages/wp-photo-album-plus-fr_FR.po +2619 -2535
- readme.txt +24 -3
- theme/{photo-album-page.php → photo-album-page-2010.php} +0 -0
- theme/photo-album-page-2016.php +64 -0
- wppa-ajax.php +27 -2
- wppa-album-admin-autosave.php +37 -1
- wppa-album-covers.php +3 -3
- wppa-bestof-widget.php +5 -3
- wppa-boxes-html.php +56 -5
- wppa-breadcrumb.php +10 -1
- wppa-cart.php +6 -1
- wppa-common-functions.php +6 -1
- wppa-date-time.php +29 -16
- wppa-functions.php +91 -11
- wppa-items.php +64 -25
- wppa-links.php +12 -6
- wppa-potd-widget.php +22 -4
- wppa-settings-autosave.php +43 -8
- wppa-setup.php +37 -1
- wppa-slideshow.php +118 -55
- wppa-thumbnails.php +2 -1
- wppa-utils.php +38 -7
- wppa-widget-admin.php +24 -1
- wppa-wpdb-insert.php +7 -1
- wppa-wpdb-update.php +4 -1
- wppa.php +12 -4
js/wppa-ajax-front.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
// Contains frontend ajax modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
-
var wppaJsAjaxVersion = '6.
|
7 |
|
8 |
var wppaRenderAdd = false;
|
9 |
var wppaWaitForCounter = 0;
|
@@ -498,7 +498,7 @@ function _wppaRateIt( mocc, value ) {
|
|
498 |
var photo = _wppaId[mocc][_wppaCurIdx[mocc]];
|
499 |
var oldval = _wppaMyr[mocc][_wppaCurIdx[mocc]];
|
500 |
var waittext = _wppaWaitTexts[mocc][_wppaCurIdx[mocc]];
|
501 |
-
|
502 |
// If wait text, alert and exit
|
503 |
if ( waittext.length > 0 ) {
|
504 |
alert( waittext );
|
@@ -577,6 +577,62 @@ function _wppaRateIt( mocc, value ) {
|
|
577 |
} );
|
578 |
}
|
579 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
// Download a photo having its original name as filename
|
581 |
function wppaAjaxMakeOrigName( mocc, photo ) {
|
582 |
|
3 |
// Contains frontend ajax modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaJsAjaxVersion = '6.5.00';
|
7 |
|
8 |
var wppaRenderAdd = false;
|
9 |
var wppaWaitForCounter = 0;
|
498 |
var photo = _wppaId[mocc][_wppaCurIdx[mocc]];
|
499 |
var oldval = _wppaMyr[mocc][_wppaCurIdx[mocc]];
|
500 |
var waittext = _wppaWaitTexts[mocc][_wppaCurIdx[mocc]];
|
501 |
+
|
502 |
// If wait text, alert and exit
|
503 |
if ( waittext.length > 0 ) {
|
504 |
alert( waittext );
|
577 |
} );
|
578 |
}
|
579 |
|
580 |
+
// Rate from lightbox
|
581 |
+
function _wppaOvlRateIt( id, value ) {
|
582 |
+
|
583 |
+
// No value, no vote
|
584 |
+
if ( value == 0 ) return;
|
585 |
+
|
586 |
+
// Do the voting
|
587 |
+
jQuery.ajax( { url: wppaAjaxUrl,
|
588 |
+
data: 'action=wppa' +
|
589 |
+
'&wppa-action=rate' +
|
590 |
+
'&wppa-rating=' + value +
|
591 |
+
'&wppa-rating-id=' + id +
|
592 |
+
'&wppa-occur=1' + // Must be <> 0 to indicate no error
|
593 |
+
'&wppa-nonce=' + jQuery( '#wppa-nonce' ).val(),
|
594 |
+
async: true,
|
595 |
+
type: 'GET',
|
596 |
+
timeout: 60000,
|
597 |
+
beforeSend: function( xhr ) {
|
598 |
+
|
599 |
+
// Set icon
|
600 |
+
jQuery( '#wppa-rate-'+value ).attr( 'src', wppaImageDirectory+'tick.png' );
|
601 |
+
|
602 |
+
// Fade in fully
|
603 |
+
jQuery( '#wppa-rate-'+value ).stop().fadeTo( 100, 1.0 );
|
604 |
+
},
|
605 |
+
success: function( result, status, xhr ) {
|
606 |
+
|
607 |
+
var ArrValues = result.split( "||" );
|
608 |
+
|
609 |
+
// Error from rating algorithm?
|
610 |
+
if ( ArrValues[0] == 0 ) {
|
611 |
+
if ( ArrValues[1] == 900 ) { // Recoverable error
|
612 |
+
alert( ArrValues[2] );
|
613 |
+
}
|
614 |
+
else {
|
615 |
+
alert( 'Error Code='+ArrValues[1]+'\n\n'+ArrValues[2] );
|
616 |
+
}
|
617 |
+
|
618 |
+
// Set icon
|
619 |
+
jQuery( '#wppa-rate-'+value ).attr( 'src', wppaImageDirectory+'cross.png' );
|
620 |
+
}
|
621 |
+
|
622 |
+
// No rating error
|
623 |
+
else {
|
624 |
+
|
625 |
+
// Shift to next slide?
|
626 |
+
if ( wppaNextOnCallback ) wppaOvlShowNext();
|
627 |
+
}
|
628 |
+
},
|
629 |
+
error: function( xhr, status, error ) {
|
630 |
+
wppaConsoleLog( '_wppaOvlRateIt failed. Error = ' + error + ', status = ' + status, 'force' );
|
631 |
+
},
|
632 |
+
} );
|
633 |
+
|
634 |
+
}
|
635 |
+
|
636 |
// Download a photo having its original name as filename
|
637 |
function wppaAjaxMakeOrigName( mocc, photo ) {
|
638 |
|
js/wppa-ajax-front.min.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
-
var wppaJsAjaxVersion='6.
|
8 |
wppaRenderAdd=add;if(wppaLang!='')ajaxurl+='&lang='+wppaLang;if(wppaAutoColumnWidth[mocc])ajaxurl+='&resp=1';if(wppaCanAjaxRender){jQuery.ajax({url:ajaxurl,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-ajax-spin-'+mocc).css('display','');},success:function(result,status,xhr){if(wppaRenderAdd){jQuery(wppaRenderAdd+result).insertBefore('#wppa-container-'+mocc+'-end');}
|
9 |
else{jQuery('#wppa-container-'+mocc).html(result);}
|
10 |
if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
|
@@ -41,6 +41,10 @@ if(oldval!=0&&wppaRatingOnce)return;if(oldval<0)return;_wppaVoteInProgress=true;
|
|
41 |
else{alert('Error Code='+ArrValues[1]+'\n\n'+ArrValues[2]);}}
|
42 |
else{_wppaMyr[ArrValues[0]][ArrValues[2]]=ArrValues[3];_wppaAvg[ArrValues[0]][ArrValues[2]]=ArrValues[4];_wppaDisc[ArrValues[0]][ArrValues[2]]=ArrValues[5];_wppaSetRatingDisplay(mocc);if(wppaCommentRequiredAfterVote){if(ArrValues[6]==0){alert(ArrValues[7]);}}
|
43 |
if(wppaNextOnCallback)_wppaNextOnCallback(mocc);}},error:function(xhr,status,error){wppaConsoleLog('_wppaRateIt failed. Error = '+error+', status = '+status,'force');},});}
|
|
|
|
|
|
|
|
|
44 |
function wppaAjaxMakeOrigName(mocc,photo){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=makeorigname'+'&photo-id='+photo+'&from=fsname',async:true,type:'GET',timeout:60000,beforeSend:function(xhr){},success:function(result,status,xhr){var ArrValues=result.split("||");if(ArrValues[1]=='0'){if(wppaArtMonkyLink=='file')window.open(ArrValues[2]);if(wppaArtMonkyLink=='zip')document.location=ArrValues[2];}
|
45 |
else{alert('Error: '+ArrValues[1]+'\n\n'+ArrValues[2]);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxMakeOrigName failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){}});}
|
46 |
function wppaAjaxDownloadAlbum(mocc,id){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=downloadalbum'+'&album-id='+id,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){jQuery('#dwnspin-'+mocc+'-'+id).css('display','');},success:function(result,status,xhr){var ArrValues=result.split("||");var url=ArrValues[0];var erok=ArrValues[1];var text=ArrValues[2];if(ArrValues.length==3&&text!='')alert('Attention:\n\n'+text);if(erok=='OK'){document.location=url;}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaJsAjaxVersion='6.5.00';var wppaRenderAdd=false;var wppaWaitForCounter=0;function wppaDoAjaxRender(mocc,ajaxurl,newurl,add,waitfor){if(parseInt(waitfor)>0&&waitfor!=wppaWaitForCounter){setTimeout('wppaDoAjaxRender( '+mocc+', \''+ajaxurl+'\', \''+newurl+'\', \''+add+'\', '+waitfor+' )',100);return;}
|
8 |
wppaRenderAdd=add;if(wppaLang!='')ajaxurl+='&lang='+wppaLang;if(wppaAutoColumnWidth[mocc])ajaxurl+='&resp=1';if(wppaCanAjaxRender){jQuery.ajax({url:ajaxurl,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-ajax-spin-'+mocc).css('display','');},success:function(result,status,xhr){if(wppaRenderAdd){jQuery(wppaRenderAdd+result).insertBefore('#wppa-container-'+mocc+'-end');}
|
9 |
else{jQuery('#wppa-container-'+mocc).html(result);}
|
10 |
if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
|
41 |
else{alert('Error Code='+ArrValues[1]+'\n\n'+ArrValues[2]);}}
|
42 |
else{_wppaMyr[ArrValues[0]][ArrValues[2]]=ArrValues[3];_wppaAvg[ArrValues[0]][ArrValues[2]]=ArrValues[4];_wppaDisc[ArrValues[0]][ArrValues[2]]=ArrValues[5];_wppaSetRatingDisplay(mocc);if(wppaCommentRequiredAfterVote){if(ArrValues[6]==0){alert(ArrValues[7]);}}
|
43 |
if(wppaNextOnCallback)_wppaNextOnCallback(mocc);}},error:function(xhr,status,error){wppaConsoleLog('_wppaRateIt failed. Error = '+error+', status = '+status,'force');},});}
|
44 |
+
function _wppaOvlRateIt(id,value){if(value==0)return;jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=rate'+'&wppa-rating='+value+'&wppa-rating-id='+id+'&wppa-occur=1'+'&wppa-nonce='+jQuery('#wppa-nonce').val(),async:true,type:'GET',timeout:60000,beforeSend:function(xhr){jQuery('#wppa-rate-'+value).attr('src',wppaImageDirectory+'tick.png');jQuery('#wppa-rate-'+value).stop().fadeTo(100,1.0);},success:function(result,status,xhr){var ArrValues=result.split("||");if(ArrValues[0]==0){if(ArrValues[1]==900){alert(ArrValues[2]);}
|
45 |
+
else{alert('Error Code='+ArrValues[1]+'\n\n'+ArrValues[2]);}
|
46 |
+
jQuery('#wppa-rate-'+value).attr('src',wppaImageDirectory+'cross.png');}
|
47 |
+
else{if(wppaNextOnCallback)wppaOvlShowNext();}},error:function(xhr,status,error){wppaConsoleLog('_wppaOvlRateIt failed. Error = '+error+', status = '+status,'force');},});}
|
48 |
function wppaAjaxMakeOrigName(mocc,photo){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=makeorigname'+'&photo-id='+photo+'&from=fsname',async:true,type:'GET',timeout:60000,beforeSend:function(xhr){},success:function(result,status,xhr){var ArrValues=result.split("||");if(ArrValues[1]=='0'){if(wppaArtMonkyLink=='file')window.open(ArrValues[2]);if(wppaArtMonkyLink=='zip')document.location=ArrValues[2];}
|
49 |
else{alert('Error: '+ArrValues[1]+'\n\n'+ArrValues[2]);}},error:function(xhr,status,error){wppaConsoleLog('wppaAjaxMakeOrigName failed. Error = '+error+', status = '+status,'force');},complete:function(xhr,status,newurl){}});}
|
50 |
function wppaAjaxDownloadAlbum(mocc,id){jQuery.ajax({url:wppaAjaxUrl,data:'action=wppa'+'&wppa-action=downloadalbum'+'&album-id='+id,async:true,type:'GET',timeout:60000,beforeSend:function(xhr){jQuery('#dwnspin-'+mocc+'-'+id).css('display','');},success:function(result,status,xhr){var ArrValues=result.split("||");var url=ArrValues[0];var erok=ArrValues[1];var text=ArrValues[2];if(ArrValues.length==3&&text!='')alert('Attention:\n\n'+text);if(erok=='OK'){document.location=url;}
|
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.
|
7 |
|
8 |
// This is an entrypoint to load the slide data
|
9 |
function wppaStoreSlideInfo(
|
@@ -232,6 +232,10 @@ function wppaRateIt( mocc, value ) {
|
|
232 |
_wppaRateIt( mocc, value );
|
233 |
}
|
234 |
|
|
|
|
|
|
|
|
|
235 |
function wppaPrev( mocc ) {
|
236 |
_wppaDidGoto[mocc] = true;
|
237 |
if ( ! _wppaSSRuns[mocc] ) {
|
@@ -1136,7 +1140,7 @@ function _wppaAdjustFilmstrip( mocc ) {
|
|
1136 |
var xoffset;
|
1137 |
xoffset = wppaFilmStripLength[mocc] / 2 - ( _wppaCurIdx[mocc] + 0.5 + wppaPreambule ) * wppaThumbnailPitch[mocc] - wppaFilmStripMargin[mocc];
|
1138 |
if ( wppaFilmShowGlue ) xoffset -= ( wppaFilmStripMargin[mocc] * 2 + 2 ); // Glue
|
1139 |
-
jQuery( '#wppa-filmstrip-'+mocc ).stop().animate( {marginLeft: xoffset+'px'});
|
1140 |
}
|
1141 |
else {
|
1142 |
_wppaFilmNoMove[mocc] = false; // reset
|
3 |
// Contains slideshow modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaJsSlideshowVersion = '6.5.00';
|
7 |
|
8 |
// This is an entrypoint to load the slide data
|
9 |
function wppaStoreSlideInfo(
|
232 |
_wppaRateIt( mocc, value );
|
233 |
}
|
234 |
|
235 |
+
function wppaOvlRateIt( id, value ) {
|
236 |
+
_wppaOvlRateIt( id, value );
|
237 |
+
}
|
238 |
+
|
239 |
function wppaPrev( mocc ) {
|
240 |
_wppaDidGoto[mocc] = true;
|
241 |
if ( ! _wppaSSRuns[mocc] ) {
|
1140 |
var xoffset;
|
1141 |
xoffset = wppaFilmStripLength[mocc] / 2 - ( _wppaCurIdx[mocc] + 0.5 + wppaPreambule ) * wppaThumbnailPitch[mocc] - wppaFilmStripMargin[mocc];
|
1142 |
if ( wppaFilmShowGlue ) xoffset -= ( wppaFilmStripMargin[mocc] * 2 + 2 ); // Glue
|
1143 |
+
jQuery( '#wppa-filmstrip-'+mocc ).stop().animate( {marginLeft: xoffset+'px'}, wppaAnimationSpeed);
|
1144 |
}
|
1145 |
else {
|
1146 |
_wppaFilmNoMove[mocc] = false; // reset
|
js/wppa-slideshow.min.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
-
var wppaJsSlideshowVersion='6.
|
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 ';}}
|
@@ -24,6 +24,7 @@ else{_wppaStart(mocc,index);if(index==-1){jQuery('#wppa-startstop-icon-'+mocc).a
|
|
24 |
function wppaBbb(mocc,where,act){if(!_wppaSSRuns[mocc]){_wppaBbb(mocc,where,act);}}
|
25 |
function wppaUbb(mocc,where,act){_wppaUbb(mocc,where,act);}
|
26 |
function wppaRateIt(mocc,value){_wppaRateIt(mocc,value);}
|
|
|
27 |
function wppaPrev(mocc){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaPrev(mocc);}}
|
28 |
function wppaPrevN(mocc,n){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaPrevN(mocc,n);}}
|
29 |
function wppaFirst(mocc){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaGoto(mocc,0);}}
|
@@ -115,7 +116,7 @@ theHtml=html;}}
|
|
115 |
if(_wppaAudioHtml[mocc][idx]!=''){theHtml+='<audio'+' controls'+' id="wppa-audio-'+_wppaId[mocc][idx]+'-'+mocc+'"'+' class="wppa-audio-'+mocc+' wppa-audio-'+_wppaId[mocc][idx]+'-'+mocc+'"'+' data-from="wppa"'+' onplay="wppaAudioPlaying['+mocc+'] = true;"'+' onpause="wppaAudioPlaying['+mocc+'] = false"'+' style="'+'position:relative;'+'top:-'+(wppaAudioHeight+wppaSlideBorderWidth)+'px;'+'z-index:10;'+'width:'+_wppaVideoNatWidth[mocc][idx]+'px;'+'left:'+(Math.max(0,(wppaGetContainerWidth(mocc)-_wppaVideoNatWidth[mocc][idx])/2))+'px;'+'padding:0 '+wppaSlideBorderWidth+'px;'+'box-sizing:border-box;'+'"'+' >'+
|
116 |
_wppaAudioHtml[mocc][idx]+'</audio>';}
|
117 |
theHtml=theHtml.replace(/title=""/g,'');jQuery("#theslide"+bgfg+"-"+mocc).html(theHtml);}
|
118 |
-
function _wppaAdjustFilmstrip(mocc){if(!document.getElementById('wppa-filmstrip-'+mocc))return;jQuery('.wppa-film-'+mocc).removeClass('wppa-filmthumb-active');if(!_wppaFilmNoMove[mocc]){var xoffset;xoffset=wppaFilmStripLength[mocc]/2-(_wppaCurIdx[mocc]+0.5+wppaPreambule)*wppaThumbnailPitch[mocc]-wppaFilmStripMargin[mocc];if(wppaFilmShowGlue)xoffset-=(wppaFilmStripMargin[mocc]*2+2);jQuery('#wppa-filmstrip-'+mocc).stop().animate({marginLeft:xoffset+'px'});}
|
119 |
else{_wppaFilmNoMove[mocc]=false;}
|
120 |
if(_wppaCurIdx[mocc]!=-1){var from=_wppaCurIdx[mocc]-10;if(from<0)from=0;var to=_wppaCurIdx[mocc]+10;if(to>_wppaSlides[mocc].length)to=_wppaSlides[mocc].length;var index=from;while(index<=to){var html=jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html();if(html){if(html.search('<!--')!=-1){html=html.replace('<!--','');html=html.replace('-->','');jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html(html);if(jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title')!=''){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title'));}
|
121 |
else if(wppaFilmThumbTitle!=''){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',wppaFilmThumbTitle);}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaJsSlideshowVersion='6.5.00';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,waittext){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;_wppaWaitTexts[mocc]=[];}
|
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 ';}}
|
24 |
function wppaBbb(mocc,where,act){if(!_wppaSSRuns[mocc]){_wppaBbb(mocc,where,act);}}
|
25 |
function wppaUbb(mocc,where,act){_wppaUbb(mocc,where,act);}
|
26 |
function wppaRateIt(mocc,value){_wppaRateIt(mocc,value);}
|
27 |
+
function wppaOvlRateIt(id,value){_wppaOvlRateIt(id,value);}
|
28 |
function wppaPrev(mocc){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaPrev(mocc);}}
|
29 |
function wppaPrevN(mocc,n){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaPrevN(mocc,n);}}
|
30 |
function wppaFirst(mocc){_wppaDidGoto[mocc]=true;if(!_wppaSSRuns[mocc]){_wppaGoto(mocc,0);}}
|
116 |
if(_wppaAudioHtml[mocc][idx]!=''){theHtml+='<audio'+' controls'+' id="wppa-audio-'+_wppaId[mocc][idx]+'-'+mocc+'"'+' class="wppa-audio-'+mocc+' wppa-audio-'+_wppaId[mocc][idx]+'-'+mocc+'"'+' data-from="wppa"'+' onplay="wppaAudioPlaying['+mocc+'] = true;"'+' onpause="wppaAudioPlaying['+mocc+'] = false"'+' style="'+'position:relative;'+'top:-'+(wppaAudioHeight+wppaSlideBorderWidth)+'px;'+'z-index:10;'+'width:'+_wppaVideoNatWidth[mocc][idx]+'px;'+'left:'+(Math.max(0,(wppaGetContainerWidth(mocc)-_wppaVideoNatWidth[mocc][idx])/2))+'px;'+'padding:0 '+wppaSlideBorderWidth+'px;'+'box-sizing:border-box;'+'"'+' >'+
|
117 |
_wppaAudioHtml[mocc][idx]+'</audio>';}
|
118 |
theHtml=theHtml.replace(/title=""/g,'');jQuery("#theslide"+bgfg+"-"+mocc).html(theHtml);}
|
119 |
+
function _wppaAdjustFilmstrip(mocc){if(!document.getElementById('wppa-filmstrip-'+mocc))return;jQuery('.wppa-film-'+mocc).removeClass('wppa-filmthumb-active');if(!_wppaFilmNoMove[mocc]){var xoffset;xoffset=wppaFilmStripLength[mocc]/2-(_wppaCurIdx[mocc]+0.5+wppaPreambule)*wppaThumbnailPitch[mocc]-wppaFilmStripMargin[mocc];if(wppaFilmShowGlue)xoffset-=(wppaFilmStripMargin[mocc]*2+2);jQuery('#wppa-filmstrip-'+mocc).stop().animate({marginLeft:xoffset+'px'},wppaAnimationSpeed);}
|
120 |
else{_wppaFilmNoMove[mocc]=false;}
|
121 |
if(_wppaCurIdx[mocc]!=-1){var from=_wppaCurIdx[mocc]-10;if(from<0)from=0;var to=_wppaCurIdx[mocc]+10;if(to>_wppaSlides[mocc].length)to=_wppaSlides[mocc].length;var index=from;while(index<=to){var html=jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html();if(html){if(html.search('<!--')!=-1){html=html.replace('<!--','');html=html.replace('-->','');jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html(html);if(jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title')!=''){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title'));}
|
122 |
else if(wppaFilmThumbTitle!=''){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',wppaFilmThumbTitle);}
|
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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
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"
|
@@ -24,17 +24,17 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
-
#: theme/photo-album-page.php:30 theme/photo-album-search-page.php:52
|
28 |
msgid "Pages:"
|
29 |
msgstr "Pages:"
|
30 |
|
31 |
-
#: theme/photo-album-page.php:31 theme/photo-album-search-page.php:53
|
32 |
-
#: wppa-album-admin-autosave.php:
|
33 |
-
#: wppa-album-admin-autosave.php:
|
34 |
-
#: wppa-album-admin-autosave.php:
|
35 |
-
#: wppa-album-admin-autosave.php:
|
36 |
#: wppa-comment-admin.php:318 wppa-comment-admin.php:387
|
37 |
-
#: wppa-comment-admin.php:405 wppa-setup.php:
|
38 |
msgid "Edit"
|
39 |
msgstr "Modifier"
|
40 |
|
@@ -43,20 +43,20 @@ 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:175
|
46 |
-
#: wppa-settings-autosave.php:421 wppa-settings-autosave.php:
|
47 |
msgid "Search"
|
48 |
msgstr "Chercher"
|
49 |
|
50 |
-
#: theme/search.php:
|
51 |
#, php-format
|
52 |
msgid "Search Results for: %s"
|
53 |
msgstr "Résultats de recherche pour: %s"
|
54 |
|
55 |
-
#: theme/search.php:
|
56 |
msgid "Nothing Found"
|
57 |
msgstr "Aucun résultat"
|
58 |
|
59 |
-
#: theme/search.php:
|
60 |
msgid ""
|
61 |
"Sorry, but nothing matched your search criteria. Please try again with some "
|
62 |
"different keywords."
|
@@ -64,6 +64,20 @@ msgstr ""
|
|
64 |
"Désolé, mais rien ne correspond à votre critère de recherche. Essayez avec des "
|
65 |
"mots clé différents."
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: theme/wppa-theme.php:328 theme/wppa-theme.php:347
|
68 |
msgid "No photos found matching your search criteria."
|
69 |
msgstr "Aucune photo correspondant à vos critères de recherche."
|
@@ -92,21 +106,21 @@ msgstr "Erreur d'écriture dans le fichier de sauvegarde des réglages"
|
|
92 |
msgid "Settings file not found"
|
93 |
msgstr "Fichier de paramètres non trouvé"
|
94 |
|
95 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
96 |
-
#: wppa-ajax.php:
|
97 |
msgid "Please supply a numeric value greater than or equal to"
|
98 |
msgstr "Entrez une valeur numérique supérieure ou égale à"
|
99 |
|
100 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
101 |
-
#: wppa-ajax.php:
|
102 |
msgid "for"
|
103 |
msgstr "pour"
|
104 |
|
105 |
-
#: wppa-admin-functions.php:208 wppa-ajax.php:
|
106 |
msgid "and less than or equal to"
|
107 |
msgstr "et inférieure ou égale à"
|
108 |
|
109 |
-
#: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:
|
110 |
msgid "--- public ---"
|
111 |
msgstr "--- public ---"
|
112 |
|
@@ -148,10 +162,6 @@ msgstr ""
|
|
148 |
msgid "Prev page"
|
149 |
msgstr "page préc."
|
150 |
|
151 |
-
#: wppa-admin-functions.php:659
|
152 |
-
msgid "Next page"
|
153 |
-
msgstr "Page suiv."
|
154 |
-
|
155 |
#: wppa-admin-functions.php:769 wppa-admin-functions.php:772
|
156 |
#, php-format
|
157 |
msgid "Album %s is full"
|
@@ -229,11 +239,11 @@ msgstr "ERREUR: Album ou fichier inconnu."
|
|
229 |
msgid "Photo Albums"
|
230 |
msgstr "Albums Photo"
|
231 |
|
232 |
-
#: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:
|
233 |
msgid "Album Admin"
|
234 |
msgstr "Administration de l'album"
|
235 |
|
236 |
-
#: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:
|
237 |
#: wppa-upload-widget.php:79 wppa-upload.php:88
|
238 |
msgid "Upload Photos"
|
239 |
msgstr "Charger des photos"
|
@@ -242,7 +252,7 @@ msgstr "Charger des photos"
|
|
242 |
msgid "Edit Photos"
|
243 |
msgstr "Modifier les photos"
|
244 |
|
245 |
-
#: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:
|
246 |
#: wppa-upload.php:459
|
247 |
msgid "Import Photos"
|
248 |
msgstr "Importer des photos"
|
@@ -252,12 +262,12 @@ msgid "Moderate Photos"
|
|
252 |
msgstr "Modérez les photos"
|
253 |
|
254 |
#: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
|
255 |
-
#: wppa-settings-autosave.php:
|
256 |
msgid "Export Photos"
|
257 |
msgstr "Exporter des photos"
|
258 |
|
259 |
#: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
260 |
-
#: wppa-settings-autosave.php:
|
261 |
msgid "Settings"
|
262 |
msgstr "Réglages"
|
263 |
|
@@ -266,7 +276,7 @@ msgid "Photo of the day Widget"
|
|
266 |
msgstr "Widget \"Photo du jour\""
|
267 |
|
268 |
#: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
269 |
-
#: wppa-settings-autosave.php:
|
270 |
msgid "Photo of the day"
|
271 |
msgstr "Photo du jour"
|
272 |
|
@@ -275,8 +285,8 @@ msgid "Manage comments"
|
|
275 |
msgstr "Gérer les commentaires"
|
276 |
|
277 |
#: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:411
|
278 |
-
#: wppa-settings-autosave.php:
|
279 |
-
#: wppa-settings-autosave.php:
|
280 |
msgid "Comments"
|
281 |
msgstr "Commentaires"
|
282 |
|
@@ -305,7 +315,7 @@ msgstr "L'importation est temporairement désactivée pour vous"
|
|
305 |
msgid "Import"
|
306 |
msgstr "Importer"
|
307 |
|
308 |
-
#: wppa-admin.php:122 wppa-settings-autosave.php:
|
309 |
msgid "Update"
|
310 |
msgstr "Mettre à jour"
|
311 |
|
@@ -335,11 +345,11 @@ msgstr "S'il vous plaît activer cette fonctionnalité dans le Table IV-A27"
|
|
335 |
#: wppa-album-widget.php:322 wppa-bestof-widget.php:131
|
336 |
#: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
|
337 |
#: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
|
338 |
-
#: wppa-potd-widget.php:
|
339 |
#: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
|
340 |
#: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
|
341 |
#: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
|
342 |
-
#: wppa-upldr-widget.php:176 wppa-upload-widget.php:83 wppa-widget-admin.php:
|
343 |
msgid "Title:"
|
344 |
msgstr "Titre:"
|
345 |
|
@@ -357,115 +367,115 @@ msgstr ""
|
|
357 |
msgid "Exit & Refresh"
|
358 |
msgstr "Quitter et rafraîchirr"
|
359 |
|
360 |
-
#: wppa-ajax.php:
|
361 |
-
#: wppa-ajax.php:
|
362 |
msgid "Security check failure"
|
363 |
msgstr "Echec de la vérification de sécurité"
|
364 |
|
365 |
-
#: wppa-ajax.php:
|
366 |
msgid "You do not have the rights to moderate photos this way"
|
367 |
msgstr "Vous n'avez pas les droits de modérer les photos de cette façon"
|
368 |
|
369 |
-
#: wppa-ajax.php:
|
370 |
msgid "Photo comment approved"
|
371 |
msgstr "Commentaire photo approuvé"
|
372 |
|
373 |
-
#: wppa-ajax.php:
|
374 |
#, php-format
|
375 |
msgid "Failed to update stutus of photo %s"
|
376 |
msgstr "Échec de mise à jour du statut de la photo %s"
|
377 |
|
378 |
-
#: wppa-ajax.php:
|
379 |
msgid "Please refresh the page"
|
380 |
msgstr "Rafraîchissez la page"
|
381 |
|
382 |
-
#: wppa-ajax.php:
|
383 |
#, php-format
|
384 |
msgid "Failed to update stutus of comment %s"
|
385 |
msgstr "Échec de la mise à jour du statut du commentaire %s"
|
386 |
|
387 |
-
#: wppa-ajax.php:
|
388 |
msgid "Photo removed"
|
389 |
msgstr "Photo retirée"
|
390 |
|
391 |
-
#: wppa-ajax.php:
|
392 |
msgid "Comment removed"
|
393 |
msgstr "Commentaire retiré"
|
394 |
|
395 |
-
#: wppa-ajax.php:
|
396 |
msgid "Could not remove comment"
|
397 |
msgstr "Impossible de retirer le commentaire"
|
398 |
|
399 |
-
#: wppa-ajax.php:
|
400 |
msgid "Unexpected error"
|
401 |
msgstr "Erreur inattendue"
|
402 |
|
403 |
-
#: wppa-ajax.php:
|
404 |
msgid "This feature is not enabled on this website"
|
405 |
msgstr "Cette fonctionnalité n'est pas activée sur votre site web"
|
406 |
|
407 |
-
#: wppa-ajax.php:
|
408 |
msgid "The album is empty"
|
409 |
msgstr "Cet album est vide"
|
410 |
|
411 |
-
#: wppa-ajax.php:
|
412 |
msgid "Unable to create zip archive"
|
413 |
msgstr "Impossible de créer l'archive zip"
|
414 |
|
415 |
-
#: wppa-ajax.php:
|
416 |
#, php-format
|
417 |
msgid "Unable to create zip archive. code = %s"
|
418 |
msgstr "Impossible de créer l'archive zip. Code = %s"
|
419 |
|
420 |
-
#: wppa-ajax.php:
|
421 |
#, php-format
|
422 |
msgid "Only %s out of %s photos could be added to the zipfile"
|
423 |
msgstr "Seulement %s des %s photos ont pu être ajoutées à l'archive zip"
|
424 |
|
425 |
-
#: wppa-ajax.php:
|
426 |
msgid "Unable to create zipsdir"
|
427 |
msgstr "Impossible de créer zipsdir"
|
428 |
|
429 |
-
#: wppa-ajax.php:
|
430 |
msgid "Selected"
|
431 |
msgstr "Sélectionné"
|
432 |
|
433 |
-
#: wppa-ajax.php:
|
434 |
msgid "Unknown source of request"
|
435 |
msgstr "Origine de la requête inconnue"
|
436 |
|
437 |
-
#: wppa-ajax.php:
|
438 |
msgid "Empty filename"
|
439 |
msgstr "Nom de fichier vide"
|
440 |
|
441 |
-
#: wppa-ajax.php:
|
442 |
msgid "Unable to create tempdir"
|
443 |
msgstr "Impossible de créer tempdir"
|
444 |
|
445 |
-
#: wppa-ajax.php:
|
446 |
msgid "Unknown type"
|
447 |
msgstr "Type inconnu"
|
448 |
|
449 |
-
#: wppa-ajax.php:
|
450 |
msgid "The photo does no longer exist"
|
451 |
msgstr "La photo n'existe plus"
|
452 |
|
453 |
-
#: wppa-ajax.php:
|
454 |
msgid "An error occurred while processing you rating request."
|
455 |
msgstr ""
|
456 |
"Une erreur est survenue pendant l’exécution de votre requête de notation."
|
457 |
|
458 |
-
#: wppa-ajax.php:
|
459 |
msgid "Maybe you opened the page too long ago to recognize you."
|
460 |
msgstr ""
|
461 |
"Peut-être avez vous ouvert la page depuis longtemps et votre session a expiré "
|
462 |
"depuis."
|
463 |
|
464 |
-
#: wppa-ajax.php:
|
465 |
msgid "You may refresh the page and try again."
|
466 |
msgstr "Vous devriez rafraîchir la page et réessayer."
|
467 |
|
468 |
-
#: wppa-ajax.php:
|
469 |
msgid ""
|
470 |
"Althoug an error occurred while processing your rating, your vote has been "
|
471 |
"registered."
|
@@ -473,32 +483,32 @@ msgstr ""
|
|
473 |
"Une erreur s'est produite pendant l’opération de notation, cependant votre "
|
474 |
"vote a tout de même été enregistré."
|
475 |
|
476 |
-
#: wppa-ajax.php:
|
477 |
msgid "However, this may not be reflected in the current pageview"
|
478 |
msgstr ""
|
479 |
"Cependant, il se peut que cela ne soit pas répercuté sur la page courante"
|
480 |
|
481 |
-
#: wppa-ajax.php:
|
482 |
msgid "Photo has been removed."
|
483 |
msgstr "Photo retirée."
|
484 |
|
485 |
-
#: wppa-ajax.php:
|
486 |
msgid "Sorry, you can not rate your own photos"
|
487 |
msgstr "Désolé, vous ne pouvez pas noter vos propres photos"
|
488 |
|
489 |
-
#: wppa-ajax.php:
|
490 |
msgid "Please enter a comment."
|
491 |
msgstr "Entrer un commentaire."
|
492 |
|
493 |
-
#: wppa-ajax.php:
|
494 |
msgid "Security check failure."
|
495 |
msgstr "Échec de vérification sécu."
|
496 |
|
497 |
-
#: wppa-ajax.php:
|
498 |
msgid "Photo rated"
|
499 |
msgstr "Photo évaluée (vote)"
|
500 |
|
501 |
-
#: wppa-ajax.php:
|
502 |
msgid ""
|
503 |
"Please explain your vote in a comment.\n"
|
504 |
"Your vote will be discarded if you don't.\n"
|
@@ -514,693 +524,698 @@ msgstr ""
|
|
514 |
"vous pouvez rafraîchir la page\n"
|
515 |
"pour voir votre vote apparaître."
|
516 |
|
517 |
-
#: wppa-ajax.php:
|
518 |
msgid "You do not have the rights to delete a photo"
|
519 |
msgstr "Vous n'avez pas les droits pour effacer une photo"
|
520 |
|
521 |
-
#: wppa-ajax.php:
|
522 |
#, php-format
|
523 |
msgid "Photo %s has been deleted"
|
524 |
msgstr "La photo %s a été effacée."
|
525 |
|
526 |
-
#: wppa-ajax.php:
|
527 |
msgid "You do not have the rights to update album information"
|
528 |
msgstr "Vous n'avez pas les droits pour mettre à jour la description de l'album"
|
529 |
|
530 |
-
#: wppa-ajax.php:
|
531 |
msgid "<b>Ratings cleared</b>"
|
532 |
msgstr "<b>Notes effacées</b>"
|
533 |
|
534 |
-
#: wppa-ajax.php:
|
535 |
msgid "No ratings for this photo."
|
536 |
msgstr "Pas de notes pour cette photo."
|
537 |
|
538 |
-
#: wppa-ajax.php:
|
539 |
msgid "An error occurred while clearing ratings"
|
540 |
msgstr "Une erreur est survenue pendant l'effacement des notes"
|
541 |
|
542 |
-
#: wppa-ajax.php:
|
543 |
msgid "<b>No photos in this album</b>"
|
544 |
msgstr "<b>Pas de photos dans cet album</b>"
|
545 |
|
546 |
-
#: wppa-ajax.php:
|
547 |
msgid "<b>Tags set to defaults</b> (reload)"
|
548 |
msgstr "<b>Tags remis à zéro</b> (rechargement)"
|
549 |
|
550 |
-
#: wppa-ajax.php:
|
551 |
msgid "An error occurred while setting tags"
|
552 |
msgstr "Une erreur s'est produite pendant l'application des tags"
|
553 |
|
554 |
-
#: wppa-ajax.php:
|
555 |
msgid "<b>Tags added width defaults</b> (reload)"
|
556 |
msgstr "<b>Tags ajoutés avec réglages par défaut</b> (rechargement)"
|
557 |
|
558 |
-
#: wppa-ajax.php:
|
559 |
msgid "An error occurred while adding tags"
|
560 |
msgstr "Une erreur s'est produite pendant l'ajout des tags"
|
561 |
|
562 |
-
#: wppa-ajax.php:
|
563 |
msgid "No subalbums found to process"
|
564 |
msgstr "Aucun sous-albums trouvés pour traiter"
|
565 |
|
566 |
-
#: wppa-ajax.php:
|
567 |
msgid "No categories found to process"
|
568 |
msgstr "Aucune catégorie trouvée pour traiter"
|
569 |
|
570 |
-
#: wppa-ajax.php:
|
571 |
#, php-format
|
572 |
msgid "%d album updated"
|
573 |
msgid_plural "%d albums updated"
|
574 |
msgstr[0] "%d album mis à jour"
|
575 |
msgstr[1] "%d albums mis à jour"
|
576 |
|
577 |
-
#: wppa-ajax.php:
|
578 |
#, php-format
|
579 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
580 |
msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à <b>%s</b>"
|
581 |
|
582 |
-
#: wppa-ajax.php:
|
583 |
-
#: wppa-album-admin-autosave.php:
|
584 |
-
#: wppa-album-admin-autosave.php:
|
585 |
-
#: wppa-album-admin-autosave.php:
|
586 |
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
|
587 |
#: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1879
|
588 |
#: wppa-settings-autosave.php:553 wppa-settings-autosave.php:715
|
589 |
#: wppa-settings-autosave.php:737 wppa-settings-autosave.php:1485
|
590 |
-
#: wppa-settings-autosave.php:1506 wppa-settings-autosave.php:
|
591 |
-
#: wppa-settings-autosave.php:
|
592 |
-
#: wppa-settings-autosave.php:
|
593 |
-
#: wppa-settings-autosave.php:
|
594 |
-
#: wppa-settings-autosave.php:
|
595 |
-
#: wppa-settings-autosave.php:
|
596 |
-
#: wppa-settings-autosave.php:
|
597 |
-
#: wppa-settings-autosave.php:
|
598 |
-
#: wppa-settings-autosave.php:
|
599 |
-
#: wppa-settings-autosave.php:
|
600 |
#: wppa-thumbnail-widget.php:202 wppa-upload.php:166
|
601 |
msgid "Name"
|
602 |
msgstr "Nom"
|
603 |
|
604 |
-
#: wppa-ajax.php:
|
605 |
-
#: wppa-album-admin-autosave.php:
|
606 |
-
#: wppa-album-admin-autosave.php:
|
607 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1880
|
608 |
#: wppa-settings-autosave.php:554 wppa-settings-autosave.php:716
|
609 |
#: wppa-settings-autosave.php:738 wppa-settings-autosave.php:1486
|
610 |
-
#: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:
|
611 |
-
#: wppa-settings-autosave.php:
|
612 |
-
#: wppa-settings-autosave.php:
|
613 |
-
#: wppa-settings-autosave.php:
|
614 |
-
#: wppa-settings-autosave.php:
|
615 |
-
#: wppa-settings-autosave.php:
|
616 |
-
#: wppa-settings-autosave.php:
|
617 |
-
#: wppa-settings-autosave.php:
|
618 |
-
#: wppa-settings-autosave.php:
|
619 |
-
#: wppa-settings-autosave.php:
|
620 |
-
#: wppa-settings-autosave.php:
|
621 |
msgid "Description"
|
622 |
msgstr "Description"
|
623 |
|
624 |
-
#: wppa-ajax.php:
|
625 |
msgid "Unbalanced tags in album description!"
|
626 |
msgstr "Unbalanced tags dans la description de l'album!"
|
627 |
|
628 |
-
#: wppa-ajax.php:
|
629 |
msgid "Album order #"
|
630 |
msgstr "Ordre de l'album #"
|
631 |
|
632 |
-
#: wppa-ajax.php:
|
633 |
msgid "Cover photo"
|
634 |
msgstr "Photo de couverture"
|
635 |
|
636 |
-
#: wppa-ajax.php:
|
637 |
msgid "Parent album"
|
638 |
msgstr "Album Parent"
|
639 |
|
640 |
-
#: wppa-ajax.php:
|
641 |
msgid "Photo order"
|
642 |
msgstr "Ordre des photos"
|
643 |
|
644 |
-
#: wppa-ajax.php:
|
645 |
msgid "Use Alt thumbsize"
|
646 |
msgstr "Utiliser taille de vignette alternative"
|
647 |
|
648 |
-
#: wppa-ajax.php:
|
649 |
msgid "Cover Type"
|
650 |
msgstr "Type de couverture"
|
651 |
|
652 |
-
#: wppa-ajax.php:
|
653 |
-
#: wppa-settings-autosave.php:
|
654 |
msgid "Link type"
|
655 |
msgstr "Type de lien"
|
656 |
|
657 |
-
#: wppa-ajax.php:
|
658 |
msgid "Link to"
|
659 |
msgstr "Lien vers"
|
660 |
|
661 |
-
#: wppa-ajax.php:
|
662 |
-
#: wppa-album-admin-autosave.php:
|
663 |
-
#: wppa-album-admin-autosave.php:
|
664 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
665 |
-
#: wppa-widget-admin.php:
|
666 |
msgid "Owner"
|
667 |
msgstr "Propriétaire"
|
668 |
|
669 |
-
#: wppa-ajax.php:
|
670 |
#, php-format
|
671 |
msgid "User %s does not exist"
|
672 |
msgstr "L'utilisateur %s n'existe pas"
|
673 |
|
674 |
-
#: wppa-ajax.php:
|
675 |
msgid "Upload limit count"
|
676 |
msgstr "Compteur limite d'upload"
|
677 |
|
678 |
-
#: wppa-ajax.php:
|
679 |
msgid "Upload limit time"
|
680 |
msgstr "Temps limite d'upload"
|
681 |
|
682 |
-
#: wppa-ajax.php:
|
683 |
msgid "Default tags"
|
684 |
msgstr "Tags par défaut"
|
685 |
|
686 |
-
#: wppa-ajax.php:
|
687 |
msgid "Categories"
|
688 |
msgstr "Catégories"
|
689 |
|
690 |
-
#: wppa-ajax.php:
|
691 |
msgid "Sub albums sort order"
|
692 |
msgstr "Ordre de tri des albums fils"
|
693 |
|
694 |
-
#: wppa-ajax.php:
|
695 |
msgid "Schedule date/time"
|
696 |
msgstr "Date/Heure de planification"
|
697 |
|
698 |
-
#: wppa-ajax.php:
|
699 |
#, php-format
|
700 |
msgid "<b>%s</b> of album %s updated"
|
701 |
msgstr "<b>%s</b> de l'album %s mis à jour"
|
702 |
|
703 |
-
#: wppa-ajax.php:
|
704 |
msgid "All photos set to scheduled per date"
|
705 |
msgstr "Toutes les photos réglées à planifié par date"
|
706 |
|
707 |
-
#: wppa-ajax.php:
|
|
|
|
|
|
|
|
|
|
|
708 |
#, php-format
|
709 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
710 |
msgstr ""
|
711 |
"Une erreur est survenue pendant la tentative de modification <b>%s</b> de "
|
712 |
"l'album %s"
|
713 |
|
714 |
-
#: wppa-ajax.php:
|
715 |
msgid "Press CTRL+F5 and try again."
|
716 |
msgstr "Presser CTRL+F5 et réessayer."
|
717 |
|
718 |
-
#: wppa-ajax.php:
|
719 |
msgid "You do not have the rights to update comment status"
|
720 |
msgstr "Vous n'avez pas les droits pour modifier le statut du commentaire"
|
721 |
|
722 |
-
#: wppa-ajax.php:
|
723 |
#, php-format
|
724 |
msgid "Status of comment #%s updated"
|
725 |
msgstr "statut du commentaire #%s modifié"
|
726 |
|
727 |
-
#: wppa-ajax.php:
|
728 |
#, php-format
|
729 |
msgid "Error updating status comment #%s"
|
730 |
msgstr "Erreur pendant la modification du commentaire #%s"
|
731 |
|
732 |
-
#: wppa-ajax.php:
|
733 |
msgid "You do not have the rights to change photos"
|
734 |
msgstr "Vous n'avez pas les droits pour changer les photos"
|
735 |
|
736 |
-
#: wppa-ajax.php:
|
737 |
msgid "Watermark applied"
|
738 |
msgstr "Filigrane appliqué"
|
739 |
|
740 |
-
#: wppa-ajax.php:
|
741 |
msgid "An error occured while trying to apply a watermark"
|
742 |
msgstr "Une erreur est survenue pendant l'application du filigrane"
|
743 |
|
744 |
-
#: wppa-ajax.php:
|
745 |
msgid "You do not have the rights to update photo information"
|
746 |
msgstr "Vous n'avez pas les droits pour changer la description de la photo"
|
747 |
|
748 |
-
#: wppa-ajax.php:
|
749 |
#, php-format
|
750 |
msgid "%s updated to %s."
|
751 |
msgstr "%s mis à jour à %s."
|
752 |
|
753 |
-
#: wppa-ajax.php:
|
754 |
#, php-format
|
755 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
756 |
msgstr "Erreur de format %s. Doit être yyyy:mm:dd hh:mm:ss"
|
757 |
|
758 |
-
#: wppa-ajax.php:
|
759 |
msgid "Exif date/time updated"
|
760 |
msgstr "Date/heure EXIF modifiée"
|
761 |
|
762 |
-
#: wppa-ajax.php:
|
763 |
msgid "Enter a value > -90 and < 90"
|
764 |
msgstr "Entrez une valeur comprise entre -90 et 90"
|
765 |
|
766 |
-
#: wppa-ajax.php:
|
767 |
msgid "Lattitude updated"
|
768 |
msgstr "Latitude mise à jour"
|
769 |
|
770 |
-
#: wppa-ajax.php:
|
771 |
msgid "Could not update lattitude"
|
772 |
msgstr "Ne peut pas mettre à jour la latitude"
|
773 |
|
774 |
-
#: wppa-ajax.php:
|
775 |
msgid "Enter a value > -180 and < 180"
|
776 |
msgstr "Entrez une valeur comprise entre -180 et 180"
|
777 |
|
778 |
-
#: wppa-ajax.php:
|
779 |
msgid "Longitude updated"
|
780 |
msgstr "Longitude mise à jour"
|
781 |
|
782 |
-
#: wppa-ajax.php:
|
783 |
msgid "Could not update longitude"
|
784 |
msgstr "Ne peut pas mettre à jour la longitude"
|
785 |
|
786 |
-
#: wppa-ajax.php:
|
787 |
msgid "Photo files remade"
|
788 |
msgstr "Fichiers photo recréés"
|
789 |
|
790 |
-
#: wppa-ajax.php:
|
791 |
msgid "Could not remake files"
|
792 |
msgstr "Impossible de recréer les fichiers"
|
793 |
|
794 |
-
#: wppa-ajax.php:
|
795 |
msgid "Thumbnail remade"
|
796 |
msgstr "Vignettes recréées"
|
797 |
|
798 |
-
#: wppa-ajax.php:
|
799 |
msgid "Could not remake thumbnail"
|
800 |
msgstr "Impossible de recréer les vignette"
|
801 |
|
802 |
-
#: wppa-ajax.php:
|
803 |
-
#: wppa-settings-autosave.php:
|
804 |
-
#: wppa-tinymce-shortcodes.php:614 wppa-widget-admin.php:
|
805 |
msgid "left"
|
806 |
msgstr "gauche"
|
807 |
|
808 |
-
#: wppa-ajax.php:
|
809 |
msgid "180°"
|
810 |
msgstr "180°"
|
811 |
|
812 |
-
#: wppa-ajax.php:
|
813 |
-
#: wppa-settings-autosave.php:
|
814 |
-
#: wppa-tinymce-shortcodes.php:616 wppa-widget-admin.php:
|
815 |
msgid "right"
|
816 |
msgstr "droite"
|
817 |
|
818 |
-
#: wppa-ajax.php:
|
819 |
#, php-format
|
820 |
msgid "Photo %s rotated %s"
|
821 |
msgstr "Photo %s pivotée %s"
|
822 |
|
823 |
-
#: wppa-ajax.php:
|
824 |
#, php-format
|
825 |
msgid "An error occurred while trying to rotate photo %s"
|
826 |
msgstr "Une erreur est survenue pendant la rotation de la photo %s"
|
827 |
|
828 |
-
#: wppa-ajax.php:
|
829 |
#: wppa-photo-admin-autosave.php:1118
|
830 |
#, php-format
|
831 |
msgid "A photo with filename %s already exists in album %s."
|
832 |
msgstr "Une photo avec le nom de fichier %s existe déjà dans l'album %s."
|
833 |
|
834 |
-
#: wppa-ajax.php:
|
835 |
#, php-format
|
836 |
msgid "Photo %s has been moved to album %s (%s)"
|
837 |
msgstr "La photo %s a été déplacée vers l'album %s (%s)"
|
838 |
|
839 |
-
#: wppa-ajax.php:
|
840 |
#, php-format
|
841 |
msgid "An error occurred while trying to move photo %s"
|
842 |
msgstr "Une erreur est survenue pendant le déplacement de la photo %s"
|
843 |
|
844 |
-
#: wppa-ajax.php:
|
845 |
#, php-format
|
846 |
msgid "Photo %s copied to album %s (%s)"
|
847 |
msgstr "Photo %s copiée vers l'album %s (%s)"
|
848 |
|
849 |
-
#: wppa-ajax.php:
|
850 |
#, php-format
|
851 |
msgid "An error occurred while trying to copy photo %s"
|
852 |
msgstr "Une erreur est survenue pendant la copie de la photo %s"
|
853 |
|
854 |
-
#: wppa-ajax.php:
|
855 |
msgid "Unbalanced tags in photo description!"
|
856 |
msgstr "Unbalanced tags dans la description de la photo!"
|
857 |
|
858 |
-
#: wppa-ajax.php:
|
859 |
msgid "Photo order #"
|
860 |
msgstr "Photo en position #"
|
861 |
|
862 |
-
#: wppa-ajax.php:
|
863 |
#, php-format
|
864 |
msgid "User %s does not exists"
|
865 |
msgstr "L'utilisateur %s n'existe pas"
|
866 |
|
867 |
-
#: wppa-ajax.php:
|
868 |
msgid "Link url"
|
869 |
msgstr "URL du lien"
|
870 |
|
871 |
-
#: wppa-ajax.php:
|
872 |
msgid "Link title"
|
873 |
msgstr "Titre du lien"
|
874 |
|
875 |
-
#: wppa-ajax.php:
|
876 |
msgid "Link target"
|
877 |
msgstr "Cible du lien"
|
878 |
|
879 |
-
#: wppa-ajax.php:
|
880 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
881 |
msgid "Photo Tags"
|
882 |
msgstr "Tags de la photo"
|
883 |
|
884 |
-
#: wppa-ajax.php:
|
885 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
886 |
-
#: wppa-settings-autosave.php:
|
887 |
-
#: wppa-settings-autosave.php:
|
888 |
-
#: wppa-settings-autosave.php:
|
889 |
msgid "Status"
|
890 |
msgstr "Statut"
|
891 |
|
892 |
-
#: wppa-ajax.php:
|
893 |
msgid "HTML Alt"
|
894 |
msgstr "HTML alt"
|
895 |
|
896 |
-
#: wppa-ajax.php:
|
897 |
msgid "Video width"
|
898 |
msgstr "Largeur de la vidéo"
|
899 |
|
900 |
-
#: wppa-ajax.php:
|
901 |
msgid "Please enter an integer value >= 0"
|
902 |
msgstr "Entrer un nombre entier >= 0"
|
903 |
|
904 |
-
#: wppa-ajax.php:
|
905 |
msgid "Video height"
|
906 |
msgstr "Hauteur de la vidéo"
|
907 |
|
908 |
-
#: wppa-ajax.php:
|
909 |
#, php-format
|
910 |
msgid "<b>%s</b> of video %s updated"
|
911 |
msgstr "<b>%s</b> de la vidéo %s effectué"
|
912 |
|
913 |
-
#: wppa-ajax.php:
|
914 |
#, php-format
|
915 |
msgid "<b>%s</b> of photo %s updated"
|
916 |
msgstr "<b>%s</b> de la photo %s modifié"
|
917 |
|
918 |
-
#: wppa-ajax.php:
|
919 |
#, php-format
|
920 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
921 |
msgstr "Une erreur est survenue pendant la modification <b>%s</b> de la photo %s"
|
922 |
|
923 |
-
#: wppa-ajax.php:
|
924 |
#, php-format
|
925 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
926 |
msgstr "<b>Champ personnalisé %s</b> de la photo %s modifié"
|
927 |
|
928 |
-
#: wppa-ajax.php:
|
929 |
msgid "<b>Error during upload.</b>"
|
930 |
msgstr "<b>Erreur pendant le chargement.</b>"
|
931 |
|
932 |
-
#: wppa-ajax.php:
|
933 |
msgid "Photo files updated."
|
934 |
msgstr "Fichiers photo mis à jour."
|
935 |
|
936 |
-
#: wppa-ajax.php:
|
937 |
msgid "Could not update files."
|
938 |
msgstr "Impossible de créer les fichiers."
|
939 |
|
940 |
-
#: wppa-ajax.php:
|
941 |
#, php-format
|
942 |
msgid "Stereo mode updated in %d milliseconds"
|
943 |
msgstr "Mode stéréo modifié en %d millisecondes"
|
944 |
|
945 |
-
#: wppa-ajax.php:
|
946 |
msgid "You do not have the rights to update settings"
|
947 |
msgstr "Vous n'avez pas les droits de modifier les réglages"
|
948 |
|
949 |
-
#: wppa-ajax.php:
|
950 |
msgid "Capability granted"
|
951 |
msgstr "Capacité accordée"
|
952 |
|
953 |
-
#: wppa-ajax.php:
|
954 |
msgid "Capability withdrawn"
|
955 |
msgstr "Capacité retirée"
|
956 |
|
957 |
-
#: wppa-ajax.php:
|
958 |
msgid "Column width."
|
959 |
msgstr "Largeur de colonne."
|
960 |
|
961 |
-
#: wppa-ajax.php:
|
962 |
msgid "Initial width."
|
963 |
msgstr "Largeur initiale."
|
964 |
|
965 |
-
#: wppa-ajax.php:
|
966 |
msgid "Full size."
|
967 |
msgstr "Pleine taille."
|
968 |
|
969 |
-
#: wppa-ajax.php:
|
970 |
msgid "Max height."
|
971 |
msgstr "Hauteur maximum."
|
972 |
|
973 |
-
#: wppa-ajax.php:
|
974 |
msgid "Thumbnail size."
|
975 |
msgstr "Taille de la vignette"
|
976 |
|
977 |
-
#: wppa-ajax.php:
|
978 |
msgid "Thumbnail frame width"
|
979 |
msgstr "Largeur du cadre vignette"
|
980 |
|
981 |
-
#: wppa-ajax.php:
|
982 |
msgid "Thumbnail frame height"
|
983 |
msgstr "Hauteur du cadre vignette"
|
984 |
|
985 |
-
#: wppa-ajax.php:
|
986 |
msgid "Thumbnail Spacing"
|
987 |
msgstr "Espacement des vignettes"
|
988 |
|
989 |
-
#: wppa-ajax.php:
|
990 |
msgid "Photocount treshold."
|
991 |
msgstr "Seuil de comptage des photos."
|
992 |
|
993 |
-
#: wppa-ajax.php:
|
994 |
msgid "Thumb page size."
|
995 |
msgstr "Taille de la page de vignettes"
|
996 |
|
997 |
-
#: wppa-ajax.php:
|
998 |
msgid "Cover photo size."
|
999 |
msgstr "Taille de la photo de couverture."
|
1000 |
|
1001 |
-
#: wppa-ajax.php:
|
1002 |
msgid "Album page size."
|
1003 |
msgstr "Taille de page de l'album."
|
1004 |
|
1005 |
-
#: wppa-ajax.php:
|
1006 |
msgid "Number of TopTen photos"
|
1007 |
msgstr "Nombre du TopTen des photos"
|
1008 |
|
1009 |
-
#: wppa-ajax.php:
|
1010 |
msgid "Widget image thumbnail size"
|
1011 |
msgstr "Taille de la vignette dans le widget"
|
1012 |
|
1013 |
-
#: wppa-ajax.php:
|
1014 |
msgid "Max Cover width"
|
1015 |
msgstr "Largeur maximum de la couverture"
|
1016 |
|
1017 |
-
#: wppa-ajax.php:
|
1018 |
msgid "Minimal description height"
|
1019 |
msgstr "Hauteur minimale de la description"
|
1020 |
|
1021 |
-
#: wppa-ajax.php:
|
1022 |
msgid "Minimal cover height"
|
1023 |
msgstr "Hauteur minimale de la couverture"
|
1024 |
|
1025 |
-
#: wppa-ajax.php:
|
1026 |
msgid "Minimal text frame height"
|
1027 |
msgstr "Hauteur minimale du cadre de texte"
|
1028 |
|
1029 |
-
#: wppa-ajax.php:
|
1030 |
msgid "Border width"
|
1031 |
msgstr "Largeur de bordure"
|
1032 |
|
1033 |
-
#: wppa-ajax.php:
|
1034 |
#: wppa-settings-autosave.php:1449
|
1035 |
msgid "Border radius"
|
1036 |
msgstr "Rayon de bordure"
|
1037 |
|
1038 |
-
#: wppa-ajax.php:
|
1039 |
msgid "Box spacing"
|
1040 |
msgstr "Espacement boîtes"
|
1041 |
|
1042 |
-
#: wppa-ajax.php:
|
1043 |
msgid "Popup size"
|
1044 |
msgstr "Taille du popup"
|
1045 |
|
1046 |
-
#: wppa-ajax.php:
|
1047 |
msgid "Fullsize border width"
|
1048 |
msgstr "Largeur de bordure pleine taille"
|
1049 |
|
1050 |
-
#: wppa-ajax.php:
|
1051 |
msgid "Lightbox Bordersize"
|
1052 |
msgstr "Taille de bordure de Lightbox"
|
1053 |
|
1054 |
-
#: wppa-ajax.php:
|
1055 |
msgid "Lightbox Borderwidth"
|
1056 |
msgstr "Largeur de bordure de Lightbox"
|
1057 |
|
1058 |
-
#: wppa-ajax.php:
|
1059 |
msgid "Lightbox Borderradius"
|
1060 |
msgstr "Rayon de bordure de Lightbox"
|
1061 |
|
1062 |
-
#: wppa-ajax.php:
|
1063 |
msgid "Number of Comment widget entries"
|
1064 |
msgstr "Nombre d'entrées de widget commentaire"
|
1065 |
|
1066 |
-
#: wppa-ajax.php:
|
1067 |
msgid "Comment Widget image thumbnail size"
|
1068 |
msgstr "Taille de vignette du widget commentaire"
|
1069 |
|
1070 |
-
#: wppa-ajax.php:
|
1071 |
msgid "Opacity."
|
1072 |
msgstr "Opacité."
|
1073 |
|
1074 |
-
#: wppa-ajax.php:
|
1075 |
msgid "Avatar size"
|
1076 |
msgstr "Taille de l'avatar"
|
1077 |
|
1078 |
-
#: wppa-ajax.php:
|
1079 |
msgid "Watermark opacity"
|
1080 |
msgstr "Opacité du filigrane"
|
1081 |
|
1082 |
-
#: wppa-ajax.php:
|
1083 |
msgid "Number of text lines"
|
1084 |
msgstr "Nombre de lignes de texte"
|
1085 |
|
1086 |
-
#: wppa-ajax.php:
|
1087 |
msgid "Overlay opacity"
|
1088 |
msgstr "Opacité de l'overlay"
|
1089 |
|
1090 |
-
#: wppa-ajax.php:
|
1091 |
msgid "Upload limit"
|
1092 |
msgstr "Limite d'upload"
|
1093 |
|
1094 |
-
#: wppa-ajax.php:
|
1095 |
msgid "Notify inappropriate"
|
1096 |
msgstr "Notifier inapproprié"
|
1097 |
|
1098 |
-
#: wppa-ajax.php:
|
1099 |
msgid "Dislike pending"
|
1100 |
msgstr "Avis négatif en attente"
|
1101 |
|
1102 |
-
#: wppa-ajax.php:
|
1103 |
msgid "Dislike delete"
|
1104 |
msgstr "Effacer les avis négatifs"
|
1105 |
|
1106 |
-
#: wppa-ajax.php:
|
1107 |
msgid "Max execution time"
|
1108 |
msgstr "Temps d'exécution maximum"
|
1109 |
|
1110 |
-
#: wppa-ajax.php:
|
1111 |
msgid "myCRED / Cube Points"
|
1112 |
msgstr "Points myCRED / Cube"
|
1113 |
|
1114 |
-
#: wppa-ajax.php:
|
1115 |
msgid "JPG Image quality"
|
1116 |
msgstr "Qualité d'image JPG"
|
1117 |
|
1118 |
-
#: wppa-ajax.php:
|
1119 |
msgid "Number of coverphotos"
|
1120 |
msgstr "Nombre de photos de couverture"
|
1121 |
|
1122 |
-
#: wppa-ajax.php:
|
1123 |
msgid "Dislike value"
|
1124 |
msgstr "Valeur du vote négatif"
|
1125 |
|
1126 |
-
#: wppa-ajax.php:
|
1127 |
msgid "Slideshow pagesize"
|
1128 |
msgstr "Taille de page du diaporama"
|
1129 |
|
1130 |
-
#: wppa-ajax.php:
|
1131 |
msgid "Slideonly max"
|
1132 |
msgstr "Slideonly max"
|
1133 |
|
1134 |
-
#: wppa-ajax.php:
|
1135 |
msgid "Max Pagelinks"
|
1136 |
msgstr "Nb max. de liens de page"
|
1137 |
|
1138 |
-
#: wppa-ajax.php:
|
1139 |
msgid "Start/pause symbol size"
|
1140 |
msgstr "Taille du symbole Démarrer/Pause"
|
1141 |
|
1142 |
-
#: wppa-ajax.php:
|
1143 |
msgid "Start/pause symbol border radius"
|
1144 |
msgstr "Rayon de bordure du symbole Démarrer/Pause"
|
1145 |
|
1146 |
-
#: wppa-ajax.php:
|
1147 |
msgid "Stop symbol size"
|
1148 |
msgstr "Taille du symbole Stop"
|
1149 |
|
1150 |
-
#: wppa-ajax.php:
|
1151 |
msgid "Stop symbol border radius"
|
1152 |
msgstr "Rayon de bordure du symbole Stop"
|
1153 |
|
1154 |
-
#: wppa-ajax.php:
|
1155 |
#, fuzzy
|
1156 |
msgid "Sticky header size"
|
1157 |
msgstr "En-tête fixe"
|
1158 |
|
1159 |
-
#: wppa-ajax.php:
|
1160 |
msgid "Ratings cleared"
|
1161 |
msgstr "Notes remises à zéro"
|
1162 |
|
1163 |
-
#: wppa-ajax.php:
|
1164 |
msgid "Could not clear ratings"
|
1165 |
msgstr "Impossible d'effacer les notes"
|
1166 |
|
1167 |
-
#: wppa-ajax.php:
|
1168 |
msgid "Viewcounts cleared"
|
1169 |
msgstr "Compteur de vues remis à zéro"
|
1170 |
|
1171 |
-
#: wppa-ajax.php:
|
1172 |
msgid "Could not clear viewcounts"
|
1173 |
msgstr "Impossible d'effacer le comptage des vues"
|
1174 |
|
1175 |
-
#: wppa-ajax.php:
|
1176 |
msgid "IPTC data cleared"
|
1177 |
msgstr "Données IPTC effacées"
|
1178 |
|
1179 |
-
#: wppa-ajax.php:
|
1180 |
msgid "Refresh this page to clear table X"
|
1181 |
msgstr "Rafraîchir cette page pour nettoyer la table X"
|
1182 |
|
1183 |
-
#: wppa-ajax.php:
|
1184 |
msgid "Could not clear IPTC data"
|
1185 |
msgstr "Impossible d'effacer les données IPTC"
|
1186 |
|
1187 |
-
#: wppa-ajax.php:
|
1188 |
msgid "EXIF data cleared"
|
1189 |
msgstr "Données EXIF effacées"
|
1190 |
|
1191 |
-
#: wppa-ajax.php:
|
1192 |
msgid "Refresh this page to clear table XI"
|
1193 |
msgstr "Rafraîchir cette page pour nettoyer la table XI"
|
1194 |
|
1195 |
-
#: wppa-ajax.php:
|
1196 |
msgid "Could not clear EXIF data"
|
1197 |
msgstr "Impossible d'effacer les données EXIF"
|
1198 |
|
1199 |
-
#: wppa-ajax.php:
|
1200 |
msgid "Recuperation performed"
|
1201 |
msgstr "Récupération effectuée"
|
1202 |
|
1203 |
-
#: wppa-ajax.php:
|
1204 |
msgid ""
|
1205 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1206 |
"#77bbff"
|
@@ -1208,75 +1223,75 @@ msgstr ""
|
|
1208 |
"Format incorrect. Veuillez entrer une valeur de couleur hexadécimale à 6 "
|
1209 |
"digits. Exemple: #77bbff"
|
1210 |
|
1211 |
-
#: wppa-ajax.php:
|
1212 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1213 |
msgstr "Vous venez de changer une option qui requiert le recalcul des notes."
|
1214 |
|
1215 |
-
#: wppa-ajax.php:
|
1216 |
msgid "Please run the appropriate action in Table VIII."
|
1217 |
msgstr "Veuillez lancer l'action appropriée dans la table VIII."
|
1218 |
|
1219 |
-
#: wppa-ajax.php:
|
1220 |
#, php-format
|
1221 |
msgid "Unable to create or write to %s"
|
1222 |
msgstr "Impossible de créer ou d'écrire sur %s"
|
1223 |
|
1224 |
-
#: wppa-ajax.php:
|
1225 |
msgid "Source can not be inside the wppa folder."
|
1226 |
msgstr "La source ne peut se trouver dans le dossier WPPA."
|
1227 |
|
1228 |
-
#: wppa-ajax.php:
|
1229 |
msgid "The content must contain w#album"
|
1230 |
msgstr "Le contenu doit contenir w#album"
|
1231 |
|
1232 |
-
#: wppa-ajax.php:
|
1233 |
msgid "The content must contain w#lat and w#lon"
|
1234 |
msgstr "Le contenu doit contenir w#lat et w#lon"
|
1235 |
|
1236 |
-
#: wppa-ajax.php:
|
1237 |
msgid "Members"
|
1238 |
msgstr "Membres"
|
1239 |
|
1240 |
-
#: wppa-ajax.php:
|
1241 |
msgid "Parent of the member albums"
|
1242 |
msgstr "Parent des albums membres"
|
1243 |
|
1244 |
-
#: wppa-ajax.php:
|
1245 |
#, php-format
|
1246 |
msgid "User %s has been blacklisted."
|
1247 |
msgstr "L'utilisateur %s a été blacklisté."
|
1248 |
|
1249 |
-
#: wppa-ajax.php:
|
1250 |
#, php-format
|
1251 |
msgid "User %s does not exist."
|
1252 |
msgstr "L'utilisateur %s n'existe pas."
|
1253 |
|
1254 |
-
#: wppa-ajax.php:
|
1255 |
#, php-format
|
1256 |
msgid "User %s is now superuser."
|
1257 |
msgstr "L'utilisateur %s est maintenant superutilisateur."
|
1258 |
|
1259 |
-
#: wppa-ajax.php:
|
1260 |
msgid ""
|
1261 |
"The content of the Custom box has been changed to display the Fotomoto toolbar."
|
1262 |
msgstr ""
|
1263 |
"Le contenu de la boîte personnalisée a été changé pour afficher la barre "
|
1264 |
"d'outils Fotomoto."
|
1265 |
|
1266 |
-
#: wppa-ajax.php:
|
1267 |
msgid "The display of the custom box has been enabled"
|
1268 |
msgstr "L'affichage de la boîte personnalisée a été activé"
|
1269 |
|
1270 |
-
#: wppa-ajax.php:
|
1271 |
msgid "The content of the Custom box has been changed to display maps."
|
1272 |
msgstr ""
|
1273 |
"Le contenu de la boîte personnalisée à été modifié pour afficher des cartes."
|
1274 |
|
1275 |
-
#: wppa-ajax.php:
|
1276 |
msgid "This value can not be empty"
|
1277 |
msgstr "Cette valeur ne peut être vide"
|
1278 |
|
1279 |
-
#: wppa-ajax.php:
|
1280 |
msgid ""
|
1281 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1282 |
"encrypted urls."
|
@@ -1284,60 +1299,60 @@ msgstr ""
|
|
1284 |
"Vous devez exécuter le Table VIII-A13 et VIII-A14 avant de pouvoir passer à "
|
1285 |
"urls cryptées."
|
1286 |
|
1287 |
-
#: wppa-ajax.php:
|
1288 |
msgid "Table IV-A3 will be switched off."
|
1289 |
msgstr "Table IV-A3 sera éteint."
|
1290 |
|
1291 |
-
#: wppa-ajax.php:
|
1292 |
msgid "Table IV-A4 will be switched off."
|
1293 |
msgstr "Table IV-A4 sera éteint."
|
1294 |
|
1295 |
-
#: wppa-ajax.php:
|
1296 |
msgid "Not allowed when cryptic links is active"
|
1297 |
msgstr "Non autorisé lorsque les liens cryptiques est actif"
|
1298 |
|
1299 |
-
#: wppa-ajax.php:
|
1300 |
#, fuzzy
|
1301 |
msgid "A Twitter account name must start with an at sign: @"
|
1302 |
msgstr "Un nom de compte Twitter doit commencer par un signe à: @"
|
1303 |
|
1304 |
-
#: wppa-ajax.php:
|
1305 |
#, php-format
|
1306 |
msgid "Failed to set %s to %s"
|
1307 |
msgstr "Échec du réglage de %s à %s"
|
1308 |
|
1309 |
-
#: wppa-ajax.php:
|
1310 |
#, php-format
|
1311 |
msgid "Setting %s updated to %s"
|
1312 |
msgstr "Réglage %s changé pour %s"
|
1313 |
|
1314 |
-
#: wppa-ajax.php:
|
1315 |
msgid "You just changed a setting that requires the regeneration of thumbnails."
|
1316 |
msgstr ""
|
1317 |
"Vous venez juste de changer un réglage qui implique la re-génération des "
|
1318 |
"vignettes."
|
1319 |
|
1320 |
-
#: wppa-ajax.php:
|
1321 |
msgid "Missing album id"
|
1322 |
msgstr "ID d'album manquant"
|
1323 |
|
1324 |
-
#: wppa-ajax.php:
|
1325 |
msgid "You do not have the rights to delete this album"
|
1326 |
msgstr "Vous n'avez pas les droits pour effacer cet album"
|
1327 |
|
1328 |
-
#: wppa-ajax.php:
|
1329 |
msgid "An error has occurred"
|
1330 |
msgstr "Une erreur est survenue"
|
1331 |
|
1332 |
-
#: wppa-ajax.php:
|
1333 |
msgid "You may also enter:"
|
1334 |
msgstr "Vous pouvez aussi entrer:"
|
1335 |
|
1336 |
-
#: wppa-ajax.php:
|
1337 |
msgid "You may also leave/set this blank"
|
1338 |
msgstr "Vous pouvez aussi laisser ceci vide"
|
1339 |
|
1340 |
-
#: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:
|
1341 |
msgid "Upload to this album"
|
1342 |
msgstr "Charger vers cet album"
|
1343 |
|
@@ -1354,22 +1369,22 @@ msgstr ""
|
|
1354 |
"Le répertoire de chargement n'existe pas ou n'est pas accessible en écriture "
|
1355 |
"par le serveur. Veuillez vous assurer que %s est accessible en écriture."
|
1356 |
|
1357 |
-
#: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:
|
1358 |
msgid "Manage Photos"
|
1359 |
msgstr "Gérer les photos"
|
1360 |
|
1361 |
-
#: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:
|
1362 |
msgid "Copy / move / delete / edit name / edit description / change status"
|
1363 |
msgstr ""
|
1364 |
"Copier / Déplacer / Effacer / Modifier nom / Modifier description / Changer "
|
1365 |
"statut"
|
1366 |
|
1367 |
-
#: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:
|
1368 |
msgid "Edit photo information except copy and move"
|
1369 |
msgstr "Modifier l'information de la photo excepté copier et déplacer"
|
1370 |
|
1371 |
-
#: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:
|
1372 |
-
#: wppa-setup.php:
|
1373 |
msgid "Edit photo information"
|
1374 |
msgstr "Éditer les infos de la photo"
|
1375 |
|
@@ -1377,12 +1392,12 @@ msgstr "Éditer les infos de la photo"
|
|
1377 |
msgid "Back to album table"
|
1378 |
msgstr "Retour à la table albums"
|
1379 |
|
1380 |
-
#: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:
|
1381 |
msgid "Top of page"
|
1382 |
msgstr "Haut de page"
|
1383 |
|
1384 |
-
#: wppa-album-admin-autosave.php:118 wppa-functions.php:
|
1385 |
-
#: wppa-settings-autosave.php:
|
1386 |
msgid "New Album"
|
1387 |
msgstr "Nouvel album"
|
1388 |
|
@@ -1456,33 +1471,33 @@ msgstr "Mettre à jour la description de l'album"
|
|
1456 |
msgid "Enter / modify the description for this album."
|
1457 |
msgstr "Entrez/modifiez la description pour cet album."
|
1458 |
|
1459 |
-
#: wppa-album-admin-autosave.php:
|
1460 |
msgid "Created:"
|
1461 |
msgstr "Créé:"
|
1462 |
|
1463 |
-
#: wppa-album-admin-autosave.php:
|
1464 |
#: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
|
1465 |
msgid "local time"
|
1466 |
msgstr "Temps local"
|
1467 |
|
1468 |
-
#: wppa-album-admin-autosave.php:
|
1469 |
msgid "Modified:"
|
1470 |
msgstr "Modifié:"
|
1471 |
|
1472 |
-
#: wppa-album-admin-autosave.php:
|
1473 |
#: wppa-photo-admin-autosave.php:1472
|
1474 |
msgid "Not modified"
|
1475 |
msgstr "Non modifié"
|
1476 |
|
1477 |
-
#: wppa-album-admin-autosave.php:
|
1478 |
msgid "Views:"
|
1479 |
msgstr "Vues :"
|
1480 |
|
1481 |
-
#: wppa-album-admin-autosave.php:
|
1482 |
msgid "Owned by:"
|
1483 |
msgstr "Possédé par:"
|
1484 |
|
1485 |
-
#: wppa-album-admin-autosave.php:
|
1486 |
msgid ""
|
1487 |
"WARNING If you change the owner, you will no longer be able to modify this "
|
1488 |
"album and upload or import photos to it!"
|
@@ -1490,15 +1505,15 @@ msgstr ""
|
|
1490 |
"IMPORTANT Si vous changez le propriétaire, vous ne serez plus en mesure de "
|
1491 |
"modifier cet album ni de charger ou importer des photos dedans!"
|
1492 |
|
1493 |
-
#: wppa-album-admin-autosave.php:
|
1494 |
msgid "Enter user login name or <b>--- public ---</b>"
|
1495 |
msgstr "Entrer identifiant utilisateur ou <b>--- public ---</b>"
|
1496 |
|
1497 |
-
#: wppa-album-admin-autosave.php:
|
1498 |
msgid "Album sort order #:"
|
1499 |
msgstr "Ordre de tri de l'album #:"
|
1500 |
|
1501 |
-
#: wppa-album-admin-autosave.php:
|
1502 |
msgid ""
|
1503 |
"Album order # has only effect if you set the album sort order method to "
|
1504 |
"<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
|
@@ -1506,7 +1521,7 @@ msgstr ""
|
|
1506 |
"Le tri de l'album # n'est effectif que si vous réglez la méthode de tri à "
|
1507 |
"<b>Ordre #</b> dans l'écran Album Photo -> Réglages.<br />"
|
1508 |
|
1509 |
-
#: wppa-album-admin-autosave.php:
|
1510 |
msgid ""
|
1511 |
"If you want to sort the albums by order #, enter / modify the order number "
|
1512 |
"here."
|
@@ -1514,92 +1529,92 @@ msgstr ""
|
|
1514 |
"Si vous voulez tri l'album par ordre #, entrez / modifiez le numéro d'ordre "
|
1515 |
"ici."
|
1516 |
|
1517 |
-
#: wppa-album-admin-autosave.php:
|
1518 |
#: wppa-tinymce-shortcodes.php:371 wppa-tinymce-shortcodes.php:559
|
1519 |
msgid "Parent album:"
|
1520 |
msgstr "Album parent::"
|
1521 |
|
1522 |
-
#: wppa-album-admin-autosave.php:
|
1523 |
msgid "If this is a sub album, select the album in which this album will appear."
|
1524 |
msgstr ""
|
1525 |
"Si c'est un album fils, sélectionner l'album dans lequel celui-ci devra "
|
1526 |
"apparaître."
|
1527 |
|
1528 |
-
#: wppa-album-admin-autosave.php:
|
1529 |
msgid "Photo order:"
|
1530 |
msgstr "Ordre des photos:"
|
1531 |
|
1532 |
-
#: wppa-album-admin-autosave.php:
|
1533 |
-
#: wppa-settings-autosave.php:
|
1534 |
#: wppa-tinymce-shortcodes.php:504 wppa-tinymce-shortcodes.php:523
|
1535 |
msgid "--- default ---"
|
1536 |
msgstr "--- défaut ---"
|
1537 |
|
1538 |
-
#: wppa-album-admin-autosave.php:
|
1539 |
-
#: wppa-settings-autosave.php:
|
1540 |
#: wppa-thumbnail-widget.php:201
|
1541 |
msgid "Order #"
|
1542 |
msgstr "Ordre #"
|
1543 |
|
1544 |
-
#: wppa-album-admin-autosave.php:
|
1545 |
-
#: wppa-settings-autosave.php:
|
1546 |
-
#: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:
|
1547 |
msgid "Random"
|
1548 |
msgstr "Aléatoire"
|
1549 |
|
1550 |
-
#: wppa-album-admin-autosave.php:
|
1551 |
msgid "Rating mean value"
|
1552 |
msgstr "Valeur moyenne des notes"
|
1553 |
|
1554 |
-
#: wppa-album-admin-autosave.php:
|
1555 |
-
#: wppa-settings-autosave.php:
|
1556 |
msgid "Number of votes"
|
1557 |
msgstr "Nombre de votes"
|
1558 |
|
1559 |
-
#: wppa-album-admin-autosave.php:
|
1560 |
-
#: wppa-settings-autosave.php:
|
1561 |
msgid "Timestamp"
|
1562 |
msgstr "Timstamp"
|
1563 |
|
1564 |
-
#: wppa-album-admin-autosave.php:
|
1565 |
-
#: wppa-settings-autosave.php:
|
1566 |
msgid "EXIF Date"
|
1567 |
msgstr "Date EXIF"
|
1568 |
|
1569 |
-
#: wppa-album-admin-autosave.php:
|
1570 |
-
#: wppa-settings-autosave.php:
|
1571 |
msgid "Order # desc"
|
1572 |
msgstr "Ordre # desc"
|
1573 |
|
1574 |
-
#: wppa-album-admin-autosave.php:
|
1575 |
-
#: wppa-settings-autosave.php:
|
1576 |
msgid "Name desc"
|
1577 |
msgstr "Nom desc"
|
1578 |
|
1579 |
-
#: wppa-album-admin-autosave.php:
|
1580 |
#: wppa-thumbnail-widget.php:204
|
1581 |
msgid "Rating mean value desc"
|
1582 |
msgstr "Description valeur moyenne des notes"
|
1583 |
|
1584 |
-
#: wppa-album-admin-autosave.php:
|
1585 |
#: wppa-thumbnail-widget.php:205
|
1586 |
msgid "Number of votes desc"
|
1587 |
msgstr "Description nombre de votes"
|
1588 |
|
1589 |
-
#: wppa-album-admin-autosave.php:
|
1590 |
-
#: wppa-settings-autosave.php:
|
1591 |
msgid "Timestamp desc"
|
1592 |
msgstr "Description timestamp"
|
1593 |
|
1594 |
-
#: wppa-album-admin-autosave.php:
|
1595 |
msgid "EXIF Date desc"
|
1596 |
msgstr "Description date EXIF"
|
1597 |
|
1598 |
-
#: wppa-album-admin-autosave.php:
|
1599 |
msgid "Specify the way the photos should be ordered in this album."
|
1600 |
msgstr "Spécifie la façon dont les photos doivent être triées dans cet album."
|
1601 |
|
1602 |
-
#: wppa-album-admin-autosave.php:
|
1603 |
msgid ""
|
1604 |
"The default setting can be changed in the <b>Photo Albums -> Settings</b> page "
|
1605 |
"<b>Table IV-C1</b>."
|
@@ -1607,36 +1622,36 @@ msgstr ""
|
|
1607 |
"Le réglage par défaut peut être modifié dans la page <b>Albums photo -> "
|
1608 |
"Réglages</b> <b>Table IV-C1</b>."
|
1609 |
|
1610 |
-
#: wppa-album-admin-autosave.php:
|
1611 |
msgid "Sub album sort order:"
|
1612 |
msgstr "Ordre de tri de l'album fils:"
|
1613 |
|
1614 |
-
#: wppa-album-admin-autosave.php:
|
1615 |
msgid "See Table IV-D1"
|
1616 |
msgstr "Voir table IV-D1"
|
1617 |
|
1618 |
-
#: wppa-album-admin-autosave.php:
|
1619 |
msgid "Order # reverse"
|
1620 |
msgstr "Inverser # ordre"
|
1621 |
|
1622 |
-
#: wppa-album-admin-autosave.php:
|
1623 |
msgid "Name reverse"
|
1624 |
msgstr "Inverser nom"
|
1625 |
|
1626 |
-
#: wppa-album-admin-autosave.php:
|
1627 |
msgid "Timestamp reverse"
|
1628 |
msgstr "Inverser timestamp"
|
1629 |
|
1630 |
-
#: wppa-album-admin-autosave.php:
|
1631 |
msgid ""
|
1632 |
"Specify the sequence order method to be used for the sub albums of this album."
|
1633 |
msgstr "Spécifie la méthode de tri a utiliser pour les albums fils de cet album."
|
1634 |
|
1635 |
-
#: wppa-album-admin-autosave.php:
|
1636 |
msgid "Use alt thumbsize:"
|
1637 |
msgstr "Utiliser taille alternative de vignette:"
|
1638 |
|
1639 |
-
#: wppa-album-admin-autosave.php:
|
1640 |
#: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
|
1641 |
#: wppa-lasten-widget.php:219 wppa-settings-autosave.php:573
|
1642 |
#: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
|
@@ -1652,7 +1667,7 @@ msgstr "Utiliser taille alternative de vignette:"
|
|
1652 |
msgid "no"
|
1653 |
msgstr "non"
|
1654 |
|
1655 |
-
#: wppa-album-admin-autosave.php:
|
1656 |
#: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
|
1657 |
#: wppa-lasten-widget.php:220 wppa-settings-autosave.php:573
|
1658 |
#: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
|
@@ -1669,7 +1684,7 @@ msgstr "non"
|
|
1669 |
msgid "yes"
|
1670 |
msgstr "oui"
|
1671 |
|
1672 |
-
#: wppa-album-admin-autosave.php:
|
1673 |
msgid ""
|
1674 |
"If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> apply "
|
1675 |
"rather than <b>I-C1,3</b> and <b>4</b>."
|
@@ -1677,36 +1692,36 @@ msgstr ""
|
|
1677 |
"Si réglé à<b>yes</b> Les réglages de la <b>Table I-C1a,3a</b> et <b>4a</b> "
|
1678 |
"seront appliqués à la place de ceux de <b>I-C1,3</b> et <b>4</b>."
|
1679 |
|
1680 |
-
#: wppa-album-admin-autosave.php:
|
1681 |
msgid "Cover Type:"
|
1682 |
msgstr "Type de couverture:"
|
1683 |
|
1684 |
-
#: wppa-album-admin-autosave.php:
|
1685 |
-
#: wppa-settings-autosave.php:
|
1686 |
msgid "Standard"
|
1687 |
msgstr "Standard"
|
1688 |
|
1689 |
-
#: wppa-album-admin-autosave.php:
|
1690 |
msgid "Long Descriptions"
|
1691 |
msgstr "Description longues"
|
1692 |
|
1693 |
-
#: wppa-album-admin-autosave.php:
|
1694 |
msgid "Image Factory"
|
1695 |
msgstr "Image Factory"
|
1696 |
|
1697 |
-
#: wppa-album-admin-autosave.php:
|
1698 |
msgid "Standard mcr"
|
1699 |
msgstr "Standard mcr"
|
1700 |
|
1701 |
-
#: wppa-album-admin-autosave.php:
|
1702 |
msgid "Long Descriptions mcr"
|
1703 |
msgstr "Descriptions longues mcr"
|
1704 |
|
1705 |
-
#: wppa-album-admin-autosave.php:
|
1706 |
msgid "Image Factory mcr"
|
1707 |
msgstr "Image Factory mcr"
|
1708 |
|
1709 |
-
#: wppa-album-admin-autosave.php:
|
1710 |
msgid ""
|
1711 |
"The default cover type is the systems standard set in the <b>Photo Albums -> "
|
1712 |
"Settings</b> page <b>Table IV-D6</b>."
|
@@ -1714,15 +1729,15 @@ msgstr ""
|
|
1714 |
"Le type de couverture par défaut est celui défini dans la page <b>Albums photo "
|
1715 |
"-> Réglages</b> <b>Table IV-D6</b>."
|
1716 |
|
1717 |
-
#: wppa-album-admin-autosave.php:
|
1718 |
msgid "Cover Photo:"
|
1719 |
msgstr "Photo de couverture:"
|
1720 |
|
1721 |
-
#: wppa-album-admin-autosave.php:
|
1722 |
msgid "Select the photo you want to appear on the cover of this album."
|
1723 |
msgstr "Choisir la photo à utiliser pour la couverture de cet album."
|
1724 |
|
1725 |
-
#: wppa-album-admin-autosave.php:
|
1726 |
msgid ""
|
1727 |
"Select the way the cover photos of this album are selected, or select a single "
|
1728 |
"image."
|
@@ -1730,75 +1745,75 @@ msgstr ""
|
|
1730 |
"Choisir la façon dont la photo de couverture de cet album est définie, ou "
|
1731 |
"choisir une image."
|
1732 |
|
1733 |
-
#: wppa-album-admin-autosave.php:
|
1734 |
msgid "Upload limit:"
|
1735 |
msgstr "Limite d'upload:"
|
1736 |
|
1737 |
-
#: wppa-album-admin-autosave.php:
|
1738 |
-
#: wppa-settings-autosave.php:
|
1739 |
msgid "for ever"
|
1740 |
msgstr "illimité"
|
1741 |
|
1742 |
-
#: wppa-album-admin-autosave.php:
|
1743 |
-
#: wppa-settings-autosave.php:
|
1744 |
msgid "per hour"
|
1745 |
msgstr "par heure"
|
1746 |
|
1747 |
-
#: wppa-album-admin-autosave.php:
|
1748 |
-
#: wppa-settings-autosave.php:
|
1749 |
msgid "per day"
|
1750 |
msgstr "par jour"
|
1751 |
|
1752 |
-
#: wppa-album-admin-autosave.php:
|
1753 |
-
#: wppa-settings-autosave.php:
|
1754 |
msgid "per week"
|
1755 |
msgstr "par semaine"
|
1756 |
|
1757 |
-
#: wppa-album-admin-autosave.php:
|
1758 |
-
#: wppa-settings-autosave.php:
|
1759 |
msgid "per month"
|
1760 |
msgstr "par mois"
|
1761 |
|
1762 |
-
#: wppa-album-admin-autosave.php:
|
1763 |
-
#: wppa-settings-autosave.php:
|
1764 |
msgid "per year"
|
1765 |
msgstr "par an"
|
1766 |
|
1767 |
-
#: wppa-album-admin-autosave.php:
|
1768 |
msgid "Set the upload limit (0 means unlimited) and the upload limit period."
|
1769 |
msgstr ""
|
1770 |
"Choisir la limite d'upload (0 signifie illimité) et la durée limite de "
|
1771 |
"l'upload."
|
1772 |
|
1773 |
-
#: wppa-album-admin-autosave.php:
|
1774 |
msgid "Unlimited"
|
1775 |
msgstr "Non limité"
|
1776 |
|
1777 |
-
#: wppa-album-admin-autosave.php:
|
1778 |
msgid "Catogories:"
|
1779 |
msgstr "Catégories:"
|
1780 |
|
1781 |
-
#: wppa-album-admin-autosave.php:
|
1782 |
msgid "Separate categories with commas."
|
1783 |
msgstr "Séparer les catégories par des virgules."
|
1784 |
|
1785 |
-
#: wppa-album-admin-autosave.php:
|
1786 |
msgid "Examples:"
|
1787 |
msgstr "Exemples:"
|
1788 |
|
1789 |
-
#: wppa-album-admin-autosave.php:
|
1790 |
msgid "- select -"
|
1791 |
msgstr "- Choisir -"
|
1792 |
|
1793 |
-
#: wppa-album-admin-autosave.php:
|
1794 |
msgid "No categories yet"
|
1795 |
msgstr "Pas encore de catégories"
|
1796 |
|
1797 |
-
#: wppa-album-admin-autosave.php:
|
1798 |
msgid "Select to add"
|
1799 |
msgstr "Sélectionnez pour ajout"
|
1800 |
|
1801 |
-
#: wppa-album-admin-autosave.php:
|
1802 |
msgid ""
|
1803 |
"Are you sure you want to inherit categories to all (grand)children of this "
|
1804 |
"album?"
|
@@ -1806,7 +1821,7 @@ msgstr ""
|
|
1806 |
"Etes-vous sûr de vouloir hériter des catégories à tous (petits-) enfants de "
|
1807 |
"cet album?"
|
1808 |
|
1809 |
-
#: wppa-album-admin-autosave.php:
|
1810 |
msgid ""
|
1811 |
"Are you sure you want to add the categories to all (grand)children of this "
|
1812 |
"album?"
|
@@ -1814,90 +1829,90 @@ msgstr ""
|
|
1814 |
"Etes-vous sûr que vous voulez ajouter les catégories à tous (petits-) enfants "
|
1815 |
"de cet album?"
|
1816 |
|
1817 |
-
#: wppa-album-admin-autosave.php:
|
1818 |
msgid "Inherit Cats"
|
1819 |
msgstr "Hériter Cats"
|
1820 |
|
1821 |
-
#: wppa-album-admin-autosave.php:
|
1822 |
msgid "Apply categories to all (grand)children."
|
1823 |
msgstr "Appliquer des catégories à tous les (grands) enfants."
|
1824 |
|
1825 |
-
#: wppa-album-admin-autosave.php:
|
1826 |
msgid "Add Inherit Cats"
|
1827 |
msgstr "Ajouter Hériter Cats"
|
1828 |
|
1829 |
-
#: wppa-album-admin-autosave.php:
|
1830 |
msgid "Add categories to all (grand)children."
|
1831 |
msgstr "Ajouter des catégories à tous les (grands) enfants."
|
1832 |
|
1833 |
-
#: wppa-album-admin-autosave.php:
|
1834 |
msgid "Default photo tags:"
|
1835 |
msgstr "Tags par défaut de la photo:"
|
1836 |
|
1837 |
-
#: wppa-album-admin-autosave.php:
|
1838 |
msgid "Enter the tags that you want to be assigned to new photos in this album."
|
1839 |
msgstr ""
|
1840 |
"Entrer les tags que vous voulez assigner aux nouvelles photos dans cet album."
|
1841 |
|
1842 |
-
#: wppa-album-admin-autosave.php:
|
1843 |
msgid ""
|
1844 |
"Are you sure you want to set the default tags to all photos in this album?"
|
1845 |
msgstr ""
|
1846 |
"Êtes-vous sûr de vouloir appliquer les tags par défaut à toutes les photo de "
|
1847 |
"l'album ?"
|
1848 |
|
1849 |
-
#: wppa-album-admin-autosave.php:
|
1850 |
msgid ""
|
1851 |
"Are you sure you want to add the default tags to all photos in this album?"
|
1852 |
msgstr ""
|
1853 |
"Êtes-vous sûr de vouloir ajouter les tags par défaut à toutes les photo de "
|
1854 |
"l'album ?"
|
1855 |
|
1856 |
-
#: wppa-album-admin-autosave.php:
|
1857 |
msgid "Apply default tags"
|
1858 |
msgstr "Appliquer les tags par défaut"
|
1859 |
|
1860 |
-
#: wppa-album-admin-autosave.php:
|
1861 |
msgid "Tag all photos in this album with the default tags."
|
1862 |
msgstr "Taguer toutes les photos de cet album avec les tags par défaut."
|
1863 |
|
1864 |
-
#: wppa-album-admin-autosave.php:
|
1865 |
msgid "Add default tags"
|
1866 |
msgstr "Ajouter des tags par défaut"
|
1867 |
|
1868 |
-
#: wppa-album-admin-autosave.php:
|
1869 |
msgid "Add the default tags to all photos in this album."
|
1870 |
msgstr "Ajoute les tags par défaut à toutes les photo de l'album."
|
1871 |
|
1872 |
-
#: wppa-album-admin-autosave.php:
|
1873 |
msgid "Link type:"
|
1874 |
msgstr "Type de lien:"
|
1875 |
|
1876 |
-
#: wppa-album-admin-autosave.php:
|
1877 |
msgid "the sub-albums and thumbnails"
|
1878 |
msgstr "les albums fils et vignettes"
|
1879 |
|
1880 |
-
#: wppa-album-admin-autosave.php:
|
1881 |
msgid "the sub-albums"
|
1882 |
msgstr "les albums fils"
|
1883 |
|
1884 |
-
#: wppa-album-admin-autosave.php:
|
1885 |
msgid "the thumbnails"
|
1886 |
msgstr "les vignettes"
|
1887 |
|
1888 |
-
#: wppa-album-admin-autosave.php:
|
1889 |
msgid "the album photos as slideshow"
|
1890 |
msgstr "les photos de l'album comme diaporama"
|
1891 |
|
1892 |
-
#: wppa-album-admin-autosave.php:
|
1893 |
msgid "the link page with a clean url"
|
1894 |
msgstr "la page de lien avec une URL claire"
|
1895 |
|
1896 |
-
#: wppa-album-admin-autosave.php:
|
1897 |
msgid "no link at all"
|
1898 |
msgstr "Pas de lien du tout"
|
1899 |
|
1900 |
-
#: wppa-album-admin-autosave.php:
|
1901 |
msgid ""
|
1902 |
"If you select \"the link page with a clean url\", select an Auto Page of one "
|
1903 |
"of the photos in this album."
|
@@ -1905,7 +1920,7 @@ msgstr ""
|
|
1905 |
"Si vous choisissez \"la page de lien avec une URL claire\", choisissez une "
|
1906 |
"page automatique pour une des photos dans cet album."
|
1907 |
|
1908 |
-
#: wppa-album-admin-autosave.php:
|
1909 |
msgid ""
|
1910 |
"If you select \"the link page with a clean url\", make sure you enter the "
|
1911 |
"correct shortcode on the target page."
|
@@ -1913,22 +1928,22 @@ msgstr ""
|
|
1913 |
"Si vous choisissez \"la page de lien avec une URL claire\", assurez vous "
|
1914 |
"d'entrer le shortcode correct sur la page de destination."
|
1915 |
|
1916 |
-
#: wppa-album-admin-autosave.php:
|
1917 |
-
#: wppa-slideshow-widget.php:221 wppa-widget-admin.php:
|
1918 |
-
#: wppa-widget-admin.php:
|
1919 |
msgid "Link to:"
|
1920 |
msgstr "Lien vers:"
|
1921 |
|
1922 |
-
#: wppa-album-admin-autosave.php:
|
1923 |
-
#: wppa-settings-autosave.php:
|
1924 |
msgid "There are no pages (yet) to link to."
|
1925 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1926 |
|
1927 |
-
#: wppa-album-admin-autosave.php:
|
1928 |
msgid "--- the same page or post ---"
|
1929 |
msgstr "--- la même page ou article ---"
|
1930 |
|
1931 |
-
#: wppa-album-admin-autosave.php:
|
1932 |
msgid ""
|
1933 |
"If you want, you can link the title to a WP page in stead of the album's "
|
1934 |
"content. If so, select the page the title links to."
|
@@ -1936,11 +1951,11 @@ msgstr ""
|
|
1936 |
"Si vous le voulez, vous pouvez lier le titre à une page WordPress au lieu du "
|
1937 |
"cntenu de l'album. Dans ce cas, choisir la page vers lequel le titre pointe."
|
1938 |
|
1939 |
-
#: wppa-album-admin-autosave.php:
|
1940 |
msgid "Schedule:"
|
1941 |
msgstr "Planification:"
|
1942 |
|
1943 |
-
#: wppa-album-admin-autosave.php:
|
1944 |
msgid ""
|
1945 |
"If enabled, new photos will have their status set to the dat/time specified "
|
1946 |
"here."
|
@@ -1948,76 +1963,76 @@ msgstr ""
|
|
1948 |
"Si activé, les nouvelles photos auront leur statut réglé à la date/heure "
|
1949 |
"spécifiée ici."
|
1950 |
|
1951 |
-
#: wppa-album-admin-autosave.php:
|
1952 |
msgid "Are you sure you want to schedule all photos in this album?"
|
1953 |
msgstr "Êtes-vous sûr de vouloir planifier toutes les photos dans cet album?"
|
1954 |
|
1955 |
-
#: wppa-album-admin-autosave.php:
|
1956 |
msgid "Schedule all"
|
1957 |
msgstr "Planifier toutes"
|
1958 |
|
1959 |
-
#: wppa-album-admin-autosave.php:
|
1960 |
msgid "Are you sure you want to clear the ratings in this album?"
|
1961 |
msgstr "Êtes-vous sûr de vouloir effacer toutes les notes dans cet album?"
|
1962 |
|
1963 |
-
#: wppa-album-admin-autosave.php:
|
1964 |
msgid "Reset ratings"
|
1965 |
msgstr "Effacer les notes"
|
1966 |
|
1967 |
-
#: wppa-album-admin-autosave.php:
|
1968 |
msgid "Change the upload limit or remove photos to enable new uploads."
|
1969 |
msgstr ""
|
1970 |
"Changer la limite d'upload ou enlever des photos pour permettre d'autres "
|
1971 |
"chargements."
|
1972 |
|
1973 |
-
#: wppa-album-admin-autosave.php:
|
1974 |
#, php-format
|
1975 |
msgid "(max %d)"
|
1976 |
msgstr "(max %d)"
|
1977 |
|
1978 |
-
#: wppa-album-admin-autosave.php:
|
1979 |
msgid "Album is full"
|
1980 |
msgstr "L'album est plein"
|
1981 |
|
1982 |
-
#: wppa-album-admin-autosave.php:
|
1983 |
msgid "Apply new photo desc"
|
1984 |
msgstr "Appliquer la nouvelle description photo"
|
1985 |
|
1986 |
-
#: wppa-album-admin-autosave.php:
|
1987 |
msgid "Remake all"
|
1988 |
msgstr "Refaire tout"
|
1989 |
|
1990 |
-
#: wppa-album-admin-autosave.php:
|
1991 |
msgid "Remark:"
|
1992 |
msgstr "Remarque:"
|
1993 |
|
1994 |
-
#: wppa-album-admin-autosave.php:
|
1995 |
#, php-format
|
1996 |
msgid "Album %s is not modified yet"
|
1997 |
msgstr "L'album %s n'est modifié pour le moment"
|
1998 |
|
1999 |
-
#: wppa-album-admin-autosave.php:
|
2000 |
msgid "Change sequence order by drag and drop"
|
2001 |
msgstr "Changer l'ordre de tri avec un glisser-déplacer"
|
2002 |
|
2003 |
-
#: wppa-album-admin-autosave.php:
|
2004 |
msgid "Moderate comment"
|
2005 |
msgstr "Modérer le commentaire"
|
2006 |
|
2007 |
-
#: wppa-album-admin-autosave.php:
|
2008 |
msgid "Moderate photo"
|
2009 |
msgstr "Modérer la photo"
|
2010 |
|
2011 |
-
#: wppa-album-admin-autosave.php:
|
2012 |
#: wppa-photo-admin-autosave.php:24
|
2013 |
msgid "Edit photo"
|
2014 |
msgstr "Modifier photo"
|
2015 |
|
2016 |
-
#: wppa-album-admin-autosave.php:
|
2017 |
msgid "Delete Album"
|
2018 |
msgstr "Supprimer l'album"
|
2019 |
|
2020 |
-
#: wppa-album-admin-autosave.php:
|
2021 |
#: wppa-breadcrumb.php:279 wppa-breadcrumb.php:303 wppa-breadcrumb.php:333
|
2022 |
#: wppa-breadcrumb.php:353 wppa-breadcrumb.php:447 wppa-breadcrumb.php:474
|
2023 |
#: wppa-breadcrumb.php:627 wppa-comment-admin.php:65 wppa-featen-widget.php:179
|
@@ -2028,141 +2043,141 @@ msgstr "Supprimer l'album"
|
|
2028 |
msgid "Album:"
|
2029 |
msgstr "Album:"
|
2030 |
|
2031 |
-
#: wppa-album-admin-autosave.php:
|
2032 |
msgid "Are you sure you want to delete this album?"
|
2033 |
msgstr "Êtes-vous sûr de vouloir supprimer cet album?"
|
2034 |
|
2035 |
-
#: wppa-album-admin-autosave.php:
|
2036 |
msgid "Press Delete to continue, and Cancel to go back."
|
2037 |
msgstr "Cliquez sur Effacer pour continuer, et Annuler pour revenir en arrière."
|
2038 |
|
2039 |
-
#: wppa-album-admin-autosave.php:
|
2040 |
msgid "What would you like to do with photos currently in the album?"
|
2041 |
msgstr ""
|
2042 |
"Que voulez vous faire avec les photos présentes actuellement dans l'album ?"
|
2043 |
|
2044 |
-
#: wppa-album-admin-autosave.php:
|
2045 |
-
#: wppa-album-admin-autosave.php:
|
2046 |
-
#: wppa-album-admin-autosave.php:
|
2047 |
-
#: wppa-album-admin-autosave.php:
|
2048 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2049 |
-
#: wppa-comment-admin.php:406 wppa-functions.php:
|
2050 |
-
#: wppa-links.php:
|
2051 |
-
#: wppa-photo-admin-autosave.php:1380 wppa-thumbnails.php:
|
2052 |
msgid "Delete"
|
2053 |
msgstr "Supprimer"
|
2054 |
|
2055 |
-
#: wppa-album-admin-autosave.php:
|
2056 |
msgid "Move to:"
|
2057 |
msgstr "Déplacer vers:"
|
2058 |
|
2059 |
-
#: wppa-album-admin-autosave.php:
|
2060 |
-
#: wppa-settings-autosave.php:
|
2061 |
msgid "Cancel"
|
2062 |
msgstr "Annuler"
|
2063 |
|
2064 |
-
#: wppa-album-admin-autosave.php:
|
2065 |
msgid "Unable to move photos. Album not deleted."
|
2066 |
msgstr "Impossible de déplacer les photos. Album pas effacé."
|
2067 |
|
2068 |
-
#: wppa-album-admin-autosave.php:
|
2069 |
msgid "Manage Albums"
|
2070 |
msgstr "Gérer les albums"
|
2071 |
|
2072 |
-
#: wppa-album-admin-autosave.php:
|
2073 |
msgid "Are you sure you want to create a new album?"
|
2074 |
msgstr "Etes-vous sûr de vouloir créer un nouvel album?"
|
2075 |
|
2076 |
-
#: wppa-album-admin-autosave.php:
|
2077 |
msgid "Create New Empty Album"
|
2078 |
msgstr "Créer un nouvel album vide"
|
2079 |
|
2080 |
-
#: wppa-album-admin-autosave.php:
|
2081 |
msgid "Switch to Collapsable table"
|
2082 |
msgstr "Affichage en table arborescente"
|
2083 |
|
2084 |
-
#: wppa-album-admin-autosave.php:
|
2085 |
msgid "Switch to Flat table"
|
2086 |
msgstr "Affichage en table simple"
|
2087 |
|
2088 |
-
#: wppa-album-admin-autosave.php:
|
2089 |
msgid "Open all"
|
2090 |
msgstr "Ouvrir tous"
|
2091 |
|
2092 |
-
#: wppa-album-admin-autosave.php:
|
2093 |
msgid "Close all"
|
2094 |
msgstr "Fermer tous"
|
2095 |
|
2096 |
-
#: wppa-album-admin-autosave.php:
|
2097 |
-
#: wppa-album-admin-autosave.php:
|
2098 |
#: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
|
2099 |
msgid "ID"
|
2100 |
msgstr "ID"
|
2101 |
|
2102 |
-
#: wppa-album-admin-autosave.php:
|
2103 |
-
#: wppa-album-admin-autosave.php:
|
2104 |
msgid "Order"
|
2105 |
msgstr "Ordre"
|
2106 |
|
2107 |
-
#: wppa-album-admin-autosave.php:
|
2108 |
-
#: wppa-album-admin-autosave.php:
|
2109 |
msgid "Parent"
|
2110 |
msgstr "Parent"
|
2111 |
|
2112 |
-
#: wppa-album-admin-autosave.php:
|
2113 |
-
#: wppa-album-admin-autosave.php:
|
2114 |
msgid "Albums/Photos/Moderation required/Scheduled"
|
2115 |
msgstr "Albums/Photos/Modération requise/Planifié"
|
2116 |
|
2117 |
-
#: wppa-album-admin-autosave.php:
|
2118 |
-
#: wppa-album-admin-autosave.php:
|
2119 |
msgid "A/P/PM/S"
|
2120 |
msgstr "A/P/PM/S"
|
2121 |
|
2122 |
-
#: wppa-album-admin-autosave.php:
|
2123 |
-
#: wppa-album-admin-autosave.php:
|
2124 |
-
#: wppa-album-admin-autosave.php:
|
2125 |
-
#: wppa-album-admin-autosave.php:
|
2126 |
msgid "Quick"
|
2127 |
msgstr "Quick"
|
2128 |
|
2129 |
-
#: wppa-album-admin-autosave.php:
|
2130 |
-
#: wppa-album-admin-autosave.php:
|
2131 |
-
#: wppa-album-admin-autosave.php:
|
2132 |
-
#: wppa-album-admin-autosave.php:
|
2133 |
msgid "Bulk"
|
2134 |
msgstr "Bulk"
|
2135 |
|
2136 |
-
#: wppa-album-admin-autosave.php:
|
2137 |
-
#: wppa-album-admin-autosave.php:
|
2138 |
-
#: wppa-album-admin-autosave.php:
|
2139 |
msgid "Seq"
|
2140 |
msgstr "Seq"
|
2141 |
|
2142 |
-
#: wppa-album-admin-autosave.php:
|
2143 |
-
#: wppa-album-admin-autosave.php:
|
2144 |
-
#: wppa-album-admin-autosave.php:
|
2145 |
-
#: wppa-album-admin-autosave.php:
|
2146 |
msgid "Create"
|
2147 |
msgstr "Créer"
|
2148 |
|
2149 |
-
#: wppa-album-admin-autosave.php:
|
2150 |
msgid "Are you sure you want to create a subalbum?"
|
2151 |
msgstr "Êtes-vous sûr de vouloir créer un album fils?"
|
2152 |
|
2153 |
-
#: wppa-album-admin-autosave.php:
|
2154 |
msgid "No albums yet."
|
2155 |
msgstr "Pas encore d'album."
|
2156 |
|
2157 |
-
#: wppa-album-admin-autosave.php:
|
2158 |
msgid "Collapse subalbums"
|
2159 |
msgstr "Replier les album fils"
|
2160 |
|
2161 |
-
#: wppa-album-admin-autosave.php:
|
2162 |
msgid "Expand subalbums"
|
2163 |
msgstr "Déplier les albums fils"
|
2164 |
|
2165 |
-
#: wppa-album-admin-autosave.php:
|
2166 |
msgid ""
|
2167 |
"The following albums are ---separate--- and do not show up in the generic "
|
2168 |
"album display"
|
@@ -2170,11 +2185,11 @@ msgstr ""
|
|
2170 |
"Les albums qui suivent sont ---separés--- et ne sont pas montrés dans "
|
2171 |
"l’affichage standard"
|
2172 |
|
2173 |
-
#: wppa-album-admin-autosave.php:
|
2174 |
msgid "Search for photos to edit"
|
2175 |
msgstr "Chercher des photos à modifier"
|
2176 |
|
2177 |
-
#: wppa-album-admin-autosave.php:
|
2178 |
msgid ""
|
2179 |
"Enter search words seperated by commas. Photos will meet all search words by "
|
2180 |
"their names, descriptions, translated keywords and/or tags."
|
@@ -2183,15 +2198,15 @@ msgstr ""
|
|
2183 |
"résultantes auront tous les mots clés dans leur nom, description, mots clés et/"
|
2184 |
"ou tags."
|
2185 |
|
2186 |
-
#: wppa-album-admin-autosave.php:
|
2187 |
msgid "Any"
|
2188 |
msgstr "N'importe lequel"
|
2189 |
|
2190 |
-
#: wppa-album-admin-autosave.php:
|
2191 |
msgid "Search for"
|
2192 |
msgstr "Rechercher"
|
2193 |
|
2194 |
-
#: wppa-album-admin-autosave.php:
|
2195 |
#, php-format
|
2196 |
msgid ""
|
2197 |
"There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
|
@@ -2200,96 +2215,96 @@ msgstr ""
|
|
2200 |
"Il y a <strong>%d</strong> albums et <strong>%d</strong> photos dans le "
|
2201 |
"système."
|
2202 |
|
2203 |
-
#: wppa-album-admin-autosave.php:
|
2204 |
#, php-format
|
2205 |
msgid "<strong>%d</strong> photos are pending moderation."
|
2206 |
msgstr "<strong>%d</strong> photos attendent une modération."
|
2207 |
|
2208 |
-
#: wppa-album-admin-autosave.php:
|
2209 |
#, php-format
|
2210 |
msgid "<strong>%d</strong> photos are scheduled for later publishing."
|
2211 |
msgstr "<strong>%d</strong> photos sont programmées pour publication ultérieure."
|
2212 |
|
2213 |
-
#: wppa-album-admin-autosave.php:
|
2214 |
#, php-format
|
2215 |
msgid "The most recently added album is <strong>%s</strong> (%d)."
|
2216 |
msgstr "L'album le plus récemment ajoutée est <strong>%s</strong> (%d)."
|
2217 |
|
2218 |
-
#: wppa-album-admin-autosave.php:
|
2219 |
#, php-format
|
2220 |
msgid "The most recently added photo is <strong>%s</strong> (%d)"
|
2221 |
msgstr "La photo la plus récemment ajoutée est <strong>%s</strong> (%d)"
|
2222 |
|
2223 |
-
#: wppa-album-admin-autosave.php:
|
2224 |
#, php-format
|
2225 |
msgid "in album <strong>%s</strong> (%d)."
|
2226 |
msgstr "dans l'album <strong>%s</strong> (%d)."
|
2227 |
|
2228 |
-
#: wppa-album-admin-autosave.php:
|
2229 |
#, php-format
|
2230 |
msgid "Unable to move photos to album %s. Album not deleted."
|
2231 |
msgstr "Impossible de déplacer les photos vers l'album %s. Album pas effacé."
|
2232 |
|
2233 |
-
#: wppa-album-admin-autosave.php:
|
2234 |
#, php-format
|
2235 |
msgid "Time is out after %d photo deletes. Please redo this operation"
|
2236 |
msgstr ""
|
2237 |
"Délai dépassé après %d effacement de photos. Veuillez recommencer l'opération"
|
2238 |
|
2239 |
-
#: wppa-album-admin-autosave.php:
|
2240 |
msgid "Album Deleted."
|
2241 |
msgstr "Album effacé."
|
2242 |
|
2243 |
-
#: wppa-album-admin-autosave.php:
|
2244 |
#, php-format
|
2245 |
msgid "auto select max %s random"
|
2246 |
msgstr "Sélection auto max %s aléatoire"
|
2247 |
|
2248 |
-
#: wppa-album-admin-autosave.php:
|
2249 |
#, php-format
|
2250 |
msgid "auto select max %s featured"
|
2251 |
msgstr "Sélection auto max %s recommandé"
|
2252 |
|
2253 |
-
#: wppa-album-admin-autosave.php:
|
2254 |
#, php-format
|
2255 |
msgid "max %s most recent added"
|
2256 |
msgstr "max %s ajoutés le plus récemment"
|
2257 |
|
2258 |
-
#: wppa-album-admin-autosave.php:
|
2259 |
#, php-format
|
2260 |
msgid "max %s from (grand)child albums"
|
2261 |
msgstr "max %s parmi les albums fils"
|
2262 |
|
2263 |
-
#: wppa-album-admin-autosave.php:
|
2264 |
#, php-format
|
2265 |
msgid "max %s most recent from (grand)child albums"
|
2266 |
msgstr "max %s plus récents parmi albums (petit)fils"
|
2267 |
|
2268 |
-
#: wppa-album-admin-autosave.php:
|
2269 |
msgid "--- random ---"
|
2270 |
msgstr "--- aléatoire ---"
|
2271 |
|
2272 |
-
#: wppa-album-admin-autosave.php:
|
2273 |
msgid "--- random featured ---"
|
2274 |
msgstr "--- aléatoire recommandé ---"
|
2275 |
|
2276 |
-
#: wppa-album-admin-autosave.php:
|
2277 |
msgid "--- most recent added ---"
|
2278 |
msgstr "--- ajouter le plus récemment ---"
|
2279 |
|
2280 |
-
#: wppa-album-admin-autosave.php:
|
2281 |
msgid "--- random from (grand)children ---"
|
2282 |
msgstr "--- aléatoire parmi les albums fils ---"
|
2283 |
|
2284 |
-
#: wppa-album-admin-autosave.php:
|
2285 |
msgid "--- most recent from (grand)children ---"
|
2286 |
msgstr "--- le plus récent du (petit)fils ---"
|
2287 |
|
2288 |
-
#: wppa-album-admin-autosave.php:
|
2289 |
msgid "Nameless, filename = "
|
2290 |
msgstr "Sans nom, nom du fichier = "
|
2291 |
|
2292 |
-
#: wppa-album-admin-autosave.php:
|
2293 |
msgid ""
|
2294 |
"You can edit top-level album sequence order here when you set the album order "
|
2295 |
"to \"Order #\" or \"Order # desc\" in Table IV-D1."
|
@@ -2298,7 +2313,7 @@ msgstr ""
|
|
2298 |
"l'ordre de tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la table IV-"
|
2299 |
"D1."
|
2300 |
|
2301 |
-
#: wppa-album-admin-autosave.php:
|
2302 |
msgid ""
|
2303 |
"You can edit sub-album sequence order here when you set the album order to "
|
2304 |
"\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection box "
|
@@ -2308,15 +2323,15 @@ msgstr ""
|
|
2308 |
"des albums à \"Ordre #\" ou \"Ordre # desc\" dans la boîte de sélection "
|
2309 |
"\"Ordre de tri des albums fils:\" ci-dessus."
|
2310 |
|
2311 |
-
#: wppa-album-admin-autosave.php:
|
2312 |
msgid "Manage album order"
|
2313 |
msgstr "Gérer album ordre"
|
2314 |
|
2315 |
-
#: wppa-album-admin-autosave.php:
|
2316 |
msgid "Id:"
|
2317 |
msgstr "ID:"
|
2318 |
|
2319 |
-
#: wppa-album-admin-autosave.php:
|
2320 |
msgid "Ord:"
|
2321 |
msgstr "Ord:"
|
2322 |
|
@@ -2346,7 +2361,7 @@ msgstr[1] "%d albums"
|
|
2346 |
#: wppa-breadcrumb.php:152 wppa-breadcrumb.php:159 wppa-breadcrumb.php:383
|
2347 |
#: wppa-breadcrumb.php:385 wppa-breadcrumb.php:391 wppa-breadcrumb.php:393
|
2348 |
#: wppa-breadcrumb.php:401 wppa-breadcrumb.php:417 wppa-breadcrumb.php:430
|
2349 |
-
#: wppa-breadcrumb.php:436 wppa-utils.php:
|
2350 |
msgid "and"
|
2351 |
msgstr "et"
|
2352 |
|
@@ -2361,13 +2376,13 @@ msgstr[1] "%d photos"
|
|
2361 |
msgid "New!"
|
2362 |
msgstr "Nouveau!"
|
2363 |
|
2364 |
-
#: wppa-album-covers.php:1487 wppa-thumbnails.php:
|
2365 |
msgid "New"
|
2366 |
msgstr "Nouveau"
|
2367 |
|
2368 |
#: wppa-album-covers.php:1725 wppa-boxes-html.php:844 wppa-non-admin.php:739
|
2369 |
-
#: wppa-settings-autosave.php:2331 wppa-settings-autosave.php:
|
2370 |
-
#: wppa-settings-autosave.php:
|
2371 |
msgid "Slideshow"
|
2372 |
msgstr "Diaporama"
|
2373 |
|
@@ -2406,8 +2421,8 @@ msgstr "--- tous albums génériques ---"
|
|
2406 |
msgid "--- all separate albums ---"
|
2407 |
msgstr "--- tous albums séparés ---"
|
2408 |
|
2409 |
-
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:
|
2410 |
-
#: wppa-items.php:
|
2411 |
msgid "--- owner/public ---"
|
2412 |
msgstr "--- Propriétaire / publique ---"
|
2413 |
|
@@ -2521,7 +2536,7 @@ msgid "Mean value"
|
|
2521 |
msgstr "Valeur moyenne"
|
2522 |
|
2523 |
#: wppa-bestof-widget.php:178 wppa-topten-widget.php:364
|
2524 |
-
#: wppa-widget-admin.php:
|
2525 |
msgid "Subtitle:"
|
2526 |
msgstr "Sous titre:"
|
2527 |
|
@@ -2537,17 +2552,17 @@ msgstr "Moyenne des notes:"
|
|
2537 |
msgid "Rating count:"
|
2538 |
msgstr "Nombre de notes:"
|
2539 |
|
2540 |
-
#: wppa-bestof-widget.php:198 wppa-common-functions.php:
|
2541 |
#: wppa-settings-autosave.php:1431 wppa-settings-autosave.php:1780
|
2542 |
-
#: wppa-settings-autosave.php:1985 wppa-settings-autosave.php:
|
2543 |
-
#: wppa-settings-autosave.php:
|
2544 |
-
#: wppa-settings-autosave.php:
|
2545 |
-
#: wppa-settings-autosave.php:
|
2546 |
-
#: wppa-settings-autosave.php:
|
2547 |
-
#: wppa-settings-autosave.php:
|
2548 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
2549 |
#: wppa-tinymce-shortcodes.php:613 wppa-upload.php:1528 wppa-watermark.php:519
|
2550 |
-
#: wppa-widget-admin.php:
|
2551 |
msgid "--- none ---"
|
2552 |
msgstr "--- aucun ---"
|
2553 |
|
@@ -2556,12 +2571,24 @@ msgid "The authors album(s)"
|
|
2556 |
msgstr "Album(s) de l'auteur"
|
2557 |
|
2558 |
#: wppa-bestof-widget.php:200
|
2559 |
-
|
2560 |
-
|
|
|
2561 |
|
2562 |
#: wppa-bestof-widget.php:201
|
2563 |
-
|
2564 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2565 |
|
2566 |
#: wppa-boxes-html.php:139 wppa-boxes-html.php:251
|
2567 |
msgid "Photo search results"
|
@@ -2580,7 +2607,7 @@ msgid "Category"
|
|
2580 |
msgstr "Catégorie"
|
2581 |
|
2582 |
#: wppa-boxes-html.php:421 wppa-boxes-html.php:554
|
2583 |
-
#: wppa-settings-autosave.php:
|
2584 |
msgid "Text"
|
2585 |
msgstr "Texte"
|
2586 |
|
@@ -2594,9 +2621,9 @@ msgstr "CTRL+Clic pour ajouter/supprimer des options."
|
|
2594 |
msgid "Items must meet all selected options."
|
2595 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2596 |
|
2597 |
-
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:
|
2598 |
-
#: wppa-settings-autosave.php:
|
2599 |
-
#: wppa-settings-autosave.php:
|
2600 |
msgid "Tag"
|
2601 |
msgstr "Tag"
|
2602 |
|
@@ -2618,7 +2645,7 @@ msgid "Super View Photos"
|
|
2618 |
msgstr "Photos en Super View"
|
2619 |
|
2620 |
#: wppa-boxes-html.php:836 wppa-settings-autosave.php:425
|
2621 |
-
#: wppa-settings-autosave.php:
|
2622 |
msgid "Thumbnails"
|
2623 |
msgstr "Vignettes"
|
2624 |
|
@@ -2670,7 +2697,7 @@ msgstr "Trouver!"
|
|
2670 |
msgid "Social media landing page"
|
2671 |
msgstr "Social media landing page"
|
2672 |
|
2673 |
-
#: wppa-boxes-html.php:1279 wppa-utils.php:
|
2674 |
#, php-format
|
2675 |
msgid "See this image on %s"
|
2676 |
msgstr "Voir cette image sur %s"
|
@@ -2738,7 +2765,7 @@ msgstr "Entrez la description de l'album"
|
|
2738 |
msgid "Create album"
|
2739 |
msgstr "Créer un album"
|
2740 |
|
2741 |
-
#: wppa-boxes-html.php:1900 wppa-boxes-html.php:1913 wppa-functions.php:
|
2742 |
msgid "Max uploads reached"
|
2743 |
msgstr "Ajout maximum ateind"
|
2744 |
|
@@ -2869,123 +2896,123 @@ msgstr "Entrer un nom d'album"
|
|
2869 |
msgid "Album description:"
|
2870 |
msgstr "Description de l'album:"
|
2871 |
|
2872 |
-
#: wppa-boxes-html.php:
|
2873 |
msgid "Update album"
|
2874 |
msgstr "Update album"
|
2875 |
|
2876 |
-
#: wppa-boxes-html.php:
|
2877 |
msgid "wrote:"
|
2878 |
msgstr "a écrit:"
|
2879 |
|
2880 |
-
#: wppa-boxes-html.php:
|
2881 |
msgid "Avatar"
|
2882 |
msgstr "Avatar"
|
2883 |
|
2884 |
-
#: wppa-boxes-html.php:
|
2885 |
msgid "Awaiting moderation"
|
2886 |
msgstr "En attente de modération"
|
2887 |
|
2888 |
-
#: wppa-boxes-html.php:
|
2889 |
msgid "Marked as spam"
|
2890 |
msgstr "Marqué comme indésirable"
|
2891 |
|
2892 |
-
#: wppa-boxes-html.php:
|
2893 |
msgid "Edit!"
|
2894 |
msgstr "Éditer !"
|
2895 |
|
2896 |
-
#: wppa-boxes-html.php:
|
2897 |
msgid "Send!"
|
2898 |
msgstr "Transmettre !"
|
2899 |
|
2900 |
-
#: wppa-boxes-html.php:
|
2901 |
msgid "Your name:"
|
2902 |
msgstr "Votre nom:"
|
2903 |
|
2904 |
-
#: wppa-boxes-html.php:
|
2905 |
msgid "Your email:"
|
2906 |
msgstr "Votre email:"
|
2907 |
|
2908 |
-
#: wppa-boxes-html.php:
|
2909 |
msgid "Your comment:"
|
2910 |
msgstr "Votre commentaire:"
|
2911 |
|
2912 |
-
#: wppa-boxes-html.php:
|
2913 |
#, php-format
|
2914 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
2915 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
2916 |
|
2917 |
-
#: wppa-boxes-html.php:
|
2918 |
msgid "You must login to enter a comment"
|
2919 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
2920 |
|
2921 |
-
#: wppa-boxes-html.php:
|
2922 |
#, php-format
|
2923 |
msgid "%d comment"
|
2924 |
msgid_plural "%d comments"
|
2925 |
msgstr[0] "%d commentaire"
|
2926 |
msgstr[1] "%d commentaires"
|
2927 |
|
2928 |
-
#: wppa-boxes-html.php:
|
2929 |
msgid "Leave a comment"
|
2930 |
msgstr "Laisser un commentaire"
|
2931 |
|
2932 |
-
#: wppa-boxes-html.php:
|
2933 |
msgid "Show IPTC data"
|
2934 |
msgstr "Afficher les données IPTC"
|
2935 |
|
2936 |
-
#: wppa-boxes-html.php:
|
2937 |
msgid "Hide IPTC data"
|
2938 |
msgstr "Cacher les données IPTC"
|
2939 |
|
2940 |
-
#: wppa-boxes-html.php:
|
2941 |
msgid "No IPTC data"
|
2942 |
msgstr "Pas de données IPTC"
|
2943 |
|
2944 |
-
#: wppa-boxes-html.php:
|
2945 |
msgid "Show EXIF data"
|
2946 |
msgstr "Afficher les données EXIF"
|
2947 |
|
2948 |
-
#: wppa-boxes-html.php:
|
2949 |
msgid "Hide EXIF data"
|
2950 |
msgstr "Cacher les données EXIF"
|
2951 |
|
2952 |
-
#: wppa-boxes-html.php:
|
2953 |
msgid "No EXIF data"
|
2954 |
msgstr "Pas de données EXIF"
|
2955 |
|
2956 |
-
#: wppa-boxes-html.php:
|
2957 |
msgid "< Previous"
|
2958 |
msgstr "< Préc."
|
2959 |
|
2960 |
-
#: wppa-boxes-html.php:
|
2961 |
msgid "Next >"
|
2962 |
msgstr "Suiv. >"
|
2963 |
|
2964 |
-
#: wppa-boxes-html.php:
|
2965 |
msgid "See the authors albums"
|
2966 |
msgstr "Voir les albums des auteurs"
|
2967 |
|
2968 |
-
#: wppa-boxes-html.php:
|
2969 |
msgid "See the authors photos"
|
2970 |
msgstr "Voir les photos des auteurs"
|
2971 |
|
2972 |
-
#: wppa-boxes-html.php:
|
2973 |
msgid "See all the authors photos"
|
2974 |
msgstr "Voir toutes les photos des auteurs"
|
2975 |
|
2976 |
-
#: wppa-boxes-html.php:
|
2977 |
#, php-format
|
2978 |
msgid "Photo by: %s"
|
2979 |
msgstr "Photo par: %s"
|
2980 |
|
2981 |
-
#: wppa-boxes-html.php:
|
2982 |
#, php-format
|
2983 |
msgid "%d max rating"
|
2984 |
msgid_plural "%d max ratings"
|
2985 |
msgstr[0] "%d max note"
|
2986 |
msgstr[1] "%d max notes"
|
2987 |
|
2988 |
-
#: wppa-boxes-html.php:
|
2989 |
#: wppa-topten-widget.php:196 wppa-topten-widget.php:213
|
2990 |
#: wppa-topten-widget.php:249
|
2991 |
#, php-format
|
@@ -2994,22 +3021,22 @@ msgid_plural "%d votes"
|
|
2994 |
msgstr[0] "%d vote"
|
2995 |
msgstr[1] "%d votes"
|
2996 |
|
2997 |
-
#: wppa-boxes-html.php:
|
2998 |
#, php-format
|
2999 |
msgid "Rating: %4.2f."
|
3000 |
msgstr "Vote: %4.2f."
|
3001 |
|
3002 |
-
#: wppa-boxes-html.php:
|
3003 |
#, php-format
|
3004 |
msgid "Photo %s not found."
|
3005 |
msgstr "Photo %s non trouvée."
|
3006 |
|
3007 |
-
#: wppa-boxes-html.php:
|
3008 |
#, php-format
|
3009 |
msgid "Mean value: %4.2f."
|
3010 |
msgstr "Valeur moyenne: %4.2f."
|
3011 |
|
3012 |
-
#: wppa-boxes-html.php:
|
3013 |
msgid "Refresh"
|
3014 |
msgstr "Rafraichir"
|
3015 |
|
@@ -3177,16 +3204,16 @@ msgstr "ET"
|
|
3177 |
msgid "OR"
|
3178 |
msgstr "OU"
|
3179 |
|
3180 |
-
#: wppa-cart.php:
|
3181 |
msgid "Buy now"
|
3182 |
msgstr "Acheter maintenant"
|
3183 |
|
3184 |
-
#: wppa-cart.php:
|
3185 |
#, php-format
|
3186 |
msgid "Unit Price: %s each"
|
3187 |
msgstr "Prix à l'unité: %s chaque"
|
3188 |
|
3189 |
-
#: wppa-cart.php:
|
3190 |
msgid "Qty:"
|
3191 |
msgstr "Qté:"
|
3192 |
|
@@ -3206,11 +3233,11 @@ msgstr "Utilisateur:"
|
|
3206 |
msgid "Email:"
|
3207 |
msgstr "Email:"
|
3208 |
|
3209 |
-
#: wppa-comment-admin.php:80 wppa-utils.php:
|
3210 |
msgid "Comment:"
|
3211 |
msgstr "Commentaire:"
|
3212 |
|
3213 |
-
#: wppa-comment-admin.php:86 wppa-widget-admin.php:
|
3214 |
msgid "Save Changes"
|
3215 |
msgstr "Enregistrer les modifications"
|
3216 |
|
@@ -3273,7 +3300,7 @@ msgid "Linkpage:"
|
|
3273 |
msgstr "Page lien:"
|
3274 |
|
3275 |
#: wppa-comment-admin.php:231 wppa-settings-autosave.php:503
|
3276 |
-
#: wppa-settings-autosave.php:
|
3277 |
msgid "--- Please select a page ---"
|
3278 |
msgstr "--- Choisir une page ---"
|
3279 |
|
@@ -3348,16 +3375,16 @@ msgstr "(Album)"
|
|
3348 |
#: wppa-comment-admin.php:311 wppa-comment-admin.php:398
|
3349 |
#: wppa-settings-autosave.php:552 wppa-settings-autosave.php:714
|
3350 |
#: wppa-settings-autosave.php:736 wppa-settings-autosave.php:1484
|
3351 |
-
#: wppa-settings-autosave.php:1505 wppa-settings-autosave.php:
|
3352 |
-
#: wppa-settings-autosave.php:
|
3353 |
-
#: wppa-settings-autosave.php:
|
3354 |
-
#: wppa-settings-autosave.php:
|
3355 |
-
#: wppa-settings-autosave.php:
|
3356 |
-
#: wppa-settings-autosave.php:
|
3357 |
-
#: wppa-settings-autosave.php:
|
3358 |
-
#: wppa-settings-autosave.php:
|
3359 |
-
#: wppa-settings-autosave.php:
|
3360 |
-
#: wppa-settings-autosave.php:
|
3361 |
msgid "#"
|
3362 |
msgstr "#"
|
3363 |
|
@@ -3390,7 +3417,7 @@ msgstr "Cliquer pour voir la photo en pleine taille avec tous les commentaires"
|
|
3390 |
msgid "Reply to your comment on photo: %s on %s"
|
3391 |
msgstr "Répondre à votre commentaire sur la photo: %s de %s"
|
3392 |
|
3393 |
-
#: wppa-comment-admin.php:366 wppa-functions.php:
|
3394 |
msgid "Reply"
|
3395 |
msgstr "Répondre"
|
3396 |
|
@@ -3434,7 +3461,7 @@ msgstr "a écrit"
|
|
3434 |
#: wppa-comment-widget.php:87 wppa-featen-widget.php:137
|
3435 |
#: wppa-lasten-widget.php:148 wppa-non-admin.php:874 wppa-non-admin.php:879
|
3436 |
#: wppa-non-admin.php:884 wppa-non-admin.php:888 wppa-non-admin.php:895
|
3437 |
-
#: wppa-non-admin.php:905 wppa-potd-widget.php:
|
3438 |
#: wppa-topten-widget.php:257
|
3439 |
msgid "Photo not found"
|
3440 |
msgstr "Photo non trouvée"
|
@@ -3447,71 +3474,71 @@ msgstr "Il n'y pas encore de photos commentariés"
|
|
3447 |
msgid "Default photo album for"
|
3448 |
msgstr "Album par défaut pour"
|
3449 |
|
3450 |
-
#: wppa-common-functions.php:656 wppa-functions.php:
|
3451 |
#, php-format
|
3452 |
msgid "%d second"
|
3453 |
msgid_plural "%d seconds"
|
3454 |
msgstr[0] "%d seconde"
|
3455 |
msgstr[1] "%d secondes"
|
3456 |
|
3457 |
-
#: wppa-common-functions.php:660 wppa-functions.php:
|
3458 |
-
#: wppa-settings-autosave.php:
|
3459 |
#, php-format
|
3460 |
msgid "%d minute"
|
3461 |
msgid_plural "%d minutes"
|
3462 |
msgstr[0] "%d minute"
|
3463 |
msgstr[1] "%d minutes"
|
3464 |
|
3465 |
-
#: wppa-common-functions.php:664 wppa-functions.php:
|
3466 |
-
#: wppa-settings-autosave.php:
|
3467 |
#, php-format
|
3468 |
msgid "%d hour"
|
3469 |
msgid_plural "%d hours"
|
3470 |
msgstr[0] "%d heure"
|
3471 |
msgstr[1] "%d heures"
|
3472 |
|
3473 |
-
#: wppa-common-functions.php:668 wppa-functions.php:
|
3474 |
-
#: wppa-settings-autosave.php:
|
3475 |
-
#: wppa-settings-autosave.php:
|
3476 |
-
#: wppa-settings-autosave.php:
|
3477 |
-
#: wppa-settings-autosave.php:
|
3478 |
-
#: wppa-settings-autosave.php:
|
3479 |
-
#: wppa-settings-autosave.php:
|
3480 |
#, php-format
|
3481 |
msgid "%d day"
|
3482 |
msgid_plural "%d days"
|
3483 |
msgstr[0] "%d jour"
|
3484 |
msgstr[1] "%d jours"
|
3485 |
|
3486 |
-
#: wppa-common-functions.php:672 wppa-functions.php:
|
3487 |
-
#: wppa-settings-autosave.php:
|
3488 |
-
#: wppa-settings-autosave.php:
|
3489 |
-
#: wppa-settings-autosave.php:
|
3490 |
#, php-format
|
3491 |
msgid "%d week"
|
3492 |
msgid_plural "%d weeks"
|
3493 |
msgstr[0] "%d semaine"
|
3494 |
msgstr[1] "%d semaines"
|
3495 |
|
3496 |
-
#: wppa-common-functions.php:676 wppa-settings-autosave.php:
|
3497 |
-
#: wppa-settings-autosave.php:
|
3498 |
-
#: wppa-settings-autosave.php:
|
3499 |
-
#: wppa-settings-autosave.php:
|
3500 |
#, php-format
|
3501 |
msgid "%d month"
|
3502 |
msgid_plural "%d months"
|
3503 |
msgstr[0] "%d mois"
|
3504 |
msgstr[1] "%d mois"
|
3505 |
|
3506 |
-
#: wppa-common-functions.php:679 wppa-settings-autosave.php:
|
3507 |
-
#: wppa-settings-autosave.php:
|
3508 |
#, php-format
|
3509 |
msgid "%d year"
|
3510 |
msgid_plural "%d years"
|
3511 |
msgstr[0] "%d an"
|
3512 |
msgstr[1] "%d ans"
|
3513 |
|
3514 |
-
#: wppa-common-functions.php:
|
3515 |
#, php-format
|
3516 |
msgid ""
|
3517 |
"Based on your server memory limit you should not upload images larger then "
|
@@ -3521,39 +3548,39 @@ msgstr ""
|
|
3521 |
"devriez pas charger des images plus grandes que : <strong>%d x %d (%2.1f MP)</"
|
3522 |
"strong>"
|
3523 |
|
3524 |
-
#: wppa-common-functions.php:
|
3525 |
msgid "- select an album -"
|
3526 |
msgstr "- Choisir un album -"
|
3527 |
|
3528 |
-
#: wppa-common-functions.php:
|
3529 |
#: wppa-multitag-widget.php:84 wppa-slideshow-widget.php:199
|
3530 |
#: wppa-tagcloud-widget.php:71 wppa-tagcloud-widget.php:79
|
3531 |
msgid "--- all ---"
|
3532 |
msgstr "--- tout ---"
|
3533 |
|
3534 |
-
#: wppa-common-functions.php:
|
3535 |
msgid "--- generic ---"
|
3536 |
msgstr "--- générique ---"
|
3537 |
|
3538 |
-
#: wppa-common-functions.php:
|
3539 |
msgid "--- multiple see below ---"
|
3540 |
msgstr "--- multiples voir ci-dessous ---"
|
3541 |
|
3542 |
-
#: wppa-common-functions.php:
|
3543 |
msgid "--- a selection box ---"
|
3544 |
msgstr "--- une sélection ---"
|
3545 |
|
3546 |
-
#: wppa-common-functions.php:
|
3547 |
-
#: wppa-settings-autosave.php:
|
3548 |
#: wppa-upload.php:1529
|
3549 |
msgid "--- separate ---"
|
3550 |
msgstr "--- séparé ---"
|
3551 |
|
3552 |
-
#: wppa-common-functions.php:
|
3553 |
msgid "Photo id ="
|
3554 |
msgstr "ID photo ="
|
3555 |
|
3556 |
-
#: wppa-common-functions.php:
|
3557 |
msgid "Value ="
|
3558 |
msgstr "Valeur ="
|
3559 |
|
@@ -3617,180 +3644,180 @@ msgstr "Identifiant d'album incorrect"
|
|
3617 |
msgid "n.a."
|
3618 |
msgstr "Non applicable"
|
3619 |
|
3620 |
-
#: wppa-exif-iptc-common.php:239 wppa-utils.php:
|
3621 |
msgid "Not Defined"
|
3622 |
msgstr "Non défini"
|
3623 |
|
3624 |
-
#: wppa-exif-iptc-common.php:240 wppa-utils.php:
|
3625 |
msgid "Manual"
|
3626 |
msgstr "Manuel"
|
3627 |
|
3628 |
-
#: wppa-exif-iptc-common.php:241 wppa-utils.php:
|
3629 |
msgid "Program AE"
|
3630 |
msgstr "Programme AE"
|
3631 |
|
3632 |
-
#: wppa-exif-iptc-common.php:242 wppa-utils.php:
|
3633 |
msgid "Aperture-priority AE"
|
3634 |
msgstr "Priorité ouverture AE"
|
3635 |
|
3636 |
-
#: wppa-exif-iptc-common.php:243 wppa-utils.php:
|
3637 |
msgid "Shutter speed priority AE"
|
3638 |
msgstr "Priorité vitesse d'obturation AE"
|
3639 |
|
3640 |
-
#: wppa-exif-iptc-common.php:244 wppa-utils.php:
|
3641 |
msgid "Creative (Slow speed)"
|
3642 |
msgstr "Créatif (vitesse lente)"
|
3643 |
|
3644 |
-
#: wppa-exif-iptc-common.php:245 wppa-utils.php:
|
3645 |
msgid "Action (High speed)"
|
3646 |
msgstr "Action (vitesse haute)"
|
3647 |
|
3648 |
-
#: wppa-exif-iptc-common.php:246 wppa-utils.php:
|
3649 |
msgid "Portrait"
|
3650 |
msgstr "Portrait"
|
3651 |
|
3652 |
-
#: wppa-exif-iptc-common.php:247 wppa-utils.php:
|
3653 |
msgid "Landscape"
|
3654 |
msgstr "Paysage"
|
3655 |
|
3656 |
-
#: wppa-exif-iptc-common.php:248 wppa-utils.php:
|
3657 |
msgid "Bulb"
|
3658 |
msgstr "Ampoule électrique"
|
3659 |
|
3660 |
-
#: wppa-exif-iptc-common.php:270 wppa-utils.php:
|
3661 |
msgid "Average"
|
3662 |
msgstr "Moyen"
|
3663 |
|
3664 |
-
#: wppa-exif-iptc-common.php:271 wppa-utils.php:
|
3665 |
msgid "Center-weighted average"
|
3666 |
msgstr "Mesure centrale pondérée"
|
3667 |
|
3668 |
-
#: wppa-exif-iptc-common.php:272 wppa-utils.php:
|
3669 |
msgid "Spot"
|
3670 |
msgstr "Spot"
|
3671 |
|
3672 |
-
#: wppa-exif-iptc-common.php:273 wppa-utils.php:
|
3673 |
msgid "Multi-spot"
|
3674 |
msgstr "Multi-spot"
|
3675 |
|
3676 |
-
#: wppa-exif-iptc-common.php:274 wppa-utils.php:
|
3677 |
msgid "Multi-segment"
|
3678 |
msgstr "Multi-segments"
|
3679 |
|
3680 |
-
#: wppa-exif-iptc-common.php:275 wppa-utils.php:
|
3681 |
msgid "Partial"
|
3682 |
msgstr "Partiel"
|
3683 |
|
3684 |
-
#: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:
|
3685 |
-
#: wppa-utils.php:
|
3686 |
msgid "Other"
|
3687 |
msgstr "Autre"
|
3688 |
|
3689 |
-
#: wppa-exif-iptc-common.php:312 wppa-utils.php:
|
3690 |
msgid "No Flash"
|
3691 |
msgstr "Pas de flash"
|
3692 |
|
3693 |
-
#: wppa-exif-iptc-common.php:314 wppa-utils.php:
|
3694 |
msgid "Fired"
|
3695 |
msgstr "Fired"
|
3696 |
|
3697 |
-
#: wppa-exif-iptc-common.php:316 wppa-utils.php:
|
3698 |
msgid "Fired, Return not detected"
|
3699 |
msgstr "Fired, Retour non détecté"
|
3700 |
|
3701 |
-
#: wppa-exif-iptc-common.php:318 wppa-utils.php:
|
3702 |
msgid "Fired, Return detected"
|
3703 |
msgstr "Fired, Retour détecté"
|
3704 |
|
3705 |
-
#: wppa-exif-iptc-common.php:320 wppa-utils.php:
|
3706 |
msgid "On, Did not fire"
|
3707 |
msgstr "Activé, Did not fire"
|
3708 |
|
3709 |
-
#: wppa-exif-iptc-common.php:322 wppa-utils.php:
|
3710 |
msgid "On, Fired"
|
3711 |
msgstr "Activé, Fired"
|
3712 |
|
3713 |
-
#: wppa-exif-iptc-common.php:324 wppa-utils.php:
|
3714 |
msgid "On, Return not detected"
|
3715 |
msgstr "Activé, Retour non détecté"
|
3716 |
|
3717 |
-
#: wppa-exif-iptc-common.php:326 wppa-utils.php:
|
3718 |
msgid "On, Return detected"
|
3719 |
msgstr "Activé, Retour détecté"
|
3720 |
|
3721 |
-
#: wppa-exif-iptc-common.php:328 wppa-utils.php:
|
3722 |
msgid "Off, Did not fire"
|
3723 |
msgstr "Désactivé, Did not fire"
|
3724 |
|
3725 |
-
#: wppa-exif-iptc-common.php:330 wppa-utils.php:
|
3726 |
msgid "Off, Did not fire, Return not detected"
|
3727 |
msgstr "Désactivé, Did not fire, Retour non détecté"
|
3728 |
|
3729 |
-
#: wppa-exif-iptc-common.php:332 wppa-utils.php:
|
3730 |
msgid "Auto, Did not fire"
|
3731 |
msgstr "Auto, Did not fire"
|
3732 |
|
3733 |
-
#: wppa-exif-iptc-common.php:334 wppa-utils.php:
|
3734 |
msgid "Auto, Fired"
|
3735 |
msgstr "Auto, Fired"
|
3736 |
|
3737 |
-
#: wppa-exif-iptc-common.php:336 wppa-utils.php:
|
3738 |
msgid "Auto, Fired, Return not detected"
|
3739 |
msgstr "Auto, Fired, Retour non détecté"
|
3740 |
|
3741 |
-
#: wppa-exif-iptc-common.php:338 wppa-utils.php:
|
3742 |
msgid "Auto, Fired, Return detected"
|
3743 |
msgstr "Auto, Fired, Retour détecté"
|
3744 |
|
3745 |
-
#: wppa-exif-iptc-common.php:340 wppa-utils.php:
|
3746 |
msgid "No flash function"
|
3747 |
msgstr "Pas de fonction flash"
|
3748 |
|
3749 |
-
#: wppa-exif-iptc-common.php:342 wppa-utils.php:
|
3750 |
msgid "Off, No flash function"
|
3751 |
msgstr "Désactivé, Pas de fonction flash"
|
3752 |
|
3753 |
-
#: wppa-exif-iptc-common.php:344 wppa-utils.php:
|
3754 |
msgid "Fired, Red-eye reduction"
|
3755 |
msgstr "Fired, Réduction yeux rouges"
|
3756 |
|
3757 |
-
#: wppa-exif-iptc-common.php:346 wppa-utils.php:
|
3758 |
msgid "Fired, Red-eye reduction, Return not detected"
|
3759 |
msgstr "Fired, Réduction yeux rouges, Retour non détecté"
|
3760 |
|
3761 |
-
#: wppa-exif-iptc-common.php:348 wppa-utils.php:
|
3762 |
msgid "Fired, Red-eye reduction, Return detected"
|
3763 |
msgstr "Fired, Réduction yeux rouges, Retour détecté"
|
3764 |
|
3765 |
-
#: wppa-exif-iptc-common.php:350 wppa-utils.php:
|
3766 |
msgid "On, Red-eye reduction"
|
3767 |
msgstr "Activé, Réduction yeux rouges"
|
3768 |
|
3769 |
-
#: wppa-exif-iptc-common.php:352 wppa-utils.php:
|
3770 |
msgid "Red-eye reduction, Return not detected"
|
3771 |
msgstr "Réduction yeux rouges, Retour non détecté"
|
3772 |
|
3773 |
-
#: wppa-exif-iptc-common.php:354 wppa-utils.php:
|
3774 |
msgid "On, Red-eye reduction, Return detected"
|
3775 |
msgstr "Activé, Réduction yeux rouges, Retour détecté"
|
3776 |
|
3777 |
-
#: wppa-exif-iptc-common.php:356 wppa-utils.php:
|
3778 |
msgid "Off, Red-eye reduction"
|
3779 |
msgstr "Désactivé, Réduction yeux rouges"
|
3780 |
|
3781 |
-
#: wppa-exif-iptc-common.php:358 wppa-utils.php:
|
3782 |
msgid "Auto, Did not fire, Red-eye reduction"
|
3783 |
msgstr "Auto, Did not fire, Réduction yeux rouges"
|
3784 |
|
3785 |
-
#: wppa-exif-iptc-common.php:360 wppa-utils.php:
|
3786 |
msgid "Auto, Fired, Red-eye reduction"
|
3787 |
msgstr "Auto, Fired, Réduction yeux rouges"
|
3788 |
|
3789 |
-
#: wppa-exif-iptc-common.php:362 wppa-utils.php:
|
3790 |
msgid "Auto, Fired, Red-eye reduction, Return not detected"
|
3791 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour non détecté"
|
3792 |
|
3793 |
-
#: wppa-exif-iptc-common.php:364 wppa-utils.php:
|
3794 |
msgid "Auto, Fired, Red-eye reduction, Return detected"
|
3795 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour détecté"
|
3796 |
|
@@ -3908,11 +3935,11 @@ msgstr "Voir les photos recommandées"
|
|
3908 |
msgid "There are no featured photos (yet)"
|
3909 |
msgstr "Il n'y pas (encore) de photos recommandées"
|
3910 |
|
3911 |
-
#: wppa-functions.php:
|
3912 |
msgid "No related photos found."
|
3913 |
msgstr "Aucune photo apparentée trouvée."
|
3914 |
|
3915 |
-
#: wppa-functions.php:
|
3916 |
#, php-format
|
3917 |
msgid ""
|
3918 |
"There are %s albums found. Only the first %s will be shown. Please refine your "
|
@@ -3921,241 +3948,241 @@ msgstr ""
|
|
3921 |
"Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. Veuillez "
|
3922 |
"redéfinir vos critères de recherche."
|
3923 |
|
3924 |
-
#: wppa-functions.php:
|
3925 |
-
#: wppa-thumbnails.php:
|
3926 |
msgid "Are you sure you want to remove this photo?"
|
3927 |
msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
|
3928 |
|
3929 |
-
#: wppa-functions.php:
|
3930 |
msgid "Are you sure you want to add this photo to your zip?"
|
3931 |
msgstr "Etes-vous sûr que vous voulez ajouter cette photo à votre zip?"
|
3932 |
|
3933 |
-
#: wppa-functions.php:
|
3934 |
msgid "MyChoice"
|
3935 |
msgstr "MonChoix"
|
3936 |
|
3937 |
-
#: wppa-functions.php:
|
3938 |
#, php-format
|
3939 |
msgid "%d dislike"
|
3940 |
msgid_plural "%d dislikes"
|
3941 |
msgstr[0] "%d avis négatif"
|
3942 |
msgstr[1] "%d avis négatifs"
|
3943 |
|
3944 |
-
#: wppa-functions.php:
|
3945 |
msgid "including mine"
|
3946 |
msgstr "en comptant le mien"
|
3947 |
|
3948 |
-
#: wppa-functions.php:
|
3949 |
msgid "Comment edited"
|
3950 |
msgstr "Commentaire modifié"
|
3951 |
|
3952 |
-
#: wppa-functions.php:
|
3953 |
msgid "Photo comment"
|
3954 |
msgstr "Commentaire photo"
|
3955 |
|
3956 |
-
#: wppa-functions.php:
|
3957 |
msgid "Comment on photo:"
|
3958 |
msgstr "Commentaire sur la photo:"
|
3959 |
|
3960 |
-
#: wppa-functions.php:
|
3961 |
msgid "wrote on photo"
|
3962 |
msgstr "écrit sur les photos"
|
3963 |
|
3964 |
-
#: wppa-functions.php:
|
3965 |
msgid "Moderate comment admin"
|
3966 |
msgstr "Moderate comment admin"
|
3967 |
|
3968 |
-
#: wppa-functions.php:
|
3969 |
msgid "Moderate manage photo"
|
3970 |
msgstr "Moderate manage photo"
|
3971 |
|
3972 |
-
#: wppa-functions.php:
|
3973 |
msgid "You receive this email as you are assigned to moderate"
|
3974 |
msgstr "Vous avez reçu cet email car vous êtes modérateur"
|
3975 |
|
3976 |
-
#: wppa-functions.php:
|
3977 |
msgid "You receive this email as administrator of the site"
|
3978 |
msgstr "Vous avez reçu cet email en tant qu'administrateur du site"
|
3979 |
|
3980 |
-
#: wppa-functions.php:
|
3981 |
msgid "You receive this email as uploader of the photo"
|
3982 |
msgstr "Vous avez reçu cet email en tant qu'uploadeur de la photo"
|
3983 |
|
3984 |
-
#: wppa-functions.php:
|
3985 |
msgid "You receive this email as owner of the album"
|
3986 |
msgstr "Vous avez reçu cet email en tant propriétaire de l'album"
|
3987 |
|
3988 |
-
#: wppa-functions.php:
|
3989 |
msgid "You receive this email because you commented this photo earlier."
|
3990 |
msgstr "Vous recevez cet e-mail parce que vous commenté cette photo plus tôt."
|
3991 |
|
3992 |
-
#: wppa-functions.php:
|
3993 |
msgid "Comment added"
|
3994 |
msgstr "Commentaire ajouté"
|
3995 |
|
3996 |
-
#: wppa-functions.php:
|
3997 |
msgid ""
|
3998 |
"Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the computation."
|
3999 |
msgstr ""
|
4000 |
"Désolé, vous avez donné une mauvaise réponse.\\n\\nVeuillez ré-essayer de "
|
4001 |
"résoudre l'équation."
|
4002 |
|
4003 |
-
#: wppa-functions.php:
|
4004 |
msgid "Could not process comment.\\nProbably timed out."
|
4005 |
msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
|
4006 |
|
4007 |
-
#: wppa-functions.php:
|
4008 |
msgid "A video can not be printed or downloaded"
|
4009 |
msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
|
4010 |
|
4011 |
-
#: wppa-functions.php:
|
4012 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4013 |
msgstr "<b>ERREUR: Tentative illicite d'entrer une note.</b>"
|
4014 |
|
4015 |
-
#: wppa-functions.php:
|
4016 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4017 |
msgstr "<b>ERREUR: Tentative illicite d'entrer un commentaire.</b>"
|
4018 |
|
4019 |
-
#: wppa-functions.php:
|
4020 |
msgid "ERROR: Illegal attempt to create an album."
|
4021 |
msgstr "<b>ERREUR: Tentative incorrecte de créer un album.</b>"
|
4022 |
|
4023 |
-
#: wppa-functions.php:
|
4024 |
msgid "Wrong captcha, please try again"
|
4025 |
msgstr "Captcha faux, veuillez recommencer"
|
4026 |
|
4027 |
-
#: wppa-functions.php:
|
4028 |
#, php-format
|
4029 |
msgid "Album #%s created"
|
4030 |
msgstr "Album #%s créé"
|
4031 |
|
4032 |
-
#: wppa-functions.php:
|
4033 |
msgid "Could not create album"
|
4034 |
msgstr "Impossible de créer un album"
|
4035 |
|
4036 |
-
#: wppa-functions.php:
|
4037 |
msgid "ERROR: Illegal attempt to upload a file."
|
4038 |
msgstr "<b>ERREUR: tentative illicite de télécharger un fichier.</b>"
|
4039 |
|
4040 |
-
#: wppa-functions.php:
|
4041 |
msgid "Photo upload"
|
4042 |
msgstr "Chargement photo"
|
4043 |
|
4044 |
-
#: wppa-functions.php:
|
4045 |
#, php-format
|
4046 |
msgid "%d photo successfully uploaded"
|
4047 |
msgid_plural "%d photos successfully uploaded"
|
4048 |
msgstr[0] "%d photo chargées avec succès"
|
4049 |
msgstr[1] "%d photos chargées avec succès"
|
4050 |
|
4051 |
-
#: wppa-functions.php:
|
4052 |
#, php-format
|
4053 |
msgid "%s points added"
|
4054 |
msgstr "%s points ajoutés"
|
4055 |
|
4056 |
-
#: wppa-functions.php:
|
4057 |
msgid "Upload failed"
|
4058 |
msgstr "chargement échoué"
|
4059 |
|
4060 |
-
#: wppa-functions.php:
|
4061 |
#, php-format
|
4062 |
msgid "%d upload failed"
|
4063 |
msgid_plural "%d uploads failed"
|
4064 |
msgstr[0] "%d chargement échoué"
|
4065 |
msgstr[1] "%d chargements échoués"
|
4066 |
|
4067 |
-
#: wppa-functions.php:
|
4068 |
msgid "Error during upload"
|
4069 |
msgstr "Erreur durant le chargement"
|
4070 |
|
4071 |
-
#: wppa-functions.php:
|
4072 |
msgid "Could not insert media into db."
|
4073 |
msgstr "Impossible d'insérer dans les médias db."
|
4074 |
|
4075 |
-
#: wppa-functions.php:
|
4076 |
msgid "Uploaded file is not an image"
|
4077 |
msgstr "Le fichier chargé n'est pas une image"
|
4078 |
|
4079 |
-
#: wppa-functions.php:
|
4080 |
#, php-format
|
4081 |
msgid "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4082 |
msgstr ""
|
4083 |
"Seulement les formats .GIF, .JPG et .PNG sont supportés. Type de fichier "
|
4084 |
"retourné= %d."
|
4085 |
|
4086 |
-
#: wppa-functions.php:
|
4087 |
#, php-format
|
4088 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4089 |
msgstr ""
|
4090 |
"Le fichier chargé est plus grand que la taille maximum autorisée %d x %d "
|
4091 |
"pixels."
|
4092 |
|
4093 |
-
#: wppa-functions.php:
|
4094 |
#, php-format
|
4095 |
msgid "Uploaded file %s already exists in this album."
|
4096 |
msgstr "Le fichier chargé %s existe déjà dans cet album."
|
4097 |
|
4098 |
-
#: wppa-functions.php:
|
4099 |
#, php-format
|
4100 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4101 |
msgstr "L'image est trop grande. Taille max photo: %d x %d (%2.1f MegaPixel)"
|
4102 |
|
4103 |
-
#: wppa-functions.php:
|
4104 |
msgid "Could not insert photo into db."
|
4105 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4106 |
|
4107 |
-
#: wppa-functions.php:
|
4108 |
#, php-format
|
4109 |
msgid "New photo uploaded: %s"
|
4110 |
msgstr "Nouvelle photo chargée: %s"
|
4111 |
|
4112 |
-
#: wppa-functions.php:
|
4113 |
#, php-format
|
4114 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4115 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4116 |
|
4117 |
-
#: wppa-functions.php:
|
4118 |
msgid "This upload requires moderation"
|
4119 |
msgstr "Cet upload nécessite une modération"
|
4120 |
|
4121 |
-
#: wppa-functions.php:
|
4122 |
msgid "Details:"
|
4123 |
msgstr "Détails:"
|
4124 |
|
4125 |
-
#: wppa-functions.php:
|
4126 |
-
#: wppa-utils.php:
|
4127 |
msgid "Manage photo"
|
4128 |
msgstr "Gérer photo"
|
4129 |
|
4130 |
-
#: wppa-functions.php:
|
4131 |
msgid "You can upload after"
|
4132 |
msgstr "Vous pouvez charger après"
|
4133 |
|
4134 |
-
#: wppa-functions.php:
|
4135 |
-
#: wppa-functions.php:
|
4136 |
-
#: wppa-settings-autosave.php:
|
4137 |
-
#: wppa-settings-autosave.php:
|
4138 |
-
#: wppa-settings-autosave.php:
|
4139 |
-
#: wppa-settings-autosave.php:
|
4140 |
msgid "Download"
|
4141 |
msgstr "Télécharger"
|
4142 |
|
4143 |
-
#: wppa-functions.php:
|
4144 |
msgid "Zoom in"
|
4145 |
msgstr "Zoom in"
|
4146 |
|
4147 |
-
#: wppa-functions.php:
|
4148 |
#, fuzzy, php-format
|
4149 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4150 |
msgstr ""
|
4151 |
"Vous pouvez voter à nouveau après%s jours,%s heures,%s minutes et%s secondes"
|
4152 |
|
4153 |
-
#: wppa-functions.php:
|
4154 |
#, fuzzy, php-format
|
4155 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4156 |
msgstr "Vous pouvez voter à nouveau après%s heures,%s minutes et%s secondes"
|
4157 |
|
4158 |
-
#: wppa-functions.php:
|
4159 |
#, fuzzy, php-format
|
4160 |
msgid "You can vote again after %s minutes and %s seconds"
|
4161 |
msgstr "Vous pouvez voter à nouveau après%s minutes et%s secondes"
|
@@ -4348,56 +4375,66 @@ msgstr ""
|
|
4348 |
"<b>Albums photo -> Réglages</b> page d'administration <b>Table VIII-B17</"
|
4349 |
"b><strong>"
|
4350 |
|
4351 |
-
#: wppa-items.php:259 wppa-thumbnails.php:
|
4352 |
msgid "Gold medal"
|
4353 |
msgstr "Médaille d'or"
|
4354 |
|
4355 |
#: wppa-items.php:259 wppa-photo-admin-autosave.php:866
|
4356 |
#: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
|
4357 |
#: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
|
4358 |
-
#: wppa-widget-admin.php:
|
4359 |
msgid "Gold"
|
4360 |
msgstr "Or"
|
4361 |
|
4362 |
-
#: wppa-items.php:260 wppa-thumbnails.php:
|
4363 |
msgid "Silver medal"
|
4364 |
msgstr "Médaille d'argent"
|
4365 |
|
4366 |
#: wppa-items.php:260 wppa-photo-admin-autosave.php:867
|
4367 |
#: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
|
4368 |
#: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
|
4369 |
-
#: wppa-widget-admin.php:
|
4370 |
msgid "Silver"
|
4371 |
msgstr "Argent"
|
4372 |
|
4373 |
-
#: wppa-items.php:261 wppa-thumbnails.php:
|
4374 |
msgid "Bronze medal"
|
4375 |
msgstr "Médaille de bronze"
|
4376 |
|
4377 |
#: wppa-items.php:261 wppa-photo-admin-autosave.php:868
|
4378 |
#: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
|
4379 |
#: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
|
4380 |
-
#: wppa-widget-admin.php:
|
4381 |
msgid "Bronze"
|
4382 |
msgstr "Bronze"
|
4383 |
|
4384 |
-
#: wppa-items.php:336 wppa-items.php:
|
4385 |
msgid "none"
|
4386 |
msgstr "aucun"
|
4387 |
|
4388 |
-
#: wppa-items.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4389 |
msgid "unknown"
|
4390 |
msgstr "inconnu"
|
4391 |
|
4392 |
-
#: wppa-items.php:
|
4393 |
msgid "--- deleted ---"
|
4394 |
msgstr "--- supprimé ---"
|
4395 |
|
4396 |
-
#: wppa-items.php:
|
4397 |
msgid "All Albums"
|
4398 |
msgstr "Tous les albums"
|
4399 |
|
4400 |
-
#: wppa-items.php:
|
4401 |
msgid "My and public albums"
|
4402 |
msgstr "Mon et albums publics"
|
4403 |
|
@@ -4453,69 +4490,69 @@ msgstr "noms des photos"
|
|
4453 |
msgid "Show time since:"
|
4454 |
msgstr "Montrer la durée depuis:"
|
4455 |
|
4456 |
-
#: wppa-links.php:
|
4457 |
msgid "App"
|
4458 |
msgstr "App"
|
4459 |
|
4460 |
-
#: wppa-links.php:
|
4461 |
msgid "Mod"
|
4462 |
msgstr "Mod"
|
4463 |
|
4464 |
-
#: wppa-links.php:
|
4465 |
msgid "Del"
|
4466 |
msgstr "Del"
|
4467 |
|
4468 |
-
#: wppa-links.php:
|
4469 |
msgid "Are you sure you want to publish this photo?"
|
4470 |
msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
|
4471 |
|
4472 |
-
#: wppa-links.php:
|
4473 |
msgid "Approve"
|
4474 |
msgstr "Approuver"
|
4475 |
|
4476 |
-
#: wppa-links.php:
|
4477 |
msgid "Moderate"
|
4478 |
msgstr "Modérer"
|
4479 |
|
4480 |
-
#: wppa-links.php:
|
4481 |
msgid "PhotoAdmin"
|
4482 |
msgstr "Admin Photo"
|
4483 |
|
4484 |
-
#: wppa-links.php:
|
4485 |
msgid "CommentAdmin"
|
4486 |
msgstr "Admin Commentaires"
|
4487 |
|
4488 |
-
#: wppa-links.php:
|
4489 |
msgid "Are you sure you want to publish this comment?"
|
4490 |
msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
|
4491 |
|
4492 |
-
#: wppa-links.php:
|
4493 |
msgid "Are you sure you want to remove this comment?"
|
4494 |
msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
|
4495 |
|
4496 |
-
#: wppa-links.php:
|
4497 |
#, php-format
|
4498 |
msgid "Scheduled for %s"
|
4499 |
msgstr "Planifié pour %s"
|
4500 |
|
4501 |
-
#: wppa-links.php:
|
4502 |
msgid "Previous"
|
4503 |
msgstr "Préc."
|
4504 |
|
4505 |
-
#: wppa-links.php:
|
4506 |
-
#: wppa-slideshow.php:
|
4507 |
msgid "Next"
|
4508 |
msgstr "Suiv."
|
4509 |
|
4510 |
-
#: wppa-links.php:
|
4511 |
msgid "Download album"
|
4512 |
msgstr "Télécharger l'album"
|
4513 |
|
4514 |
-
#: wppa-links.php:
|
4515 |
msgid "View thumbnails"
|
4516 |
msgstr "Visualiser les vignettes"
|
4517 |
|
4518 |
-
#: wppa-links.php:
|
4519 |
msgid "View fullsize slideshow"
|
4520 |
msgstr "Voir le diaporama fullsize"
|
4521 |
|
@@ -4556,7 +4593,7 @@ msgstr "De et albums sont identiques"
|
|
4556 |
|
4557 |
#: wppa-maintenance.php:756 wppa-maintenance.php:772
|
4558 |
#: wppa-photo-admin-autosave.php:1742 wppa-photo-admin-autosave.php:1763
|
4559 |
-
#: wppa-settings-autosave.php:
|
4560 |
msgid "Required"
|
4561 |
msgstr "requis"
|
4562 |
|
@@ -4616,7 +4653,7 @@ msgstr ""
|
|
4616 |
msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
|
4617 |
msgstr "Touches: f = mode suiv.; q,x = sortir; d = abandonner cette note."
|
4618 |
|
4619 |
-
#: wppa-non-admin.php:740 wppa-settings-autosave.php:
|
4620 |
msgid "Start"
|
4621 |
msgstr "Démarrer"
|
4622 |
|
@@ -4648,13 +4685,13 @@ msgstr "Photo suivante"
|
|
4648 |
msgid "Prev."
|
4649 |
msgstr "Préc."
|
4650 |
|
4651 |
-
#: wppa-non-admin.php:750 wppa-slideshow.php:
|
4652 |
-
#: wppa-slideshow.php:
|
4653 |
msgid "Average rating"
|
4654 |
msgstr "Note moyenne"
|
4655 |
|
4656 |
-
#: wppa-non-admin.php:751 wppa-slideshow.php:
|
4657 |
-
#: wppa-slideshow.php:
|
4658 |
msgid "My rating"
|
4659 |
msgstr "Ma note"
|
4660 |
|
@@ -4687,7 +4724,7 @@ msgid "Double click to start/stop slideshow running"
|
|
4687 |
msgstr "Double-cliquez pour lancer/arrêter le diaporama"
|
4688 |
|
4689 |
#: wppa-non-admin.php:889 wppa-photo-admin-autosave.php:265
|
4690 |
-
#: wppa-potd-widget.php:
|
4691 |
msgid "By:"
|
4692 |
msgstr "Par:"
|
4693 |
|
@@ -4707,7 +4744,7 @@ msgstr "Il y a trop d'utilisateurs enregistrés dans le système pour ce widget"
|
|
4707 |
msgid "Photos uploaded by"
|
4708 |
msgstr "Photos chargées par"
|
4709 |
|
4710 |
-
#: wppa-non-admin.php:904 wppa-thumbnails.php:
|
4711 |
#: wppa-topten-widget.php:203 wppa-topten-widget.php:226
|
4712 |
#: wppa-topten-widget.php:236
|
4713 |
#, php-format
|
@@ -4754,7 +4791,7 @@ msgid "No photos matching your search criteria."
|
|
4754 |
msgstr "Aucune photo correspondant à vos critères de recherche n'a été trouvée."
|
4755 |
|
4756 |
#: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
|
4757 |
-
#: wppa-widget-admin.php:
|
4758 |
msgid "No photos yet in this album."
|
4759 |
msgstr "Pas encore de photo dans cet album"
|
4760 |
|
@@ -4942,8 +4979,8 @@ msgstr "URL du lien:"
|
|
4942 |
msgid "Same tab"
|
4943 |
msgstr "Même onglet"
|
4944 |
|
4945 |
-
#: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:
|
4946 |
-
#: wppa-settings-autosave.php:
|
4947 |
msgid "New tab"
|
4948 |
msgstr "Nouvel onglet"
|
4949 |
|
@@ -4968,7 +5005,7 @@ msgstr "Nom du fichier:"
|
|
4968 |
msgid "Update file"
|
4969 |
msgstr "Mettre à jour le fichier"
|
4970 |
|
4971 |
-
#: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:
|
4972 |
msgid "Upload"
|
4973 |
msgstr "Charger"
|
4974 |
|
@@ -5034,7 +5071,7 @@ msgstr "Fichier vignette:"
|
|
5034 |
msgid "Remake thumbnail file"
|
5035 |
msgstr "Refaire la vignette"
|
5036 |
|
5037 |
-
#: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:
|
5038 |
msgid "Remake"
|
5039 |
msgstr "Refaire"
|
5040 |
|
@@ -5106,13 +5143,13 @@ msgstr "Statut:"
|
|
5106 |
|
5107 |
#: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
|
5108 |
#: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
|
5109 |
-
#: wppa-photo-admin-autosave.php:1457 wppa-widget-admin.php:
|
5110 |
msgid "Publish"
|
5111 |
msgstr "Publier"
|
5112 |
|
5113 |
#: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
|
5114 |
#: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
|
5115 |
-
#: wppa-widget-admin.php:
|
5116 |
msgid "Featured"
|
5117 |
msgstr "Recommandé"
|
5118 |
|
@@ -5267,7 +5304,7 @@ msgid ""
|
|
5267 |
msgstr "Cliquer sur ce bouton rechargera la page après l'action demandée"
|
5268 |
|
5269 |
#: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
|
5270 |
-
#: wppa-settings-autosave.php:
|
5271 |
msgid "Preview"
|
5272 |
msgstr "Prévisualiser"
|
5273 |
|
@@ -5320,7 +5357,7 @@ msgstr "Mot"
|
|
5320 |
msgid "Count"
|
5321 |
msgstr "Compteur"
|
5322 |
|
5323 |
-
#: wppa-photo-admin-autosave.php:1881 wppa-settings-autosave.php:
|
5324 |
msgid "Tags"
|
5325 |
msgstr "Tags"
|
5326 |
|
@@ -5345,13 +5382,14 @@ msgstr "WPPA+ Photo du jour"
|
|
5345 |
msgid "Photo Of The Day"
|
5346 |
msgstr "Photo du jour"
|
5347 |
|
5348 |
-
#: wppa-potd-widget.php:
|
|
|
5349 |
msgid ""
|
5350 |
"You can set the content and the sizes in this widget in the <b>Photo Albums -> "
|
5351 |
-
"
|
5352 |
msgstr ""
|
5353 |
-
"Vous pouvez
|
5354 |
-
"
|
5355 |
|
5356 |
#: wppa-qr-widget.php:13
|
5357 |
msgid "WPPA+ QR Widget"
|
@@ -5413,7 +5451,7 @@ msgstr ""
|
|
5413 |
msgid "Enable subsearch"
|
5414 |
msgstr "Activer subsearch"
|
5415 |
|
5416 |
-
#: wppa-search-widget.php:134 wppa-settings-autosave.php:
|
5417 |
msgid "Landing page"
|
5418 |
msgstr "Page de destination"
|
5419 |
|
@@ -5611,7 +5649,7 @@ msgid "Legenda:"
|
|
5611 |
msgstr "Légende:"
|
5612 |
|
5613 |
#: wppa-settings-autosave.php:388 wppa-settings-autosave.php:390
|
5614 |
-
#: wppa-settings-autosave.php:2069 wppa-settings-autosave.php:
|
5615 |
msgid "Button"
|
5616 |
msgstr "Bouton"
|
5617 |
|
@@ -5619,8 +5657,8 @@ msgstr "Bouton"
|
|
5619 |
msgid "action that causes page reload."
|
5620 |
msgstr "action qui provoque le rechargement de la page."
|
5621 |
|
5622 |
-
#: wppa-settings-autosave.php:390 wppa-settings-autosave.php:
|
5623 |
-
#: wppa-settings-autosave.php:
|
5624 |
msgid "Are you sure?"
|
5625 |
msgstr "Êtes-vous sûr ?"
|
5626 |
|
@@ -5628,14 +5666,14 @@ msgstr "Êtes-vous sûr ?"
|
|
5628 |
msgid "action that does not cause page reload."
|
5629 |
msgstr "action qui ne provoque pas le rechargement de la page."
|
5630 |
|
5631 |
-
#: wppa-settings-autosave.php:393 wppa-settings-autosave.php:
|
5632 |
-
#: wppa-settings-autosave.php:
|
5633 |
-
#: wppa-settings-autosave.php:
|
5634 |
-
#: wppa-settings-autosave.php:
|
5635 |
-
#: wppa-settings-autosave.php:
|
5636 |
-
#: wppa-settings-autosave.php:
|
5637 |
-
#: wppa-settings-autosave.php:
|
5638 |
-
#: wppa-settings-autosave.php:
|
5639 |
msgid "Setting unmodified"
|
5640 |
msgstr "Configuration inchangée"
|
5641 |
|
@@ -5675,7 +5713,7 @@ msgstr "Couvertures"
|
|
5675 |
msgid "Layout"
|
5676 |
msgstr "Disposition"
|
5677 |
|
5678 |
-
#: wppa-settings-autosave.php:415 wppa-settings-autosave.php:
|
5679 |
msgid "Lightbox"
|
5680 |
msgstr "Lightbox"
|
5681 |
|
@@ -5691,13 +5729,8 @@ msgstr "Métadonnée"
|
|
5691 |
msgid "Navigation"
|
5692 |
msgstr "Navigation"
|
5693 |
|
5694 |
-
#: wppa-settings-autosave.php:
|
5695 |
-
#: wppa-settings-autosave.php:
|
5696 |
-
msgid "Page"
|
5697 |
-
msgstr "Page"
|
5698 |
-
|
5699 |
-
#: wppa-settings-autosave.php:420 wppa-settings-autosave.php:8463
|
5700 |
-
#: wppa-settings-autosave.php:8508
|
5701 |
msgid "Rating"
|
5702 |
msgstr "Note"
|
5703 |
|
@@ -5721,7 +5754,7 @@ msgstr "Chargements"
|
|
5721 |
msgid "Widgets"
|
5722 |
msgstr "Widgets"
|
5723 |
|
5724 |
-
#: wppa-settings-autosave.php:428 wppa-settings-autosave.php:
|
5725 |
msgid "Watermark"
|
5726 |
msgstr "Filigrane"
|
5727 |
|
@@ -5775,25 +5808,25 @@ msgstr "Cette table permet de faire une configuration initiale rapide."
|
|
5775 |
|
5776 |
#: wppa-settings-autosave.php:555 wppa-settings-autosave.php:717
|
5777 |
#: wppa-settings-autosave.php:739 wppa-settings-autosave.php:1487
|
5778 |
-
#: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:
|
5779 |
-
#: wppa-settings-autosave.php:
|
5780 |
-
#: wppa-settings-autosave.php:
|
5781 |
-
#: wppa-settings-autosave.php:
|
5782 |
msgid "Setting"
|
5783 |
msgstr "Réglages"
|
5784 |
|
5785 |
#: wppa-settings-autosave.php:556 wppa-settings-autosave.php:718
|
5786 |
#: wppa-settings-autosave.php:740 wppa-settings-autosave.php:1488
|
5787 |
-
#: wppa-settings-autosave.php:1509 wppa-settings-autosave.php:
|
5788 |
-
#: wppa-settings-autosave.php:
|
5789 |
-
#: wppa-settings-autosave.php:
|
5790 |
-
#: wppa-settings-autosave.php:
|
5791 |
-
#: wppa-settings-autosave.php:
|
5792 |
-
#: wppa-settings-autosave.php:
|
5793 |
-
#: wppa-settings-autosave.php:
|
5794 |
-
#: wppa-settings-autosave.php:
|
5795 |
-
#: wppa-settings-autosave.php:
|
5796 |
-
#: wppa-settings-autosave.php:
|
5797 |
msgid "Help"
|
5798 |
msgstr "Aide"
|
5799 |
|
@@ -6197,14 +6230,14 @@ msgstr ""
|
|
6197 |
#: wppa-settings-autosave.php:1402 wppa-settings-autosave.php:1411
|
6198 |
#: wppa-settings-autosave.php:1444 wppa-settings-autosave.php:1453
|
6199 |
#: wppa-settings-autosave.php:1465 wppa-settings-autosave.php:1474
|
6200 |
-
#: wppa-settings-autosave.php:
|
6201 |
-
#: wppa-settings-autosave.php:
|
6202 |
-
#: wppa-settings-autosave.php:
|
6203 |
-
#: wppa-settings-autosave.php:
|
6204 |
-
#: wppa-settings-autosave.php:
|
6205 |
-
#: wppa-settings-autosave.php:
|
6206 |
-
#: wppa-settings-autosave.php:
|
6207 |
-
#: wppa-settings-autosave.php:
|
6208 |
msgid "pixels"
|
6209 |
msgstr "pixels"
|
6210 |
|
@@ -6236,8 +6269,8 @@ msgstr ""
|
|
6236 |
#: wppa-settings-autosave.php:799 wppa-settings-autosave.php:838
|
6237 |
#: wppa-settings-autosave.php:1282 wppa-settings-autosave.php:1322
|
6238 |
#: wppa-settings-autosave.php:1342 wppa-settings-autosave.php:1382
|
6239 |
-
#: wppa-settings-autosave.php:
|
6240 |
-
#: wppa-settings-autosave.php:
|
6241 |
msgid "photos"
|
6242 |
msgstr "photos"
|
6243 |
|
@@ -6727,8 +6760,9 @@ msgstr ""
|
|
6727 |
"Entrer le nombre maximum de vignettes par page. Une valeur de 0 indique pas de "
|
6728 |
"pagination."
|
6729 |
|
6730 |
-
#: wppa-settings-autosave.php:1113 wppa-settings-autosave.php:
|
6731 |
-
#: wppa-settings-autosave.php:
|
|
|
6732 |
msgid "thumbnails"
|
6733 |
msgstr "vignettes"
|
6734 |
|
@@ -7167,7 +7201,7 @@ msgid ""
|
|
7167 |
msgstr ""
|
7168 |
"Entrer le nombre maximum de vignettes photo d'albums dans le widget Albums."
|
7169 |
|
7170 |
-
#: wppa-settings-autosave.php:1362 wppa-settings-autosave.php:
|
7171 |
msgid "albums"
|
7172 |
msgstr "albums"
|
7173 |
|
@@ -7439,7 +7473,7 @@ msgstr ""
|
|
7439 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
7440 |
"affichages Related Photos."
|
7441 |
|
7442 |
-
#: wppa-settings-autosave.php:1601 wppa-setup.php:
|
7443 |
msgid "Home"
|
7444 |
msgstr "Accueil"
|
7445 |
|
@@ -7543,11 +7577,11 @@ msgstr "Position du lien de page"
|
|
7543 |
msgid "The location for the pagelinks bar."
|
7544 |
msgstr "L'emplacement pour la barre des liens de page."
|
7545 |
|
7546 |
-
#: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:
|
7547 |
msgid "Top"
|
7548 |
msgstr "Haut"
|
7549 |
|
7550 |
-
#: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:
|
7551 |
msgid "Bottom"
|
7552 |
msgstr "Bas"
|
7553 |
|
@@ -7888,7 +7922,7 @@ msgstr "Montrer la boîte de partage"
|
|
7888 |
msgid "Display the share social media buttons box."
|
7889 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
7890 |
|
7891 |
-
#: wppa-settings-autosave.php:1929 wppa-settings-autosave.php:
|
7892 |
msgid "Hide when running"
|
7893 |
msgstr "Cacher lorsqu'en fonctionnement"
|
7894 |
|
@@ -8311,17 +8345,17 @@ msgstr ""
|
|
8311 |
"Choisir si le nom de l'album est affiché sur la vignette ainsi que sa position."
|
8312 |
|
8313 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8314 |
-
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:
|
8315 |
msgid "None"
|
8316 |
msgstr "Aucun"
|
8317 |
|
8318 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8319 |
-
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:
|
8320 |
msgid "At the top"
|
8321 |
msgstr "En haut"
|
8322 |
|
8323 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8324 |
-
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:
|
8325 |
msgid "At the bottom"
|
8326 |
msgstr "En bas"
|
8327 |
|
@@ -8499,7 +8533,7 @@ msgid "Show the album description on hoovering thumbnail in album widget"
|
|
8499 |
msgstr ""
|
8500 |
"Montrer la description de l'album en survolant la vignette dans le widget album"
|
8501 |
|
8502 |
-
#: wppa-settings-autosave.php:2418 wppa-settings-autosave.php:
|
8503 |
msgid ""
|
8504 |
"Lightbox related settings. These settings have effect only when Table IX-J3 is "
|
8505 |
"set to wppa"
|
@@ -8806,22 +8840,40 @@ msgstr ""
|
|
8806 |
"coin haut droit"
|
8807 |
|
8808 |
#: wppa-settings-autosave.php:2619
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8809 |
msgid "Overlay show counter"
|
8810 |
msgstr "Montrer compteur overlay"
|
8811 |
|
8812 |
-
#: wppa-settings-autosave.php:
|
8813 |
msgid "Show the x/y counter below the image."
|
8814 |
msgstr "Montrer le compteur x/y au dessous de l'image."
|
8815 |
|
8816 |
-
#: wppa-settings-autosave.php:
|
8817 |
msgid "Show Zoom in"
|
8818 |
msgstr "Montrer Zoom in"
|
8819 |
|
8820 |
-
#: wppa-settings-autosave.php:
|
8821 |
msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
|
8822 |
msgstr "Afficher le tooltip \"Zoom in\" avec le curseur loupe."
|
8823 |
|
8824 |
-
#: wppa-settings-autosave.php:
|
8825 |
msgid ""
|
8826 |
"If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
|
8827 |
"contains the photo name."
|
@@ -8829,19 +8881,19 @@ msgstr ""
|
|
8829 |
"Si vous choisissez --- Aucun --- dans table I-G2 pour la taille de la loupe, "
|
8830 |
"le tooltip contient le nom de la photo."
|
8831 |
|
8832 |
-
#: wppa-settings-autosave.php:
|
8833 |
msgid "Frontend upload configuration settings"
|
8834 |
msgstr "Réglages pour le chargement (upload) par le frontend"
|
8835 |
|
8836 |
-
#: wppa-settings-autosave.php:
|
8837 |
msgid "User upload Photos"
|
8838 |
msgstr "Photos chargées par l'utilisateur"
|
8839 |
|
8840 |
-
#: wppa-settings-autosave.php:
|
8841 |
msgid "Enable frontend upload."
|
8842 |
msgstr "Permettre chargement via le frontend."
|
8843 |
|
8844 |
-
#: wppa-settings-autosave.php:
|
8845 |
msgid ""
|
8846 |
"If you check this item, frontend upload will be enabled according to the rules "
|
8847 |
"set in the following items of this table."
|
@@ -8849,35 +8901,35 @@ msgstr ""
|
|
8849 |
"Si vous cochez cet item, le chargement par le frontend sera activé en accord "
|
8850 |
"avec les règles définies dans les items suivants de cette table."
|
8851 |
|
8852 |
-
#: wppa-settings-autosave.php:
|
8853 |
msgid "User upload Video"
|
8854 |
msgstr "Envoyer une vidéo"
|
8855 |
|
8856 |
-
#: wppa-settings-autosave.php:
|
8857 |
msgid "Enable frontend upload of video."
|
8858 |
msgstr "Activez le frontend upload de la vidéo."
|
8859 |
|
8860 |
-
#: wppa-settings-autosave.php:
|
8861 |
msgid "Requires Table II-H1 to be ticked."
|
8862 |
msgstr "Nécessite le Table II-H1 être cochée."
|
8863 |
|
8864 |
-
#: wppa-settings-autosave.php:
|
8865 |
msgid "User upload Audio"
|
8866 |
msgstr "Télécharger un fichier Audio"
|
8867 |
|
8868 |
-
#: wppa-settings-autosave.php:
|
8869 |
msgid "Enable frontend upload of audio."
|
8870 |
msgstr "Activez le frontend Télécharger audio."
|
8871 |
|
8872 |
-
#: wppa-settings-autosave.php:
|
8873 |
msgid "User upload Photos login"
|
8874 |
msgstr "Login de chargement photos utilisateur"
|
8875 |
|
8876 |
-
#: wppa-settings-autosave.php:
|
8877 |
msgid "Frontend upload requires the user is logged in."
|
8878 |
msgstr "Le chargement via frontend nécessite que l'utilisateur soit connecté."
|
8879 |
|
8880 |
-
#: wppa-settings-autosave.php:
|
8881 |
msgid ""
|
8882 |
"If you uncheck this box, make sure you check the item Owners only in Table VII-"
|
8883 |
"D1."
|
@@ -8885,7 +8937,7 @@ msgstr ""
|
|
8885 |
"Si vous décochez cette case, assurez vous de cocher l'item Propriétaires "
|
8886 |
"uniquement dans table VII-D1."
|
8887 |
|
8888 |
-
#: wppa-settings-autosave.php:
|
8889 |
msgid ""
|
8890 |
"Also: set the owner to ---public--- of the albums that are allowed to be "
|
8891 |
"uploaded to."
|
@@ -8893,42 +8945,42 @@ msgstr ""
|
|
8893 |
"Aussi: régler propriétaire à --- public --- \" dans les albums pour lesquels "
|
8894 |
"il sera autorisé de charger des média."
|
8895 |
|
8896 |
-
#: wppa-settings-autosave.php:
|
8897 |
msgid "User upload Ajax"
|
8898 |
msgstr "Chargement AJAX utilisateur"
|
8899 |
|
8900 |
-
#: wppa-settings-autosave.php:
|
8901 |
msgid "Shows the upload progression bar."
|
8902 |
msgstr "Montrer la barre progression du chargement."
|
8903 |
|
8904 |
-
#: wppa-settings-autosave.php:
|
8905 |
msgid "Show Copyright"
|
8906 |
msgstr "Montrer Copyright"
|
8907 |
|
8908 |
-
#: wppa-settings-autosave.php:
|
8909 |
msgid "Show a copyright warning on frontend upload locations."
|
8910 |
msgstr ""
|
8911 |
"Montrer un avertissement de copyright à l'endroit du chargement via le "
|
8912 |
"frontend."
|
8913 |
|
8914 |
-
#: wppa-settings-autosave.php:
|
8915 |
msgid "Copyright notice"
|
8916 |
msgstr "Note Copyright"
|
8917 |
|
8918 |
-
#: wppa-settings-autosave.php:
|
8919 |
msgid "The message to be displayed."
|
8920 |
msgstr "Le message a afficher."
|
8921 |
|
8922 |
-
#: wppa-settings-autosave.php:
|
8923 |
msgid "User Watermark"
|
8924 |
msgstr "Filigrane utilisateur"
|
8925 |
|
8926 |
-
#: wppa-settings-autosave.php:
|
8927 |
msgid "Uploading users may select watermark settings"
|
8928 |
msgstr ""
|
8929 |
"Les utilisateurs autorisés à charger peuvent gérer les options de filigrane"
|
8930 |
|
8931 |
-
#: wppa-settings-autosave.php:
|
8932 |
msgid ""
|
8933 |
"If checked, anyone who can upload and/or import photos can overrule the "
|
8934 |
"default watermark settings."
|
@@ -8936,15 +8988,15 @@ msgstr ""
|
|
8936 |
"Si coché, les utilisateurs autorisés à charger et/ou importer des photos "
|
8937 |
"peuvent passer outre les options par défaut du filigrane."
|
8938 |
|
8939 |
-
#: wppa-settings-autosave.php:
|
8940 |
msgid "User name"
|
8941 |
msgstr "Nom utilisateur"
|
8942 |
|
8943 |
-
#: wppa-settings-autosave.php:
|
8944 |
msgid "Uploading users may overrule the default name."
|
8945 |
msgstr "L'utilisateur autorisé à charger peut passer outre le nom par défaut."
|
8946 |
|
8947 |
-
#: wppa-settings-autosave.php:
|
8948 |
msgid ""
|
8949 |
"If checked, the default photo name as defined in Table IX-D13 may be overruled "
|
8950 |
"by the user."
|
@@ -8952,16 +9004,16 @@ msgstr ""
|
|
8952 |
"Si coché, le nom par défaut de la photo comme défini dans table IX-D13 ne "
|
8953 |
"s'applique pas pour l'utilisateur."
|
8954 |
|
8955 |
-
#: wppa-settings-autosave.php:
|
8956 |
msgid "Apply Newphoto desc user"
|
8957 |
msgstr "Appliquer la description utilisateur pour la nouvelle photo"
|
8958 |
|
8959 |
-
#: wppa-settings-autosave.php:
|
8960 |
msgid "Give each new frontend uploaded photo a standard description."
|
8961 |
msgstr ""
|
8962 |
"Donne à chaque nouvelle photo chargée par le frontend une description standard."
|
8963 |
|
8964 |
-
#: wppa-settings-autosave.php:
|
8965 |
msgid ""
|
8966 |
"If checked, each new photo will get the description (template) as specified in "
|
8967 |
"Table IX-D5."
|
@@ -8969,81 +9021,81 @@ msgstr ""
|
|
8969 |
"Si coché, chaque nouvelle photo recevra une description selon un modèle comme "
|
8970 |
"spécifié dans table IX-D5."
|
8971 |
|
8972 |
-
#: wppa-settings-autosave.php:
|
8973 |
msgid "User desc"
|
8974 |
msgstr "Description utilisateur"
|
8975 |
|
8976 |
-
#: wppa-settings-autosave.php:
|
8977 |
msgid "Uploading users may overrule the default description."
|
8978 |
msgstr ""
|
8979 |
"Les utilisateurs autoriser à charger des fichiers peuvent passer outre la "
|
8980 |
"description par défaut."
|
8981 |
|
8982 |
-
#: wppa-settings-autosave.php:
|
8983 |
msgid "User upload custom"
|
8984 |
msgstr "Personnalisation pour les utilisateurs autorisés à charger"
|
8985 |
|
8986 |
-
#: wppa-settings-autosave.php:
|
8987 |
msgid "Frontend upload can fill in custom data fields."
|
8988 |
msgstr ""
|
8989 |
"Possibilité de remplir des champ de donnée personnalisés lors du chargement "
|
8990 |
"frontend."
|
8991 |
|
8992 |
-
#: wppa-settings-autosave.php:
|
8993 |
msgid "User upload tags"
|
8994 |
msgstr "Tags chargement utilisateur"
|
8995 |
|
8996 |
-
#: wppa-settings-autosave.php:
|
8997 |
msgid "Frontend upload can add tags."
|
8998 |
msgstr "Possibilité d'ajouter des tag lors du chargement frontend."
|
8999 |
|
9000 |
-
#: wppa-settings-autosave.php:
|
9001 |
msgid "You can configure the details of tag addition in Table IX-D18.x"
|
9002 |
msgstr ""
|
9003 |
"Vous pouvez configurer les détails pour l'ajout de tag dans table IX-D18.x"
|
9004 |
|
9005 |
-
#: wppa-settings-autosave.php:
|
9006 |
-
#: wppa-settings-autosave.php:
|
9007 |
msgid "Tag selection box"
|
9008 |
msgstr "Boîte de sélection de tag"
|
9009 |
|
9010 |
-
#: wppa-settings-autosave.php:
|
9011 |
-
#: wppa-settings-autosave.php:
|
9012 |
msgid "Front-end upload tags selecion box."
|
9013 |
msgstr "Boîte de sélection des tags de chargement par frontend."
|
9014 |
|
9015 |
-
#: wppa-settings-autosave.php:
|
9016 |
-
#: wppa-settings-autosave.php:
|
9017 |
msgid "On:"
|
9018 |
msgstr "Sur:"
|
9019 |
|
9020 |
-
#: wppa-settings-autosave.php:
|
9021 |
-
#: wppa-settings-autosave.php:
|
9022 |
msgid "Multi:"
|
9023 |
msgstr "Multi:"
|
9024 |
|
9025 |
-
#: wppa-settings-autosave.php:
|
9026 |
-
#: wppa-settings-autosave.php:
|
9027 |
msgid "Caption box"
|
9028 |
msgstr "Boîte de légende"
|
9029 |
|
9030 |
-
#: wppa-settings-autosave.php:
|
9031 |
-
#: wppa-settings-autosave.php:
|
9032 |
msgid "The title of the tag selection box."
|
9033 |
msgstr "Le titre de la boîte de sélection de tag."
|
9034 |
|
9035 |
-
#: wppa-settings-autosave.php:
|
9036 |
-
#: wppa-settings-autosave.php:
|
9037 |
msgid "Tags box"
|
9038 |
msgstr "Boîte de tags"
|
9039 |
|
9040 |
-
#: wppa-settings-autosave.php:
|
9041 |
-
#: wppa-settings-autosave.php:
|
9042 |
msgid "The tags in the selection box."
|
9043 |
msgstr "Les tags dans la boîte de sélection."
|
9044 |
|
9045 |
-
#: wppa-settings-autosave.php:
|
9046 |
-
#: wppa-settings-autosave.php:
|
9047 |
msgid ""
|
9048 |
"Enter the tags you want to appear in the selection box. Empty means: all "
|
9049 |
"existing tags"
|
@@ -9051,121 +9103,123 @@ msgstr ""
|
|
9051 |
"Entrez les tags que vous désirez voir apparaître dans la boîte de sélection. "
|
9052 |
"Laisser vide signifie: tous les tags existants"
|
9053 |
|
9054 |
-
#: wppa-settings-autosave.php:
|
9055 |
msgid "New tags"
|
9056 |
msgstr "Nouveaux tags:"
|
9057 |
|
9058 |
-
#: wppa-settings-autosave.php:
|
9059 |
msgid "Input field for any user defined tags."
|
9060 |
msgstr "Champ de saisie pour les tags définis par l'utilisateur."
|
9061 |
|
9062 |
-
#: wppa-settings-autosave.php:
|
9063 |
msgid "New tags caption"
|
9064 |
msgstr "Nouvelle légende pour les tags"
|
9065 |
|
9066 |
-
#: wppa-settings-autosave.php:
|
9067 |
msgid "The caption above the tags input field."
|
9068 |
msgstr "La légende au dessus du champ de saisie des tags."
|
9069 |
|
9070 |
-
#: wppa-settings-autosave.php:
|
9071 |
msgid "Preview tags"
|
9072 |
msgstr "Aperçu tags"
|
9073 |
|
9074 |
-
#: wppa-settings-autosave.php:
|
9075 |
msgid "Show a preview of all tags that will be added to the photo info."
|
9076 |
msgstr ""
|
9077 |
"Montre une prévisualisation de tous les tags qui seront ajoutés aux "
|
9078 |
"informations de la photo."
|
9079 |
|
9080 |
-
#: wppa-settings-autosave.php:
|
9081 |
msgid "Camera connect"
|
9082 |
msgstr "Caméra connecter"
|
9083 |
|
9084 |
-
#: wppa-settings-autosave.php:
|
9085 |
msgid "Connect frontend upload to camara on mobile devices with camera"
|
9086 |
msgstr ""
|
9087 |
"Se connecter frontend télécharger à camara sur les appareils mobiles avec "
|
9088 |
"appareil photo"
|
9089 |
|
9090 |
-
#: wppa-settings-autosave.php:
|
9091 |
msgid "Miscellaneous visibility settings"
|
9092 |
msgstr "Réglages divers pour l'apparence"
|
9093 |
|
9094 |
-
#: wppa-settings-autosave.php:
|
9095 |
msgid "Frontend ending label"
|
9096 |
msgstr "Texte de fin du frontend"
|
9097 |
|
9098 |
-
#: wppa-settings-autosave.php:
|
9099 |
msgid "Frontend upload / create / edit dialog closing label text."
|
9100 |
msgstr ""
|
9101 |
"Texte de fermeture de la boîte de dialogue Charger / Créer / Modifier du "
|
9102 |
"frontend."
|
9103 |
|
9104 |
-
#: wppa-settings-autosave.php:
|
9105 |
msgid "Abort"
|
9106 |
msgstr "Abandonner"
|
9107 |
|
9108 |
-
#: wppa-settings-autosave.php:
|
9109 |
msgid "Close"
|
9110 |
msgstr "Fermer"
|
9111 |
|
9112 |
-
#: wppa-settings-autosave.php:
|
9113 |
msgid "Exit"
|
9114 |
msgstr "Sortir"
|
9115 |
|
9116 |
-
#: wppa-settings-autosave.php:
|
9117 |
msgid "Quit"
|
9118 |
msgstr "Quitter"
|
9119 |
|
9120 |
-
#: wppa-settings-autosave.php:
|
9121 |
msgid "Widget thumbs fontsize"
|
9122 |
msgstr "Taille de police de caractère pour les vignettes des widgets"
|
9123 |
|
9124 |
-
#: wppa-settings-autosave.php:
|
9125 |
msgid "Font size for thumbnail subtext in widgets."
|
9126 |
msgstr ""
|
9127 |
"Taille de la police de caractère du sous texte des vignettes dans les widgets."
|
9128 |
|
9129 |
-
#: wppa-settings-autosave.php:
|
9130 |
msgid "Arrow color"
|
9131 |
msgstr "Couleur de la flèche"
|
9132 |
|
9133 |
-
#: wppa-settings-autosave.php:
|
9134 |
msgid "Left/right browsing arrow color."
|
9135 |
msgstr "Couleur de la flèche de navigation gauche/droite."
|
9136 |
|
9137 |
-
#: wppa-settings-autosave.php:
|
9138 |
msgid "Enter the color of the filmstrip navigation arrows."
|
9139 |
msgstr "Entrer la couleur des flèches de navigation filmstrip."
|
9140 |
|
9141 |
-
#: wppa-settings-autosave.php:
|
9142 |
msgid "Owner on new line"
|
9143 |
msgstr "Propriétaire sur nouvelle ligne"
|
9144 |
|
9145 |
-
#: wppa-settings-autosave.php:
|
9146 |
msgid "Place the (owner) text on a new line."
|
9147 |
msgstr "Place le texte (du propriétaire) sur une nouvelle ligne."
|
9148 |
|
9149 |
-
#: wppa-settings-autosave.php:
|
9150 |
-
|
9151 |
-
|
|
|
9152 |
|
9153 |
-
#: wppa-settings-autosave.php:
|
9154 |
-
|
9155 |
-
|
|
|
9156 |
|
9157 |
-
#: wppa-settings-autosave.php:
|
9158 |
#, php-format
|
9159 |
msgid "Name, vis, edit %s"
|
9160 |
msgstr "Nom, vis, mod. %s"
|
9161 |
|
9162 |
-
#: wppa-settings-autosave.php:
|
9163 |
#, php-format
|
9164 |
msgid "The caption for field %s, visibility and editability at frontend."
|
9165 |
msgstr ""
|
9166 |
"La légende de champ %s, de visibilité et de caractère modifiable à frontend."
|
9167 |
|
9168 |
-
#: wppa-settings-autosave.php:
|
9169 |
#, php-format
|
9170 |
msgid ""
|
9171 |
"If you check the first box, the value of this field is displayable in photo "
|
@@ -9174,7 +9228,7 @@ msgstr ""
|
|
9174 |
"Si vous cochez la première case, la valeur de ce champ est affichable dans les "
|
9175 |
"descriptions de photo à l’interface avec le mot clé w#c%s"
|
9176 |
|
9177 |
-
#: wppa-settings-autosave.php:
|
9178 |
msgid ""
|
9179 |
"If you check the second box, the value of this field is editable at the "
|
9180 |
"frontend new style dialog."
|
@@ -9182,265 +9236,274 @@ msgstr ""
|
|
9182 |
"Si vous cochez la deuxième case, la valeur de ce champ est modifiable dans la "
|
9183 |
"boîte de dialogue style nouveau frontend."
|
9184 |
|
9185 |
-
#: wppa-settings-autosave.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9186 |
msgid "Navigation symbols for slideshows and lighbox"
|
9187 |
msgstr "Symboles de navigation pour diaporamas et Lightbox"
|
9188 |
|
9189 |
-
#: wppa-settings-autosave.php:
|
9190 |
msgid "Start symbol url"
|
9191 |
msgstr "URL pour le symbole Démarrer"
|
9192 |
|
9193 |
-
#: wppa-settings-autosave.php:
|
9194 |
msgid "Supply the url of an image for the start symbol"
|
9195 |
msgstr "Fournir l'URL d'une image pour le symbole Démarrer"
|
9196 |
|
9197 |
-
#: wppa-settings-autosave.php:
|
9198 |
msgid "Pause symbol url"
|
9199 |
msgstr "URL pour le symbole Pause"
|
9200 |
|
9201 |
-
#: wppa-settings-autosave.php:
|
9202 |
msgid "Supply the url of an image for the pause symbol"
|
9203 |
msgstr "Fournir l'URL d'une image pour le symbole Pause"
|
9204 |
|
9205 |
-
#: wppa-settings-autosave.php:
|
9206 |
msgid "Stop symbol url"
|
9207 |
msgstr "URL pour le symbole Arrêter"
|
9208 |
|
9209 |
-
#: wppa-settings-autosave.php:
|
9210 |
msgid "Supply the url of an image for the stop symbol"
|
9211 |
msgstr "Fournir l'URL d'une image pour le symbole Arrêter"
|
9212 |
|
9213 |
-
#: wppa-settings-autosave.php:
|
9214 |
msgid "Left (prev) symbol url"
|
9215 |
msgstr "URL pour le symbole Gauche (Préc.)"
|
9216 |
|
9217 |
-
#: wppa-settings-autosave.php:
|
9218 |
msgid "Supply the url of an image for the left symbol, if not default"
|
9219 |
msgstr "Fournir l'URL d'une image pour le symbole Gauche, si pas de défaut"
|
9220 |
|
9221 |
-
#: wppa-settings-autosave.php:
|
9222 |
msgid "Right (next) symbol url"
|
9223 |
msgstr "URL pour le symbole Droit (Suiv.)"
|
9224 |
|
9225 |
-
#: wppa-settings-autosave.php:
|
9226 |
msgid "Supply the url of an image for the right symbol, if not default"
|
9227 |
msgstr "Fournir l'URL d'une image pour le symbole Droite, si pas de défaut"
|
9228 |
|
9229 |
-
#: wppa-settings-autosave.php:
|
9230 |
msgid "The size of the start/pause symbols."
|
9231 |
msgstr "La taille des symboles Démarrer/Pause."
|
9232 |
|
9233 |
-
#: wppa-settings-autosave.php:
|
9234 |
msgid "The border radius if the symbol is round"
|
9235 |
msgstr "Le rayon de bordure si le symbole est rond"
|
9236 |
|
9237 |
-
#: wppa-settings-autosave.php:
|
9238 |
msgid "The size of the stop symbols."
|
9239 |
msgstr "La taille des symboles Arrêter."
|
9240 |
|
9241 |
-
#: wppa-settings-autosave.php:
|
9242 |
msgid "Left/right symbol size"
|
9243 |
msgstr "Taille du symbole Gauche/Droite"
|
9244 |
|
9245 |
-
#: wppa-settings-autosave.php:
|
9246 |
msgid "Left/right symbol border radius"
|
9247 |
msgstr "Rayon de bordure du symbole Gauche/Droite"
|
9248 |
|
9249 |
-
#: wppa-settings-autosave.php:
|
9250 |
msgid "The border radius"
|
9251 |
msgstr "Le rayon de bordure"
|
9252 |
|
9253 |
-
#: wppa-settings-autosave.php:
|
9254 |
msgid "Table III:"
|
9255 |
msgstr "Table III:"
|
9256 |
|
9257 |
-
#: wppa-settings-autosave.php:
|
9258 |
msgid "Backgrounds:"
|
9259 |
msgstr "Arrière plans:"
|
9260 |
|
9261 |
-
#: wppa-settings-autosave.php:
|
9262 |
msgid "This table describes the backgrounds of wppa+ elements."
|
9263 |
msgstr "Cette table décrit l'arrière plan des éléments de WPPA+."
|
9264 |
|
9265 |
-
#: wppa-settings-autosave.php:
|
9266 |
msgid "Background color"
|
9267 |
msgstr "Couleur d'arrière plan"
|
9268 |
|
9269 |
-
#: wppa-settings-autosave.php:
|
9270 |
-
#: wppa-settings-autosave.php:
|
9271 |
msgid "Sample"
|
9272 |
msgstr "Echantillon"
|
9273 |
|
9274 |
-
#: wppa-settings-autosave.php:
|
9275 |
msgid "Border color"
|
9276 |
msgstr "Couleur de bordure"
|
9277 |
|
9278 |
-
#: wppa-settings-autosave.php:
|
9279 |
msgid "Slideshow elements backgrounds"
|
9280 |
msgstr "Arrière plan des éléments du diaporama"
|
9281 |
|
9282 |
-
#: wppa-settings-autosave.php:
|
9283 |
msgid "Nav"
|
9284 |
msgstr "Nav"
|
9285 |
|
9286 |
-
#: wppa-settings-autosave.php:
|
9287 |
msgid "Navigation bars."
|
9288 |
msgstr "Barres de navigation."
|
9289 |
|
9290 |
-
#: wppa-settings-autosave.php:
|
9291 |
msgid "Enter valid CSS colors for navigation backgrounds and borders."
|
9292 |
msgstr ""
|
9293 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9294 |
"et des bordures de navigation."
|
9295 |
|
9296 |
-
#: wppa-settings-autosave.php:
|
9297 |
msgid "SlideImg"
|
9298 |
msgstr "SlideImg"
|
9299 |
|
9300 |
-
#: wppa-settings-autosave.php:
|
9301 |
msgid "Fullsize Slideshow Photos."
|
9302 |
msgstr "Photos diaporama en taille max."
|
9303 |
|
9304 |
-
#: wppa-settings-autosave.php:
|
9305 |
msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
|
9306 |
msgstr ""
|
9307 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9308 |
"et des bordures des photos pleine taille."
|
9309 |
|
9310 |
-
#: wppa-settings-autosave.php:
|
9311 |
msgid "The colors may be equal or \"transparent\""
|
9312 |
msgstr "Les couleurs peuvent être égales ou \"transparentes\""
|
9313 |
|
9314 |
-
#: wppa-settings-autosave.php:
|
9315 |
msgid ""
|
9316 |
"For more information about slideshow image borders see the help on Table I-B4"
|
9317 |
msgstr ""
|
9318 |
"Pour plus d'informations sur les bordures d'images du diaporama, voir l'aide: "
|
9319 |
"table I-B4\""
|
9320 |
|
9321 |
-
#: wppa-settings-autosave.php:
|
9322 |
msgid "Numbar"
|
9323 |
msgstr "Numbar"
|
9324 |
|
9325 |
-
#: wppa-settings-autosave.php:
|
9326 |
msgid "Number bar box background."
|
9327 |
msgstr "Arrière plan de Numbar"
|
9328 |
|
9329 |
-
#: wppa-settings-autosave.php:
|
9330 |
msgid "Enter valid CSS colors for numbar box backgrounds and borders."
|
9331 |
msgstr ""
|
9332 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9333 |
"et des bordures de Numbar."
|
9334 |
|
9335 |
-
#: wppa-settings-autosave.php:
|
9336 |
msgid "Numbar active"
|
9337 |
msgstr "Numbar activée"
|
9338 |
|
9339 |
-
#: wppa-settings-autosave.php:
|
9340 |
msgid "Number bar active box background."
|
9341 |
msgstr "Arrière plan de la boîte Numbar active."
|
9342 |
|
9343 |
-
#: wppa-settings-autosave.php:
|
9344 |
msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
|
9345 |
msgstr ""
|
9346 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9347 |
"et des bordures de la boîte Numbar active."
|
9348 |
|
9349 |
-
#: wppa-settings-autosave.php:
|
9350 |
msgid "Name/desc"
|
9351 |
msgstr "Nom/desc"
|
9352 |
|
9353 |
-
#: wppa-settings-autosave.php:
|
9354 |
msgid "Name and Description bars."
|
9355 |
msgstr "Barres nom et decription."
|
9356 |
|
9357 |
-
#: wppa-settings-autosave.php:
|
9358 |
msgid ""
|
9359 |
"Enter valid CSS colors for name and description box backgrounds and borders."
|
9360 |
msgstr ""
|
9361 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9362 |
"et des bordures des boîtes nom et description."
|
9363 |
|
9364 |
-
#: wppa-settings-autosave.php:
|
9365 |
msgid "Comment input and display areas."
|
9366 |
msgstr "Zones d'entrée et d'affichage de commentaires"
|
9367 |
|
9368 |
-
#: wppa-settings-autosave.php:
|
9369 |
msgid "Enter valid CSS colors for comment box backgrounds and borders."
|
9370 |
msgstr ""
|
9371 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9372 |
"et des bordures de la boîte commentaires."
|
9373 |
|
9374 |
-
#: wppa-settings-autosave.php:
|
9375 |
-
#: wppa-settings-autosave.php:
|
9376 |
msgid "Custom"
|
9377 |
msgstr "Personalisé"
|
9378 |
|
9379 |
-
#: wppa-settings-autosave.php:
|
9380 |
msgid "Custom box background."
|
9381 |
msgstr "Arrière plan de la boîte personnalisée."
|
9382 |
|
9383 |
-
#: wppa-settings-autosave.php:
|
9384 |
msgid "Enter valid CSS colors for custom box backgrounds and borders."
|
9385 |
msgstr ""
|
9386 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9387 |
"et des bordures de la boîte pesonnalisée."
|
9388 |
|
9389 |
-
#: wppa-settings-autosave.php:
|
9390 |
msgid "IPTC"
|
9391 |
msgstr "IPTC"
|
9392 |
|
9393 |
-
#: wppa-settings-autosave.php:
|
9394 |
msgid "IPTC display box background."
|
9395 |
msgstr "Arrière plan de la boîte IPTC."
|
9396 |
|
9397 |
-
#: wppa-settings-autosave.php:
|
9398 |
msgid "Enter valid CSS colors for iptc box backgrounds and borders."
|
9399 |
msgstr ""
|
9400 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9401 |
"et des bordures de la boîte IPTC."
|
9402 |
|
9403 |
-
#: wppa-settings-autosave.php:
|
9404 |
msgid "EXIF"
|
9405 |
msgstr "EXIF"
|
9406 |
|
9407 |
-
#: wppa-settings-autosave.php:
|
9408 |
msgid "EXIF display box background."
|
9409 |
msgstr "Arrière plan de la boîte EXIF."
|
9410 |
|
9411 |
-
#: wppa-settings-autosave.php:
|
9412 |
msgid "Enter valid CSS colors for exif box backgrounds and borders."
|
9413 |
msgstr ""
|
9414 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9415 |
"et des bordures de la boîte EXIF."
|
9416 |
|
9417 |
-
#: wppa-settings-autosave.php:
|
9418 |
msgid "Share"
|
9419 |
msgstr "Partager"
|
9420 |
|
9421 |
-
#: wppa-settings-autosave.php:
|
9422 |
msgid "Share box display background."
|
9423 |
msgstr "Arrière plan de la boîte de partage."
|
9424 |
|
9425 |
-
#: wppa-settings-autosave.php:
|
9426 |
msgid "Enter valid CSS colors for share box backgrounds and borders."
|
9427 |
msgstr ""
|
9428 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9429 |
"et des bordures de la boîte de partage."
|
9430 |
|
9431 |
-
#: wppa-settings-autosave.php:
|
9432 |
msgid "Other backgrounds"
|
9433 |
msgstr "Autres arrière plans"
|
9434 |
|
9435 |
-
#: wppa-settings-autosave.php:
|
9436 |
msgid "Even"
|
9437 |
msgstr "Pair"
|
9438 |
|
9439 |
-
#: wppa-settings-autosave.php:
|
9440 |
msgid "Even background."
|
9441 |
msgstr "Arrière plan identique."
|
9442 |
|
9443 |
-
#: wppa-settings-autosave.php:
|
9444 |
msgid ""
|
9445 |
"Enter valid CSS colors for even numbered backgrounds and borders of album "
|
9446 |
"covers and thumbnail displays 'As covers'."
|
@@ -9449,15 +9512,15 @@ msgstr ""
|
|
9449 |
"et des bordures des couvertures d'album (et des vignettes affichées 'comme "
|
9450 |
"couverture') paires."
|
9451 |
|
9452 |
-
#: wppa-settings-autosave.php:
|
9453 |
msgid "Odd"
|
9454 |
msgstr "Impair"
|
9455 |
|
9456 |
-
#: wppa-settings-autosave.php:
|
9457 |
msgid "Odd background."
|
9458 |
msgstr "Arrière plan impair."
|
9459 |
|
9460 |
-
#: wppa-settings-autosave.php:
|
9461 |
msgid ""
|
9462 |
"Enter valid CSS colors for odd numbered backgrounds and borders of album "
|
9463 |
"covers and thumbnail displays 'As covers'."
|
@@ -9466,17 +9529,17 @@ msgstr ""
|
|
9466 |
"et des bordures des couvertures d'album (et des vignettes affichées 'comme "
|
9467 |
"couverture') impaires."
|
9468 |
|
9469 |
-
#: wppa-settings-autosave.php:
|
9470 |
msgid "Thumbnail padding"
|
9471 |
msgstr "Remplissage vignettes"
|
9472 |
|
9473 |
-
#: wppa-settings-autosave.php:
|
9474 |
msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
|
9475 |
msgstr ""
|
9476 |
"Couleur de remplissage vignettes si l'aspect de la vignette est réglé sur "
|
9477 |
"remplit (padded)."
|
9478 |
|
9479 |
-
#: wppa-settings-autosave.php:
|
9480 |
msgid ""
|
9481 |
"Enter valid CSS color hexadecimal like #000000 for black or #ffffff for white "
|
9482 |
"for the padded thumbnails."
|
@@ -9484,165 +9547,165 @@ msgstr ""
|
|
9484 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs comme #000000 "
|
9485 |
"pour le noir ou #ffffff pour le blanc pour le remplissage des vignettes."
|
9486 |
|
9487 |
-
#: wppa-settings-autosave.php:
|
9488 |
msgid "Img"
|
9489 |
msgstr "IMG"
|
9490 |
|
9491 |
-
#: wppa-settings-autosave.php:
|
9492 |
msgid "Cover Photos and popups."
|
9493 |
msgstr "Photos de couverture et popups."
|
9494 |
|
9495 |
-
#: wppa-settings-autosave.php:
|
9496 |
msgid "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
|
9497 |
msgstr ""
|
9498 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9499 |
"et des bordures pour les photos de couvertures et popups."
|
9500 |
|
9501 |
-
#: wppa-settings-autosave.php:
|
9502 |
msgid "Upload box background."
|
9503 |
msgstr "Arrière plan de la boîte de chargement."
|
9504 |
|
9505 |
-
#: wppa-settings-autosave.php:
|
9506 |
msgid "Enter valid CSS colors for upload box backgrounds and borders."
|
9507 |
msgstr ""
|
9508 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9509 |
"et des bordures pour la boîte de chargement."
|
9510 |
|
9511 |
-
#: wppa-settings-autosave.php:
|
9512 |
msgid "Multitag"
|
9513 |
msgstr "Multitag"
|
9514 |
|
9515 |
-
#: wppa-settings-autosave.php:
|
9516 |
msgid "Multitag box background."
|
9517 |
msgstr "Arrière plan de la boîte Multitag."
|
9518 |
|
9519 |
-
#: wppa-settings-autosave.php:
|
9520 |
msgid "Enter valid CSS colors for multitag box backgrounds and borders."
|
9521 |
msgstr ""
|
9522 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9523 |
"et des bordures pour la boîte Multitag."
|
9524 |
|
9525 |
-
#: wppa-settings-autosave.php:
|
9526 |
msgid "Tagcloud"
|
9527 |
msgstr "TagCloud"
|
9528 |
|
9529 |
-
#: wppa-settings-autosave.php:
|
9530 |
msgid "Tagcloud box background."
|
9531 |
msgstr "Arrière plan de la boîte TagCloud."
|
9532 |
|
9533 |
-
#: wppa-settings-autosave.php:
|
9534 |
msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
|
9535 |
msgstr ""
|
9536 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9537 |
"et des bordures pour la boîte TagCloud."
|
9538 |
|
9539 |
-
#: wppa-settings-autosave.php:
|
9540 |
msgid "Superview"
|
9541 |
msgstr "SuperView"
|
9542 |
|
9543 |
-
#: wppa-settings-autosave.php:
|
9544 |
msgid "Superview box background."
|
9545 |
msgstr "Arrière plan de la boîte SuperView."
|
9546 |
|
9547 |
-
#: wppa-settings-autosave.php:
|
9548 |
msgid "Enter valid CSS colors for superview box backgrounds and borders."
|
9549 |
msgstr ""
|
9550 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9551 |
"et des bordures pour la boîte SuperView."
|
9552 |
|
9553 |
-
#: wppa-settings-autosave.php:
|
9554 |
msgid "Search box background."
|
9555 |
msgstr "Arrière plan de la boîte de recherche."
|
9556 |
|
9557 |
-
#: wppa-settings-autosave.php:
|
9558 |
msgid "Enter valid CSS colors for search box backgrounds and borders."
|
9559 |
msgstr ""
|
9560 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9561 |
"et des bordures pour la boîte de recherche."
|
9562 |
|
9563 |
-
#: wppa-settings-autosave.php:
|
9564 |
msgid "BestOf"
|
9565 |
msgstr "BestOf"
|
9566 |
|
9567 |
-
#: wppa-settings-autosave.php:
|
9568 |
msgid "BestOf box background."
|
9569 |
msgstr "Arrière plan de la boîte BestOf."
|
9570 |
|
9571 |
-
#: wppa-settings-autosave.php:
|
9572 |
msgid "Enter valid CSS colors for bestof box backgrounds and borders."
|
9573 |
msgstr ""
|
9574 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9575 |
"et des bordures pour la boîte BestOf."
|
9576 |
|
9577 |
-
#: wppa-settings-autosave.php:
|
9578 |
msgid "Calendar"
|
9579 |
msgstr "Calendrier"
|
9580 |
|
9581 |
-
#: wppa-settings-autosave.php:
|
9582 |
msgid "Calendar box background."
|
9583 |
msgstr "Arrière plan de la boîte calendrier."
|
9584 |
|
9585 |
-
#: wppa-settings-autosave.php:
|
9586 |
msgid "Enter valid CSS colors for calendar box backgrounds and borders."
|
9587 |
msgstr ""
|
9588 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9589 |
"et des bordures pour la boîte calendrier."
|
9590 |
|
9591 |
-
#: wppa-settings-autosave.php:
|
9592 |
msgid "Stereo"
|
9593 |
msgstr "Stéréo"
|
9594 |
|
9595 |
-
#: wppa-settings-autosave.php:
|
9596 |
msgid "Stereo mode selection box background."
|
9597 |
msgstr "Arrière plan de la boîte de sélection du mode stéréo."
|
9598 |
|
9599 |
-
#: wppa-settings-autosave.php:
|
9600 |
msgid ""
|
9601 |
"Enter valid CSS colors for stereo mode selection box backgrounds and borders."
|
9602 |
msgstr ""
|
9603 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9604 |
"et des bordures pour la boîte de sélection du mode stéréo."
|
9605 |
|
9606 |
-
#: wppa-settings-autosave.php:
|
9607 |
msgid "Admins choice"
|
9608 |
msgstr "Choix des admins"
|
9609 |
|
9610 |
-
#: wppa-settings-autosave.php:
|
9611 |
msgid "Admins choice box background."
|
9612 |
msgstr "Fond de boîte admins choix."
|
9613 |
|
9614 |
-
#: wppa-settings-autosave.php:
|
9615 |
msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
|
9616 |
msgstr ""
|
9617 |
"Entrez valides couleurs CSS pour les bordures et les arrière-plans de boîte "
|
9618 |
"choix admins."
|
9619 |
|
9620 |
-
#: wppa-settings-autosave.php:
|
9621 |
msgid "Table IV:"
|
9622 |
msgstr "Table IV:"
|
9623 |
|
9624 |
-
#: wppa-settings-autosave.php:
|
9625 |
msgid "Behaviour:"
|
9626 |
msgstr "Comportement:"
|
9627 |
|
9628 |
-
#: wppa-settings-autosave.php:
|
9629 |
msgid "This table describes the dynamic behaviour of certain wppa+ elements."
|
9630 |
msgstr ""
|
9631 |
"Cette table décrit le comportement dynamique de certains éléments de WPPA+."
|
9632 |
|
9633 |
-
#: wppa-settings-autosave.php:
|
9634 |
msgid "System related settings"
|
9635 |
msgstr "Réglages liés au système"
|
9636 |
|
9637 |
-
#: wppa-settings-autosave.php:
|
9638 |
msgid "Use Ajax"
|
9639 |
msgstr "Utiliser AJAX"
|
9640 |
|
9641 |
-
#: wppa-settings-autosave.php:
|
9642 |
msgid "Use Ajax as much as is possible and implemented."
|
9643 |
msgstr "Utiliser Ajax autant que possible lorsqu'il est implémenté."
|
9644 |
|
9645 |
-
#: wppa-settings-autosave.php:
|
9646 |
msgid ""
|
9647 |
"If this box is ticked, page content updates from within wppa+ displays will be "
|
9648 |
"Ajax based as much as possible."
|
@@ -9650,19 +9713,19 @@ msgstr ""
|
|
9650 |
"Si cette case est cochée, le rafraîchissement du contenu des pages de "
|
9651 |
"l'affichage WPPA+ sera autant que possible basé sur Ajax."
|
9652 |
|
9653 |
-
#: wppa-settings-autosave.php:
|
9654 |
msgid "Ajax NON Admin"
|
9655 |
msgstr "Ajax NON admin"
|
9656 |
|
9657 |
-
#: wppa-settings-autosave.php:
|
9658 |
msgid "Frontend ajax use no admin files."
|
9659 |
msgstr "Le frontend Ajax n'utilise pas de fichiers admin."
|
9660 |
|
9661 |
-
#: wppa-settings-autosave.php:
|
9662 |
msgid "If you want to password protect wp-admin, check this box."
|
9663 |
msgstr "Si vous voulez protéger wp-admin par mot de passe, cochez cette case."
|
9664 |
|
9665 |
-
#: wppa-settings-autosave.php:
|
9666 |
msgid ""
|
9667 |
"In rare cases changing page content does not work when this box is checked. "
|
9668 |
"Verify the functionality!"
|
@@ -9670,53 +9733,53 @@ msgstr ""
|
|
9670 |
"Dans de rares cas, changer le contenu de la page ne fonctionne pas quand cette "
|
9671 |
"case est cochée. Vérifier la fonctionnalité!"
|
9672 |
|
9673 |
-
#: wppa-settings-autosave.php:
|
9674 |
msgid "Photo names in urls"
|
9675 |
msgstr "Nom des photos dans les URLs"
|
9676 |
|
9677 |
-
#: wppa-settings-autosave.php:
|
9678 |
msgid "Display photo names in urls."
|
9679 |
msgstr "Afficher le nom des photos dans les URLs."
|
9680 |
|
9681 |
-
#: wppa-settings-autosave.php:
|
9682 |
msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
|
9683 |
msgstr ""
|
9684 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms de photo au "
|
9685 |
"lieu de nombres."
|
9686 |
|
9687 |
-
#: wppa-settings-autosave.php:
|
9688 |
msgid ""
|
9689 |
"It is your responsability to avoid duplicate names of photos in the same album."
|
9690 |
msgstr "C'est à vous d'éviter les doublons de nom de photos dans le même album."
|
9691 |
|
9692 |
-
#: wppa-settings-autosave.php:
|
9693 |
msgid "Album names in urls"
|
9694 |
msgstr "Nom des albums dans les URLs"
|
9695 |
|
9696 |
-
#: wppa-settings-autosave.php:
|
9697 |
msgid "Display album names in urls."
|
9698 |
msgstr "Afficher le nom des albums dans les URLs."
|
9699 |
|
9700 |
-
#: wppa-settings-autosave.php:
|
9701 |
msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
|
9702 |
msgstr ""
|
9703 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms d'album au "
|
9704 |
"lieu de nombres."
|
9705 |
|
9706 |
-
#: wppa-settings-autosave.php:
|
9707 |
msgid ""
|
9708 |
"It is your responsability to avoid duplicate names of albums in the system."
|
9709 |
msgstr "C'est à vous d'éviter les doublons de nom d'albums dans le système."
|
9710 |
|
9711 |
-
#: wppa-settings-autosave.php:
|
9712 |
msgid "Use short query args"
|
9713 |
msgstr "Utiliser des arguments de requête courts"
|
9714 |
|
9715 |
-
#: wppa-settings-autosave.php:
|
9716 |
msgid "Use &album=... &photo=..."
|
9717 |
msgstr "Utiliser &album=... &photo=..."
|
9718 |
|
9719 |
-
#: wppa-settings-autosave.php:
|
9720 |
msgid ""
|
9721 |
"Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
|
9722 |
"album=... &wppa-photo=..."
|
@@ -9724,7 +9787,7 @@ msgstr ""
|
|
9724 |
"Les URLs vers les contenus WPPA+ contiendront &album=... &photo=... à la place "
|
9725 |
"de &wppa-album=... &wppa-photo=..."
|
9726 |
|
9727 |
-
#: wppa-settings-autosave.php:
|
9728 |
msgid ""
|
9729 |
"Use this setting only when there are no conflicts with other plugins that may "
|
9730 |
"interprete arguments like &album= etc."
|
@@ -9733,15 +9796,15 @@ msgstr ""
|
|
9733 |
"greffons (plugins) qui pourraient interpréter des arguments tels que &album= "
|
9734 |
"etc."
|
9735 |
|
9736 |
-
#: wppa-settings-autosave.php:
|
9737 |
msgid "Enable pretty links"
|
9738 |
msgstr "Activer Pretty Links"
|
9739 |
|
9740 |
-
#: wppa-settings-autosave.php:
|
9741 |
msgid "Enable the generation and understanding of pretty links."
|
9742 |
msgstr "Active la génération et l'interprêtation des Pretty Links."
|
9743 |
|
9744 |
-
#: wppa-settings-autosave.php:
|
9745 |
msgid ""
|
9746 |
"If checked, links to social media and the qr code will have \"/token1/token2/"
|
9747 |
"\" etc in stead of \"&arg1=..&arg2=..\" etc."
|
@@ -9749,14 +9812,14 @@ msgstr ""
|
|
9749 |
"Si coché, les liens vers les média sociaux et le QR Code aura \"/token1/token2/"
|
9750 |
"\" etc à la place de \"&arg1=..&arg2=..\" etc."
|
9751 |
|
9752 |
-
#: wppa-settings-autosave.php:
|
9753 |
msgid ""
|
9754 |
"These types of links will be interpreted and cause a redirection on entering."
|
9755 |
msgstr ""
|
9756 |
"Ces types de liens seront interprétés et fonctionnent avec une redirection à "
|
9757 |
"l'entrée."
|
9758 |
|
9759 |
-
#: wppa-settings-autosave.php:
|
9760 |
msgid ""
|
9761 |
"It is recommended to check this box. It shortens links dramatically and "
|
9762 |
"simplifies qr codes."
|
@@ -9764,7 +9827,7 @@ msgstr ""
|
|
9764 |
"Il est recommandé de cocher cette case. Cela rend les liens plus courts et "
|
9765 |
"simplifie les QR Codes."
|
9766 |
|
9767 |
-
#: wppa-settings-autosave.php:
|
9768 |
msgid ""
|
9769 |
"However, you may encounter conflicts with themes and/or other plugins, so test "
|
9770 |
"it troughly!"
|
@@ -9772,42 +9835,42 @@ msgstr ""
|
|
9772 |
"Cependant, il peut se produire des conflits avec certains thèmes et/ou "
|
9773 |
"greffons (plugins), testez le bien avant de l'utiliser!"
|
9774 |
|
9775 |
-
#: wppa-settings-autosave.php:
|
9776 |
msgid ""
|
9777 |
"Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
|
9778 |
msgstr ""
|
9779 |
"Table IV-A2 (Nom des photos dans les URLs) doit être DÉcoché pour que ce "
|
9780 |
"réglage fonctionne!"
|
9781 |
|
9782 |
-
#: wppa-settings-autosave.php:
|
9783 |
msgid "Enable encrypted links"
|
9784 |
msgstr "Activer les liens cryptés"
|
9785 |
|
9786 |
-
#: wppa-settings-autosave.php:
|
9787 |
msgid "Encrypt album and photo ids in links."
|
9788 |
msgstr "Crypter les album et photo ID dans les liens."
|
9789 |
|
9790 |
-
#: wppa-settings-autosave.php:
|
9791 |
msgid "The page will be reloaded."
|
9792 |
msgstr "La page sera rechargée."
|
9793 |
|
9794 |
-
#: wppa-settings-autosave.php:
|
9795 |
msgid "Refuse unencrypted"
|
9796 |
msgstr "Refuser non cryptés"
|
9797 |
|
9798 |
-
#: wppa-settings-autosave.php:
|
9799 |
msgid "When encrypted is enabled, refuse unencrypted urls."
|
9800 |
msgstr "Lorsque chiffré est activé, refuser les urls non chiffrées."
|
9801 |
|
9802 |
-
#: wppa-settings-autosave.php:
|
9803 |
msgid "Update addressline"
|
9804 |
msgstr "Mettre à jour la ligne d'adresse"
|
9805 |
|
9806 |
-
#: wppa-settings-autosave.php:
|
9807 |
msgid "Update the addressline after an ajax action or next slide."
|
9808 |
msgstr "Met à jour la ligne d'adresse après une action Ajax ou diapo suivante."
|
9809 |
|
9810 |
-
#: wppa-settings-autosave.php:
|
9811 |
msgid ""
|
9812 |
"If checked, refreshing the page will show the current content and the browsers "
|
9813 |
"back and forth arrows will browse the history on the page."
|
@@ -9815,14 +9878,14 @@ msgstr ""
|
|
9815 |
"Si coché, rafraîchir la page affichera le contenu courant et les boutons "
|
9816 |
"Précédent et Suivant du navigateur parcoureront l'historique sur la page."
|
9817 |
|
9818 |
-
#: wppa-settings-autosave.php:
|
9819 |
msgid ""
|
9820 |
"If unchecked, refreshing the page will re-display the content of the original "
|
9821 |
"page."
|
9822 |
msgstr ""
|
9823 |
"Si décoché, rafraîchir la page ré-affichera le contenu de la page originale."
|
9824 |
|
9825 |
-
#: wppa-settings-autosave.php:
|
9826 |
msgid ""
|
9827 |
"This will only work on browsers that support history.pushState() and therefor "
|
9828 |
"NOT in IE"
|
@@ -9830,19 +9893,19 @@ msgstr ""
|
|
9830 |
"Cela ne marchera que sur les navigateurs qui supportent la fonction history."
|
9831 |
"pushState() et donc PAS dans IE"
|
9832 |
|
9833 |
-
#: wppa-settings-autosave.php:
|
9834 |
msgid "Switching this off will affect the browsers behaviour."
|
9835 |
msgstr "Désactiver ceci modifiera le comportement du navigateur."
|
9836 |
|
9837 |
-
#: wppa-settings-autosave.php:
|
9838 |
msgid "Render shortcode always"
|
9839 |
msgstr "Toujours tenir compte du shortcode"
|
9840 |
|
9841 |
-
#: wppa-settings-autosave.php:
|
9842 |
msgid "This will skip the check on proper initialisation."
|
9843 |
msgstr "Ceci désactive la vérification d'un démarrage correct."
|
9844 |
|
9845 |
-
#: wppa-settings-autosave.php:
|
9846 |
msgid ""
|
9847 |
"This setting is required for certain themes like Gantry to prevent the display "
|
9848 |
"of wppa placeholders like [WPPA+ Photo display]."
|
@@ -9850,7 +9913,7 @@ msgstr ""
|
|
9850 |
"Ce réglage est requis pour certains thèmes comme Gantry pour empêcher "
|
9851 |
"l’affichage d'éléments de WPPA comme [WPPA+ Photo display]."
|
9852 |
|
9853 |
-
#: wppa-settings-autosave.php:
|
9854 |
#, php-format
|
9855 |
msgid ""
|
9856 |
"If this check is needed, you can use shortcodes like [wppa ...] only, not "
|
@@ -9859,67 +9922,67 @@ msgstr ""
|
|
9859 |
"Si cette option est requise, vous ne pouvez utiliser que les shortcodes comme "
|
9860 |
"[wppa ...], pas les scripts comme %%wppa%%.\""
|
9861 |
|
9862 |
-
#: wppa-settings-autosave.php:
|
9863 |
msgid "Track viewcounts"
|
9864 |
msgstr "Tracer le nombre de vues"
|
9865 |
|
9866 |
-
#: wppa-settings-autosave.php:
|
9867 |
msgid "Register number of views of albums and photos."
|
9868 |
msgstr "Enregistrer le nombre de vues des albums et photos."
|
9869 |
|
9870 |
-
#: wppa-settings-autosave.php:
|
9871 |
msgid "Auto page"
|
9872 |
msgstr "Page auto"
|
9873 |
|
9874 |
-
#: wppa-settings-autosave.php:
|
9875 |
msgid "Create a wp page for every fullsize image."
|
9876 |
msgstr "Créer une page WP pour chaque image pleine taille."
|
9877 |
|
9878 |
-
#: wppa-settings-autosave.php:
|
9879 |
msgid "Please reload this page after changing!"
|
9880 |
msgstr "Veuillez recharger cette page après la modification!"
|
9881 |
|
9882 |
-
#: wppa-settings-autosave.php:
|
9883 |
msgid "Auto page display"
|
9884 |
msgstr "Affichage page auto"
|
9885 |
|
9886 |
-
#: wppa-settings-autosave.php:
|
9887 |
msgid "The type of display on the autopage pages."
|
9888 |
msgstr "Le type d'affichage des pages automatiques."
|
9889 |
|
9890 |
-
#: wppa-settings-autosave.php:
|
9891 |
msgid "Single photo"
|
9892 |
msgstr "Photo seule"
|
9893 |
|
9894 |
-
#: wppa-settings-autosave.php:
|
9895 |
msgid "Media type photo"
|
9896 |
msgstr "Media type photo"
|
9897 |
|
9898 |
-
#: wppa-settings-autosave.php:
|
9899 |
msgid "In the style of a slideshow"
|
9900 |
msgstr "Dans le style du diaporama"
|
9901 |
|
9902 |
-
#: wppa-settings-autosave.php:
|
9903 |
msgid "Auto page links"
|
9904 |
msgstr "Liens page auto"
|
9905 |
|
9906 |
-
#: wppa-settings-autosave.php:
|
9907 |
msgid "The location for the pagelinks."
|
9908 |
msgstr "Le positionnement des liens page."
|
9909 |
|
9910 |
-
#: wppa-settings-autosave.php:
|
9911 |
msgid "At top and bottom"
|
9912 |
msgstr "En haut et en bas"
|
9913 |
|
9914 |
-
#: wppa-settings-autosave.php:
|
9915 |
msgid "Defer javascript"
|
9916 |
msgstr "Report Javascript"
|
9917 |
|
9918 |
-
#: wppa-settings-autosave.php:
|
9919 |
msgid "Put javascript near the end of the page."
|
9920 |
msgstr "Met le Javascript vers la fin de la page."
|
9921 |
|
9922 |
-
#: wppa-settings-autosave.php:
|
9923 |
msgid ""
|
9924 |
"If checkd: May fix layout problems and broken slideshows. May speed up or slow "
|
9925 |
"down page appearing."
|
@@ -9927,75 +9990,75 @@ msgstr ""
|
|
9927 |
"Si coché: peut régler des problèmes de disposition et diaporama mal rendus. "
|
9928 |
"Peut accélérer ou ralentir l'affichage de la page."
|
9929 |
|
9930 |
-
#: wppa-settings-autosave.php:
|
9931 |
msgid "Inline styles"
|
9932 |
msgstr "Styles inline"
|
9933 |
|
9934 |
-
#: wppa-settings-autosave.php:
|
9935 |
msgid "Set style specifications inline."
|
9936 |
msgstr "Régle les spécifications de style inline."
|
9937 |
|
9938 |
-
#: wppa-settings-autosave.php:
|
9939 |
msgid "If checked: May fix layout problems, but slows down page appearing."
|
9940 |
msgstr ""
|
9941 |
"Si coché: peut régler des problèmes de disposition, mais ralentit l'affichage "
|
9942 |
"de la page."
|
9943 |
|
9944 |
-
#: wppa-settings-autosave.php:
|
9945 |
msgid "Custom style"
|
9946 |
msgstr "Style personalisé"
|
9947 |
|
9948 |
-
#: wppa-settings-autosave.php:
|
9949 |
msgid "Enter custom style specs here."
|
9950 |
msgstr "Entrer les spécifications du style personnalisé ici."
|
9951 |
|
9952 |
-
#: wppa-settings-autosave.php:
|
9953 |
msgid "Use customized style file"
|
9954 |
msgstr "Utiliser fichier de style personnalisé"
|
9955 |
|
9956 |
-
#: wppa-settings-autosave.php:
|
9957 |
msgid "This feature is highly discouraged."
|
9958 |
msgstr "User de cette fonctionnalité est hautement déconseillé."
|
9959 |
|
9960 |
-
#: wppa-settings-autosave.php:
|
9961 |
msgid "Use customized theme file"
|
9962 |
msgstr "Utiliser fichier de thème personnalisé"
|
9963 |
|
9964 |
-
#: wppa-settings-autosave.php:
|
9965 |
msgid "Enable photo html access"
|
9966 |
msgstr "Autoriser l'accès HTML photo"
|
9967 |
|
9968 |
-
#: wppa-settings-autosave.php:
|
9969 |
msgid "Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
|
9970 |
msgstr ""
|
9971 |
"Crée des fichiers .htaccess dans ... /uploads/wppa/ et ... /uploads/wppa/"
|
9972 |
"thumbs/"
|
9973 |
|
9974 |
-
#: wppa-settings-autosave.php:
|
9975 |
msgid "create 'all access' .htaccess files"
|
9976 |
msgstr "créer des fichiers .htaccess « all access »"
|
9977 |
|
9978 |
-
#: wppa-settings-autosave.php:
|
9979 |
msgid "remove .htaccess files"
|
9980 |
msgstr "supprimer les fichiers .htaccess"
|
9981 |
|
9982 |
-
#: wppa-settings-autosave.php:
|
9983 |
msgid "create 'no hotlinking' .htaccess files"
|
9984 |
msgstr "ne créer des fichiers .htaccess « aucun hotlinking »"
|
9985 |
|
9986 |
-
#: wppa-settings-autosave.php:
|
9987 |
msgid "do not change existing .htaccess file(s)"
|
9988 |
msgstr "ne modifiez pas les fichiers .htaccess existant"
|
9989 |
|
9990 |
-
#: wppa-settings-autosave.php:
|
9991 |
msgid "Lazy or HTML comp"
|
9992 |
msgstr "HTML lazy ou avec compression"
|
9993 |
|
9994 |
-
#: wppa-settings-autosave.php:
|
9995 |
msgid "Tick this box when you use lazy load or html compression."
|
9996 |
msgstr "Cocher cette case quand vous utilisez lazy load ou la compression HTML."
|
9997 |
|
9998 |
-
#: wppa-settings-autosave.php:
|
9999 |
msgid ""
|
10000 |
"If the filmstrip images do not show up and you have a lazy load or html "
|
10001 |
"optimizing plugin active: Check this box"
|
@@ -10003,103 +10066,103 @@ msgstr ""
|
|
10003 |
"Si les images filmstrip ne s'affichent pas et que vous utilisez lazy load ou "
|
10004 |
"un greffon d'optimisation HTML actif: cochez cette case"
|
10005 |
|
10006 |
-
#: wppa-settings-autosave.php:
|
10007 |
msgid "Thumbs first"
|
10008 |
msgstr "Vignettes en premier"
|
10009 |
|
10010 |
-
#: wppa-settings-autosave.php:
|
10011 |
msgid "When displaying album content: thumbnails before subalbums."
|
10012 |
msgstr ""
|
10013 |
"Lors de l'affichage du contenu de l'album: vignettes avant les albums fils."
|
10014 |
|
10015 |
-
#: wppa-settings-autosave.php:
|
10016 |
msgid "Login links"
|
10017 |
msgstr "Liens de connexion"
|
10018 |
|
10019 |
-
#: wppa-settings-autosave.php:
|
10020 |
msgid "You must login to... links to login page."
|
10021 |
msgstr "Vous devez vous connectez à... liens vers la page de connexion."
|
10022 |
|
10023 |
-
#: wppa-settings-autosave.php:
|
10024 |
msgid "Enable Video"
|
10025 |
msgstr "Activer vidéo"
|
10026 |
|
10027 |
-
#: wppa-settings-autosave.php:
|
10028 |
msgid "Enables video support."
|
10029 |
msgstr "Active le support de la vidéo."
|
10030 |
|
10031 |
-
#: wppa-settings-autosave.php:
|
10032 |
msgid "Enable Audio"
|
10033 |
msgstr "Activer audio"
|
10034 |
|
10035 |
-
#: wppa-settings-autosave.php:
|
10036 |
msgid "Enables audio support."
|
10037 |
msgstr "Active le support de l'audio."
|
10038 |
|
10039 |
-
#: wppa-settings-autosave.php:
|
10040 |
msgid "Enable 3D Stereo"
|
10041 |
msgstr "Activer 3D stéréo"
|
10042 |
|
10043 |
-
#: wppa-settings-autosave.php:
|
10044 |
msgid "Enables 3D stereo photo support."
|
10045 |
msgstr "Active le support de la photo stéréo 3D."
|
10046 |
|
10047 |
-
#: wppa-settings-autosave.php:
|
10048 |
msgid "Relative urls"
|
10049 |
msgstr "URLs ralatives"
|
10050 |
|
10051 |
-
#: wppa-settings-autosave.php:
|
10052 |
msgid "Use relative urls only."
|
10053 |
msgstr "Utiliser les URLs relatives uniquement."
|
10054 |
|
10055 |
-
#: wppa-settings-autosave.php:
|
10056 |
msgid "Capitalize tags and cats"
|
10057 |
msgstr "Capitaliser les tags et les cats"
|
10058 |
|
10059 |
-
#: wppa-settings-autosave.php:
|
10060 |
msgid "Format tags and cats to start with one capital character"
|
10061 |
msgstr "Balises de format tags et cats de commencer par un caractère de capital"
|
10062 |
|
10063 |
-
#: wppa-settings-autosave.php:
|
10064 |
msgid "Enable Admins Choice"
|
10065 |
msgstr "Activer Admins Choice"
|
10066 |
|
10067 |
-
#: wppa-settings-autosave.php:
|
10068 |
msgid "Enable the creation of zipfiles with selected photos."
|
10069 |
msgstr "Permettent de créer des zipfiles avec les photos sélectionnées."
|
10070 |
|
10071 |
-
#: wppa-settings-autosave.php:
|
10072 |
msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
|
10073 |
msgstr ""
|
10074 |
"Activer le widget de choix des Admins pour faire le zipfiles téléchargeable."
|
10075 |
|
10076 |
-
#: wppa-settings-autosave.php:
|
10077 |
msgid "Make owner like photoname"
|
10078 |
msgstr "Faire le propriétaire comme nom de photo"
|
10079 |
|
10080 |
-
#: wppa-settings-autosave.php:
|
10081 |
msgid "Change the owner to the user who's display name equals photoname."
|
10082 |
msgstr ""
|
10083 |
"Changer le propriétaire à l’utilisateur qui a afficher nom équivaut à nom de "
|
10084 |
"photo."
|
10085 |
|
10086 |
-
#: wppa-settings-autosave.php:
|
10087 |
msgid "Slideshow related settings"
|
10088 |
msgstr "Réglages pour le diaporama"
|
10089 |
|
10090 |
-
#: wppa-settings-autosave.php:
|
10091 |
msgid "V align"
|
10092 |
msgstr "Alignement vertical"
|
10093 |
|
10094 |
-
#: wppa-settings-autosave.php:
|
10095 |
msgid "Vertical alignment of slideshow images."
|
10096 |
msgstr "Alignement vertical des images du diaporama."
|
10097 |
|
10098 |
-
#: wppa-settings-autosave.php:
|
10099 |
msgid "Specify the vertical alignment of slideshow images."
|
10100 |
msgstr "Définit l'alignement vertical des images du diaporama."
|
10101 |
|
10102 |
-
#: wppa-settings-autosave.php:
|
10103 |
msgid ""
|
10104 |
"If you select --- none ---, the photos will not be centered horizontally "
|
10105 |
"either."
|
@@ -10107,36 +10170,36 @@ msgstr ""
|
|
10107 |
"Si vous choisissez --- aucun ---, les photos ne seront pas non plus centrées "
|
10108 |
"horizontalement."
|
10109 |
|
10110 |
-
#: wppa-settings-autosave.php:
|
10111 |
#: wppa-slideshow-widget.php:214
|
10112 |
msgid "top"
|
10113 |
msgstr "haut"
|
10114 |
|
10115 |
-
#: wppa-settings-autosave.php:
|
10116 |
-
#: wppa-settings-autosave.php:
|
10117 |
#: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:615
|
10118 |
-
#: wppa-widget-admin.php:
|
10119 |
msgid "center"
|
10120 |
msgstr "Centre"
|
10121 |
|
10122 |
-
#: wppa-settings-autosave.php:
|
10123 |
#: wppa-slideshow-widget.php:216
|
10124 |
msgid "bottom"
|
10125 |
msgstr "Bas"
|
10126 |
|
10127 |
-
#: wppa-settings-autosave.php:
|
10128 |
msgid "fit"
|
10129 |
msgstr "auto adaptation"
|
10130 |
|
10131 |
-
#: wppa-settings-autosave.php:
|
10132 |
msgid "H align"
|
10133 |
msgstr "Alignement horizontal"
|
10134 |
|
10135 |
-
#: wppa-settings-autosave.php:
|
10136 |
msgid "Horizontal alignment of slideshow images."
|
10137 |
msgstr "Alignement horizontal des images du diaporama."
|
10138 |
|
10139 |
-
#: wppa-settings-autosave.php:
|
10140 |
msgid ""
|
10141 |
"Specify the horizontal alignment of slideshow images. If you specify --- none "
|
10142 |
"--- , no horizontal alignment will take place."
|
@@ -10144,7 +10207,7 @@ msgstr ""
|
|
10144 |
"Définit l'alignement horizontal des images du diaporama. Si vous choisissez "
|
10145 |
"--- aucun ---, il n'y aura pas d'alignement horizontal."
|
10146 |
|
10147 |
-
#: wppa-settings-autosave.php:
|
10148 |
msgid ""
|
10149 |
"This setting is only usefull when the Column Width differs from the Maximum "
|
10150 |
"Width."
|
@@ -10152,15 +10215,15 @@ msgstr ""
|
|
10152 |
"Ce réglage n'est utile que lorsque la largeur de colonne diffère de la largeur "
|
10153 |
"maximum."
|
10154 |
|
10155 |
-
#: wppa-settings-autosave.php:
|
10156 |
msgid "(Settings I-A1 and I-B1)"
|
10157 |
msgstr "(Réglages I-A1 et I-B1)"
|
10158 |
|
10159 |
-
#: wppa-settings-autosave.php:
|
10160 |
msgid "Start slideshow running."
|
10161 |
msgstr "Démarrage du diaporama."
|
10162 |
|
10163 |
-
#: wppa-settings-autosave.php:
|
10164 |
msgid ""
|
10165 |
"If you select \"running\", the slideshow will start running immediately, if "
|
10166 |
"you select \"still at first photo\", the first photo will be displayed in "
|
@@ -10170,7 +10233,7 @@ msgstr ""
|
|
10170 |
"choisissez \"fixe: première photo\", la première photo sera affichée en mode "
|
10171 |
"navigation."
|
10172 |
|
10173 |
-
#: wppa-settings-autosave.php:
|
10174 |
msgid ""
|
10175 |
"If you select \"still at first norated\", the first photo that the visitor did "
|
10176 |
"not gave a rating will be displayed in browse mode."
|
@@ -10178,51 +10241,51 @@ msgstr ""
|
|
10178 |
"Si vous choisissez \"fixe: première photo non notée\", la première photo que "
|
10179 |
"le visiteur n'a pas notée sera affichée en mode navigation."
|
10180 |
|
10181 |
-
#: wppa-settings-autosave.php:
|
10182 |
msgid "running"
|
10183 |
msgstr "immédiat"
|
10184 |
|
10185 |
-
#: wppa-settings-autosave.php:
|
10186 |
msgid "still at first photo"
|
10187 |
msgstr "fixe: première photo"
|
10188 |
|
10189 |
-
#: wppa-settings-autosave.php:
|
10190 |
msgid "still at first norated"
|
10191 |
msgstr "fixe: première photo non notée"
|
10192 |
|
10193 |
-
#: wppa-settings-autosave.php:
|
10194 |
msgid "Start slideonly"
|
10195 |
msgstr "Démarrer diapo seulement"
|
10196 |
|
10197 |
-
#: wppa-settings-autosave.php:
|
10198 |
msgid "Start slideonly slideshow running."
|
10199 |
msgstr "Démarrage du diaporama en mode diapo seulement."
|
10200 |
|
10201 |
-
#: wppa-settings-autosave.php:
|
10202 |
msgid "Video autostart"
|
10203 |
msgstr "Démarrage auto des vidéos"
|
10204 |
|
10205 |
-
#: wppa-settings-autosave.php:
|
10206 |
msgid "Autoplay videos in slideshows."
|
10207 |
msgstr "Joue les vidéos automatiquement dans les diaporamas."
|
10208 |
|
10209 |
-
#: wppa-settings-autosave.php:
|
10210 |
msgid "Audio autostart"
|
10211 |
msgstr "Démarrage auto des fichiers audio"
|
10212 |
|
10213 |
-
#: wppa-settings-autosave.php:
|
10214 |
msgid "Autoplay audios in slideshows."
|
10215 |
msgstr "Joue les fichiers audio automatiquement dans les diaporamas."
|
10216 |
|
10217 |
-
#: wppa-settings-autosave.php:
|
10218 |
msgid "Animation type"
|
10219 |
msgstr "Type d'animation"
|
10220 |
|
10221 |
-
#: wppa-settings-autosave.php:
|
10222 |
msgid "The way successive slides appear."
|
10223 |
msgstr "La façon dont les diapo successives s’enchaînent."
|
10224 |
|
10225 |
-
#: wppa-settings-autosave.php:
|
10226 |
msgid ""
|
10227 |
"Select the way the old slide is to be replaced by the new one in the slideshow/"
|
10228 |
"browse fullsize display."
|
@@ -10230,209 +10293,209 @@ msgstr ""
|
|
10230 |
"Choisir la façon dont la nouvelle diapo remplace l'ancienne dans l’affichage "
|
10231 |
"pleine taille du diaporama/navigation."
|
10232 |
|
10233 |
-
#: wppa-settings-autosave.php:
|
10234 |
msgid "Fade out and in simultaneous"
|
10235 |
msgstr "Fondu simultané"
|
10236 |
|
10237 |
-
#: wppa-settings-autosave.php:
|
10238 |
msgid "Fade in after fade out"
|
10239 |
msgstr "Fondu enchaîné"
|
10240 |
|
10241 |
-
#: wppa-settings-autosave.php:
|
10242 |
msgid "Shift adjacent"
|
10243 |
msgstr "Translation adjacente"
|
10244 |
|
10245 |
-
#: wppa-settings-autosave.php:
|
10246 |
msgid "Stack on"
|
10247 |
msgstr "Empilage"
|
10248 |
|
10249 |
-
#: wppa-settings-autosave.php:
|
10250 |
msgid "Stack off"
|
10251 |
msgstr "Dés-empilage"
|
10252 |
|
10253 |
-
#: wppa-settings-autosave.php:
|
10254 |
msgid "Turn over"
|
10255 |
msgstr "Roulement"
|
10256 |
|
10257 |
-
#: wppa-settings-autosave.php:
|
10258 |
msgid "Timeout"
|
10259 |
msgstr "Timeout"
|
10260 |
|
10261 |
-
#: wppa-settings-autosave.php:
|
10262 |
msgid "Slideshow timeout."
|
10263 |
msgstr "Timeout du diaporama."
|
10264 |
|
10265 |
-
#: wppa-settings-autosave.php:
|
10266 |
msgid ""
|
10267 |
"Select the time a single slide will be visible when the slideshow is started."
|
10268 |
msgstr ""
|
10269 |
"Choisir le temps pendant lequel une diapo sera visible quand le diaporama est "
|
10270 |
"démarré."
|
10271 |
|
10272 |
-
#: wppa-settings-autosave.php:
|
10273 |
msgid "Speed"
|
10274 |
msgstr "Vitesse"
|
10275 |
|
10276 |
-
#: wppa-settings-autosave.php:
|
10277 |
msgid "Slideshow animation speed."
|
10278 |
msgstr "Vitesse d'animation du diaporama."
|
10279 |
|
10280 |
-
#: wppa-settings-autosave.php:
|
10281 |
msgid "Specify the animation speed to be used in slideshows."
|
10282 |
msgstr "Définir la vitesse d'animation à utiliser dans les diaporamas."
|
10283 |
|
10284 |
-
#: wppa-settings-autosave.php:
|
10285 |
msgid "This is the time it takes a photo to fade in or out."
|
10286 |
msgstr "C'est le temps que met une photo à apparaître ou à s'estomper."
|
10287 |
|
10288 |
-
#: wppa-settings-autosave.php:
|
10289 |
-
#: wppa-settings-autosave.php:
|
10290 |
-
#: wppa-settings-autosave.php:
|
10291 |
-
#: wppa-settings-autosave.php:
|
10292 |
msgid "--- off ---"
|
10293 |
msgstr "--- désactivé ---"
|
10294 |
|
10295 |
-
#: wppa-settings-autosave.php:
|
10296 |
msgid "very fast (200 ms.)"
|
10297 |
msgstr "très rapide (200 ms.)"
|
10298 |
|
10299 |
-
#: wppa-settings-autosave.php:
|
10300 |
msgid "fast (400 ms.)"
|
10301 |
msgstr "rapide (400 ms.)"
|
10302 |
|
10303 |
-
#: wppa-settings-autosave.php:
|
10304 |
msgid "normal (800 ms.)"
|
10305 |
msgstr "normal (800 ms.)"
|
10306 |
|
10307 |
-
#: wppa-settings-autosave.php:
|
10308 |
msgid "slow (1.2 s.)"
|
10309 |
msgstr "lent (1.2 s.)"
|
10310 |
|
10311 |
-
#: wppa-settings-autosave.php:
|
10312 |
msgid "very slow (2 s.)"
|
10313 |
msgstr "très lent (2 s.)"
|
10314 |
|
10315 |
-
#: wppa-settings-autosave.php:
|
10316 |
msgid "extremely slow (4 s.)"
|
10317 |
msgstr "extrèmement lent (4 s.)"
|
10318 |
|
10319 |
-
#: wppa-settings-autosave.php:
|
10320 |
msgid "Slide hover pause"
|
10321 |
msgstr "Pause lors du survol"
|
10322 |
|
10323 |
-
#: wppa-settings-autosave.php:
|
10324 |
msgid "Running Slideshow suspends during mouse hover."
|
10325 |
msgstr "Le diaporama s'arrête lorsque le curseur de la souris le survole."
|
10326 |
|
10327 |
-
#: wppa-settings-autosave.php:
|
10328 |
msgid "Slideshow wrap around"
|
10329 |
msgstr "Bouclage du diaporama"
|
10330 |
|
10331 |
-
#: wppa-settings-autosave.php:
|
10332 |
msgid "The slideshow wraps around the start and end"
|
10333 |
msgstr "Le diaporama passe en boucle"
|
10334 |
|
10335 |
-
#: wppa-settings-autosave.php:
|
10336 |
msgid "Full desc align"
|
10337 |
msgstr "Alignement desc. pleine taille"
|
10338 |
|
10339 |
-
#: wppa-settings-autosave.php:
|
10340 |
msgid "The alignment of the descriptions under fullsize images and slideshows."
|
10341 |
msgstr ""
|
10342 |
"L'alignement des descriptions sous les images pleine taille et diaporamas."
|
10343 |
|
10344 |
-
#: wppa-settings-autosave.php:
|
10345 |
-
#: wppa-settings-autosave.php:
|
10346 |
msgid "Left"
|
10347 |
msgstr "Gauche"
|
10348 |
|
10349 |
-
#: wppa-settings-autosave.php:
|
10350 |
msgid "Center"
|
10351 |
msgstr "Centre"
|
10352 |
|
10353 |
-
#: wppa-settings-autosave.php:
|
10354 |
-
#: wppa-settings-autosave.php:
|
10355 |
msgid "Right"
|
10356 |
msgstr "Droite"
|
10357 |
|
10358 |
-
#: wppa-settings-autosave.php:
|
10359 |
msgid "Remove redundant space"
|
10360 |
msgstr "Enlever les espaces répétés"
|
10361 |
|
10362 |
-
#: wppa-settings-autosave.php:
|
10363 |
msgid "Removes unwanted <p> and <br> tags in fullsize descriptions."
|
10364 |
msgstr ""
|
10365 |
"Enlève les balises <p> et <br> dans les descriptions pleine taille."
|
10366 |
|
10367 |
-
#: wppa-settings-autosave.php:
|
10368 |
msgid ""
|
10369 |
"This setting has only effect when Table IX-A7 (foreign shortcodes) is checked."
|
10370 |
msgstr ""
|
10371 |
"Ce réglage n'a d'effet que lorsque table IX-A7 (shortcodes étrangers) est "
|
10372 |
"coché."
|
10373 |
|
10374 |
-
#: wppa-settings-autosave.php:
|
10375 |
msgid "Run wpautop on description"
|
10376 |
msgstr "Exécuter WPautop sur les descriptions"
|
10377 |
|
10378 |
-
#: wppa-settings-autosave.php:
|
10379 |
msgid "Adds <p> and <br> tags in fullsize descriptions."
|
10380 |
msgstr ""
|
10381 |
"Ajoute les balises <p> et <br> dans les descriptions pleine taille."
|
10382 |
|
10383 |
-
#: wppa-settings-autosave.php:
|
10384 |
msgid "Auto open comments"
|
10385 |
msgstr "Ouverture auto des commentaires"
|
10386 |
|
10387 |
-
#: wppa-settings-autosave.php:
|
10388 |
msgid "Automatic opens comments box when slideshow does not run."
|
10389 |
msgstr ""
|
10390 |
"Ouverture automatique de la boîte de commentaires lorsque le diaporama ne "
|
10391 |
"tourne pas."
|
10392 |
|
10393 |
-
#: wppa-settings-autosave.php:
|
10394 |
msgid "Film hover goto"
|
10395 |
msgstr "Aller à lors du survol du filmstrip"
|
10396 |
|
10397 |
-
#: wppa-settings-autosave.php:
|
10398 |
msgid "Go to slide when hovering filmstrip thumbnail."
|
10399 |
msgstr "Va à la diapo lors du survol de la vignette filmstrip."
|
10400 |
|
10401 |
-
#: wppa-settings-autosave.php:
|
10402 |
msgid "Do not use this setting when slides have different aspect ratios!"
|
10403 |
msgstr "Ne pas utiliser ce réglage quand les diapo ont des ratios différents!"
|
10404 |
|
10405 |
-
#: wppa-settings-autosave.php:
|
10406 |
msgid "Slide swipe"
|
10407 |
msgstr "Swipe sur les diapos"
|
10408 |
|
10409 |
-
#: wppa-settings-autosave.php:
|
10410 |
msgid "Enable touch events swipe left-right on slides on touch screens."
|
10411 |
msgstr ""
|
10412 |
"Active les fonctionnalités Swipe gauche-droite pour les diapos sur les écrans "
|
10413 |
"tactiles."
|
10414 |
|
10415 |
-
#: wppa-settings-autosave.php:
|
10416 |
msgid "Slide page Ajax"
|
10417 |
msgstr "Ajax page diapo"
|
10418 |
|
10419 |
-
#: wppa-settings-autosave.php:
|
10420 |
msgid "Pagelinks slideshow use Ajax"
|
10421 |
msgstr "Les diaporamas des pages de liens utilisent Ajax"
|
10422 |
|
10423 |
-
#: wppa-settings-autosave.php:
|
10424 |
msgid "On some systems you need to disable ajax here."
|
10425 |
msgstr "Sur certains systèmes, vous devrez désactiver Ajax ici."
|
10426 |
|
10427 |
-
#: wppa-settings-autosave.php:
|
10428 |
msgid "Thumbnail related settings"
|
10429 |
msgstr "Réglages pour les vignettes"
|
10430 |
|
10431 |
-
#: wppa-settings-autosave.php:
|
10432 |
msgid "Photo ordering sequence method."
|
10433 |
msgstr "Méthode utilisée pour le tri des photos."
|
10434 |
|
10435 |
-
#: wppa-settings-autosave.php:
|
10436 |
msgid ""
|
10437 |
"Specify the way the photos should be ordered. This is the default setting. You "
|
10438 |
"can overrule the default sorting order on a per album basis."
|
@@ -10441,15 +10504,15 @@ msgstr ""
|
|
10441 |
"défaut. Vous avez la possibilité de régler la méthode de tri séparément pour "
|
10442 |
"chaque album."
|
10443 |
|
10444 |
-
#: wppa-settings-autosave.php:
|
10445 |
msgid "Thumbnail type"
|
10446 |
msgstr "Type de vignette"
|
10447 |
|
10448 |
-
#: wppa-settings-autosave.php:
|
10449 |
msgid "The way the thumbnail images are displayed."
|
10450 |
msgstr "La façon dont les vignettes sont affichées."
|
10451 |
|
10452 |
-
#: wppa-settings-autosave.php:
|
10453 |
msgid ""
|
10454 |
"You may select an altenative display method for thumbnails. Note that some of "
|
10455 |
"the thumbnail settings do not apply to all available display methods."
|
@@ -10458,43 +10521,43 @@ msgstr ""
|
|
10458 |
"certains réglages pour les vignettes ne s'appliquent pas à toutes les méthodes "
|
10459 |
"d'affichage."
|
10460 |
|
10461 |
-
#: wppa-settings-autosave.php:
|
10462 |
msgid "like album covers"
|
10463 |
msgstr "comme les couvertures d'album"
|
10464 |
|
10465 |
-
#: wppa-settings-autosave.php:
|
10466 |
msgid "like album covers mcr"
|
10467 |
msgstr "comme mcr des couvertures d'album"
|
10468 |
|
10469 |
-
#: wppa-settings-autosave.php:
|
10470 |
msgid "masonry style columns"
|
10471 |
msgstr "colonnes style maçonnerie"
|
10472 |
|
10473 |
-
#: wppa-settings-autosave.php:
|
10474 |
msgid "masonry style rows"
|
10475 |
msgstr "lignes style maçonnerie"
|
10476 |
|
10477 |
-
#: wppa-settings-autosave.php:
|
10478 |
msgid "Placement"
|
10479 |
msgstr "Placement"
|
10480 |
|
10481 |
-
#: wppa-settings-autosave.php:
|
10482 |
msgid "Thumbnail image left or right."
|
10483 |
msgstr "vignette à gauche ou a droite."
|
10484 |
|
10485 |
-
#: wppa-settings-autosave.php:
|
10486 |
msgid "Indicate the placement position of the thumbnailphoto you wish."
|
10487 |
msgstr "Indique l'emplacement voulu de la vignette photo."
|
10488 |
|
10489 |
-
#: wppa-settings-autosave.php:
|
10490 |
msgid "Vertical alignment"
|
10491 |
msgstr "Alignement vertical"
|
10492 |
|
10493 |
-
#: wppa-settings-autosave.php:
|
10494 |
msgid "Vertical alignment of thumbnails."
|
10495 |
msgstr "Alignement vertical des vignettes."
|
10496 |
|
10497 |
-
#: wppa-settings-autosave.php:
|
10498 |
msgid ""
|
10499 |
"Specify the vertical alignment of thumbnail images. Use this setting when "
|
10500 |
"albums contain both portrait and landscape photos."
|
@@ -10502,7 +10565,7 @@ msgstr ""
|
|
10502 |
"Spécifie l’alignement vertical des vignettes. Utiliser ce réglage quand les "
|
10503 |
"couvertures d'album contiennent des photos en mode portrait et paysage."
|
10504 |
|
10505 |
-
#: wppa-settings-autosave.php:
|
10506 |
msgid ""
|
10507 |
"It is NOT recommended to use the value --- default ---; it will affect the "
|
10508 |
"horizontal alignment also and is meant to be used with custom css."
|
@@ -10511,83 +10574,83 @@ msgstr ""
|
|
10511 |
"l'alignement horizontal aussi et il est prévu pour être utilisé avec le CSS "
|
10512 |
"personnalisé."
|
10513 |
|
10514 |
-
#: wppa-settings-autosave.php:
|
10515 |
msgid "Thumb mouseover"
|
10516 |
msgstr "Survol vignette"
|
10517 |
|
10518 |
-
#: wppa-settings-autosave.php:
|
10519 |
msgid "Apply thumbnail mouseover effect."
|
10520 |
msgstr "Appliquer l'effet de survol des vignettes."
|
10521 |
|
10522 |
-
#: wppa-settings-autosave.php:
|
10523 |
msgid "Check this box to use mouseover effect on thumbnail images."
|
10524 |
msgstr "Cochez cette case pour utiliser l'effet de survol sur les vignettes."
|
10525 |
|
10526 |
-
#: wppa-settings-autosave.php:
|
10527 |
msgid "Thumb opacity"
|
10528 |
msgstr "Opacité des vignettes"
|
10529 |
|
10530 |
-
#: wppa-settings-autosave.php:
|
10531 |
msgid "Initial opacity value."
|
10532 |
msgstr "Valeur d'opacité initiale."
|
10533 |
|
10534 |
-
#: wppa-settings-autosave.php:
|
10535 |
-
#: wppa-settings-autosave.php:
|
10536 |
msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
|
10537 |
msgstr "Entrer le pourcentage d'opacité. 100% : opaque, 0% : transparent"
|
10538 |
|
10539 |
-
#: wppa-settings-autosave.php:
|
10540 |
-
#: wppa-settings-autosave.php:
|
10541 |
msgid "%"
|
10542 |
msgstr "%"
|
10543 |
|
10544 |
-
#: wppa-settings-autosave.php:
|
10545 |
msgid "Thumb popup"
|
10546 |
msgstr "Popup vignette"
|
10547 |
|
10548 |
-
#: wppa-settings-autosave.php:
|
10549 |
msgid "Use popup effect on thumbnail images."
|
10550 |
msgstr "Utiliser l'effet popup sur les vignettes."
|
10551 |
|
10552 |
-
#: wppa-settings-autosave.php:
|
10553 |
msgid "Thumbnails pop-up to a larger image when hovered."
|
10554 |
msgstr ""
|
10555 |
"Une vue plus grande de l'image s'affiche dans un popup lorsqu'on survole la "
|
10556 |
"vignette."
|
10557 |
|
10558 |
-
#: wppa-settings-autosave.php:
|
10559 |
msgid "Align subtext"
|
10560 |
msgstr "aligner le sous texte"
|
10561 |
|
10562 |
-
#: wppa-settings-autosave.php:
|
10563 |
msgid "Set thumbnail subtext on equal height."
|
10564 |
msgstr "Régler le sous texte des vignettes à hauteur égale."
|
10565 |
|
10566 |
-
#: wppa-settings-autosave.php:
|
10567 |
msgid "Album and covers related settings"
|
10568 |
msgstr "Réglages pour les albums et les couvertures"
|
10569 |
|
10570 |
-
#: wppa-settings-autosave.php:
|
10571 |
msgid "Album order"
|
10572 |
msgstr "Tri des albums"
|
10573 |
|
10574 |
-
#: wppa-settings-autosave.php:
|
10575 |
msgid "Album ordering sequence method."
|
10576 |
msgstr "Méthode de tri des albums."
|
10577 |
|
10578 |
-
#: wppa-settings-autosave.php:
|
10579 |
msgid "Specify the way the albums should be ordered."
|
10580 |
msgstr "Spécifier la façon dont les albums doivent être triés."
|
10581 |
|
10582 |
-
#: wppa-settings-autosave.php:
|
10583 |
msgid "Default coverphoto selection"
|
10584 |
msgstr "Sélection de la photo de couverture par défaut"
|
10585 |
|
10586 |
-
#: wppa-settings-autosave.php:
|
10587 |
msgid "Default select cover photo method."
|
10588 |
msgstr "Réglage par défaut de la sélection de la photo de couverture."
|
10589 |
|
10590 |
-
#: wppa-settings-autosave.php:
|
10591 |
msgid ""
|
10592 |
"This is the initial value on album creation only. It can be overruled on the "
|
10593 |
"edit album page."
|
@@ -10595,27 +10658,27 @@ msgstr ""
|
|
10595 |
"C'est la valeur initiale à la création de l'album. Cela peut être modifié dans "
|
10596 |
"la page de modification de l'album."
|
10597 |
|
10598 |
-
#: wppa-settings-autosave.php:
|
10599 |
msgid "Random from album"
|
10600 |
msgstr "Aléatoire à partir de l'album"
|
10601 |
|
10602 |
-
#: wppa-settings-autosave.php:
|
10603 |
msgid "Random featured from album"
|
10604 |
msgstr "Aléatoire recommandé de l'album"
|
10605 |
|
10606 |
-
#: wppa-settings-autosave.php:
|
10607 |
msgid "Most recently added to album"
|
10608 |
msgstr "Dernières photos mises à jour"
|
10609 |
|
10610 |
-
#: wppa-settings-autosave.php:
|
10611 |
msgid "Random from album or any sub album"
|
10612 |
msgstr "Aléatoire depuis un album ou (fils)"
|
10613 |
|
10614 |
-
#: wppa-settings-autosave.php:
|
10615 |
msgid "Cover image position."
|
10616 |
msgstr "Position de l'image de couverture."
|
10617 |
|
10618 |
-
#: wppa-settings-autosave.php:
|
10619 |
msgid ""
|
10620 |
"Enter the position that you want to be used for the default album cover "
|
10621 |
"selected in Table IV-D6."
|
@@ -10623,7 +10686,7 @@ msgstr ""
|
|
10623 |
"Entrer le placement que vous voulez utiliser par défaut pour la couverture "
|
10624 |
"d'album par défaut choisie dans table IV-D6."
|
10625 |
|
10626 |
-
#: wppa-settings-autosave.php:
|
10627 |
msgid ""
|
10628 |
"For covertype Image Factory: left will be treated as top and right will be "
|
10629 |
"treted as bottom."
|
@@ -10631,7 +10694,7 @@ msgstr ""
|
|
10631 |
"Pour covertype Image Factory: gauche sera considéré comme haut et droite comme "
|
10632 |
"bas."
|
10633 |
|
10634 |
-
#: wppa-settings-autosave.php:
|
10635 |
msgid ""
|
10636 |
"For covertype Long Descriptions: top will be treated as left and bottom will "
|
10637 |
"be treted as right."
|
@@ -10639,51 +10702,51 @@ msgstr ""
|
|
10639 |
"Pour covertype Long Descriptions: haut sera considéré comme gauche et bas "
|
10640 |
"comme droite."
|
10641 |
|
10642 |
-
#: wppa-settings-autosave.php:
|
10643 |
msgid "Cover mouseover"
|
10644 |
msgstr "Survol couverture"
|
10645 |
|
10646 |
-
#: wppa-settings-autosave.php:
|
10647 |
msgid "Apply coverphoto mouseover effect."
|
10648 |
msgstr "Appliquer l'effet de survol de la photo de couverture."
|
10649 |
|
10650 |
-
#: wppa-settings-autosave.php:
|
10651 |
msgid "Check this box to use mouseover effect on cover images."
|
10652 |
msgstr ""
|
10653 |
"Cochez cette case pour utiliser l'effet de survol sur les photos de couverture."
|
10654 |
|
10655 |
-
#: wppa-settings-autosave.php:
|
10656 |
msgid "Cover opacity"
|
10657 |
msgstr "Opacité de la couverture"
|
10658 |
|
10659 |
-
#: wppa-settings-autosave.php:
|
10660 |
msgid "Cover type"
|
10661 |
msgstr "Type de couverture"
|
10662 |
|
10663 |
-
#: wppa-settings-autosave.php:
|
10664 |
msgid "Select the default cover type."
|
10665 |
msgstr "Choisir le type de couverture par défaut."
|
10666 |
|
10667 |
-
#: wppa-settings-autosave.php:
|
10668 |
msgid ""
|
10669 |
"Types with the addition mcr are suitable for Multi Column in a Responsive theme"
|
10670 |
msgstr ""
|
10671 |
"Les types avec l'ajout de mcr sont appropriés pour le Multi Colonne dans un "
|
10672 |
"thème Responsive"
|
10673 |
|
10674 |
-
#: wppa-settings-autosave.php:
|
10675 |
msgid "The umber of coverphotos. Must be > 1 and < 25."
|
10676 |
msgstr "Le nombre de photos de couvertures. Doit être > 1 et < 25."
|
10677 |
|
10678 |
-
#: wppa-settings-autosave.php:
|
10679 |
msgid "Cats include subs"
|
10680 |
msgstr "Les cats comprennent les sous-albums"
|
10681 |
|
10682 |
-
#: wppa-settings-autosave.php:
|
10683 |
msgid "Child albums are included in Category based shortcodes."
|
10684 |
msgstr "Albums enfant sont inclus dans la catégorie basé shortcodes."
|
10685 |
|
10686 |
-
#: wppa-settings-autosave.php:
|
10687 |
msgid ""
|
10688 |
"When you use album=\"#cat,...\", in a shortcode, the child albums will be "
|
10689 |
"included."
|
@@ -10691,19 +10754,19 @@ msgstr ""
|
|
10691 |
"Lorsque vous utilisez album=\"#cat,...\", dans un shortcode, les albums "
|
10692 |
"d’enfant seront incluses."
|
10693 |
|
10694 |
-
#: wppa-settings-autosave.php:
|
10695 |
msgid "Rating related settings"
|
10696 |
msgstr "Réglages pour la notation"
|
10697 |
|
10698 |
-
#: wppa-settings-autosave.php:
|
10699 |
msgid "Rating login"
|
10700 |
msgstr "Connexion pour la notation"
|
10701 |
|
10702 |
-
#: wppa-settings-autosave.php:
|
10703 |
msgid "Users must login to rate photos."
|
10704 |
msgstr "Les utilisateurs doivent se connecter pour voter."
|
10705 |
|
10706 |
-
#: wppa-settings-autosave.php:
|
10707 |
msgid ""
|
10708 |
"If users want to vote for a photo (rating 1..5 stars) the must login first. "
|
10709 |
"The avarage rating will always be displayed as long as the rating system is "
|
@@ -10713,32 +10776,32 @@ msgstr ""
|
|
10713 |
"doivent se connecter avant. La note moyenne sera toujours affichée lorsque la "
|
10714 |
"notation est active."
|
10715 |
|
10716 |
-
#: wppa-settings-autosave.php:
|
10717 |
msgid "Rating change"
|
10718 |
msgstr "Changement de la notation"
|
10719 |
|
10720 |
-
#: wppa-settings-autosave.php:
|
10721 |
msgid "Users may change their ratings."
|
10722 |
msgstr "Les utilisateurs peuvent changer leurs notations."
|
10723 |
|
10724 |
-
#: wppa-settings-autosave.php:
|
10725 |
-
#: wppa-settings-autosave.php:
|
10726 |
-
#: wppa-settings-autosave.php:
|
10727 |
-
#: wppa-settings-autosave.php:
|
10728 |
msgid ""
|
10729 |
"If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
|
10730 |
msgstr ""
|
10731 |
"Si \"One button vote\" est choisi dans table I-E1, ce réglage n'a pas de sens"
|
10732 |
|
10733 |
-
#: wppa-settings-autosave.php:
|
10734 |
msgid "Rating multi"
|
10735 |
msgstr "Multi notation"
|
10736 |
|
10737 |
-
#: wppa-settings-autosave.php:
|
10738 |
msgid "Users may give multiple votes."
|
10739 |
msgstr "Les utilisateurs peuvent voter plusieurs fois."
|
10740 |
|
10741 |
-
#: wppa-settings-autosave.php:
|
10742 |
msgid ""
|
10743 |
"Users may give multiple votes. (This has no effect when users may change their "
|
10744 |
"votes.)"
|
@@ -10746,71 +10809,71 @@ msgstr ""
|
|
10746 |
"Les utilisateurs peuvent voter plusieurs fois. (Cela n'a pas d'effet quand les "
|
10747 |
"utilisateurs peuvent changer leurs votes.)"
|
10748 |
|
10749 |
-
#: wppa-settings-autosave.php:
|
10750 |
#, fuzzy
|
10751 |
msgid "Rating daily"
|
10752 |
msgstr "Note quotidienne"
|
10753 |
|
10754 |
-
#: wppa-settings-autosave.php:
|
10755 |
#, fuzzy
|
10756 |
msgid "Users may rate only once per period"
|
10757 |
msgstr "Les utilisateurs peuvent évaluer une seule fois par période"
|
10758 |
|
10759 |
-
#: wppa-settings-autosave.php:
|
10760 |
#, fuzzy
|
10761 |
msgid "Week"
|
10762 |
msgstr "semaine."
|
10763 |
|
10764 |
-
#: wppa-settings-autosave.php:
|
10765 |
#, fuzzy
|
10766 |
msgid "Day"
|
10767 |
msgstr "jour."
|
10768 |
|
10769 |
-
#: wppa-settings-autosave.php:
|
10770 |
#, fuzzy
|
10771 |
msgid "Hour"
|
10772 |
msgstr "heure."
|
10773 |
|
10774 |
-
#: wppa-settings-autosave.php:
|
10775 |
msgid "Rate own photos"
|
10776 |
msgstr "Noter ses propres photos"
|
10777 |
|
10778 |
-
#: wppa-settings-autosave.php:
|
10779 |
msgid "It is allowed to rate photos by the uploader himself."
|
10780 |
msgstr "L'utilisateur qui a chargé une photo peut aussi la noter."
|
10781 |
|
10782 |
-
#: wppa-settings-autosave.php:
|
10783 |
msgid "Rating requires comment"
|
10784 |
msgstr "Commentaire requis pour notation"
|
10785 |
|
10786 |
-
#: wppa-settings-autosave.php:
|
10787 |
msgid "Users must clarify their vote in a comment."
|
10788 |
msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
|
10789 |
|
10790 |
-
#: wppa-settings-autosave.php:
|
10791 |
msgid "This value counts dislike rating."
|
10792 |
msgstr "Cette valeur compte les notes défavorables."
|
10793 |
|
10794 |
-
#: wppa-settings-autosave.php:
|
10795 |
msgid ""
|
10796 |
"This value will be used for a dislike rating on calculation of avarage ratings."
|
10797 |
msgstr ""
|
10798 |
"Cette valeur sera utilisée pour une note des avis défavorables dans le calcul "
|
10799 |
"des notes moyennes."
|
10800 |
|
10801 |
-
#: wppa-settings-autosave.php:
|
10802 |
msgid "points"
|
10803 |
msgstr "points"
|
10804 |
|
10805 |
-
#: wppa-settings-autosave.php:
|
10806 |
msgid "Next after vote"
|
10807 |
msgstr "Suivant après le vote"
|
10808 |
|
10809 |
-
#: wppa-settings-autosave.php:
|
10810 |
msgid "Goto next slide after voting"
|
10811 |
msgstr "Aller à la diapositive suivante après le vote"
|
10812 |
|
10813 |
-
#: wppa-settings-autosave.php:
|
10814 |
msgid ""
|
10815 |
"If checked, the visitor goes straight to the slide following the slide he "
|
10816 |
"voted. This will speed up mass voting."
|
@@ -10818,26 +10881,26 @@ msgstr ""
|
|
10818 |
"Si coché, le visiteur va directement à la diapo suivant celle pour laquelle il "
|
10819 |
"a voté. Cela accélère le vote en masse."
|
10820 |
|
10821 |
-
#: wppa-settings-autosave.php:
|
10822 |
msgid "Star off opacity"
|
10823 |
msgstr "Opacité étoile éteinte"
|
10824 |
|
10825 |
-
#: wppa-settings-autosave.php:
|
10826 |
msgid "Rating star off state opacity value."
|
10827 |
msgstr "Valeur de l'opacité de l'étoile pour l'état éteint."
|
10828 |
|
10829 |
-
#: wppa-settings-autosave.php:
|
10830 |
msgid "Notify admin every x times."
|
10831 |
msgstr "Notifier l'administrateur toutes les x fois."
|
10832 |
|
10833 |
-
#: wppa-settings-autosave.php:
|
10834 |
msgid ""
|
10835 |
"If this number is positive, there will be a thumb down icon in the rating bar."
|
10836 |
msgstr ""
|
10837 |
"Si ce nombre est positif, il y aura une icône pouce bas dans la barre de "
|
10838 |
"notation."
|
10839 |
|
10840 |
-
#: wppa-settings-autosave.php:
|
10841 |
msgid ""
|
10842 |
"Cicking the icon indicates a user wants to report that an image is "
|
10843 |
"inappropiate."
|
@@ -10845,74 +10908,74 @@ msgstr ""
|
|
10845 |
"Un utilisateur qui voudra signaler qu'une image est inappropriée n'aura qu'a "
|
10846 |
"cliquer sur cette icône."
|
10847 |
|
10848 |
-
#: wppa-settings-autosave.php:
|
10849 |
msgid "Admin will be notified by email after every x reports."
|
10850 |
msgstr "L'administrateur sera notifié par email tous les x signalements."
|
10851 |
|
10852 |
-
#: wppa-settings-autosave.php:
|
10853 |
-
#: wppa-settings-autosave.php:
|
10854 |
msgid "A value of 0 disables this feature."
|
10855 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
10856 |
|
10857 |
-
#: wppa-settings-autosave.php:
|
10858 |
-
#: wppa-settings-autosave.php:
|
10859 |
msgid "reports"
|
10860 |
msgstr "rapports"
|
10861 |
|
10862 |
-
#: wppa-settings-autosave.php:
|
10863 |
msgid "Pending after"
|
10864 |
msgstr "En attente après"
|
10865 |
|
10866 |
-
#: wppa-settings-autosave.php:
|
10867 |
msgid "Set status to pending after xx dislike votes."
|
10868 |
msgstr "Règle le statut à en attente après xx votes défavorables."
|
10869 |
|
10870 |
-
#: wppa-settings-autosave.php:
|
10871 |
msgid "Delete after"
|
10872 |
msgstr "Supprimer après"
|
10873 |
|
10874 |
-
#: wppa-settings-autosave.php:
|
10875 |
msgid "Deete photo after xx dislike votes."
|
10876 |
msgstr "Efface la photo après xx votes défavorables."
|
10877 |
|
10878 |
-
#: wppa-settings-autosave.php:
|
10879 |
msgid "Show dislike count"
|
10880 |
msgstr "Montrer comptage des avis négatifs"
|
10881 |
|
10882 |
-
#: wppa-settings-autosave.php:
|
10883 |
msgid "Show the number of dislikes in the rating bar."
|
10884 |
msgstr "Montrer le nombre d'avis défavorables dans la barre de notation."
|
10885 |
|
10886 |
-
#: wppa-settings-autosave.php:
|
10887 |
msgid "Displayes the total number of dislike votes for the current photo."
|
10888 |
msgstr "Affiche le nombre total d'avis défavorables pour la photo courante."
|
10889 |
|
10890 |
-
#: wppa-settings-autosave.php:
|
10891 |
msgid "Rating display type"
|
10892 |
msgstr "Type d’affichage des notes"
|
10893 |
|
10894 |
-
#: wppa-settings-autosave.php:
|
10895 |
msgid "Specify the type of the rating display."
|
10896 |
msgstr "Spécifier le type d'affichage des notes."
|
10897 |
|
10898 |
-
#: wppa-settings-autosave.php:
|
10899 |
msgid "Graphic"
|
10900 |
msgstr "Graphique"
|
10901 |
|
10902 |
-
#: wppa-settings-autosave.php:
|
10903 |
msgid "Numeric"
|
10904 |
msgstr "Numérique"
|
10905 |
|
10906 |
-
#: wppa-settings-autosave.php:
|
10907 |
msgid "Show average rating"
|
10908 |
msgstr "Montrer le vote moyen"
|
10909 |
|
10910 |
-
#: wppa-settings-autosave.php:
|
10911 |
msgid "Display the avarage rating and/or vote count on the rating bar"
|
10912 |
msgstr ""
|
10913 |
"Afficher la moyenne des notes et/ou compte des votes dans la barre de notation"
|
10914 |
|
10915 |
-
#: wppa-settings-autosave.php:
|
10916 |
msgid ""
|
10917 |
"If checked, the average rating as well as the current users rating is "
|
10918 |
"displayed in max 5 or 10 stars."
|
@@ -10920,13 +10983,13 @@ msgstr ""
|
|
10920 |
"Si coché, la moyenne des notes ainsi que la note de l'utilisateur courant sont "
|
10921 |
"affichées avec une échelle de 5 ou 10 étoiles."
|
10922 |
|
10923 |
-
#: wppa-settings-autosave.php:
|
10924 |
msgid "If unchecked, only the current users rating is displayed (if any)."
|
10925 |
msgstr ""
|
10926 |
"Si décoché, seulement la note de l'utilisateur courant est affichée (si "
|
10927 |
"existe)."
|
10928 |
|
10929 |
-
#: wppa-settings-autosave.php:
|
10930 |
msgid ""
|
10931 |
"If \"One button vote\" is selected in Table I-E1, this box checked will "
|
10932 |
"display the vote count."
|
@@ -10934,51 +10997,51 @@ msgstr ""
|
|
10934 |
"Si \"One button vote\" est sélectionné dans table I-E1, cette case cochée "
|
10935 |
"affichera le comptage des votes."
|
10936 |
|
10937 |
-
#: wppa-settings-autosave.php:
|
10938 |
msgid "Single vote button text"
|
10939 |
msgstr "Texte du bouton unique de vote"
|
10940 |
|
10941 |
-
#: wppa-settings-autosave.php:
|
10942 |
msgid "The text on the voting button."
|
10943 |
msgstr "Le texte sur le bouton de vote."
|
10944 |
|
10945 |
-
#: wppa-settings-autosave.php:
|
10946 |
msgid "This text may contain qTranslate compatible language tags."
|
10947 |
msgstr "Ce texte peut contenir des tags compatibles avec qTranslate."
|
10948 |
|
10949 |
-
#: wppa-settings-autosave.php:
|
10950 |
msgid "Single vote button text voted"
|
10951 |
msgstr "Texte voté sur le bouton unique de vote"
|
10952 |
|
10953 |
-
#: wppa-settings-autosave.php:
|
10954 |
msgid "The text on the voting button when voted."
|
10955 |
msgstr "Le texte sur le bouton de vote lorsque voté."
|
10956 |
|
10957 |
-
#: wppa-settings-autosave.php:
|
10958 |
msgid "Single vote button thumbnail"
|
10959 |
msgstr "Bouton unique de vote et vignette"
|
10960 |
|
10961 |
-
#: wppa-settings-autosave.php:
|
10962 |
msgid "Display single vote button below thumbnails."
|
10963 |
msgstr "Affiche le bouton unique de vote sous les vignettes."
|
10964 |
|
10965 |
-
#: wppa-settings-autosave.php:
|
10966 |
msgid ""
|
10967 |
"This works only in single vote mode: Table I-E1 set to \"one button vote\""
|
10968 |
msgstr ""
|
10969 |
"Cela fonctionne seulement en mode vote unique: table I-E1 réglé à \"one button "
|
10970 |
"vote\""
|
10971 |
|
10972 |
-
#: wppa-settings-autosave.php:
|
10973 |
msgid "Medal bronze when"
|
10974 |
msgstr "Médaille de bronze quand"
|
10975 |
|
10976 |
-
#: wppa-settings-autosave.php:
|
10977 |
msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
|
10978 |
msgstr ""
|
10979 |
"La photo reçoit la médaille de bronze quand le nombre de top-scores (5 or 10)."
|
10980 |
|
10981 |
-
#: wppa-settings-autosave.php:
|
10982 |
msgid ""
|
10983 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
10984 |
"bronze medal. A value of 0 indicates that you do not want this feature."
|
@@ -10987,21 +11050,21 @@ msgstr ""
|
|
10987 |
"médaille de bronze. La valeur 0 signifie qu'on n'utilise pas cette "
|
10988 |
"fonctionnalité."
|
10989 |
|
10990 |
-
#: wppa-settings-autosave.php:
|
10991 |
-
#: wppa-settings-autosave.php:
|
10992 |
msgid "Topscores"
|
10993 |
msgstr "Meilleurs scores"
|
10994 |
|
10995 |
-
#: wppa-settings-autosave.php:
|
10996 |
msgid "Medal silver when"
|
10997 |
msgstr "Médaille d'argent quand"
|
10998 |
|
10999 |
-
#: wppa-settings-autosave.php:
|
11000 |
msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
|
11001 |
msgstr ""
|
11002 |
"La photo reçoit la médaille d'argent quand le nombre de top-scores (5 or 10)."
|
11003 |
|
11004 |
-
#: wppa-settings-autosave.php:
|
11005 |
msgid ""
|
11006 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
11007 |
"silver medal. A value of 0 indicates that you do not want this feature."
|
@@ -11010,87 +11073,87 @@ msgstr ""
|
|
11010 |
"médaille d'argent. La valeur 0 signifie qu'on n'utilise pas cette "
|
11011 |
"fonctionnalité."
|
11012 |
|
11013 |
-
#: wppa-settings-autosave.php:
|
11014 |
msgid "Medal gold when"
|
11015 |
msgstr "Médaille d'or quand"
|
11016 |
|
11017 |
-
#: wppa-settings-autosave.php:
|
11018 |
msgid "Medal tag color"
|
11019 |
msgstr "Couleur du tag médaille"
|
11020 |
|
11021 |
-
#: wppa-settings-autosave.php:
|
11022 |
msgid "The color of the tag on the medal."
|
11023 |
msgstr "La couleur du tag sur la médaille."
|
11024 |
|
11025 |
-
#: wppa-settings-autosave.php:
|
11026 |
msgid "Red"
|
11027 |
msgstr "Rouge"
|
11028 |
|
11029 |
-
#: wppa-settings-autosave.php:
|
11030 |
msgid "Green"
|
11031 |
msgstr "Vert"
|
11032 |
|
11033 |
-
#: wppa-settings-autosave.php:
|
11034 |
msgid "Blue"
|
11035 |
msgstr "Bleu"
|
11036 |
|
11037 |
-
#: wppa-settings-autosave.php:
|
11038 |
msgid "Medal position"
|
11039 |
msgstr "Position médaille"
|
11040 |
|
11041 |
-
#: wppa-settings-autosave.php:
|
11042 |
msgid "The position of the medal on the image."
|
11043 |
msgstr "La position de la médaille sur l'image."
|
11044 |
|
11045 |
-
#: wppa-settings-autosave.php:
|
11046 |
msgid "Top left"
|
11047 |
msgstr "En haut à gauche"
|
11048 |
|
11049 |
-
#: wppa-settings-autosave.php:
|
11050 |
msgid "Top right"
|
11051 |
msgstr "En haut à droite"
|
11052 |
|
11053 |
-
#: wppa-settings-autosave.php:
|
11054 |
msgid "Bottom left"
|
11055 |
msgstr "En bas à gauche"
|
11056 |
|
11057 |
-
#: wppa-settings-autosave.php:
|
11058 |
msgid "Bottom right"
|
11059 |
msgstr "En bas à droite"
|
11060 |
|
11061 |
-
#: wppa-settings-autosave.php:
|
11062 |
msgid "Top criterium"
|
11063 |
msgstr "Critère supérieur"
|
11064 |
|
11065 |
-
#: wppa-settings-autosave.php:
|
11066 |
msgid "The top sort item used for topten results from shortcodes."
|
11067 |
msgstr "Le critère de tri prioritaire pour le classement TopTen (shortcodes)."
|
11068 |
|
11069 |
-
#: wppa-settings-autosave.php:
|
11070 |
msgid "Mean raiting"
|
11071 |
msgstr "Moyenne votes"
|
11072 |
|
11073 |
-
#: wppa-settings-autosave.php:
|
11074 |
msgid "Rating count"
|
11075 |
msgstr "Compteur votes"
|
11076 |
|
11077 |
-
#: wppa-settings-autosave.php:
|
11078 |
msgid "Viewcount"
|
11079 |
msgstr "Compteur vues"
|
11080 |
|
11081 |
-
#: wppa-settings-autosave.php:
|
11082 |
msgid "Comments related settings"
|
11083 |
msgstr "Comments related settings"
|
11084 |
|
11085 |
-
#: wppa-settings-autosave.php:
|
11086 |
msgid "Commenting login"
|
11087 |
msgstr "Commenting login"
|
11088 |
|
11089 |
-
#: wppa-settings-autosave.php:
|
11090 |
msgid "Users must be logged in to comment on photos."
|
11091 |
msgstr "Les utilisateurs doivent être connectés pour commenter les photos."
|
11092 |
|
11093 |
-
#: wppa-settings-autosave.php:
|
11094 |
msgid ""
|
11095 |
"Check this box if you want users to be logged in to be able to enter comments "
|
11096 |
"on individual photos."
|
@@ -11098,15 +11161,15 @@ msgstr ""
|
|
11098 |
"Cochez cette case si vous voulez limiter la possibilité de commenter aux "
|
11099 |
"utilisateurs connectés."
|
11100 |
|
11101 |
-
#: wppa-settings-autosave.php:
|
11102 |
msgid "Comments view login"
|
11103 |
msgstr "Comments view login"
|
11104 |
|
11105 |
-
#: wppa-settings-autosave.php:
|
11106 |
msgid "Users must be logged in to see comments on photos."
|
11107 |
msgstr "L'utilisateur doit être connecté pour voir les commentaires."
|
11108 |
|
11109 |
-
#: wppa-settings-autosave.php:
|
11110 |
msgid ""
|
11111 |
"Check this box if you want users to be logged in to be able to see existing "
|
11112 |
"comments on individual photos."
|
@@ -11114,130 +11177,130 @@ msgstr ""
|
|
11114 |
"Cochez cette case si vous voulez limiter la possibilité de voir les "
|
11115 |
"commentaires aux utilisateurs connectés."
|
11116 |
|
11117 |
-
#: wppa-settings-autosave.php:
|
11118 |
msgid "Last comment first"
|
11119 |
msgstr "Dernier commentaire en premier"
|
11120 |
|
11121 |
-
#: wppa-settings-autosave.php:
|
11122 |
msgid "Display the newest comment on top."
|
11123 |
msgstr "Affiche les commentaire le plus récent en premier."
|
11124 |
|
11125 |
-
#: wppa-settings-autosave.php:
|
11126 |
msgid "If checked: Display the newest comment on top."
|
11127 |
msgstr "Si coché: afficher le commentaire le plus récent en tête."
|
11128 |
|
11129 |
-
#: wppa-settings-autosave.php:
|
11130 |
msgid "If unchecked, the comments are listed in the ordere they were entered."
|
11131 |
msgstr "Si décoché, les commentaires sont listés dans l'ordre de la saisie."
|
11132 |
|
11133 |
-
#: wppa-settings-autosave.php:
|
11134 |
msgid "Comment moderation"
|
11135 |
msgstr "Modération de commentaire"
|
11136 |
|
11137 |
-
#: wppa-settings-autosave.php:
|
11138 |
msgid "Comments from what users need approval."
|
11139 |
msgstr "Les commentaires nécessitent une approbation."
|
11140 |
|
11141 |
-
#: wppa-settings-autosave.php:
|
11142 |
msgid "Select the desired users of which the comments need approval."
|
11143 |
msgstr ""
|
11144 |
"Choisir les utilisateurs dont les commentaires nécessitent une modération."
|
11145 |
|
11146 |
-
#: wppa-settings-autosave.php:
|
11147 |
msgid "All users"
|
11148 |
msgstr "Tous les utilisateurs"
|
11149 |
|
11150 |
-
#: wppa-settings-autosave.php:
|
11151 |
msgid "Logged out users"
|
11152 |
msgstr "Utilisateurs déconnectés"
|
11153 |
|
11154 |
-
#: wppa-settings-autosave.php:
|
11155 |
msgid "No users"
|
11156 |
msgstr "Pas d'utilisateurs"
|
11157 |
|
11158 |
-
#: wppa-settings-autosave.php:
|
11159 |
msgid "Comment email required"
|
11160 |
msgstr "Comment email required"
|
11161 |
|
11162 |
-
#: wppa-settings-autosave.php:
|
11163 |
msgid "Commenting users must enter their email addresses."
|
11164 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
11165 |
|
11166 |
-
#: wppa-settings-autosave.php:
|
11167 |
-
#: wppa-settings-autosave.php:
|
11168 |
msgid "Optional"
|
11169 |
msgstr "Optionnel"
|
11170 |
|
11171 |
-
#: wppa-settings-autosave.php:
|
11172 |
msgid "Comment notify"
|
11173 |
msgstr "Notification de commentaire"
|
11174 |
|
11175 |
-
#: wppa-settings-autosave.php:
|
11176 |
msgid "Select who must receive an e-mail notification of a new comment."
|
11177 |
msgstr ""
|
11178 |
"Choisir qui doit recevoir un email de notification de nouveau commentaire."
|
11179 |
|
11180 |
-
#: wppa-settings-autosave.php:
|
11181 |
msgid "--- None ---"
|
11182 |
msgstr "--- Aucun ---"
|
11183 |
|
11184 |
-
#: wppa-settings-autosave.php:
|
11185 |
msgid "--- Admin ---"
|
11186 |
msgstr "--- Admin ---"
|
11187 |
|
11188 |
-
#: wppa-settings-autosave.php:
|
11189 |
msgid "--- Album owner ---"
|
11190 |
msgstr "--- Propriétaire album ---"
|
11191 |
|
11192 |
-
#: wppa-settings-autosave.php:
|
11193 |
msgid "--- Admin & Owner ---"
|
11194 |
msgstr "--- Admin & Propriétaire ---"
|
11195 |
|
11196 |
-
#: wppa-settings-autosave.php:
|
11197 |
msgid "--- Uploader ---"
|
11198 |
msgstr "-- Celui(le) qui a déposé les fichiers --"
|
11199 |
|
11200 |
-
#: wppa-settings-autosave.php:
|
11201 |
msgid "--- Up & admin ---"
|
11202 |
msgstr "--- Up & Admin ---"
|
11203 |
|
11204 |
-
#: wppa-settings-autosave.php:
|
11205 |
msgid "--- Up & Owner ---"
|
11206 |
msgstr "--- Up & Propriétaire ---"
|
11207 |
|
11208 |
-
#: wppa-settings-autosave.php:
|
11209 |
msgid "Comment notify previous"
|
11210 |
msgstr "Notifier si déjà commenté"
|
11211 |
|
11212 |
-
#: wppa-settings-autosave.php:
|
11213 |
msgid "Notify users who has commented this photo earlier."
|
11214 |
msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
|
11215 |
|
11216 |
-
#: wppa-settings-autosave.php:
|
11217 |
msgid "Comment notify approved"
|
11218 |
msgstr "Commentaire Notifier approuvé"
|
11219 |
|
11220 |
-
#: wppa-settings-autosave.php:
|
11221 |
msgid "Notify photo owner of approved comment."
|
11222 |
msgstr "Aviser le propriétaire de la photo du commentaire approuvé."
|
11223 |
|
11224 |
-
#: wppa-settings-autosave.php:
|
11225 |
msgid "Com ntfy appr email content"
|
11226 |
msgstr "Contenu de l'e-mail com ntfy appr."
|
11227 |
|
11228 |
-
#: wppa-settings-autosave.php:
|
11229 |
msgid "The content of the email."
|
11230 |
msgstr "Le contenu de l’e-mail :"
|
11231 |
|
11232 |
-
#: wppa-settings-autosave.php:
|
11233 |
msgid "If you leave this blank, the default content will be used"
|
11234 |
msgstr "Si vous laissez ce champ vide, le contenu par défaut sera utilisé"
|
11235 |
|
11236 |
-
#: wppa-settings-autosave.php:
|
11237 |
msgid "The content may contain html."
|
11238 |
msgstr "Le contenu peut contenir html."
|
11239 |
|
11240 |
-
#: wppa-settings-autosave.php:
|
11241 |
msgid ""
|
11242 |
"You may use the following keywords: w#comment for the comment content, w#user "
|
11243 |
"for the commenters name and the standard photo description keywords w#name, "
|
@@ -11250,64 +11313,64 @@ msgstr ""
|
|
11250 |
"w#timestamp, w#modified, w#views, w#amx, w#amy, w#amfs, w#url, w#hrurl, "
|
11251 |
"w#tnurl, w#cc0... w#cc9, w#cd0... w#cd9."
|
11252 |
|
11253 |
-
#: wppa-settings-autosave.php:
|
11254 |
msgid "Com ntfy appr email subject"
|
11255 |
msgstr "Objet com ntfy appr sujet"
|
11256 |
|
11257 |
-
#: wppa-settings-autosave.php:
|
11258 |
msgid "The subject of the email."
|
11259 |
msgstr "Le sujet de l’e-mail."
|
11260 |
|
11261 |
-
#: wppa-settings-autosave.php:
|
11262 |
msgid "Comment ntfy added"
|
11263 |
msgstr "Indiquer commentaire ajouté"
|
11264 |
|
11265 |
-
#: wppa-settings-autosave.php:
|
11266 |
msgid "Show \"Comment added\" after successfull adding a comment."
|
11267 |
msgstr "Montrer \"Commentaire ajouté\" après l'ajout réussi d'un commentaire."
|
11268 |
|
11269 |
-
#: wppa-settings-autosave.php:
|
11270 |
msgid "ComTen alt display"
|
11271 |
msgstr "Affichage alt de ComTen"
|
11272 |
|
11273 |
-
#: wppa-settings-autosave.php:
|
11274 |
msgid "Display comments at comten thumbnails."
|
11275 |
msgstr "Afficher les commentaires aux vignettes ComTen."
|
11276 |
|
11277 |
-
#: wppa-settings-autosave.php:
|
11278 |
msgid "Comten Thumbnail width"
|
11279 |
msgstr "Largeur du widget commentaire"
|
11280 |
|
11281 |
-
#: wppa-settings-autosave.php:
|
11282 |
msgid "The width of the thumbnail in the alt comment display."
|
11283 |
msgstr "La largeur de la vignette dans l’affichage alternatif des commentaires."
|
11284 |
|
11285 |
-
#: wppa-settings-autosave.php:
|
11286 |
msgid "Pixels"
|
11287 |
msgstr "Pixels"
|
11288 |
|
11289 |
-
#: wppa-settings-autosave.php:
|
11290 |
msgid "Show smiley picker"
|
11291 |
msgstr "Montrer la bibliothèque de smiley"
|
11292 |
|
11293 |
-
#: wppa-settings-autosave.php:
|
11294 |
msgid "Display a clickable row of smileys."
|
11295 |
msgstr "Afficher une rangée de smileys cliquables."
|
11296 |
|
11297 |
-
#: wppa-settings-autosave.php:
|
11298 |
msgid "Show commenter email"
|
11299 |
msgstr "Montrer l'email du commentateur"
|
11300 |
|
11301 |
-
#: wppa-settings-autosave.php:
|
11302 |
msgid "Show the commenter's email in the notify emails."
|
11303 |
msgstr "Montrer l'email du commentateur dans les emails de notification."
|
11304 |
|
11305 |
-
#: wppa-settings-autosave.php:
|
11306 |
msgid "Shows the email address of the commenter in all notify emails."
|
11307 |
msgstr ""
|
11308 |
"Montre l'adresse de celui qui a commenté dans tous les emails de notification."
|
11309 |
|
11310 |
-
#: wppa-settings-autosave.php:
|
11311 |
msgid ""
|
11312 |
"If switched off, admin will still receive the senders email in the "
|
11313 |
"notification mail"
|
@@ -11315,107 +11378,107 @@ msgstr ""
|
|
11315 |
"Si désactivé, l'administrateur recevra quand même l'email des émetteurs dans "
|
11316 |
"la notification"
|
11317 |
|
11318 |
-
#: wppa-settings-autosave.php:
|
11319 |
msgid "The opacity of the lightbox overlay background."
|
11320 |
msgstr "L'opacité de l'arrière plan overlay de Lightbox."
|
11321 |
|
11322 |
-
#: wppa-settings-autosave.php:
|
11323 |
msgid "Click on background"
|
11324 |
msgstr "Clic sur l'arrière plan"
|
11325 |
|
11326 |
-
#: wppa-settings-autosave.php:
|
11327 |
msgid "Select the action to be taken on click on background."
|
11328 |
msgstr "Choisir l'action a effectuer lors d'un clic sur l'arrière plan."
|
11329 |
|
11330 |
-
#: wppa-settings-autosave.php:
|
11331 |
msgid "Nothing"
|
11332 |
msgstr "Rien"
|
11333 |
|
11334 |
-
#: wppa-settings-autosave.php:
|
11335 |
msgid "Exit (close)"
|
11336 |
msgstr "Sortir (fermer)"
|
11337 |
|
11338 |
-
#: wppa-settings-autosave.php:
|
11339 |
msgid "Browse (left/right)"
|
11340 |
msgstr "Naviguer (Gauche/Droite)"
|
11341 |
|
11342 |
-
#: wppa-settings-autosave.php:
|
11343 |
msgid "Overlay animation speed"
|
11344 |
msgstr "Vitesse de l'animation overlay"
|
11345 |
|
11346 |
-
#: wppa-settings-autosave.php:
|
11347 |
msgid "The fade-in time of the lightbox images"
|
11348 |
msgstr "La durée du fondu des images Lightbox"
|
11349 |
|
11350 |
-
#: wppa-settings-autosave.php:
|
11351 |
msgid "very fast (100 ms.)"
|
11352 |
msgstr "très rapide (100 ms.)"
|
11353 |
|
11354 |
-
#: wppa-settings-autosave.php:
|
11355 |
msgid "fast (200 ms.)"
|
11356 |
msgstr "rapide (200 ms.)"
|
11357 |
|
11358 |
-
#: wppa-settings-autosave.php:
|
11359 |
msgid "normal (300 ms.)"
|
11360 |
msgstr "normal (300 ms.)"
|
11361 |
|
11362 |
-
#: wppa-settings-autosave.php:
|
11363 |
msgid "slow (500 ms.)"
|
11364 |
msgstr "lent (500 ms.)"
|
11365 |
|
11366 |
-
#: wppa-settings-autosave.php:
|
11367 |
msgid "very slow (1 s.)"
|
11368 |
msgstr "Très lent (1 s.)"
|
11369 |
|
11370 |
-
#: wppa-settings-autosave.php:
|
11371 |
msgid "extremely slow (2 s.)"
|
11372 |
msgstr "extrêmement lent (2 s.)"
|
11373 |
|
11374 |
-
#: wppa-settings-autosave.php:
|
11375 |
msgid "Overlay slideshow speed"
|
11376 |
msgstr "Vitesse du diaporama overlay"
|
11377 |
|
11378 |
-
#: wppa-settings-autosave.php:
|
11379 |
msgid "The time the lightbox images stay"
|
11380 |
msgstr "La durée d’affichage des images"
|
11381 |
|
11382 |
-
#: wppa-settings-autosave.php:
|
11383 |
msgid "fast (3 s.)"
|
11384 |
msgstr "rapide (3 s.)"
|
11385 |
|
11386 |
-
#: wppa-settings-autosave.php:
|
11387 |
msgid "normal (5 s.)"
|
11388 |
msgstr "normal (5 s.)"
|
11389 |
|
11390 |
-
#: wppa-settings-autosave.php:
|
11391 |
msgid "slow (8 s.)"
|
11392 |
msgstr "lent (8 s.)"
|
11393 |
|
11394 |
-
#: wppa-settings-autosave.php:
|
11395 |
msgid "very slow (13 s.)"
|
11396 |
msgstr "Très lent (13 s.)"
|
11397 |
|
11398 |
-
#: wppa-settings-autosave.php:
|
11399 |
msgid "extremely slow (20 s.)"
|
11400 |
msgstr "extrêmement lent (20 s.)"
|
11401 |
|
11402 |
-
#: wppa-settings-autosave.php:
|
11403 |
msgid "WPPA+ Lightbox global"
|
11404 |
msgstr "WPPA+ LightBox étendu"
|
11405 |
|
11406 |
-
#: wppa-settings-autosave.php:
|
11407 |
msgid "Use the wppa+ lightbox also for non-wppa images."
|
11408 |
msgstr "Utiliser WPPA+ LightBox aussi pour les images non-WPPA."
|
11409 |
|
11410 |
-
#: wppa-settings-autosave.php:
|
11411 |
msgid "WPPA+ Lightbox global is a set"
|
11412 |
msgstr "WPPA+ LightBox étendu est une collection"
|
11413 |
|
11414 |
-
#: wppa-settings-autosave.php:
|
11415 |
msgid "Treat the other images as a set."
|
11416 |
msgstr "Traiter les images non-WPPA comme une collection."
|
11417 |
|
11418 |
-
#: wppa-settings-autosave.php:
|
11419 |
msgid ""
|
11420 |
"If checked, you can scroll through the images in the lightbox view. Requires "
|
11421 |
"item 5 to be checked."
|
@@ -11423,243 +11486,243 @@ msgstr ""
|
|
11423 |
"Si coché, vous pouvez scroller les images dans la vue LightBox. Item 5 doit "
|
11424 |
"être coché aussi."
|
11425 |
|
11426 |
-
#: wppa-settings-autosave.php:
|
11427 |
msgid "Use hires files"
|
11428 |
msgstr "Utiliser fichier haute résolution"
|
11429 |
|
11430 |
-
#: wppa-settings-autosave.php:
|
11431 |
msgid "Use the highest resolution available for lightbox."
|
11432 |
msgstr "Utiliser la résolution maxi disponible pour LightBox."
|
11433 |
|
11434 |
-
#: wppa-settings-autosave.php:
|
11435 |
msgid "Ticking this box is recommended for lightbox fullscreen modes."
|
11436 |
msgstr "Cocher cette case est recommandé pour les modes plein écran de LightBox."
|
11437 |
|
11438 |
-
#: wppa-settings-autosave.php:
|
11439 |
msgid "Videos on lightbox start automaticly."
|
11440 |
msgstr "Les vidéos dans LightBox démarrent automatiquement."
|
11441 |
|
11442 |
-
#: wppa-settings-autosave.php:
|
11443 |
msgid "Audio on lightbox start automaticly."
|
11444 |
msgstr "L'audio dans LightBox démarre automatiquement."
|
11445 |
|
11446 |
-
#: wppa-settings-autosave.php:
|
11447 |
msgid "Lightbox start mode"
|
11448 |
msgstr "Mode de démarrage de lightbox"
|
11449 |
|
11450 |
-
#: wppa-settings-autosave.php:
|
11451 |
msgid "The mode lightbox starts in."
|
11452 |
msgstr "Le mode de démarrage de lightbox."
|
11453 |
|
11454 |
-
#: wppa-settings-autosave.php:
|
11455 |
msgid "Normal"
|
11456 |
msgstr "Normale"
|
11457 |
|
11458 |
-
#: wppa-settings-autosave.php:
|
11459 |
msgid "Padded"
|
11460 |
msgstr "Padded"
|
11461 |
|
11462 |
-
#: wppa-settings-autosave.php:
|
11463 |
msgid "Stretched"
|
11464 |
msgstr "Étiré"
|
11465 |
|
11466 |
-
#: wppa-settings-autosave.php:
|
11467 |
msgid "Clipped"
|
11468 |
msgstr "Coupé"
|
11469 |
|
11470 |
-
#: wppa-settings-autosave.php:
|
11471 |
msgid "Real size"
|
11472 |
msgstr "Taille réelle"
|
11473 |
|
11474 |
-
#: wppa-settings-autosave.php:
|
11475 |
msgid "Table V:"
|
11476 |
msgstr "Table V:"
|
11477 |
|
11478 |
-
#: wppa-settings-autosave.php:
|
11479 |
msgid "Fonts:"
|
11480 |
msgstr "Polices:"
|
11481 |
|
11482 |
-
#: wppa-settings-autosave.php:
|
11483 |
msgid "This table describes the Fonts used for the wppa+ elements."
|
11484 |
msgstr ""
|
11485 |
"Cette table décrit les polices de caractère utilisées pour les éléments de WPPA"
|
11486 |
"+."
|
11487 |
|
11488 |
-
#: wppa-settings-autosave.php:
|
11489 |
msgid "Font family"
|
11490 |
msgstr "Famille de police"
|
11491 |
|
11492 |
-
#: wppa-settings-autosave.php:
|
11493 |
msgid "Font size"
|
11494 |
msgstr "Taille de la police"
|
11495 |
|
11496 |
-
#: wppa-settings-autosave.php:
|
11497 |
msgid "Font color"
|
11498 |
msgstr "Couleur de la police"
|
11499 |
|
11500 |
-
#: wppa-settings-autosave.php:
|
11501 |
msgid "Font weight"
|
11502 |
msgstr "Poids de la police"
|
11503 |
|
11504 |
-
#: wppa-settings-autosave.php:
|
11505 |
msgid "normal"
|
11506 |
msgstr "norma"
|
11507 |
|
11508 |
-
#: wppa-settings-autosave.php:
|
11509 |
msgid "bold"
|
11510 |
msgstr "gras"
|
11511 |
|
11512 |
-
#: wppa-settings-autosave.php:
|
11513 |
msgid "bolder"
|
11514 |
msgstr "plus gras"
|
11515 |
|
11516 |
-
#: wppa-settings-autosave.php:
|
11517 |
msgid "lighter"
|
11518 |
msgstr "plus fin"
|
11519 |
|
11520 |
-
#: wppa-settings-autosave.php:
|
11521 |
msgid "Album titles"
|
11522 |
msgstr "Titres albums"
|
11523 |
|
11524 |
-
#: wppa-settings-autosave.php:
|
11525 |
msgid "Font used for Album titles."
|
11526 |
msgstr "Police utilisée pour les titres d'album."
|
11527 |
|
11528 |
-
#: wppa-settings-autosave.php:
|
11529 |
msgid "Enter font name, size, color and weight for album cover titles."
|
11530 |
msgstr ""
|
11531 |
"Entrer le nom de la police, taille, couleur et poids pour les titres de "
|
11532 |
"couverture des albums."
|
11533 |
|
11534 |
-
#: wppa-settings-autosave.php:
|
11535 |
msgid "Slideshow desc"
|
11536 |
msgstr "Description du diaporama"
|
11537 |
|
11538 |
-
#: wppa-settings-autosave.php:
|
11539 |
msgid "Font for slideshow photo descriptions."
|
11540 |
msgstr "Police pour la description des photos."
|
11541 |
|
11542 |
-
#: wppa-settings-autosave.php:
|
11543 |
msgid "Enter font name, size, color and weight for slideshow photo descriptions."
|
11544 |
msgstr ""
|
11545 |
"Entrer le nom de la police, taille, couleur et poids pour les descriptions des "
|
11546 |
"photo de diaporama."
|
11547 |
|
11548 |
-
#: wppa-settings-autosave.php:
|
11549 |
msgid "Slideshow name"
|
11550 |
msgstr "Nom du diaporama"
|
11551 |
|
11552 |
-
#: wppa-settings-autosave.php:
|
11553 |
msgid "Font for slideshow photo names."
|
11554 |
msgstr "Police pour le nom des photos du diaporama."
|
11555 |
|
11556 |
-
#: wppa-settings-autosave.php:
|
11557 |
msgid "Enter font name, size, color and weight for slideshow photo names."
|
11558 |
msgstr ""
|
11559 |
"Entrer le nom de la police, taille, couleur et poids pour les noms de photo de "
|
11560 |
"diaporama."
|
11561 |
|
11562 |
-
#: wppa-settings-autosave.php:
|
11563 |
msgid "Navigations"
|
11564 |
msgstr "Navigations"
|
11565 |
|
11566 |
-
#: wppa-settings-autosave.php:
|
11567 |
msgid "Font for navigations."
|
11568 |
msgstr "Police pour navigations."
|
11569 |
|
11570 |
-
#: wppa-settings-autosave.php:
|
11571 |
msgid "Enter font name, size, color and weight for navigation items."
|
11572 |
msgstr ""
|
11573 |
"Entrer le nom de la police, taille, couleur et poids pour les items de "
|
11574 |
"navigation."
|
11575 |
|
11576 |
-
#: wppa-settings-autosave.php:
|
11577 |
msgid "Font for text under thumbnails."
|
11578 |
msgstr "Police pour les textes sous les vignettes."
|
11579 |
|
11580 |
-
#: wppa-settings-autosave.php:
|
11581 |
msgid "Enter font name, size, color and weight for text under thumbnail images."
|
11582 |
msgstr ""
|
11583 |
"Entrer le nom de la police, taille, couleur et poids pour le texte sous les "
|
11584 |
"vignettes."
|
11585 |
|
11586 |
-
#: wppa-settings-autosave.php:
|
11587 |
msgid "General font in wppa boxes."
|
11588 |
msgstr "Police générique dans les boîtes WPPA."
|
11589 |
|
11590 |
-
#: wppa-settings-autosave.php:
|
11591 |
msgid "Enter font name, size, color and weight for all other items."
|
11592 |
msgstr ""
|
11593 |
"Entrer le nom de la police, taille, couleur et poids pour les autres items."
|
11594 |
|
11595 |
-
#: wppa-settings-autosave.php:
|
11596 |
msgid "Font in wppa number bars."
|
11597 |
msgstr "Police dans les bars de numéro wppa."
|
11598 |
|
11599 |
-
#: wppa-settings-autosave.php:
|
11600 |
msgid "Enter font name, size, color and weight for numberbar navigation."
|
11601 |
msgstr ""
|
11602 |
"Entrez le nom de la police, taille, couleur et poids pour numberbar navigation."
|
11603 |
|
11604 |
-
#: wppa-settings-autosave.php:
|
11605 |
msgid "Numbar Active"
|
11606 |
msgstr "Numbar activée"
|
11607 |
|
11608 |
-
#: wppa-settings-autosave.php:
|
11609 |
msgid "Font in wppa number bars, active item."
|
11610 |
msgstr "Police en wppa nombre barres, élément actif."
|
11611 |
|
11612 |
-
#: wppa-settings-autosave.php:
|
11613 |
msgid "Font in wppa lightbox overlays."
|
11614 |
msgstr "Police en wppa lightbox superpositions."
|
11615 |
|
11616 |
-
#: wppa-settings-autosave.php:
|
11617 |
msgid "Enter font name, size, color and weight for wppa lightbox overlays."
|
11618 |
msgstr ""
|
11619 |
"Entrez le nom de police, taille, couleur et poids pour les superpositions de "
|
11620 |
"lightbox wppa."
|
11621 |
|
11622 |
-
#: wppa-settings-autosave.php:
|
11623 |
msgid "Table VI:"
|
11624 |
msgstr "Table VI:"
|
11625 |
|
11626 |
-
#: wppa-settings-autosave.php:
|
11627 |
msgid "Links:"
|
11628 |
msgstr "Liens:"
|
11629 |
|
11630 |
-
#: wppa-settings-autosave.php:
|
11631 |
msgid "This table defines the link types and pages."
|
11632 |
msgstr "Ce table définit les types de liens et les pages."
|
11633 |
|
11634 |
-
#: wppa-settings-autosave.php:
|
11635 |
msgid "Link page"
|
11636 |
msgstr "Page lien"
|
11637 |
|
11638 |
-
#: wppa-settings-autosave.php:
|
11639 |
msgid "Photo specific link overrules"
|
11640 |
msgstr "Lien photo annule"
|
11641 |
|
11642 |
-
#: wppa-settings-autosave.php:
|
11643 |
msgid "PSO"
|
11644 |
msgstr "PSO"
|
11645 |
|
11646 |
-
#: wppa-settings-autosave.php:
|
11647 |
msgid "Links from images in WPPA+ Widgets"
|
11648 |
msgstr "Liens des images dans les Widgets WPPA +"
|
11649 |
|
11650 |
-
#: wppa-settings-autosave.php:
|
11651 |
msgid "PotdWidget"
|
11652 |
msgstr "Widget Photo du jour"
|
11653 |
|
11654 |
-
#: wppa-settings-autosave.php:
|
11655 |
msgid "Photo Of The Day widget link."
|
11656 |
msgstr "Lien de widget photo du jour."
|
11657 |
|
11658 |
-
#: wppa-settings-autosave.php:
|
11659 |
msgid "Select the type of link the photo of the day points to."
|
11660 |
msgstr "Sélectionnez le type de lien la photo du jour pointe vers."
|
11661 |
|
11662 |
-
#: wppa-settings-autosave.php:
|
11663 |
msgid ""
|
11664 |
"If you select 'defined on widget admin page' you can manually enter a link and "
|
11665 |
"title on the Photo of the day Widget Admin page."
|
@@ -11668,245 +11731,245 @@ msgstr ""
|
|
11668 |
"entrer manuellement un lien et un titre sur la page d’Admin de Widget de la "
|
11669 |
"Photo de jour."
|
11670 |
|
11671 |
-
#: wppa-settings-autosave.php:
|
11672 |
-
#: wppa-settings-autosave.php:
|
11673 |
-
#: wppa-settings-autosave.php:
|
11674 |
-
#: wppa-settings-autosave.php:
|
11675 |
-
#: wppa-settings-autosave.php:
|
11676 |
-
#: wppa-settings-autosave.php:
|
11677 |
-
#: wppa-settings-autosave.php:
|
11678 |
msgid "no link at all."
|
11679 |
msgstr "pas de lien du tout."
|
11680 |
|
11681 |
-
#: wppa-settings-autosave.php:
|
11682 |
-
#: wppa-settings-autosave.php:
|
11683 |
-
#: wppa-settings-autosave.php:
|
11684 |
-
#: wppa-settings-autosave.php:
|
11685 |
-
#: wppa-settings-autosave.php:
|
11686 |
-
#: wppa-settings-autosave.php:
|
11687 |
-
#: wppa-settings-autosave.php:
|
11688 |
msgid "the plain photo (file)."
|
11689 |
msgstr "la photo originale (fichier)."
|
11690 |
|
11691 |
-
#: wppa-settings-autosave.php:
|
11692 |
msgid "defined on widget admin page."
|
11693 |
msgstr "réglages sur la page d'admin des widgets."
|
11694 |
|
11695 |
-
#: wppa-settings-autosave.php:
|
11696 |
-
#: wppa-settings-autosave.php:
|
11697 |
-
#: wppa-settings-autosave.php:
|
11698 |
msgid "the content of the album."
|
11699 |
msgstr "le contenu de l'album."
|
11700 |
|
11701 |
-
#: wppa-settings-autosave.php:
|
11702 |
-
#: wppa-settings-autosave.php:
|
11703 |
-
#: wppa-settings-autosave.php:
|
11704 |
-
#: wppa-settings-autosave.php:
|
11705 |
-
#: wppa-settings-autosave.php:
|
11706 |
-
#: wppa-settings-autosave.php:
|
11707 |
msgid "the full size photo in a slideshow."
|
11708 |
msgstr "la photo pleine grandeur dans un diaporama."
|
11709 |
|
11710 |
-
#: wppa-settings-autosave.php:
|
11711 |
-
#: wppa-settings-autosave.php:
|
11712 |
-
#: wppa-settings-autosave.php:
|
11713 |
-
#: wppa-settings-autosave.php:
|
11714 |
-
#: wppa-settings-autosave.php:
|
11715 |
-
#: wppa-settings-autosave.php:
|
11716 |
msgid "the fullsize photo on its own."
|
11717 |
msgstr "la photo pleine grandeur à lui seul."
|
11718 |
|
11719 |
-
#: wppa-settings-autosave.php:
|
11720 |
-
#: wppa-settings-autosave.php:
|
11721 |
-
#: wppa-settings-autosave.php:
|
11722 |
-
#: wppa-settings-autosave.php:
|
11723 |
-
#: wppa-settings-autosave.php:
|
11724 |
msgid "a plain page without a querystring."
|
11725 |
msgstr "une simple page sans une querystring."
|
11726 |
|
11727 |
-
#: wppa-settings-autosave.php:
|
11728 |
-
#: wppa-settings-autosave.php:
|
11729 |
-
#: wppa-settings-autosave.php:
|
11730 |
-
#: wppa-settings-autosave.php:
|
11731 |
-
#: wppa-settings-autosave.php:
|
11732 |
-
#: wppa-settings-autosave.php:
|
11733 |
-
#: wppa-settings-autosave.php:
|
11734 |
msgid "lightbox."
|
11735 |
msgstr "lightbox."
|
11736 |
|
11737 |
-
#: wppa-settings-autosave.php:
|
11738 |
msgid "SlideWidget"
|
11739 |
msgstr "Widget Slide"
|
11740 |
|
11741 |
-
#: wppa-settings-autosave.php:
|
11742 |
msgid "Slideshow widget photo link."
|
11743 |
msgstr "Lien diaporama widget photo."
|
11744 |
|
11745 |
-
#: wppa-settings-autosave.php:
|
11746 |
msgid "Select the type of link the slideshow photos point to."
|
11747 |
msgstr "Sélectionnez le type de lien, vers que les photos du diaporama pointent."
|
11748 |
|
11749 |
-
#: wppa-settings-autosave.php:
|
11750 |
msgid "defined at widget activation."
|
11751 |
msgstr "défini à l'activation du widget."
|
11752 |
|
11753 |
-
#: wppa-settings-autosave.php:
|
11754 |
msgid "Album widget"
|
11755 |
msgstr "Widget Album"
|
11756 |
|
11757 |
-
#: wppa-settings-autosave.php:
|
11758 |
msgid "Album widget thumbnail link"
|
11759 |
msgstr "Lien miniature de widget album"
|
11760 |
|
11761 |
-
#: wppa-settings-autosave.php:
|
11762 |
msgid "Select the type of link the album widget photos point to."
|
11763 |
msgstr ""
|
11764 |
"Sélectionnez le type de lien, vers que les photos de widget album pointent."
|
11765 |
|
11766 |
-
#: wppa-settings-autosave.php:
|
11767 |
msgid "subalbums and thumbnails."
|
11768 |
msgstr "sous-albums et miniatures."
|
11769 |
|
11770 |
-
#: wppa-settings-autosave.php:
|
11771 |
msgid "slideshow."
|
11772 |
msgstr "diaporama."
|
11773 |
|
11774 |
-
#: wppa-settings-autosave.php:
|
11775 |
msgid "ThumbnailWidget"
|
11776 |
msgstr "Widget vignettes"
|
11777 |
|
11778 |
-
#: wppa-settings-autosave.php:
|
11779 |
msgid "Thumbnail widget photo link."
|
11780 |
msgstr "Lien de widget vignette de photo."
|
11781 |
|
11782 |
-
#: wppa-settings-autosave.php:
|
11783 |
msgid "Select the type of link the thumbnail photos point to."
|
11784 |
msgstr "Sélectionnez le type de lien vers que les photos miniatures pointent."
|
11785 |
|
11786 |
-
#: wppa-settings-autosave.php:
|
11787 |
-
#: wppa-settings-autosave.php:
|
11788 |
-
#: wppa-settings-autosave.php:
|
11789 |
msgid "the single photo in the style of a slideshow."
|
11790 |
msgstr "Une photo seule avec le style du diaporama"
|
11791 |
|
11792 |
-
#: wppa-settings-autosave.php:
|
11793 |
-
#: wppa-settings-autosave.php:
|
11794 |
-
#: wppa-settings-autosave.php:
|
11795 |
-
#: wppa-settings-autosave.php:
|
11796 |
msgid "the fs photo with download and print buttons."
|
11797 |
msgstr "la photo de fs avec téléchargement et boutons d’impression."
|
11798 |
|
11799 |
-
#: wppa-settings-autosave.php:
|
11800 |
msgid "TopTenWidget"
|
11801 |
msgstr "Widget TopTen"
|
11802 |
|
11803 |
-
#: wppa-settings-autosave.php:
|
11804 |
msgid "TopTen widget photo link."
|
11805 |
msgstr "Lien TopTen widget photo."
|
11806 |
|
11807 |
-
#: wppa-settings-autosave.php:
|
11808 |
msgid "Select the type of link the top ten photos point to."
|
11809 |
msgstr "Sélectionnez le type de lien, vers que les photos de topten pointent."
|
11810 |
|
11811 |
-
#: wppa-settings-autosave.php:
|
11812 |
msgid "the content of the virtual topten album."
|
11813 |
msgstr "le contenu de l’album virtuel topten."
|
11814 |
|
11815 |
-
#: wppa-settings-autosave.php:
|
11816 |
-
#: wppa-settings-autosave.php:
|
11817 |
msgid "the content of the thumbnails album."
|
11818 |
msgstr "le contenu de l’album de vignettes."
|
11819 |
|
11820 |
-
#: wppa-settings-autosave.php:
|
11821 |
msgid "LasTenWidget"
|
11822 |
msgstr "Widget LastTen"
|
11823 |
|
11824 |
-
#: wppa-settings-autosave.php:
|
11825 |
msgid "Last Ten widget photo link."
|
11826 |
msgstr "Last Ten lien de widget photo."
|
11827 |
|
11828 |
-
#: wppa-settings-autosave.php:
|
11829 |
msgid "Select the type of link the last ten photos point to."
|
11830 |
msgstr ""
|
11831 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
11832 |
|
11833 |
-
#: wppa-settings-autosave.php:
|
11834 |
#, fuzzy
|
11835 |
msgid "the content of the virtual lasten album."
|
11836 |
msgstr "le contenu de l'album lasten virtuel."
|
11837 |
|
11838 |
-
#: wppa-settings-autosave.php:
|
11839 |
msgid "CommentWidget"
|
11840 |
msgstr "Widget Comment"
|
11841 |
|
11842 |
-
#: wppa-settings-autosave.php:
|
11843 |
msgid "Comment widget photo link."
|
11844 |
msgstr "Lien vers le commentaire widget photo."
|
11845 |
|
11846 |
-
#: wppa-settings-autosave.php:
|
11847 |
#, fuzzy
|
11848 |
msgid "Select the type of link the comment widget photos point to."
|
11849 |
msgstr ""
|
11850 |
"Sélectionnez le type de lien les commentaires des photos de widget indiquent."
|
11851 |
|
11852 |
-
#: wppa-settings-autosave.php:
|
11853 |
#, fuzzy
|
11854 |
msgid "the content of the virtual comten album."
|
11855 |
msgstr "le contenu de l'album comten virtuel."
|
11856 |
|
11857 |
-
#: wppa-settings-autosave.php:
|
11858 |
msgid "FeaTenWidget"
|
11859 |
msgstr "Widget FeaTen"
|
11860 |
|
11861 |
-
#: wppa-settings-autosave.php:
|
11862 |
msgid "FeaTen widget photo link."
|
11863 |
msgstr "FeaTen lien photo widget."
|
11864 |
|
11865 |
-
#: wppa-settings-autosave.php:
|
11866 |
#, fuzzy
|
11867 |
msgid "Select the type of link the featured ten photos point to."
|
11868 |
msgstr ""
|
11869 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
11870 |
|
11871 |
-
#: wppa-settings-autosave.php:
|
11872 |
#, fuzzy
|
11873 |
msgid "the content of the virtual featen album."
|
11874 |
msgstr "le contenu de l'album featen virtuel."
|
11875 |
|
11876 |
-
#: wppa-settings-autosave.php:
|
11877 |
#, fuzzy
|
11878 |
msgid "Links from other WPPA+ images"
|
11879 |
msgstr "Liens à partir d'autres LPPT images"
|
11880 |
|
11881 |
-
#: wppa-settings-autosave.php:
|
11882 |
msgid "Cover Image"
|
11883 |
msgstr "Image de couverture"
|
11884 |
|
11885 |
-
#: wppa-settings-autosave.php:
|
11886 |
#, fuzzy
|
11887 |
msgid "The link from the cover image of an album."
|
11888 |
msgstr "Le lien de l'image de couverture d'un album."
|
11889 |
|
11890 |
-
#: wppa-settings-autosave.php:
|
11891 |
#, fuzzy
|
11892 |
msgid "Select the type of link the coverphoto points to."
|
11893 |
msgstr "Sélectionnez le type de lien les points de Photo de couverture."
|
11894 |
|
11895 |
-
#: wppa-settings-autosave.php:
|
11896 |
#, fuzzy
|
11897 |
msgid "The link from the album title can be configured on the Edit Album page."
|
11898 |
msgstr ""
|
11899 |
"Le lien entre le titre de l'album peut être configuré sur la page Modifier "
|
11900 |
"l'album."
|
11901 |
|
11902 |
-
#: wppa-settings-autosave.php:
|
11903 |
#, fuzzy
|
11904 |
msgid "This link will be used for the photo also if you select: same as title."
|
11905 |
msgstr ""
|
11906 |
"Ce lien sera utilisé pour la photo aussi si vous sélectionnez: même que le "
|
11907 |
"titre."
|
11908 |
|
11909 |
-
#: wppa-settings-autosave.php:
|
11910 |
#, fuzzy
|
11911 |
msgid ""
|
11912 |
"If you specify New Tab on this line, all links from the cover will open a new "
|
@@ -11915,34 +11978,34 @@ msgstr ""
|
|
11915 |
"Si vous spécifiez un nouvel onglet sur cette ligne, tous les liens de la "
|
11916 |
"couverture va ouvrir un nouvel onglet,"
|
11917 |
|
11918 |
-
#: wppa-settings-autosave.php:
|
11919 |
msgid "except when Ajax is activated on Table IV-A1."
|
11920 |
msgstr "sauf si Ajax est activé sur la Table IV-A1."
|
11921 |
|
11922 |
-
#: wppa-settings-autosave.php:
|
11923 |
msgid "same as title."
|
11924 |
msgstr "identique au titre."
|
11925 |
|
11926 |
-
#: wppa-settings-autosave.php:
|
11927 |
msgid "a slideshow starting at the photo"
|
11928 |
msgstr "un diaporama à partir de la photo"
|
11929 |
|
11930 |
-
#: wppa-settings-autosave.php:
|
11931 |
msgid "Thumbnail"
|
11932 |
msgstr "Vignette"
|
11933 |
|
11934 |
-
#: wppa-settings-autosave.php:
|
11935 |
msgid "Thumbnail link."
|
11936 |
msgstr "Lien vignette."
|
11937 |
|
11938 |
-
#: wppa-settings-autosave.php:
|
11939 |
-
#: wppa-settings-autosave.php:
|
11940 |
#, fuzzy
|
11941 |
msgid "Select the type of link you want, or no link at all."
|
11942 |
msgstr "Sélectionnez le type de lien que vous voulez, ou pas de lien du tout."
|
11943 |
|
11944 |
-
#: wppa-settings-autosave.php:
|
11945 |
-
#: wppa-settings-autosave.php:
|
11946 |
#, fuzzy
|
11947 |
msgid ""
|
11948 |
"If you select the fullsize photo on its own, it will be stretched to fit, "
|
@@ -11951,8 +12014,8 @@ msgstr ""
|
|
11951 |
"Si vous sélectionnez la photo fullsize sur son propre, elle sera étirée pour "
|
11952 |
"tenir, indépendamment de ce paramètre."
|
11953 |
|
11954 |
-
#: wppa-settings-autosave.php:
|
11955 |
-
#: wppa-settings-autosave.php:
|
11956 |
#, fuzzy, php-format
|
11957 |
msgid ""
|
11958 |
"Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
|
@@ -11961,33 +12024,33 @@ msgstr ""
|
|
11961 |
"Notez qu'une page doit avoir au moins %% LPPT %% ou [LPPT] [/ LPPT] dans son "
|
11962 |
"contenu pour afficher la photo (s)."
|
11963 |
|
11964 |
-
#: wppa-settings-autosave.php:
|
11965 |
msgid "Auto Page"
|
11966 |
msgstr "Page auto"
|
11967 |
|
11968 |
-
#: wppa-settings-autosave.php:
|
11969 |
msgid "Sphoto"
|
11970 |
msgstr "Sphoto"
|
11971 |
|
11972 |
-
#: wppa-settings-autosave.php:
|
11973 |
msgid "Single photo link."
|
11974 |
msgstr "Lien photo unique"
|
11975 |
|
11976 |
-
#: wppa-settings-autosave.php:
|
11977 |
msgid "Mphoto"
|
11978 |
msgstr "Mphoto"
|
11979 |
|
11980 |
-
#: wppa-settings-autosave.php:
|
11981 |
#, fuzzy
|
11982 |
msgid "Media-like photo link."
|
11983 |
msgstr "Media-comme lien de photo."
|
11984 |
|
11985 |
-
#: wppa-settings-autosave.php:
|
11986 |
#, fuzzy
|
11987 |
msgid "Slideshow fullsize link"
|
11988 |
msgstr "lien fullsize Diaporama"
|
11989 |
|
11990 |
-
#: wppa-settings-autosave.php:
|
11991 |
#, fuzzy
|
11992 |
msgid ""
|
11993 |
"You can overrule lightbox but not big browse buttons with the photo specifc "
|
@@ -11996,242 +12059,242 @@ msgstr ""
|
|
11996 |
"Vous pouvez annuler lightbox mais pas de gros boutons de navigation avec le "
|
11997 |
"lien de photo specifc."
|
11998 |
|
11999 |
-
#: wppa-settings-autosave.php:
|
12000 |
msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
|
12001 |
msgstr ""
|
12002 |
"Diaporama plein écran peut être définie seulement par le shortcode WPPA_SET."
|
12003 |
|
12004 |
-
#: wppa-settings-autosave.php:
|
12005 |
#, fuzzy
|
12006 |
msgid "lightbox single photos."
|
12007 |
msgstr "lightbox des photos simples."
|
12008 |
|
12009 |
-
#: wppa-settings-autosave.php:
|
12010 |
msgid "the thumbnails."
|
12011 |
msgstr "les vignettes."
|
12012 |
|
12013 |
-
#: wppa-settings-autosave.php:
|
12014 |
msgid "fullsize slideshow"
|
12015 |
msgstr "diaporama fullsize"
|
12016 |
|
12017 |
-
#: wppa-settings-autosave.php:
|
12018 |
msgid "Film linktype"
|
12019 |
msgstr "Film linktype"
|
12020 |
|
12021 |
-
#: wppa-settings-autosave.php:
|
12022 |
msgid "Direct access goto image in:"
|
12023 |
msgstr "Accès direct à l'image dans:"
|
12024 |
|
12025 |
-
#: wppa-settings-autosave.php:
|
12026 |
#, fuzzy
|
12027 |
msgid "Select the action to be taken when the user clicks on a filmstrip image."
|
12028 |
msgstr ""
|
12029 |
"Sélectionnez l'action à prendre lorsque l'utilisateur clique sur une image de "
|
12030 |
"pellicule."
|
12031 |
|
12032 |
-
#: wppa-settings-autosave.php:
|
12033 |
msgid "slideshow window"
|
12034 |
msgstr "fenêtre de diaporama"
|
12035 |
|
12036 |
-
#: wppa-settings-autosave.php:
|
12037 |
msgid "lightbox overlay"
|
12038 |
msgstr "superposition de lightbox"
|
12039 |
|
12040 |
-
#: wppa-settings-autosave.php:
|
12041 |
msgid "Other links"
|
12042 |
msgstr "Autres liens"
|
12043 |
|
12044 |
-
#: wppa-settings-autosave.php:
|
12045 |
msgid "Download Link (aka Art Monkey link)"
|
12046 |
msgstr "Lien de élécharger (le lien Art Monkey)"
|
12047 |
|
12048 |
-
#: wppa-settings-autosave.php:
|
12049 |
#, fuzzy
|
12050 |
msgid "Makes the photo name a download button."
|
12051 |
msgstr "Fait nommer la photo un bouton de téléchargement."
|
12052 |
|
12053 |
-
#: wppa-settings-autosave.php:
|
12054 |
#, fuzzy
|
12055 |
msgid "Link Photo name in slideshow to file or zip with photoname as filename."
|
12056 |
msgstr ""
|
12057 |
"Lien photo nom dans le diaporama à déposer ou zip avec photoname comme nom de "
|
12058 |
"fichier."
|
12059 |
|
12060 |
-
#: wppa-settings-autosave.php:
|
12061 |
msgid "image file"
|
12062 |
msgstr "fichier d' image"
|
12063 |
|
12064 |
-
#: wppa-settings-autosave.php:
|
12065 |
msgid "zipped image"
|
12066 |
msgstr "image compressée"
|
12067 |
|
12068 |
-
#: wppa-settings-autosave.php:
|
12069 |
msgid "Art Monkey Source"
|
12070 |
msgstr "'Art monkey' Source"
|
12071 |
|
12072 |
-
#: wppa-settings-autosave.php:
|
12073 |
#, fuzzy
|
12074 |
msgid "Use Source file for art monkey link if available."
|
12075 |
msgstr "Utilisez le fichier source pour le lien art de singe si disponible."
|
12076 |
|
12077 |
-
#: wppa-settings-autosave.php:
|
12078 |
msgid "Art Monkey Display"
|
12079 |
msgstr "Affichage d'Art Monkey"
|
12080 |
|
12081 |
-
#: wppa-settings-autosave.php:
|
12082 |
#, fuzzy
|
12083 |
msgid "Select button or link ( text )."
|
12084 |
msgstr "Sélectionnez le bouton ou le lien (texte)."
|
12085 |
|
12086 |
-
#: wppa-settings-autosave.php:
|
12087 |
msgid "Textlink"
|
12088 |
msgstr "Lien texte"
|
12089 |
|
12090 |
-
#: wppa-settings-autosave.php:
|
12091 |
#, fuzzy
|
12092 |
msgid "Popup Download Link"
|
12093 |
msgstr "Popup Lien de téléchargement"
|
12094 |
|
12095 |
-
#: wppa-settings-autosave.php:
|
12096 |
msgid "Configure the download link on fullsize popups."
|
12097 |
msgstr "Configurer le lien de téléchargement sur fullsize popups."
|
12098 |
|
12099 |
-
#: wppa-settings-autosave.php:
|
12100 |
#, fuzzy
|
12101 |
msgid "Link fullsize popup download button to either image or zip file."
|
12102 |
msgstr ""
|
12103 |
"Lien fullsize contextuel téléchargement bouton pour l'autre image ou d'un "
|
12104 |
"fichier zip."
|
12105 |
|
12106 |
-
#: wppa-settings-autosave.php:
|
12107 |
msgid "Download link on lightbox"
|
12108 |
msgstr "Lien de télécharger au lightbox"
|
12109 |
|
12110 |
-
#: wppa-settings-autosave.php:
|
12111 |
msgid "Art monkey link on lightbox photo names."
|
12112 |
msgstr "Lien de 'Art monkey' sur les noms de photo lightbox."
|
12113 |
|
12114 |
-
#: wppa-settings-autosave.php:
|
12115 |
msgid "Album download link"
|
12116 |
msgstr "Lien de téléchargement de l'album"
|
12117 |
|
12118 |
-
#: wppa-settings-autosave.php:
|
12119 |
#, fuzzy
|
12120 |
msgid "Place an album download link on the album covers"
|
12121 |
msgstr "Placez un lien album de téléchargement sur les pochettes d'albums"
|
12122 |
|
12123 |
-
#: wppa-settings-autosave.php:
|
12124 |
msgid "Creates a download zipfile containing the photos of the album"
|
12125 |
msgstr "Créer un fichier de téléchargement zip contenant les photos de l’album"
|
12126 |
|
12127 |
-
#: wppa-settings-autosave.php:
|
12128 |
msgid "Album download Source"
|
12129 |
msgstr "Télécharger l’album Source"
|
12130 |
|
12131 |
-
#: wppa-settings-autosave.php:
|
12132 |
#, fuzzy
|
12133 |
msgid "Use Source file for album download link if available."
|
12134 |
msgstr ""
|
12135 |
"Utilisez le fichier source pour l'album lien de téléchargement si disponible."
|
12136 |
|
12137 |
-
#: wppa-settings-autosave.php:
|
12138 |
msgid "Tagcloud Link"
|
12139 |
msgstr "Lien Tagcloud"
|
12140 |
|
12141 |
-
#: wppa-settings-autosave.php:
|
12142 |
msgid "Configure the link from the tags in the tag cloud."
|
12143 |
msgstr "Configurer le lien entre les balises dans le nuage de balises."
|
12144 |
|
12145 |
-
#: wppa-settings-autosave.php:
|
12146 |
#, fuzzy
|
12147 |
msgid "Link the tag words to ether the thumbnails or the slideshow."
|
12148 |
msgstr "Lier les mots d'étiquette à l'éther les vignettes ou le diaporama."
|
12149 |
|
12150 |
-
#: wppa-settings-autosave.php:
|
12151 |
-
#: wppa-settings-autosave.php:
|
12152 |
msgid "slideshow"
|
12153 |
msgstr "diaporama"
|
12154 |
|
12155 |
-
#: wppa-settings-autosave.php:
|
12156 |
-
#: wppa-settings-autosave.php:
|
12157 |
#, fuzzy
|
12158 |
msgid "Occur"
|
12159 |
msgstr "avoir lieu"
|
12160 |
|
12161 |
-
#: wppa-settings-autosave.php:
|
12162 |
msgid "Multitag Link"
|
12163 |
msgstr "Lien Multitag"
|
12164 |
|
12165 |
-
#: wppa-settings-autosave.php:
|
12166 |
msgid "Configure the link from the multitag selection."
|
12167 |
msgstr "Configurer la liaison de la sélection multibalises."
|
12168 |
|
12169 |
-
#: wppa-settings-autosave.php:
|
12170 |
#, fuzzy
|
12171 |
msgid "Link to ether the thumbnails or the slideshow."
|
12172 |
msgstr "Lien vers l'éther les vignettes ou le diaporama."
|
12173 |
|
12174 |
-
#: wppa-settings-autosave.php:
|
12175 |
msgid "Super View Landing"
|
12176 |
msgstr "Destination Superview"
|
12177 |
|
12178 |
-
#: wppa-settings-autosave.php:
|
12179 |
#, fuzzy
|
12180 |
msgid "The landing page for the Super View widget."
|
12181 |
msgstr "La page d'atterrissage pour le widget Super View."
|
12182 |
|
12183 |
-
#: wppa-settings-autosave.php:
|
12184 |
msgid "Defined by the visitor"
|
12185 |
msgstr "Défini par le visiteur"
|
12186 |
|
12187 |
-
#: wppa-settings-autosave.php:
|
12188 |
msgid "Uploader Landing"
|
12189 |
msgstr "Destination du chargement"
|
12190 |
|
12191 |
-
#: wppa-settings-autosave.php:
|
12192 |
#, fuzzy
|
12193 |
msgid "Select the landing page for the Uploader Widget"
|
12194 |
msgstr "Sélectionnez la page de destination pour le Uploader Widget"
|
12195 |
|
12196 |
-
#: wppa-settings-autosave.php:
|
12197 |
msgid "Bestof Landing"
|
12198 |
msgstr "Atterrissage de bestof"
|
12199 |
|
12200 |
-
#: wppa-settings-autosave.php:
|
12201 |
#, fuzzy
|
12202 |
msgid "Select the landing page for the BestOf Widget / Box"
|
12203 |
msgstr "Sélectionnez la page de destination pour le BestOf Widget / Box"
|
12204 |
|
12205 |
-
#: wppa-settings-autosave.php:
|
12206 |
msgid "Album navigator Link"
|
12207 |
msgstr "Navigator album lien"
|
12208 |
|
12209 |
-
#: wppa-settings-autosave.php:
|
12210 |
#, fuzzy
|
12211 |
msgid "Select link type and page for the Album navigator Widget"
|
12212 |
msgstr "Sélectionnez le type de lien et page pour l'album navigateur Widget"
|
12213 |
|
12214 |
-
#: wppa-settings-autosave.php:
|
12215 |
#, fuzzy
|
12216 |
msgid "Supersearch Landing"
|
12217 |
msgstr "Landing Supersearch"
|
12218 |
|
12219 |
-
#: wppa-settings-autosave.php:
|
12220 |
#, fuzzy
|
12221 |
msgid "Select the landing page for the Supersearch Box"
|
12222 |
msgstr "Sélectionnez la page de destination pour le Box Supersearch"
|
12223 |
|
12224 |
-
#: wppa-settings-autosave.php:
|
12225 |
#, fuzzy
|
12226 |
msgid "SM widget return"
|
12227 |
msgstr "SM retour widget"
|
12228 |
|
12229 |
-
#: wppa-settings-autosave.php:
|
12230 |
#, fuzzy
|
12231 |
msgid "Select the return link for social media from widgets"
|
12232 |
msgstr "Sélectionnez le lien de retour pour les médias sociaux de widgets"
|
12233 |
|
12234 |
-
#: wppa-settings-autosave.php:
|
12235 |
#, fuzzy
|
12236 |
msgid ""
|
12237 |
"If you select Landing page, and it wont work, it may be required to set the "
|
@@ -12241,7 +12304,7 @@ msgstr ""
|
|
12241 |
"peut être nécessaire de fixer le ÉCLATENT au numéro de séquence du shortcode "
|
12242 |
"d'atterrissage sur la page."
|
12243 |
|
12244 |
-
#: wppa-settings-autosave.php:
|
12245 |
#, fuzzy
|
12246 |
msgid ""
|
12247 |
"Normally it is 1, but you can try 2 etc. Always create a new shared link to "
|
@@ -12250,15 +12313,15 @@ msgstr ""
|
|
12250 |
"Normalement, il est 1, mais vous pouvez essayer 2, etc. Toujours créer un "
|
12251 |
"nouveau lien partagé pour tester un réglage."
|
12252 |
|
12253 |
-
#: wppa-settings-autosave.php:
|
12254 |
msgid "Home page"
|
12255 |
msgstr "Page d'accueil"
|
12256 |
|
12257 |
-
#: wppa-settings-autosave.php:
|
12258 |
msgid "Album cover subalbums link"
|
12259 |
msgstr "Lien de sous-albums à la couverture de l’album"
|
12260 |
|
12261 |
-
#: wppa-settings-autosave.php:
|
12262 |
#, fuzzy
|
12263 |
msgid ""
|
12264 |
"Select the linktype and display type for sub-albums on parent album covers."
|
@@ -12266,70 +12329,70 @@ msgstr ""
|
|
12266 |
"Sélectionnez le linktype et le type d'affichage pour les sous-albums sur "
|
12267 |
"l'album de parent couvertures."
|
12268 |
|
12269 |
-
#: wppa-settings-autosave.php:
|
12270 |
msgid "No link at all"
|
12271 |
msgstr "Pas de lien du tout"
|
12272 |
|
12273 |
-
#: wppa-settings-autosave.php:
|
12274 |
msgid "Thumbnails and covers"
|
12275 |
msgstr "Vignettes et couvertures"
|
12276 |
|
12277 |
-
#: wppa-settings-autosave.php:
|
12278 |
msgid "Slideshow or covers"
|
12279 |
msgstr "Diaporama et couvertures"
|
12280 |
|
12281 |
-
#: wppa-settings-autosave.php:
|
12282 |
msgid "No display at all"
|
12283 |
msgstr "Pas d'afficahge du tout"
|
12284 |
|
12285 |
-
#: wppa-settings-autosave.php:
|
12286 |
msgid "A list with sub(sub) albums"
|
12287 |
msgstr "Une liste avec sub(sub) albums"
|
12288 |
|
12289 |
-
#: wppa-settings-autosave.php:
|
12290 |
msgid "A list of children only"
|
12291 |
msgstr "Une liste d’enfants seulement"
|
12292 |
|
12293 |
-
#: wppa-settings-autosave.php:
|
12294 |
msgid "An enumeration of names"
|
12295 |
msgstr "Une énumération de noms"
|
12296 |
|
12297 |
-
#: wppa-settings-autosave.php:
|
12298 |
#, fuzzy
|
12299 |
msgid "Micro thumbnails"
|
12300 |
msgstr "miniatures Micro"
|
12301 |
|
12302 |
-
#: wppa-settings-autosave.php:
|
12303 |
msgid "Table VII:"
|
12304 |
msgstr "Table VII:"
|
12305 |
|
12306 |
-
#: wppa-settings-autosave.php:
|
12307 |
#, fuzzy
|
12308 |
msgid "Permissions and Restrictions:"
|
12309 |
msgstr "Autorisations et restrictions:"
|
12310 |
|
12311 |
-
#: wppa-settings-autosave.php:
|
12312 |
msgid ""
|
12313 |
"This table describes the access settings for admin and front-end activities."
|
12314 |
msgstr "Ce Table décrit les paramètres d’accès admin et activités frontale."
|
12315 |
|
12316 |
-
#: wppa-settings-autosave.php:
|
12317 |
msgid "Moderate P+C"
|
12318 |
msgstr "Modérer P+C"
|
12319 |
|
12320 |
-
#: wppa-settings-autosave.php:
|
12321 |
msgid "Comment Admin"
|
12322 |
msgstr "Admin Commentaire"
|
12323 |
|
12324 |
-
#: wppa-settings-autosave.php:
|
12325 |
msgid "Help & Info"
|
12326 |
msgstr "Aide & Information"
|
12327 |
|
12328 |
-
#: wppa-settings-autosave.php:
|
12329 |
msgid "Role"
|
12330 |
msgstr "Rôle"
|
12331 |
|
12332 |
-
#: wppa-settings-autosave.php:
|
12333 |
msgid ""
|
12334 |
"Admin settings per user role. Enabling these settings will overrule the front-"
|
12335 |
"end settings for the specific user role"
|
@@ -12337,75 +12400,75 @@ msgstr ""
|
|
12337 |
"Paramètres admin par rôle d’utilisateur. Activation de ces paramètres annule "
|
12338 |
"les paramètres frontal pour le rôle d’utilisateur spécifique"
|
12339 |
|
12340 |
-
#: wppa-settings-autosave.php:
|
12341 |
msgid "Frontend create Albums and upload Photos enabling and limiting settings"
|
12342 |
msgstr ""
|
12343 |
"Paramètres Frontend de permettant et en limitant de créer Albums et "
|
12344 |
"télécharger des Photos"
|
12345 |
|
12346 |
-
#: wppa-settings-autosave.php:
|
12347 |
msgid "User create Albums"
|
12348 |
msgstr "L’utilisateur créer des Albums"
|
12349 |
|
12350 |
-
#: wppa-settings-autosave.php:
|
12351 |
msgid "Enable frontend album creation."
|
12352 |
msgstr "Activer la création d’album de front-end."
|
12353 |
|
12354 |
-
#: wppa-settings-autosave.php:
|
12355 |
#, fuzzy
|
12356 |
msgid "If you check this item, frontend album creation will be enabled."
|
12357 |
msgstr "Si vous cochez cet article, création d'albums frontend sera activé."
|
12358 |
|
12359 |
-
#: wppa-settings-autosave.php:
|
12360 |
msgid "User edit album"
|
12361 |
msgstr "L'utilisateur éditer l’album"
|
12362 |
|
12363 |
-
#: wppa-settings-autosave.php:
|
12364 |
msgid "Enable frontend edit album name and description."
|
12365 |
msgstr "Activer front-end modifier le nom et la description album."
|
12366 |
|
12367 |
-
#: wppa-settings-autosave.php:
|
12368 |
msgid "User delete Albums"
|
12369 |
msgstr "L’utilisateur supprimer des Albums"
|
12370 |
|
12371 |
-
#: wppa-settings-autosave.php:
|
12372 |
msgid "Enable frontend album deletion"
|
12373 |
msgstr "Activer la suppression d'album de front-end"
|
12374 |
|
12375 |
-
#: wppa-settings-autosave.php:
|
12376 |
#, fuzzy
|
12377 |
msgid "If you check this item, frontend album deletion will be enabled."
|
12378 |
msgstr "Si vous cochez cet article, l'album frontend suppression sera activé."
|
12379 |
|
12380 |
-
#: wppa-settings-autosave.php:
|
12381 |
msgid "User create Albums login"
|
12382 |
msgstr "L’utilisateur créer des Albums login"
|
12383 |
|
12384 |
-
#: wppa-settings-autosave.php:
|
12385 |
msgid "Frontend album creation requires the user is logged in."
|
12386 |
msgstr "Création album frontend exige que l’utilisateur soit connecté."
|
12387 |
|
12388 |
-
#: wppa-settings-autosave.php:
|
12389 |
#, php-format
|
12390 |
msgid "Upload limit %s"
|
12391 |
msgstr "Upload limit %s"
|
12392 |
|
12393 |
-
#: wppa-settings-autosave.php:
|
12394 |
#, fuzzy
|
12395 |
msgid "Limit upload capacity for logged out users."
|
12396 |
msgstr ""
|
12397 |
"Limiter la capacité de téléchargement pour les utilisateurs enregistrés sur."
|
12398 |
|
12399 |
-
#: wppa-settings-autosave.php:
|
12400 |
#, fuzzy, php-format
|
12401 |
msgid "Limit upload capacity for the user role %s."
|
12402 |
msgstr "Limiter la capacité de téléchargement pour le rôle d'utilisateur%s."
|
12403 |
|
12404 |
-
#: wppa-settings-autosave.php:
|
12405 |
msgid "This setting has only effect when Table VII-B2 is unchecked."
|
12406 |
msgstr "Ce paramètre influe seulement lorsque le Table VII-B2 n’est pas cochée."
|
12407 |
|
12408 |
-
#: wppa-settings-autosave.php:
|
12409 |
msgid ""
|
12410 |
"This limitation only applies to frontend uploads when the same userrole does "
|
12411 |
"not have the Upload checkbox checked in Table VII-A."
|
@@ -12413,22 +12476,22 @@ msgstr ""
|
|
12413 |
"Cette limitation s’applique uniquement aux frontend téléchargements lorsque "
|
12414 |
"l’userrole même n’a pas coxhé la case à cocher Télécharger dans le Table VII-A."
|
12415 |
|
12416 |
-
#: wppa-settings-autosave.php:
|
12417 |
-
#: wppa-settings-autosave.php:
|
12418 |
msgid "A value of 0 means: no limit."
|
12419 |
msgstr "Une valeur de 0 signifie: pas de limitation."
|
12420 |
|
12421 |
-
#: wppa-settings-autosave.php:
|
12422 |
#, php-format
|
12423 |
msgid "Album limit %s"
|
12424 |
msgstr "Album limit %s"
|
12425 |
|
12426 |
-
#: wppa-settings-autosave.php:
|
12427 |
#, fuzzy, php-format
|
12428 |
msgid "Limit number of albums for the user role %s."
|
12429 |
msgstr "Limiter le nombre d'albums pour le rôle d'utilisateur%s."
|
12430 |
|
12431 |
-
#: wppa-settings-autosave.php:
|
12432 |
msgid ""
|
12433 |
"This limitation only applies to frontend create albums when the same userrole "
|
12434 |
"does not have the Album admin checkbox checked in Table VII-A."
|
@@ -12436,24 +12499,24 @@ msgstr ""
|
|
12436 |
"Cette limitation s’applique uniquement aux frontend créer albums lorsque "
|
12437 |
"l’userrole même n’a pas coché la case à cocher Album admin dans le Table VII-A."
|
12438 |
|
12439 |
-
#: wppa-settings-autosave.php:
|
12440 |
msgid "Upload one only"
|
12441 |
msgstr "Charger un seul élément"
|
12442 |
|
12443 |
-
#: wppa-settings-autosave.php:
|
12444 |
#, fuzzy
|
12445 |
msgid "Non admin users can upload only one photo at a time."
|
12446 |
msgstr "Utilisateurs non admin peuvent télécharger une seule photo à la fois."
|
12447 |
|
12448 |
-
#: wppa-settings-autosave.php:
|
12449 |
msgid "Upload moderation"
|
12450 |
msgstr "Modération du chargement des photos"
|
12451 |
|
12452 |
-
#: wppa-settings-autosave.php:
|
12453 |
msgid "Uploaded photos need moderation."
|
12454 |
msgstr "La photo chargée nécessite une modération."
|
12455 |
|
12456 |
-
#: wppa-settings-autosave.php:
|
12457 |
msgid ""
|
12458 |
"If checked, photos uploaded by users who do not have photo album admin access "
|
12459 |
"rights need moderation."
|
@@ -12461,7 +12524,7 @@ msgstr ""
|
|
12461 |
"Si elle est cochée, les photos téléchargées par les utilisateurs qui ne "
|
12462 |
"disposent pas des droits d'accès album photo admin besoin de modération."
|
12463 |
|
12464 |
-
#: wppa-settings-autosave.php:
|
12465 |
#, fuzzy
|
12466 |
msgid ""
|
12467 |
"Users who have photo album admin access rights can change the photo status to "
|
@@ -12470,78 +12533,78 @@ msgstr ""
|
|
12470 |
"Les utilisateurs qui ont des droits d'accès photo album admin peuvent modifier "
|
12471 |
"l'état de la photo à publier ou en vedette."
|
12472 |
|
12473 |
-
#: wppa-settings-autosave.php:
|
12474 |
msgid "You can set the album admin access rights in Table VII-A."
|
12475 |
msgstr "Vous pouvez définir les droits d’accès admin album dans le Table VII-A."
|
12476 |
|
12477 |
-
#: wppa-settings-autosave.php:
|
12478 |
msgid "Upload notify"
|
12479 |
msgstr "Notification de chargement"
|
12480 |
|
12481 |
-
#: wppa-settings-autosave.php:
|
12482 |
#, fuzzy
|
12483 |
msgid "Notify admin at frontend upload."
|
12484 |
msgstr "Notifier l'administrateur au frontend téléchargement."
|
12485 |
|
12486 |
-
#: wppa-settings-autosave.php:
|
12487 |
msgid "If checked, admin will receive a notification by email."
|
12488 |
msgstr "Si cochée, admin recevra une notification par e-mail."
|
12489 |
|
12490 |
-
#: wppa-settings-autosave.php:
|
12491 |
#, fuzzy
|
12492 |
msgid "Upload backend notify"
|
12493 |
msgstr "Upload backend notifier"
|
12494 |
|
12495 |
-
#: wppa-settings-autosave.php:
|
12496 |
#, fuzzy
|
12497 |
msgid "Notify admin at backend upload."
|
12498 |
msgstr "Notifier l'administrateur au backend téléchargement."
|
12499 |
|
12500 |
-
#: wppa-settings-autosave.php:
|
12501 |
msgid "Max size in pixels"
|
12502 |
msgstr "Taille maximale en pixels"
|
12503 |
|
12504 |
-
#: wppa-settings-autosave.php:
|
12505 |
#, fuzzy
|
12506 |
msgid "Max size for height and width for front-end uploads."
|
12507 |
msgstr ""
|
12508 |
"Taille maximale en hauteur et en largeur pour les téléchargements frontaux."
|
12509 |
|
12510 |
-
#: wppa-settings-autosave.php:
|
12511 |
msgid "Enter the maximum size. 0 is unlimited"
|
12512 |
msgstr "Entrez la taille maximale. 0 est illimité"
|
12513 |
|
12514 |
-
#: wppa-settings-autosave.php:
|
12515 |
msgid "Home after Upload"
|
12516 |
msgstr "A l'accueil après le chargement"
|
12517 |
|
12518 |
-
#: wppa-settings-autosave.php:
|
12519 |
msgid "After successfull front-end upload, go to the home page."
|
12520 |
msgstr "Après téléchargement réussi de front-end, aller à la page d’accueil."
|
12521 |
|
12522 |
-
#: wppa-settings-autosave.php:
|
12523 |
msgid "Fe alert"
|
12524 |
msgstr "Fe alerte"
|
12525 |
|
12526 |
-
#: wppa-settings-autosave.php:
|
12527 |
#, fuzzy
|
12528 |
msgid "Show alertbox on successful front-end upload/create."
|
12529 |
msgstr "Afficher Alertbox sur téléchargement réussi front-end / créer."
|
12530 |
|
12531 |
-
#: wppa-settings-autosave.php:
|
12532 |
msgid "Admin Functionality restrictions for non administrators"
|
12533 |
msgstr "Restrictions de fonctionnalités Admin pour les non administrateurs"
|
12534 |
|
12535 |
-
#: wppa-settings-autosave.php:
|
12536 |
msgid "Alt thumb is restricted"
|
12537 |
msgstr "Pouce Alt est limité"
|
12538 |
|
12539 |
-
#: wppa-settings-autosave.php:
|
12540 |
#, fuzzy
|
12541 |
msgid "Using <b>alt thumbsize</b> is a restricted action."
|
12542 |
msgstr "Utilisation <b>alt Thumbsize</b> est une action restreinte."
|
12543 |
|
12544 |
-
#: wppa-settings-autosave.php:
|
12545 |
#, fuzzy
|
12546 |
msgid ""
|
12547 |
"If checked: alt thumbsize can not be set in album admin by users not having "
|
@@ -12550,17 +12613,17 @@ msgstr ""
|
|
12550 |
"Si coché: alt Thumbsize ne peut pas être réglé dans l'album d'administration "
|
12551 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12552 |
|
12553 |
-
#: wppa-settings-autosave.php:
|
12554 |
#, fuzzy
|
12555 |
msgid "Link is restricted"
|
12556 |
msgstr "Link est limité"
|
12557 |
|
12558 |
-
#: wppa-settings-autosave.php:
|
12559 |
#, fuzzy
|
12560 |
msgid "Using <b>Link to</b> is a restricted action."
|
12561 |
msgstr "Utiliser un <b>lien vers</b> une action est restreinte."
|
12562 |
|
12563 |
-
#: wppa-settings-autosave.php:
|
12564 |
#, fuzzy
|
12565 |
msgid ""
|
12566 |
"If checked: Link to: can not be set in album admin by users not having admin "
|
@@ -12569,15 +12632,15 @@ msgstr ""
|
|
12569 |
"Si coché: Lien vers: ne peut pas être définie dans l'album d'administration "
|
12570 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12571 |
|
12572 |
-
#: wppa-settings-autosave.php:
|
12573 |
msgid "CoverType is restricted"
|
12574 |
msgstr "CoverType est limitée"
|
12575 |
|
12576 |
-
#: wppa-settings-autosave.php:
|
12577 |
msgid "Changing <b>Cover Type</b> is a restricted action."
|
12578 |
msgstr "Changer de <b>Type de couverture</b> est une action restreinte."
|
12579 |
|
12580 |
-
#: wppa-settings-autosave.php:
|
12581 |
#, fuzzy
|
12582 |
msgid ""
|
12583 |
"If checked: Cover Type: can not be set in album admin by users not having "
|
@@ -12586,15 +12649,15 @@ msgstr ""
|
|
12586 |
"Si coché: Cover Type: ne peut pas être définie dans l'album d'administration "
|
12587 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12588 |
|
12589 |
-
#: wppa-settings-autosave.php:
|
12590 |
msgid "Photo order# is restricted"
|
12591 |
msgstr "Photo order# is restricted"
|
12592 |
|
12593 |
-
#: wppa-settings-autosave.php:
|
12594 |
msgid "Changing <b>Photo sort order #</b> is a restricted action."
|
12595 |
msgstr "Changer <b>Tri Photo No de sequence</b> est une action restreinte."
|
12596 |
|
12597 |
-
#: wppa-settings-autosave.php:
|
12598 |
#, fuzzy
|
12599 |
msgid ""
|
12600 |
"If checked: Photo sort order #: can not be set in photo admin by users not "
|
@@ -12603,16 +12666,16 @@ msgstr ""
|
|
12603 |
"Si coché: Photo ordre de tri #: ne peut pas être sur la photo d'administration "
|
12604 |
"par les utilisateurs de ne pas avoir les droits admin."
|
12605 |
|
12606 |
-
#: wppa-settings-autosave.php:
|
12607 |
msgid "Change source restricted"
|
12608 |
msgstr "Changement de source limitée"
|
12609 |
|
12610 |
-
#: wppa-settings-autosave.php:
|
12611 |
msgid "Changing the import source dir requires admin rights."
|
12612 |
msgstr ""
|
12613 |
"Changer le répertoire de source d’importation nécessite des droits d’admin."
|
12614 |
|
12615 |
-
#: wppa-settings-autosave.php:
|
12616 |
#, fuzzy
|
12617 |
msgid ""
|
12618 |
"If checked, the imput source for importing photos and albums is restricted to "
|
@@ -12621,66 +12684,66 @@ msgstr ""
|
|
12621 |
"Si elle est cochée, la source d'imput pour importer des photos et des albums "
|
12622 |
"est limitée à l'administrateur du rôle de l'utilisateur."
|
12623 |
|
12624 |
-
#: wppa-settings-autosave.php:
|
12625 |
msgid "Extended status restricted"
|
12626 |
msgstr "État étendu limitée"
|
12627 |
|
12628 |
-
#: wppa-settings-autosave.php:
|
12629 |
#, fuzzy
|
12630 |
msgid "Setting status other than pending or publish requires admin rights."
|
12631 |
msgstr ""
|
12632 |
"Réglage de l'état autre que l'attente ou publier nécessite des droits d'admin."
|
12633 |
|
12634 |
-
#: wppa-settings-autosave.php:
|
12635 |
#, fuzzy
|
12636 |
msgid "Photo description restricted"
|
12637 |
msgstr "Description de la photo restreinte"
|
12638 |
|
12639 |
-
#: wppa-settings-autosave.php:
|
12640 |
msgid "Edit photo description requires admin rights."
|
12641 |
msgstr "Modifier description photo nécessite des droits d’admin."
|
12642 |
|
12643 |
-
#: wppa-settings-autosave.php:
|
12644 |
#, fuzzy
|
12645 |
msgid "Update photofiles restricted"
|
12646 |
msgstr "Mise à jour Photofiles limités"
|
12647 |
|
12648 |
-
#: wppa-settings-autosave.php:
|
12649 |
#, fuzzy
|
12650 |
msgid "Re-upload files requires admin rights"
|
12651 |
msgstr "fichiers Re-upload nécessite des droits d'administrateur"
|
12652 |
|
12653 |
-
#: wppa-settings-autosave.php:
|
12654 |
#, fuzzy
|
12655 |
msgid "Miscellaneous limiting settings"
|
12656 |
msgstr "paramètres limitant Divers"
|
12657 |
|
12658 |
-
#: wppa-settings-autosave.php:
|
12659 |
msgid "Owners only"
|
12660 |
msgstr "Propriétaires seulement"
|
12661 |
|
12662 |
-
#: wppa-settings-autosave.php:
|
12663 |
#, fuzzy
|
12664 |
msgid "Limit edit album access to the album owners only."
|
12665 |
msgstr "Limitez album accès d'édition pour les propriétaires d'album uniquement."
|
12666 |
|
12667 |
-
#: wppa-settings-autosave.php:
|
12668 |
msgid "If checked, non-admin users can edit their own albums only."
|
12669 |
msgstr ""
|
12670 |
"Si cochée, les utilisateurs non-admin peuvent modifier leurs propres albums "
|
12671 |
"seulement."
|
12672 |
|
12673 |
-
#: wppa-settings-autosave.php:
|
12674 |
#, fuzzy
|
12675 |
msgid "Upload Owners only"
|
12676 |
msgstr "Upload Propriétaires seulement"
|
12677 |
|
12678 |
-
#: wppa-settings-autosave.php:
|
12679 |
#, fuzzy
|
12680 |
msgid "Limit uploads to the album owners only."
|
12681 |
msgstr "Limitez ajouts aux propriétaires d'album uniquement."
|
12682 |
|
12683 |
-
#: wppa-settings-autosave.php:
|
12684 |
#, fuzzy
|
12685 |
msgid ""
|
12686 |
"If checked, users can upload to their own own albums and --- public --- only."
|
@@ -12688,15 +12751,15 @@ msgstr ""
|
|
12688 |
"Si elle est cochée, les utilisateurs peuvent télécharger leurs propres propres "
|
12689 |
"albums et --- --- publique seulement."
|
12690 |
|
12691 |
-
#: wppa-settings-autosave.php:
|
12692 |
msgid "Frontend Edit"
|
12693 |
msgstr "Front-end Modifier"
|
12694 |
|
12695 |
-
#: wppa-settings-autosave.php:
|
12696 |
msgid "Allow the uploader to edit the photo info"
|
12697 |
msgstr "Permettre à l’uploader modifier les infos de la photo"
|
12698 |
|
12699 |
-
#: wppa-settings-autosave.php:
|
12700 |
#, fuzzy
|
12701 |
msgid ""
|
12702 |
"If selected, any logged in user who meets the criteria has the capability to "
|
@@ -12705,108 +12768,108 @@ msgstr ""
|
|
12705 |
"Si elle est sélectionnée, tout utilisateur connecté qui répond aux critères a "
|
12706 |
"la capacité de modifier les informations de photo."
|
12707 |
|
12708 |
-
#: wppa-settings-autosave.php:
|
12709 |
#, fuzzy
|
12710 |
msgid "Note: This may be AFTER moderation!!"
|
12711 |
msgstr "Note: Cela peut être APRÈS la modération !!"
|
12712 |
|
12713 |
-
#: wppa-settings-autosave.php:
|
12714 |
msgid "Classic"
|
12715 |
msgstr "Classic"
|
12716 |
|
12717 |
-
#: wppa-settings-autosave.php:
|
12718 |
msgid "New style"
|
12719 |
msgstr "Nouveau style"
|
12720 |
|
12721 |
-
#: wppa-settings-autosave.php:
|
12722 |
msgid "Fe Edit users"
|
12723 |
msgstr "Modifier par Utilisateurs"
|
12724 |
|
12725 |
-
#: wppa-settings-autosave.php:
|
12726 |
msgid "The criteria the user must meet to edit photo info"
|
12727 |
msgstr ""
|
12728 |
"Les critères l’utilisateur doit remplir pour modifier les informations de la "
|
12729 |
"photo"
|
12730 |
|
12731 |
-
#: wppa-settings-autosave.php:
|
12732 |
msgid "Admin and superuser"
|
12733 |
msgstr "Admin et superutilisateur"
|
12734 |
|
12735 |
-
#: wppa-settings-autosave.php:
|
12736 |
msgid "Owner, admin and superuser"
|
12737 |
msgstr "Propriétaire, admin et superutilisateur"
|
12738 |
|
12739 |
-
#: wppa-settings-autosave.php:
|
12740 |
msgid "Fe Edit Theme CSS"
|
12741 |
msgstr "Fe Edit thème CSS"
|
12742 |
|
12743 |
-
#: wppa-settings-autosave.php:
|
12744 |
msgid "The front-end edit photo dialog uses the theme CSS."
|
12745 |
msgstr "La boîte de dialogue Modifier frontal photo utilise le thème CSS."
|
12746 |
|
12747 |
-
#: wppa-settings-autosave.php:
|
12748 |
msgid "Fe Edit New Items"
|
12749 |
msgstr "Fe modifiez éléments nouveau style"
|
12750 |
|
12751 |
-
#: wppa-settings-autosave.php:
|
12752 |
msgid "The items that are fe editable"
|
12753 |
msgstr "Les éléments qui sont modifiables de frontal"
|
12754 |
|
12755 |
-
#: wppa-settings-autosave.php:
|
12756 |
msgid "See also Table II-J10!"
|
12757 |
msgstr "Voir aussi Table II-J10!"
|
12758 |
|
12759 |
-
#: wppa-settings-autosave.php:
|
12760 |
msgid "Fe Edit Button text"
|
12761 |
msgstr "Texte du bouton modifier de Fe"
|
12762 |
|
12763 |
-
#: wppa-settings-autosave.php:
|
12764 |
#, fuzzy
|
12765 |
msgid "The text on the Edit button."
|
12766 |
msgstr "Le texte sur le bouton Modifier."
|
12767 |
|
12768 |
-
#: wppa-settings-autosave.php:
|
12769 |
msgid "Fe Edit Dialog caption"
|
12770 |
msgstr "Fe Légende de la boîte de dialogue de modifier"
|
12771 |
|
12772 |
-
#: wppa-settings-autosave.php:
|
12773 |
#, fuzzy
|
12774 |
msgid "The text on the header of the popup."
|
12775 |
msgstr "Le texte sur l'en-tête de la fenêtre."
|
12776 |
|
12777 |
-
#: wppa-settings-autosave.php:
|
12778 |
msgid "Frontend Delete"
|
12779 |
msgstr "Front-end Supprimer"
|
12780 |
|
12781 |
-
#: wppa-settings-autosave.php:
|
12782 |
msgid "Allow the uploader to delete the photo"
|
12783 |
msgstr "Permettre à l’uploader effacer la photo"
|
12784 |
|
12785 |
-
#: wppa-settings-autosave.php:
|
12786 |
#, fuzzy
|
12787 |
msgid "Uploader Moderate Comment"
|
12788 |
msgstr "Uploader Modéré Commentaire"
|
12789 |
|
12790 |
-
#: wppa-settings-autosave.php:
|
12791 |
#, fuzzy
|
12792 |
msgid "The owner of the photo can moderate the photos comments."
|
12793 |
msgstr "Le propriétaire de la photo peut modérer les commentaires de photos."
|
12794 |
|
12795 |
-
#: wppa-settings-autosave.php:
|
12796 |
#, fuzzy
|
12797 |
msgid "This setting requires \"Uploader edit\" to be enabled also."
|
12798 |
msgstr "Ce paramètre requiert \"modifier Uploader\" doit être activé aussi."
|
12799 |
|
12800 |
-
#: wppa-settings-autosave.php:
|
12801 |
#, fuzzy
|
12802 |
msgid "Upload memory check frontend"
|
12803 |
msgstr "Connectez chèque frontend"
|
12804 |
|
12805 |
-
#: wppa-settings-autosave.php:
|
12806 |
msgid "Disable uploading photos that are too large."
|
12807 |
msgstr "Désactiver le téléchargement des photos qui sont trop grands."
|
12808 |
|
12809 |
-
#: wppa-settings-autosave.php:
|
12810 |
#, fuzzy
|
12811 |
msgid ""
|
12812 |
"To prevent out of memory crashes during upload and possible database "
|
@@ -12816,38 +12879,38 @@ msgstr ""
|
|
12816 |
"base de données possible les incohérences, les téléchargements peuvent être "
|
12817 |
"évités si les photos sont trop gros."
|
12818 |
|
12819 |
-
#: wppa-settings-autosave.php:
|
12820 |
#, fuzzy
|
12821 |
msgid "Upload memory check admin"
|
12822 |
msgstr "Connectez chèque administrateur"
|
12823 |
|
12824 |
-
#: wppa-settings-autosave.php:
|
12825 |
msgid "Comment captcha"
|
12826 |
msgstr "Captcha commentaire"
|
12827 |
|
12828 |
-
#: wppa-settings-autosave.php:
|
12829 |
#, fuzzy
|
12830 |
msgid "Use a simple calculate captcha on comments form."
|
12831 |
msgstr "Utilisez un calcul simple, captcha sur formulaire de commentaires."
|
12832 |
|
12833 |
-
#: wppa-settings-autosave.php:
|
12834 |
msgid "Spam lifetime"
|
12835 |
msgstr "Durée de vie de spam"
|
12836 |
|
12837 |
-
#: wppa-settings-autosave.php:
|
12838 |
msgid "Delete spam comments when older than."
|
12839 |
msgstr "Supprimer le spam de commentaires lorsqu’il y a plus de."
|
12840 |
|
12841 |
-
#: wppa-settings-autosave.php:
|
12842 |
msgid "Avoid duplicates"
|
12843 |
msgstr "Éviter les doublons"
|
12844 |
|
12845 |
-
#: wppa-settings-autosave.php:
|
12846 |
#, fuzzy
|
12847 |
msgid "Prevent the creation of duplicate photos."
|
12848 |
msgstr "Empêcher la création de photos en double."
|
12849 |
|
12850 |
-
#: wppa-settings-autosave.php:
|
12851 |
#, fuzzy
|
12852 |
msgid ""
|
12853 |
"If checked: uploading, importing, copying or moving photos to other albums "
|
@@ -12858,137 +12921,137 @@ msgstr ""
|
|
12858 |
"d'autres albums seront évités lorsque l'album desitation contient déjà une "
|
12859 |
"photo avec le même nom de fichier."
|
12860 |
|
12861 |
-
#: wppa-settings-autosave.php:
|
12862 |
msgid "Blacklist user"
|
12863 |
msgstr "Blacklister l'utilisateur"
|
12864 |
|
12865 |
-
#: wppa-settings-autosave.php:
|
12866 |
#, fuzzy
|
12867 |
msgid "Set the status of all the users photos to 'pending'."
|
12868 |
msgstr "Définir le statut de tous les utilisateurs des photos à 'en attente'."
|
12869 |
|
12870 |
-
#: wppa-settings-autosave.php:
|
12871 |
msgid "Also inhibits further uploads."
|
12872 |
msgstr "Inhibe aussi les téléchargements supplémentaires."
|
12873 |
|
12874 |
-
#: wppa-settings-autosave.php:
|
12875 |
msgid "--- select a user to blacklist ---"
|
12876 |
msgstr "--- choisir un utilisateur à bannir ---"
|
12877 |
|
12878 |
-
#: wppa-settings-autosave.php:
|
12879 |
-
#: wppa-settings-autosave.php:
|
12880 |
-
#: wppa-settings-autosave.php:
|
12881 |
-
#: wppa-settings-autosave.php:
|
12882 |
#, fuzzy
|
12883 |
msgid "The page will be reloaded after the action has taken place."
|
12884 |
msgstr "La page sera rechargée après que l'action a eu lieu."
|
12885 |
|
12886 |
-
#: wppa-settings-autosave.php:
|
12887 |
#, fuzzy
|
12888 |
msgid "User login name <b>( case sensitive! )</b>:"
|
12889 |
msgstr "Nom d' utilisateur de connexion <b>(sensible</b> à la <b>casse!):</b>"
|
12890 |
|
12891 |
-
#: wppa-settings-autosave.php:
|
12892 |
msgid "Unblacklist user"
|
12893 |
msgstr "Unblacklist utilisateur"
|
12894 |
|
12895 |
-
#: wppa-settings-autosave.php:
|
12896 |
#, fuzzy
|
12897 |
msgid "Set the status of all the users photos to 'publish'."
|
12898 |
msgstr "Définir le statut de tous les utilisateurs des photos à «publier»."
|
12899 |
|
12900 |
-
#: wppa-settings-autosave.php:
|
12901 |
msgid "--- select a user to unblacklist ---"
|
12902 |
msgstr "---Sélectionnez un utilisateur pour unblacklist---"
|
12903 |
|
12904 |
-
#: wppa-settings-autosave.php:
|
12905 |
msgid "Photo owner change"
|
12906 |
msgstr "Changer le propriétaire de la photo"
|
12907 |
|
12908 |
-
#: wppa-settings-autosave.php:
|
12909 |
msgid "Administrators can change photo owner"
|
12910 |
msgstr "Les administrateurs peuvent modifier le propriétaire de la photo"
|
12911 |
|
12912 |
-
#: wppa-settings-autosave.php:
|
12913 |
msgid "Super user"
|
12914 |
msgstr "Super utilisateur"
|
12915 |
|
12916 |
-
#: wppa-settings-autosave.php:
|
12917 |
msgid "Give these users all rights in wppa."
|
12918 |
msgstr "Donner à ces utilisateurs tous droits en wppa."
|
12919 |
|
12920 |
-
#: wppa-settings-autosave.php:
|
12921 |
#, fuzzy
|
12922 |
msgid "This gives the user all the administrator privileges within wppa."
|
12923 |
msgstr ""
|
12924 |
"Cela donne à l'utilisateur tous les privilèges d'administrateur au sein de "
|
12925 |
"LPPT."
|
12926 |
|
12927 |
-
#: wppa-settings-autosave.php:
|
12928 |
msgid ""
|
12929 |
"Make sure the user also has a role that has all the boxes ticked in Table VII-A"
|
12930 |
msgstr ""
|
12931 |
"Assurez-vous que l’utilisateur a également un rôle qui a toutes les cases "
|
12932 |
"cochées dans le Table VII-A"
|
12933 |
|
12934 |
-
#: wppa-settings-autosave.php:
|
12935 |
msgid "--- select a user to make superuser ---"
|
12936 |
msgstr "--- Sélectionner un utilisateur à faire superutilisateur ---"
|
12937 |
|
12938 |
-
#: wppa-settings-autosave.php:
|
12939 |
msgid "Unsuper user"
|
12940 |
msgstr "utilisateur Unsuper"
|
12941 |
|
12942 |
-
#: wppa-settings-autosave.php:
|
12943 |
#, fuzzy
|
12944 |
msgid "Remove user from super user list."
|
12945 |
msgstr "Supprimer l'utilisateur de la liste de super-utilisateur."
|
12946 |
|
12947 |
-
#: wppa-settings-autosave.php:
|
12948 |
msgid "--- select a user to unmake superuser ---"
|
12949 |
msgstr "--- Sélectionner un utilisateur à défaire superutilisateur ---"
|
12950 |
|
12951 |
-
#: wppa-settings-autosave.php:
|
12952 |
msgid "Table VIII:"
|
12953 |
msgstr "Table VIII:"
|
12954 |
|
12955 |
-
#: wppa-settings-autosave.php:
|
12956 |
msgid "Actions:"
|
12957 |
msgstr "Actions:"
|
12958 |
|
12959 |
-
#: wppa-settings-autosave.php:
|
12960 |
msgid "This table lists all actions that can be taken to the wppa+ system"
|
12961 |
msgstr ""
|
12962 |
"Ce table répertorie toutes les actions qui peuvent être prises pour la système "
|
12963 |
"wppa+"
|
12964 |
|
12965 |
-
#: wppa-settings-autosave.php:
|
12966 |
msgid "Specification"
|
12967 |
msgstr "Spécification"
|
12968 |
|
12969 |
-
#: wppa-settings-autosave.php:
|
12970 |
-
#: wppa-settings-autosave.php:
|
12971 |
msgid "Do it!"
|
12972 |
msgstr "Faites-le!"
|
12973 |
|
12974 |
-
#: wppa-settings-autosave.php:
|
12975 |
msgid "To Go"
|
12976 |
msgstr "Encore"
|
12977 |
|
12978 |
-
#: wppa-settings-autosave.php:
|
12979 |
msgid "Harmless and reverseable actions"
|
12980 |
msgstr "Actions inoffensives et reversibles"
|
12981 |
|
12982 |
-
#: wppa-settings-autosave.php:
|
12983 |
msgid "Ignore concurrency"
|
12984 |
msgstr "Ignorer l’accès concurrentiel"
|
12985 |
|
12986 |
-
#: wppa-settings-autosave.php:
|
12987 |
#, fuzzy
|
12988 |
msgid "Ignore the prevention of concurrent actions."
|
12989 |
msgstr "Ignorer la prévention des actions simultanées."
|
12990 |
|
12991 |
-
#: wppa-settings-autosave.php:
|
12992 |
#, fuzzy
|
12993 |
msgid ""
|
12994 |
"This setting is meant to recover from deadlock situations only. Use with care!"
|
@@ -12996,16 +13059,16 @@ msgstr ""
|
|
12996 |
"Ce paramètre est destiné à se remettre de situations de blocage seulement. "
|
12997 |
"Utiliser avec précaution!"
|
12998 |
|
12999 |
-
#: wppa-settings-autosave.php:
|
13000 |
msgid "Setup"
|
13001 |
msgstr "Configuration"
|
13002 |
|
13003 |
-
#: wppa-settings-autosave.php:
|
13004 |
#, fuzzy
|
13005 |
msgid "Re-initialize plugin."
|
13006 |
msgstr "Re-initialiser plugin."
|
13007 |
|
13008 |
-
#: wppa-settings-autosave.php:
|
13009 |
#, fuzzy
|
13010 |
msgid ""
|
13011 |
"Re-initilizes the plugin, (re)creates database tables and sets up default "
|
@@ -13014,7 +13077,7 @@ msgstr ""
|
|
13014 |
"Re-initilizes le plugin, (re) crée des tables de base de données et met en "
|
13015 |
"place des paramètres et des répertoires par défaut si nécessaire."
|
13016 |
|
13017 |
-
#: wppa-settings-autosave.php:
|
13018 |
#, fuzzy
|
13019 |
msgid ""
|
13020 |
"This action may be required to setup blogs in a multiblog (network) site as "
|
@@ -13024,32 +13087,32 @@ msgstr ""
|
|
13024 |
"(réseau) site multiblog ainsi que dans de rares cas pour corriger les erreurs "
|
13025 |
"de initilization."
|
13026 |
|
13027 |
-
#: wppa-settings-autosave.php:
|
13028 |
msgid "Backup settings"
|
13029 |
msgstr "Réglages de la sauvegarde"
|
13030 |
|
13031 |
-
#: wppa-settings-autosave.php:
|
13032 |
#, fuzzy
|
13033 |
msgid "Save all settings into a backup file."
|
13034 |
msgstr "Enregistrer tous les paramètres dans un fichier de sauvegarde."
|
13035 |
|
13036 |
-
#: wppa-settings-autosave.php:
|
13037 |
#, fuzzy
|
13038 |
msgid "Saves all the settings into a backup file"
|
13039 |
msgstr "Enregistre tous les paramètres dans un fichier de sauvegarde"
|
13040 |
|
13041 |
-
#: wppa-settings-autosave.php:
|
13042 |
msgid "Load settings"
|
13043 |
msgstr "Réglages du chargement"
|
13044 |
|
13045 |
-
#: wppa-settings-autosave.php:
|
13046 |
#, fuzzy
|
13047 |
msgid "Restore all settings from defaults, a backup or skin file."
|
13048 |
msgstr ""
|
13049 |
"Restaurer tous les paramètres de défaut, un fichier de sauvegarde ou de la "
|
13050 |
"peau."
|
13051 |
|
13052 |
-
#: wppa-settings-autosave.php:
|
13053 |
#, fuzzy
|
13054 |
msgid ""
|
13055 |
"Restores all the settings from the factory supplied defaults, the backup you "
|
@@ -13058,36 +13121,36 @@ msgstr ""
|
|
13058 |
"Restaure tous les réglages des paramètres par défaut fournis, la sauvegarde "
|
13059 |
"que vous avez créé ou d'un fichier de la peau."
|
13060 |
|
13061 |
-
#: wppa-settings-autosave.php:
|
13062 |
msgid "--- set to defaults ---"
|
13063 |
msgstr "--- Réglages par défaut ---"
|
13064 |
|
13065 |
-
#: wppa-settings-autosave.php:
|
13066 |
msgid "--- restore backup ---"
|
13067 |
msgstr "--- restaurer la sauvegarde ---"
|
13068 |
|
13069 |
-
#: wppa-settings-autosave.php:
|
13070 |
msgid "Regenerate"
|
13071 |
msgstr "Regénérer"
|
13072 |
|
13073 |
-
#: wppa-settings-autosave.php:
|
13074 |
msgid "Regenerate all thumbnails."
|
13075 |
msgstr "Refaire toutes les vignettes."
|
13076 |
|
13077 |
-
#: wppa-settings-autosave.php:
|
13078 |
-
#: wppa-settings-autosave.php:
|
13079 |
msgid "Skip one"
|
13080 |
msgstr "Ignorer un"
|
13081 |
|
13082 |
-
#: wppa-settings-autosave.php:
|
13083 |
msgid "Rerate"
|
13084 |
msgstr "Re-noter"
|
13085 |
|
13086 |
-
#: wppa-settings-autosave.php:
|
13087 |
msgid "Recalculate ratings."
|
13088 |
msgstr "Recalculer les cotes."
|
13089 |
|
13090 |
-
#: wppa-settings-autosave.php:
|
13091 |
#, fuzzy
|
13092 |
msgid ""
|
13093 |
"This function will recalculate all mean photo ratings from the ratings table."
|
@@ -13095,31 +13158,31 @@ msgstr ""
|
|
13095 |
"Cette fonction permet de recalculer toutes les notes signifie photo de la "
|
13096 |
"table de notation."
|
13097 |
|
13098 |
-
#: wppa-settings-autosave.php:
|
13099 |
msgid ""
|
13100 |
"You may need this function after the re-import of previously exported photos"
|
13101 |
msgstr ""
|
13102 |
"Vous pouvez avoir besoin de cette fonction après la ré-importer des photos "
|
13103 |
"préalablement exportés"
|
13104 |
|
13105 |
-
#: wppa-settings-autosave.php:
|
13106 |
msgid "Lost and found"
|
13107 |
msgstr "Objets trouvés"
|
13108 |
|
13109 |
-
#: wppa-settings-autosave.php:
|
13110 |
msgid "Find \"lost\" photos."
|
13111 |
msgstr "Retrouvez les photos « perdus »."
|
13112 |
|
13113 |
-
#: wppa-settings-autosave.php:
|
13114 |
#, fuzzy
|
13115 |
msgid "This function will attempt to find lost photos."
|
13116 |
msgstr "Cette fonction va tenter de trouver des photos perdues."
|
13117 |
|
13118 |
-
#: wppa-settings-autosave.php:
|
13119 |
msgid "Recuperate"
|
13120 |
msgstr "Récupérer"
|
13121 |
|
13122 |
-
#: wppa-settings-autosave.php:
|
13123 |
#, fuzzy
|
13124 |
msgid ""
|
13125 |
"This action will attempt to find and register IPTC and EXIF data from photos "
|
@@ -13128,41 +13191,41 @@ msgstr ""
|
|
13128 |
"Cette action tentera de trouver et d'enregistrer IPTC et les données EXIF de "
|
13129 |
"photos dans le système LPPT ."
|
13130 |
|
13131 |
-
#: wppa-settings-autosave.php:
|
13132 |
msgid "Remake Index Albums"
|
13133 |
msgstr "Refaire l'index des photos"
|
13134 |
|
13135 |
-
#: wppa-settings-autosave.php:
|
13136 |
#, fuzzy
|
13137 |
msgid "Remakes the index database table for albums."
|
13138 |
msgstr "Remakes la table pour les albums de base de données d'index."
|
13139 |
|
13140 |
-
#: wppa-settings-autosave.php:
|
13141 |
msgid "Remake Index Photos"
|
13142 |
msgstr "Refaire l'index des photos"
|
13143 |
|
13144 |
-
#: wppa-settings-autosave.php:
|
13145 |
#, fuzzy
|
13146 |
msgid "Remakes the index database table for photos."
|
13147 |
msgstr "Remakes la table pour les photos de la base de données d'index."
|
13148 |
|
13149 |
-
#: wppa-settings-autosave.php:
|
13150 |
msgid "Convert to tree"
|
13151 |
msgstr "Convertir en arbre"
|
13152 |
|
13153 |
-
#: wppa-settings-autosave.php:
|
13154 |
msgid "Convert filesystem to tree structure."
|
13155 |
msgstr "Convertir des fichiers à structure arborescente."
|
13156 |
|
13157 |
-
#: wppa-settings-autosave.php:
|
13158 |
msgid "Convert to flat"
|
13159 |
msgstr "Convertir en plat"
|
13160 |
|
13161 |
-
#: wppa-settings-autosave.php:
|
13162 |
msgid "Convert filesystem to flat structure."
|
13163 |
msgstr "Autre système de fichiers à structure plate."
|
13164 |
|
13165 |
-
#: wppa-settings-autosave.php:
|
13166 |
#, fuzzy
|
13167 |
msgid ""
|
13168 |
"If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert to "
|
@@ -13171,12 +13234,12 @@ msgstr ""
|
|
13171 |
"Si vous voulez revenir à une LPPT version antérieure à 5.0.16, vous devez "
|
13172 |
"convertir à plat en premier."
|
13173 |
|
13174 |
-
#: wppa-settings-autosave.php:
|
13175 |
#, fuzzy
|
13176 |
msgid "Remake the photofiles from photo sourcefiles."
|
13177 |
msgstr "Refaire les Photofiles de SourceFiles photo."
|
13178 |
|
13179 |
-
#: wppa-settings-autosave.php:
|
13180 |
#, fuzzy
|
13181 |
msgid ""
|
13182 |
"This action will remake the fullsize images, thumbnail images, and will "
|
@@ -13187,153 +13250,153 @@ msgstr ""
|
|
13187 |
"actualiser les données IPTC et EXIF pour toutes les photos où la source se "
|
13188 |
"trouve dans le sous-répertoire de l'album correspondant du répertoire source."
|
13189 |
|
13190 |
-
#: wppa-settings-autosave.php:
|
13191 |
msgid "Orientation only"
|
13192 |
msgstr "Orientation seulement"
|
13193 |
|
13194 |
-
#: wppa-settings-autosave.php:
|
13195 |
#, fuzzy
|
13196 |
msgid "Remake non standard orientated photos only."
|
13197 |
msgstr "Remake non standards des photos orientées uniquement."
|
13198 |
|
13199 |
-
#: wppa-settings-autosave.php:
|
13200 |
msgid "Recalc sizes"
|
13201 |
msgstr "Recalc tailles"
|
13202 |
|
13203 |
-
#: wppa-settings-autosave.php:
|
13204 |
#, fuzzy
|
13205 |
msgid "Recalculate photosizes and save to db."
|
13206 |
msgstr "Recalculer photosizes et enregistrez-db."
|
13207 |
|
13208 |
-
#: wppa-settings-autosave.php:
|
13209 |
msgid "Renew album crypt"
|
13210 |
msgstr "Renouveler album crypte"
|
13211 |
|
13212 |
-
#: wppa-settings-autosave.php:
|
13213 |
msgid "Renew album encrcryption codes."
|
13214 |
msgstr "Renouveler codes encrcryption album."
|
13215 |
|
13216 |
-
#: wppa-settings-autosave.php:
|
13217 |
msgid "Renew photo crypt"
|
13218 |
msgstr "Renouveler photo crypte"
|
13219 |
|
13220 |
-
#: wppa-settings-autosave.php:
|
13221 |
#, fuzzy
|
13222 |
msgid "Renew photo encrcryption codes."
|
13223 |
msgstr "Renouveler photo codes encrcryption."
|
13224 |
|
13225 |
-
#: wppa-settings-autosave.php:
|
13226 |
msgid "Create orietation sources"
|
13227 |
msgstr "Créer des sources d'orietation"
|
13228 |
|
13229 |
-
#: wppa-settings-autosave.php:
|
13230 |
msgid "Creates correctly oriented pseudo source file."
|
13231 |
msgstr "Créer le fichier de source de pseudo correctement orienté."
|
13232 |
|
13233 |
-
#: wppa-settings-autosave.php:
|
13234 |
msgid "Clearing and other irreverseable actions"
|
13235 |
msgstr "Clairière et autres actions irreverseable"
|
13236 |
|
13237 |
-
#: wppa-settings-autosave.php:
|
13238 |
msgid "Clear ratings"
|
13239 |
msgstr "Effacer les votes"
|
13240 |
|
13241 |
-
#: wppa-settings-autosave.php:
|
13242 |
msgid "Reset all ratings."
|
13243 |
msgstr "Remettre les évaluations à zéro"
|
13244 |
|
13245 |
-
#: wppa-settings-autosave.php:
|
13246 |
msgid "WARNING: If checked, this will clear all ratings in the system!"
|
13247 |
msgstr ""
|
13248 |
"AVERTISSEMENT: Si coché, cela effacera toutes les notations dans le système!"
|
13249 |
|
13250 |
-
#: wppa-settings-autosave.php:
|
13251 |
msgid "Clear viewcounts"
|
13252 |
msgstr "Clair nombres des vues"
|
13253 |
|
13254 |
-
#: wppa-settings-autosave.php:
|
13255 |
#, fuzzy
|
13256 |
msgid "Reset all viewcounts."
|
13257 |
msgstr "Réinitialiser tous les nombre de vues."
|
13258 |
|
13259 |
-
#: wppa-settings-autosave.php:
|
13260 |
msgid "WARNING: If checked, this will clear all viewcounts in the system!"
|
13261 |
msgstr ""
|
13262 |
"AVERTISSEMENT: Si coché, cela effacera tous les nombres de vues dans le "
|
13263 |
"système!"
|
13264 |
|
13265 |
-
#: wppa-settings-autosave.php:
|
13266 |
msgid "Reset IPTC"
|
13267 |
msgstr "Remise à zéro IPTC"
|
13268 |
|
13269 |
-
#: wppa-settings-autosave.php:
|
13270 |
msgid "Clear all IPTC data."
|
13271 |
msgstr "Effacer les données IPTC"
|
13272 |
|
13273 |
-
#: wppa-settings-autosave.php:
|
13274 |
msgid "WARNING: If checked, this will clear all IPTC data in the system!"
|
13275 |
msgstr ""
|
13276 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données IPTC dans le système!"
|
13277 |
|
13278 |
-
#: wppa-settings-autosave.php:
|
13279 |
msgid "Reset EXIF"
|
13280 |
msgstr "Remise à zéro EXIF"
|
13281 |
|
13282 |
-
#: wppa-settings-autosave.php:
|
13283 |
msgid "Clear all EXIF data."
|
13284 |
msgstr "Effacer les données EXIF"
|
13285 |
|
13286 |
-
#: wppa-settings-autosave.php:
|
13287 |
msgid "WARNING: If checked, this will clear all EXIF data in the system!"
|
13288 |
msgstr ""
|
13289 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données d’EXIF dans le "
|
13290 |
"système!"
|
13291 |
|
13292 |
-
#: wppa-settings-autosave.php:
|
13293 |
msgid "Apply New Photodesc"
|
13294 |
msgstr "Appliquer nouvelle desc photo"
|
13295 |
|
13296 |
-
#: wppa-settings-autosave.php:
|
13297 |
msgid "Apply New photo description on all photos in the system."
|
13298 |
msgstr ""
|
13299 |
"Appliquer la nouvelle description de photo sur toutes les photos dans le "
|
13300 |
"système."
|
13301 |
|
13302 |
-
#: wppa-settings-autosave.php:
|
13303 |
msgid "Append to photodesc"
|
13304 |
msgstr "Annexer à photodesc"
|
13305 |
|
13306 |
-
#: wppa-settings-autosave.php:
|
13307 |
msgid "Append this text to all photo descriptions."
|
13308 |
msgstr "Ajouter ce texte à toutes les descriptions de photo."
|
13309 |
|
13310 |
-
#: wppa-settings-autosave.php:
|
13311 |
msgid "Remove from photodesc"
|
13312 |
msgstr "Retirer du photodescription"
|
13313 |
|
13314 |
-
#: wppa-settings-autosave.php:
|
13315 |
msgid "Remove this text from all photo descriptions."
|
13316 |
msgstr "Enlever ce texte de toutes les descriptions de photo."
|
13317 |
|
13318 |
-
#: wppa-settings-autosave.php:
|
13319 |
msgid "Remove empty albums"
|
13320 |
msgstr "Retirer les albums vides"
|
13321 |
|
13322 |
-
#: wppa-settings-autosave.php:
|
13323 |
#, fuzzy
|
13324 |
msgid "Removes albums that are not used."
|
13325 |
msgstr "Supprime les albums qui ne sont pas utilisés."
|
13326 |
|
13327 |
-
#: wppa-settings-autosave.php:
|
13328 |
msgid "Remove file-ext"
|
13329 |
msgstr "Supprimer l'extension de fichier"
|
13330 |
|
13331 |
-
#: wppa-settings-autosave.php:
|
13332 |
#, fuzzy
|
13333 |
msgid "Remove possible file extension from photo name."
|
13334 |
msgstr "Retirer l'extension de fichier à partir de nom de la photo."
|
13335 |
|
13336 |
-
#: wppa-settings-autosave.php:
|
13337 |
#, fuzzy
|
13338 |
msgid ""
|
13339 |
"This may be required for old photos, uploaded when the option in Table IX-D3 "
|
@@ -13342,42 +13405,42 @@ msgstr ""
|
|
13342 |
"Cela peut être nécessaire pour les vieilles photos, téléchargé lorsque "
|
13343 |
"l'option dans le tableau IX-D3 était pas encore disponible / sélectionné."
|
13344 |
|
13345 |
-
#: wppa-settings-autosave.php:
|
13346 |
#, fuzzy
|
13347 |
msgid "Re-add file-ext"
|
13348 |
msgstr "Re-add file-ext"
|
13349 |
|
13350 |
-
#: wppa-settings-autosave.php:
|
13351 |
#, fuzzy
|
13352 |
msgid "Revert the <i>Remove file-ext</i> action."
|
13353 |
msgstr "Revert l'action <i>Supprimer fichier-ext.</i>"
|
13354 |
|
13355 |
-
#: wppa-settings-autosave.php:
|
13356 |
msgid "Watermark all"
|
13357 |
msgstr "Appliquer le filigrane à toutes"
|
13358 |
|
13359 |
-
#: wppa-settings-autosave.php:
|
13360 |
msgid "Apply watermark according to current settings to all photos."
|
13361 |
msgstr ""
|
13362 |
"Appliquer un filigrane en fonction des paramètres actuels à toutes les photos."
|
13363 |
|
13364 |
-
#: wppa-settings-autosave.php:
|
13365 |
msgid "See Table IX_F for the current watermark settings"
|
13366 |
msgstr "Voir Table IX_F pour les paramètres actuels de filigrane"
|
13367 |
|
13368 |
-
#: wppa-settings-autosave.php:
|
13369 |
msgid "Create all autopages"
|
13370 |
msgstr "Créer toutes les auto pages"
|
13371 |
|
13372 |
-
#: wppa-settings-autosave.php:
|
13373 |
msgid "Create all the pages to display slides individually."
|
13374 |
msgstr "Créer toutes les pages pour afficher des diapositives individuellement."
|
13375 |
|
13376 |
-
#: wppa-settings-autosave.php:
|
13377 |
msgid "See also Table IV-A10."
|
13378 |
msgstr "Voir aussi le Table IV-A10."
|
13379 |
|
13380 |
-
#: wppa-settings-autosave.php:
|
13381 |
msgid ""
|
13382 |
"Make sure you have a custom menu and the \"Automatically add new top-level "
|
13383 |
"pages to this menu\" box UNticked!!"
|
@@ -13385,25 +13448,25 @@ msgstr ""
|
|
13385 |
"Assurez-vous que vous disposez d’un menu personnalisé et la case « Ajouter "
|
13386 |
"automatiquement les nouvelles pages de niveau supérieur à ce menu » DÉcoché!!"
|
13387 |
|
13388 |
-
#: wppa-settings-autosave.php:
|
13389 |
msgid "Delete all autopages"
|
13390 |
msgstr "Effacer toutes les pages auto"
|
13391 |
|
13392 |
-
#: wppa-settings-autosave.php:
|
13393 |
msgid "Delete all the pages to display slides individually."
|
13394 |
msgstr ""
|
13395 |
"Supprimer toutes les pages pour afficher des diapositives individuellement."
|
13396 |
|
13397 |
-
#: wppa-settings-autosave.php:
|
13398 |
msgid "Leading zeroes"
|
13399 |
msgstr "Zéro non significatif"
|
13400 |
|
13401 |
-
#: wppa-settings-autosave.php:
|
13402 |
#, fuzzy
|
13403 |
msgid "If photoname numeric, add leading zeros"
|
13404 |
msgstr "Si photoname numérique, ajouter des zéros à gauche"
|
13405 |
|
13406 |
-
#: wppa-settings-autosave.php:
|
13407 |
msgid ""
|
13408 |
"You can extend the name with leading zeros, so alphabetic sort becomes equal "
|
13409 |
"to numeric sort order."
|
@@ -13411,229 +13474,229 @@ msgstr ""
|
|
13411 |
"Vous pouvez étendre le nom par des zéros, donc tri alphabétique devient égal à "
|
13412 |
"l'ordre de tri numérique."
|
13413 |
|
13414 |
-
#: wppa-settings-autosave.php:
|
13415 |
msgid "Total chars"
|
13416 |
msgstr "Total caractères"
|
13417 |
|
13418 |
-
#: wppa-settings-autosave.php:
|
13419 |
msgid "Add GPX tag"
|
13420 |
msgstr "Ajouter tag GPX"
|
13421 |
|
13422 |
-
#: wppa-settings-autosave.php:
|
13423 |
msgid "Make sure photos with gpx data have a Gpx tag"
|
13424 |
msgstr "S’assurer que les photos avec des données gpx ont une balise de Gpx"
|
13425 |
|
13426 |
-
#: wppa-settings-autosave.php:
|
13427 |
msgid "Optimize files"
|
13428 |
msgstr "Optimiser les fichiers"
|
13429 |
|
13430 |
-
#: wppa-settings-autosave.php:
|
13431 |
#, fuzzy
|
13432 |
msgid "Optimize with EWWW image optimizer"
|
13433 |
msgstr "Optimisez avec EWWW image optimizer"
|
13434 |
|
13435 |
-
#: wppa-settings-autosave.php:
|
13436 |
msgid "Edit tag"
|
13437 |
msgstr "Modifier tag"
|
13438 |
|
13439 |
-
#: wppa-settings-autosave.php:
|
13440 |
msgid "Globally change a tagname."
|
13441 |
msgstr "Changer un tagname dans toute la système.."
|
13442 |
|
13443 |
-
#: wppa-settings-autosave.php:
|
13444 |
msgid "-select a tag-"
|
13445 |
msgstr "- Choisir un tag -"
|
13446 |
|
13447 |
-
#: wppa-settings-autosave.php:
|
13448 |
msgid "Tag:"
|
13449 |
msgstr "Tag:"
|
13450 |
|
13451 |
-
#: wppa-settings-autosave.php:
|
13452 |
msgid "Change to:"
|
13453 |
msgstr "Changer pour:"
|
13454 |
|
13455 |
-
#: wppa-settings-autosave.php:
|
13456 |
#, fuzzy
|
13457 |
msgid "Synchronize Cloudinary"
|
13458 |
msgstr "Synchroniser Cloudinary"
|
13459 |
|
13460 |
-
#: wppa-settings-autosave.php:
|
13461 |
#, fuzzy
|
13462 |
msgid "Removes/adds images in the cloud."
|
13463 |
msgstr "Supprime / ajoute des images dans le nuage."
|
13464 |
|
13465 |
-
#: wppa-settings-autosave.php:
|
13466 |
#, fuzzy
|
13467 |
msgid "Removes old images and verifies/adds new images to Cloudinary."
|
13468 |
msgstr ""
|
13469 |
"Supprime les anciennes images et vérifie / ajoute de nouvelles images pour "
|
13470 |
"Cloudinary."
|
13471 |
|
13472 |
-
#: wppa-settings-autosave.php:
|
13473 |
msgid "See Table IX-K4.7 for the configured lifetime."
|
13474 |
msgstr "Voir Table IX-K4.7 pour la durée de vie configurée."
|
13475 |
|
13476 |
-
#: wppa-settings-autosave.php:
|
13477 |
msgid "Fix tags"
|
13478 |
msgstr "Réparer des balises"
|
13479 |
|
13480 |
-
#: wppa-settings-autosave.php:
|
13481 |
#, fuzzy
|
13482 |
msgid "Make sure photo tags format is uptodate"
|
13483 |
msgstr "Assurez-vous que le format des balises photo est uptodate"
|
13484 |
|
13485 |
-
#: wppa-settings-autosave.php:
|
13486 |
msgid "Fixes tags to be conform current database rules."
|
13487 |
msgstr ""
|
13488 |
"Fixe les balises pour être conforme à des règles de base de données actuelle."
|
13489 |
|
13490 |
-
#: wppa-settings-autosave.php:
|
13491 |
msgid "Fix cats"
|
13492 |
msgstr "Réparer des catégories"
|
13493 |
|
13494 |
-
#: wppa-settings-autosave.php:
|
13495 |
#, fuzzy
|
13496 |
msgid "Make sure album cats format is uptodate"
|
13497 |
msgstr "Assurez-vous que le format album des chats est uptodate"
|
13498 |
|
13499 |
-
#: wppa-settings-autosave.php:
|
13500 |
msgid "Fixes cats to be conform current database rules."
|
13501 |
msgstr ""
|
13502 |
"Fixe les catégories pour être conforme à des règles de base de données "
|
13503 |
"actuelle."
|
13504 |
|
13505 |
-
#: wppa-settings-autosave.php:
|
13506 |
#, fuzzy
|
13507 |
msgid "Set owner to name"
|
13508 |
msgstr "Réglez propriétaire nom"
|
13509 |
|
13510 |
-
#: wppa-settings-autosave.php:
|
13511 |
#, fuzzy
|
13512 |
msgid "If photoname equals user display name, set him owner."
|
13513 |
msgstr ""
|
13514 |
"Si photoname est égal à l'utilisateur le nom d'affichage, définissez le "
|
13515 |
"propriétaire."
|
13516 |
|
13517 |
-
#: wppa-settings-autosave.php:
|
13518 |
#, fuzzy
|
13519 |
msgid "Move all photos"
|
13520 |
msgstr "Toutes les photos"
|
13521 |
|
13522 |
-
#: wppa-settings-autosave.php:
|
13523 |
#, fuzzy
|
13524 |
msgid "Move all photos from one album to another album."
|
13525 |
msgstr "Déplacer toutes les photos d'un album à un autre album."
|
13526 |
|
13527 |
-
#: wppa-settings-autosave.php:
|
13528 |
#, fuzzy
|
13529 |
msgid "From"
|
13530 |
msgstr "De:"
|
13531 |
|
13532 |
-
#: wppa-settings-autosave.php:
|
13533 |
#, fuzzy
|
13534 |
msgid "Move from album"
|
13535 |
msgstr "De l'album"
|
13536 |
|
13537 |
-
#: wppa-settings-autosave.php:
|
13538 |
#, fuzzy
|
13539 |
msgid "To"
|
13540 |
msgstr "à"
|
13541 |
|
13542 |
-
#: wppa-settings-autosave.php:
|
13543 |
#, fuzzy
|
13544 |
msgid "Move to album"
|
13545 |
msgstr "Déplacer vers l'album"
|
13546 |
|
13547 |
-
#: wppa-settings-autosave.php:
|
13548 |
msgid "Listings"
|
13549 |
msgstr "Listes"
|
13550 |
|
13551 |
-
#: wppa-settings-autosave.php:
|
13552 |
msgid "List Logfile"
|
13553 |
msgstr "Lister le journal (log)"
|
13554 |
|
13555 |
-
#: wppa-settings-autosave.php:
|
13556 |
#, fuzzy
|
13557 |
msgid "Show the content of wppa+ (error) log."
|
13558 |
msgstr "Afficher le contenu de LPPT (erreur) journal."
|
13559 |
|
13560 |
-
#: wppa-settings-autosave.php:
|
13561 |
msgid "Purge logfile"
|
13562 |
msgstr "Purger le journal (log)"
|
13563 |
|
13564 |
-
#: wppa-settings-autosave.php:
|
13565 |
msgid "List Ratings"
|
13566 |
msgstr "Lister les votes"
|
13567 |
|
13568 |
-
#: wppa-settings-autosave.php:
|
13569 |
msgid "Show the most recent ratings."
|
13570 |
msgstr "Montrer les votes récents."
|
13571 |
|
13572 |
-
#: wppa-settings-autosave.php:
|
13573 |
msgid "List Index"
|
13574 |
msgstr "Liste d'index"
|
13575 |
|
13576 |
-
#: wppa-settings-autosave.php:
|
13577 |
#, fuzzy
|
13578 |
msgid "Show the content if the index table."
|
13579 |
msgstr "Afficher le contenu si la table d'index."
|
13580 |
|
13581 |
-
#: wppa-settings-autosave.php:
|
13582 |
msgid "Start at text:"
|
13583 |
msgstr "Commencer à:"
|
13584 |
|
13585 |
-
#: wppa-settings-autosave.php:
|
13586 |
msgid "List active sessions"
|
13587 |
msgstr "Lister les sessions actives"
|
13588 |
|
13589 |
-
#: wppa-settings-autosave.php:
|
13590 |
#, fuzzy
|
13591 |
msgid "Show the content of the sessions table."
|
13592 |
msgstr "Afficher le contenu de la table des sessions."
|
13593 |
|
13594 |
-
#: wppa-settings-autosave.php:
|
13595 |
msgid "List comments"
|
13596 |
msgstr "Liste des commentaires"
|
13597 |
|
13598 |
-
#: wppa-settings-autosave.php:
|
13599 |
#, fuzzy
|
13600 |
msgid "Show the content of the comments table."
|
13601 |
msgstr "Afficher le contenu de la table des commentaires."
|
13602 |
|
13603 |
-
#: wppa-settings-autosave.php:
|
13604 |
msgid "Order by:"
|
13605 |
msgstr "Trier par:"
|
13606 |
|
13607 |
-
#: wppa-settings-autosave.php:
|
13608 |
msgid "Table IX:"
|
13609 |
msgstr "Table IX:"
|
13610 |
|
13611 |
-
#: wppa-settings-autosave.php:
|
13612 |
#, fuzzy
|
13613 |
msgid "Miscellaneous:"
|
13614 |
msgstr "Type varié:"
|
13615 |
|
13616 |
-
#: wppa-settings-autosave.php:
|
13617 |
msgid "This table lists all settings that do not fit into an other table"
|
13618 |
msgstr ""
|
13619 |
"Ce table répertorie tous les paramètres qui ne rentrent pas dans une autre "
|
13620 |
"table"
|
13621 |
|
13622 |
-
#: wppa-settings-autosave.php:
|
13623 |
#, fuzzy
|
13624 |
msgid "Internal engine related settings"
|
13625 |
msgstr "les paramètres relatifs au moteur interne"
|
13626 |
|
13627 |
-
#: wppa-settings-autosave.php:
|
13628 |
msgid "WPPA+ Filter priority"
|
13629 |
msgstr "Priorité WPPA+ filtre"
|
13630 |
|
13631 |
-
#: wppa-settings-autosave.php:
|
13632 |
#, fuzzy
|
13633 |
msgid "Sets the priority of the wppa+ content filter."
|
13634 |
msgstr "Définit la priorité de la LPPT contenu filtre."
|
13635 |
|
13636 |
-
#: wppa-settings-autosave.php:
|
13637 |
#, fuzzy
|
13638 |
msgid ""
|
13639 |
"If you encounter conflicts with the theme or other plugins, increasing this "
|
@@ -13642,66 +13705,66 @@ msgstr ""
|
|
13642 |
"Si vous rencontrez des conflits avec le thème ou d'autres plugins, augmenter "
|
13643 |
"cette valeur est parfois utile. Utilisez avec grand soin!"
|
13644 |
|
13645 |
-
#: wppa-settings-autosave.php:
|
13646 |
msgid "Do_shortcode priority"
|
13647 |
msgstr "Priorité de do_shortcode"
|
13648 |
|
13649 |
-
#: wppa-settings-autosave.php:
|
13650 |
#, fuzzy
|
13651 |
msgid "Sets the priority of the do_shortcode() content filter."
|
13652 |
msgstr "Définit la priorité du do_shortcode () filtre de contenu."
|
13653 |
|
13654 |
-
#: wppa-settings-autosave.php:
|
13655 |
msgid "WPPA shortcode at Filter priority"
|
13656 |
msgstr "WPPA shortcode à la priorité du filtre"
|
13657 |
|
13658 |
-
#: wppa-settings-autosave.php:
|
13659 |
msgid "Execute shortcode expansion on filter priority in posts and pages."
|
13660 |
msgstr ""
|
13661 |
"Exécuter expansion shortcode sur la priorité de filtre dans les messages et "
|
13662 |
"les pages."
|
13663 |
|
13664 |
-
#: wppa-settings-autosave.php:
|
13665 |
#, fuzzy
|
13666 |
msgid "Use to fix certain layout problems"
|
13667 |
msgstr "Utilisez pour résoudre certains problèmes de mise en page"
|
13668 |
|
13669 |
-
#: wppa-settings-autosave.php:
|
13670 |
msgid "WPPA shortcode at Filter priority widget"
|
13671 |
msgstr "WPPA shortcode à la priorité du filtre en widget"
|
13672 |
|
13673 |
-
#: wppa-settings-autosave.php:
|
13674 |
msgid "Execute shortcode expansion on filter priority in widgets."
|
13675 |
msgstr "Exécuter expansion shortcode sur la priorité de filtre dans les widgets."
|
13676 |
|
13677 |
-
#: wppa-settings-autosave.php:
|
13678 |
msgid "JPG image quality"
|
13679 |
msgstr "Qualité d'image JPG"
|
13680 |
|
13681 |
-
#: wppa-settings-autosave.php:
|
13682 |
#, fuzzy
|
13683 |
msgid "The jpg quality when photos are downsized"
|
13684 |
msgstr "La qualité de jpg lorsque les photos sont redimensionnées"
|
13685 |
|
13686 |
-
#: wppa-settings-autosave.php:
|
13687 |
#, fuzzy
|
13688 |
msgid "The higher the number the better the quality but the larger the file"
|
13689 |
msgstr "Plus le nombre, meilleure est la qualité, mais plus le fichier"
|
13690 |
|
13691 |
-
#: wppa-settings-autosave.php:
|
13692 |
#, fuzzy
|
13693 |
msgid "Possible values 20..100"
|
13694 |
msgstr "Les valeurs possibles 20..100"
|
13695 |
|
13696 |
-
#: wppa-settings-autosave.php:
|
13697 |
msgid "Allow WPPA+ Debugging"
|
13698 |
msgstr "Permettre le WPPA+ débogage"
|
13699 |
|
13700 |
-
#: wppa-settings-autosave.php:
|
13701 |
msgid "Allow the use of &debug=.. in urls to this site."
|
13702 |
msgstr "Permettre l’utilisation de &debug=... dans les URL de ce site."
|
13703 |
|
13704 |
-
#: wppa-settings-autosave.php:
|
13705 |
#, fuzzy
|
13706 |
msgid ""
|
13707 |
"If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this site "
|
@@ -13711,15 +13774,15 @@ msgstr ""
|
|
13711 |
"site va générer l'affichage de LPPT spéciale diagnostic, ainsi que des "
|
13712 |
"avertissements php"
|
13713 |
|
13714 |
-
#: wppa-settings-autosave.php:
|
13715 |
msgid "Auto continue"
|
13716 |
msgstr "Auto continuer"
|
13717 |
|
13718 |
-
#: wppa-settings-autosave.php:
|
13719 |
msgid "Continue automatic after time out"
|
13720 |
msgstr "Continuer automatique après délai"
|
13721 |
|
13722 |
-
#: wppa-settings-autosave.php:
|
13723 |
msgid ""
|
13724 |
"If checked, an attempt will be made to restart an admin process when the time "
|
13725 |
"is out."
|
@@ -13727,12 +13790,12 @@ msgstr ""
|
|
13727 |
"Si cochée, une tentative se fera pour relancer un processus d’admin quand le "
|
13728 |
"temps est sorti."
|
13729 |
|
13730 |
-
#: wppa-settings-autosave.php:
|
13731 |
#, fuzzy
|
13732 |
msgid "Set max execution time here."
|
13733 |
msgstr "Réglez le temps d'exécution max ici."
|
13734 |
|
13735 |
-
#: wppa-settings-autosave.php:
|
13736 |
#, fuzzy
|
13737 |
msgid ""
|
13738 |
"If your php config does not properly set the max execution time, you can set "
|
@@ -13741,32 +13804,32 @@ msgstr ""
|
|
13741 |
"Si votre php config ne définit pas correctement le temps d'exécution max, vous "
|
13742 |
"pouvez définir ici. Secondes, 0 signifie ne changent pas."
|
13743 |
|
13744 |
-
#: wppa-settings-autosave.php:
|
13745 |
msgid "A safe value is 45 in most cases"
|
13746 |
msgstr "Une valeur sûre est de 45 le plus souvent"
|
13747 |
|
13748 |
-
#: wppa-settings-autosave.php:
|
13749 |
#, fuzzy, php-format
|
13750 |
msgid "The PHP setting max_execution_time is set to %s."
|
13751 |
msgstr "Le paramètre PHP max_execution_time est réglé sur%s."
|
13752 |
|
13753 |
-
#: wppa-settings-autosave.php:
|
13754 |
msgid "Feed use thumb"
|
13755 |
msgstr "Feed utilisez les miniatures"
|
13756 |
|
13757 |
-
#: wppa-settings-autosave.php:
|
13758 |
msgid "Feeds use thumbnail pictures always."
|
13759 |
msgstr "RSS utilisent toujours les images miniatures."
|
13760 |
|
13761 |
-
#: wppa-settings-autosave.php:
|
13762 |
msgid "Enable <i>in-line</i> settings"
|
13763 |
msgstr "Activez les paramètres <i>en ligne</i>"
|
13764 |
|
13765 |
-
#: wppa-settings-autosave.php:
|
13766 |
msgid "Activates shortcode [wppa_set][/wppa_set]."
|
13767 |
msgstr "Active le shortcode [wppa_set][/ wppa_set]."
|
13768 |
|
13769 |
-
#: wppa-settings-autosave.php:
|
13770 |
#, fuzzy
|
13771 |
msgid ""
|
13772 |
"Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
|
@@ -13774,7 +13837,7 @@ msgstr ""
|
|
13774 |
"Syntaxe: [nom wppa_set = valeur \"tout paramètre LPPT\" = \"nouvelle valeur\"] "
|
13775 |
"[/ wppa_set]"
|
13776 |
|
13777 |
-
#: wppa-settings-autosave.php:
|
13778 |
msgid ""
|
13779 |
"Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
|
13780 |
"sets the thumbnail type to vertical masonry style"
|
@@ -13782,41 +13845,41 @@ msgstr ""
|
|
13782 |
"Exemple: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"] [/wppa_set] "
|
13783 |
"définit le type miniature au style de maçonnerie verticale"
|
13784 |
|
13785 |
-
#: wppa-settings-autosave.php:
|
13786 |
msgid "Do not forget to reset with [wppa_set][/wppa_set]"
|
13787 |
msgstr "N’oubliez pas de réinitialiser avec [wppa_set][/wppa_set]"
|
13788 |
|
13789 |
-
#: wppa-settings-autosave.php:
|
13790 |
#, fuzzy
|
13791 |
msgid "Use with great care! There is no check on validity of values!"
|
13792 |
msgstr ""
|
13793 |
"Utilisez avec grand soin! Il n'y a pas de contrôle sur la validité des valeurs!"
|
13794 |
|
13795 |
-
#: wppa-settings-autosave.php:
|
13796 |
#, fuzzy
|
13797 |
msgid "Runtime modifyable settings"
|
13798 |
msgstr "Runtime paramètres modifyable"
|
13799 |
|
13800 |
-
#: wppa-settings-autosave.php:
|
13801 |
#, fuzzy
|
13802 |
msgid "The setting slugs that may be altered using [wppa_set] shortcode."
|
13803 |
msgstr ""
|
13804 |
"Les limaces de réglage qui peuvent être modifiés en utilisant [wppa_set] "
|
13805 |
"shortcode."
|
13806 |
|
13807 |
-
#: wppa-settings-autosave.php:
|
13808 |
msgid "WPPA+ Admin related miscellaneous settings"
|
13809 |
msgstr "Paramètres diverse liés à WPPA+ Admin"
|
13810 |
|
13811 |
-
#: wppa-settings-autosave.php:
|
13812 |
msgid "Allow HTML"
|
13813 |
msgstr "Autoriser HTML"
|
13814 |
|
13815 |
-
#: wppa-settings-autosave.php:
|
13816 |
msgid "Allow HTML in album and photo descriptions."
|
13817 |
msgstr "Permettre le HTML dans les descriptions d’album et photo."
|
13818 |
|
13819 |
-
#: wppa-settings-autosave.php:
|
13820 |
#, fuzzy
|
13821 |
msgid ""
|
13822 |
"If checked: html is allowed. WARNING: No checks on syntax, it is your own "
|
@@ -13825,23 +13888,23 @@ msgstr ""
|
|
13825 |
"Si coché: html est autorisé. AVERTISSEMENT: Aucun contrôle sur la syntaxe, il "
|
13826 |
"est de votre propre responsabilité de fermer les balises correctement!"
|
13827 |
|
13828 |
-
#: wppa-settings-autosave.php:
|
13829 |
msgid "Allow HTML custom"
|
13830 |
msgstr "Autoriser HTML personnalisé"
|
13831 |
|
13832 |
-
#: wppa-settings-autosave.php:
|
13833 |
msgid "Allow HTML in custom photo datafields."
|
13834 |
msgstr "Permettre HTML dans les photo datafields personnalisé."
|
13835 |
|
13836 |
-
#: wppa-settings-autosave.php:
|
13837 |
msgid "Check tag balance"
|
13838 |
msgstr "Vérifier balance de balises"
|
13839 |
|
13840 |
-
#: wppa-settings-autosave.php:
|
13841 |
msgid "Check if the HTML tags are properly closed: \"balanced\"."
|
13842 |
msgstr "Vérifier si les balises HTML sont bien fermés: « équilibré »."
|
13843 |
|
13844 |
-
#: wppa-settings-autosave.php:
|
13845 |
#, fuzzy
|
13846 |
msgid ""
|
13847 |
"If the HTML tags in an album or a photo description are not in balance, the "
|
@@ -13851,40 +13914,40 @@ msgstr ""
|
|
13851 |
"en équilibre, la description n'a pas été mis à jour, un errormessage est "
|
13852 |
"affiché"
|
13853 |
|
13854 |
-
#: wppa-settings-autosave.php:
|
13855 |
msgid "Use WP editor"
|
13856 |
msgstr "Utiliser l'éditeur de WordPress"
|
13857 |
|
13858 |
-
#: wppa-settings-autosave.php:
|
13859 |
#, fuzzy
|
13860 |
msgid "Use the wp editor for multiline text fields."
|
13861 |
msgstr "Utilisez l'éditeur de wp pour les champs de texte multiligne."
|
13862 |
|
13863 |
-
#: wppa-settings-autosave.php:
|
13864 |
msgid "Album sel hierarchic"
|
13865 |
msgstr "Album sel hiérarchique"
|
13866 |
|
13867 |
-
#: wppa-settings-autosave.php:
|
13868 |
#, fuzzy
|
13869 |
msgid "Show albums with (grand)parents in selection lists."
|
13870 |
msgstr "Afficher les albums avec (grands-) parents dans les listes de sélection."
|
13871 |
|
13872 |
-
#: wppa-settings-autosave.php:
|
13873 |
#, fuzzy
|
13874 |
msgid "Page sel hierarchic"
|
13875 |
msgstr "Page sel hiérarchisé"
|
13876 |
|
13877 |
-
#: wppa-settings-autosave.php:
|
13878 |
#, fuzzy
|
13879 |
msgid "Show pages with (grand)parents in selection lists."
|
13880 |
msgstr "Afficher les pages avec (grands-) parents dans les listes de sélection."
|
13881 |
|
13882 |
-
#: wppa-settings-autosave.php:
|
13883 |
#, fuzzy
|
13884 |
msgid "Photo admin page size"
|
13885 |
msgstr "Photo page admin Taille"
|
13886 |
|
13887 |
-
#: wppa-settings-autosave.php:
|
13888 |
#, fuzzy
|
13889 |
msgid ""
|
13890 |
"The number of photos per page on the <br/>Edit Album -> Manage photos and Edit "
|
@@ -13893,70 +13956,70 @@ msgstr ""
|
|
13893 |
"Le nombre de photos par page sur le <br/> Modifier l'album -> Gérer les photos "
|
13894 |
"et éditer des photos pages d'administration."
|
13895 |
|
13896 |
-
#: wppa-settings-autosave.php:
|
13897 |
msgid "Comment admin page size"
|
13898 |
msgstr "Taille de la page d'admin des commentaires"
|
13899 |
|
13900 |
-
#: wppa-settings-autosave.php:
|
13901 |
#, fuzzy
|
13902 |
msgid "The number of comments per page on the Comments admin pages."
|
13903 |
msgstr "Le nombre de commentaires par page sur les pages Commentaires admin."
|
13904 |
|
13905 |
-
#: wppa-settings-autosave.php:
|
13906 |
msgid "Geo info edit"
|
13907 |
msgstr "Modifier géo info"
|
13908 |
|
13909 |
-
#: wppa-settings-autosave.php:
|
13910 |
#, fuzzy
|
13911 |
msgid "Lattitude and longitude may be edited in photo admin."
|
13912 |
msgstr "Lattitude et longitude peuvent être édités en photo administrateur."
|
13913 |
|
13914 |
-
#: wppa-settings-autosave.php:
|
13915 |
msgid "Admin bar menu admin"
|
13916 |
msgstr "Admin bar menu admin"
|
13917 |
|
13918 |
-
#: wppa-settings-autosave.php:
|
13919 |
#, fuzzy
|
13920 |
msgid "Show menu on admin bar on admin pages."
|
13921 |
msgstr ""
|
13922 |
"Afficher le menu sur la barre d'administration sur les pages d'administration."
|
13923 |
|
13924 |
-
#: wppa-settings-autosave.php:
|
13925 |
msgid "Admin bar menu frontend"
|
13926 |
msgstr "Admin bar menu frontend"
|
13927 |
|
13928 |
-
#: wppa-settings-autosave.php:
|
13929 |
#, fuzzy
|
13930 |
msgid "Show menu on admin bar on frontend pages."
|
13931 |
msgstr "Afficher le menu sur la barre d'administration sur les pages frontend."
|
13932 |
|
13933 |
-
#: wppa-settings-autosave.php:
|
13934 |
msgid "Add shortcode to posts"
|
13935 |
msgstr "Ajouter shortcode à messages"
|
13936 |
|
13937 |
-
#: wppa-settings-autosave.php:
|
13938 |
msgid "Add a shortcode to the end of all posts."
|
13939 |
msgstr "Ajoutez un shortcode à la fin de tous les postes."
|
13940 |
|
13941 |
-
#: wppa-settings-autosave.php:
|
13942 |
msgid "Shortcode to add"
|
13943 |
msgstr "Shortcode à ajouter"
|
13944 |
|
13945 |
-
#: wppa-settings-autosave.php:
|
13946 |
#, fuzzy
|
13947 |
msgid "The shortcode to be added to the posts."
|
13948 |
msgstr "Le shortcode à ajouter aux messages."
|
13949 |
|
13950 |
-
#: wppa-settings-autosave.php:
|
13951 |
msgid "We use Scripts"
|
13952 |
msgstr "Nous utilisons des Scripts"
|
13953 |
|
13954 |
-
#: wppa-settings-autosave.php:
|
13955 |
#, fuzzy
|
13956 |
msgid "Use scripting syntax in shortcode generator."
|
13957 |
msgstr "Utilisez la syntaxe de script générateur de shortcode."
|
13958 |
|
13959 |
-
#: wppa-settings-autosave.php:
|
13960 |
#, fuzzy
|
13961 |
msgid ""
|
13962 |
"This setting defines if the shortcode generator outputs old style script tags "
|
@@ -13965,74 +14028,74 @@ msgstr ""
|
|
13965 |
"Ce paramètre définit si le générateur de shortcode sorties anciennes balises "
|
13966 |
"de script de style ou de nouveaux shortcodes de style."
|
13967 |
|
13968 |
-
#: wppa-settings-autosave.php:
|
13969 |
#, fuzzy
|
13970 |
msgid "Import page prieviews"
|
13971 |
msgstr "Page d'importation prieviews"
|
13972 |
|
13973 |
-
#: wppa-settings-autosave.php:
|
13974 |
#, fuzzy
|
13975 |
msgid "Show thumbnail previews in import admin page."
|
13976 |
msgstr ""
|
13977 |
"Afficher les aperçus miniatures dans la page d'administration d'importation."
|
13978 |
|
13979 |
-
#: wppa-settings-autosave.php:
|
13980 |
msgid "Upload audiostub"
|
13981 |
msgstr "Charger audiostub"
|
13982 |
|
13983 |
-
#: wppa-settings-autosave.php:
|
13984 |
#, fuzzy
|
13985 |
msgid "Upload a new audio stub file"
|
13986 |
msgstr "Ajouter un nouveau fichier stub audio"
|
13987 |
|
13988 |
-
#: wppa-settings-autosave.php:
|
13989 |
msgid "Upload audio stub image"
|
13990 |
msgstr "Charger image audiostub"
|
13991 |
|
13992 |
-
#: wppa-settings-autosave.php:
|
13993 |
msgid "Confirm create"
|
13994 |
msgstr "Confirmer création"
|
13995 |
|
13996 |
-
#: wppa-settings-autosave.php:
|
13997 |
msgid "Display confirmation dialog before creating album."
|
13998 |
msgstr "Afficher boîte de dialogue de confirmation avant de créer l’album."
|
13999 |
|
14000 |
-
#: wppa-settings-autosave.php:
|
14001 |
#, fuzzy
|
14002 |
msgid "Import source root"
|
14003 |
msgstr "Description (optionnel)"
|
14004 |
|
14005 |
-
#: wppa-settings-autosave.php:
|
14006 |
#, fuzzy
|
14007 |
msgid "Specify the highest level in the filesystem where to import from"
|
14008 |
msgstr ""
|
14009 |
"Indiquez le plus haut niveau dans le système de fichiers où importer à partir"
|
14010 |
|
14011 |
-
#: wppa-settings-autosave.php:
|
14012 |
msgid "Allow import from WPPA+ source folders"
|
14013 |
msgstr "Autoriser les importations de WPPA+ dossiers sources"
|
14014 |
|
14015 |
-
#: wppa-settings-autosave.php:
|
14016 |
#, fuzzy
|
14017 |
msgid "Only switch this on if you know what you are doing!"
|
14018 |
msgstr "Ne mettez cela sur si vous savez ce que vous faites!"
|
14019 |
|
14020 |
-
#: wppa-settings-autosave.php:
|
14021 |
#, fuzzy
|
14022 |
msgid "SEO related settings"
|
14023 |
msgstr "paramètres SEO liés"
|
14024 |
|
14025 |
-
#: wppa-settings-autosave.php:
|
14026 |
#, fuzzy
|
14027 |
msgid "Meta on page"
|
14028 |
msgstr "Meta à la page"
|
14029 |
|
14030 |
-
#: wppa-settings-autosave.php:
|
14031 |
#, fuzzy
|
14032 |
msgid "Meta tags for photos on the page."
|
14033 |
msgstr "Les balises META pour les photos sur la page."
|
14034 |
|
14035 |
-
#: wppa-settings-autosave.php:
|
14036 |
#, fuzzy
|
14037 |
msgid ""
|
14038 |
"If checked, the header of the page will contain metatags that refer to "
|
@@ -14041,16 +14104,16 @@ msgstr ""
|
|
14041 |
"Si elle est cochée, l'en-tête de la page contiendra metatags qui se réfèrent à "
|
14042 |
"des photos en vedette sur la page dans le contexte de la page."
|
14043 |
|
14044 |
-
#: wppa-settings-autosave.php:
|
14045 |
msgid "Meta all"
|
14046 |
msgstr "Tous les meta"
|
14047 |
|
14048 |
-
#: wppa-settings-autosave.php:
|
14049 |
#, fuzzy
|
14050 |
msgid "Meta tags for all featured photos."
|
14051 |
msgstr "Les balises META pour tous en vedette des photos."
|
14052 |
|
14053 |
-
#: wppa-settings-autosave.php:
|
14054 |
msgid ""
|
14055 |
"If checked, the header of the page will contain metatags that refer to all "
|
14056 |
"featured photo files."
|
@@ -14058,7 +14121,7 @@ msgstr ""
|
|
14058 |
"Si elle est cocheé, l’en-tête de la page contiendra les metatags qui font "
|
14059 |
"référence à tous les fichiers photo recommandés."
|
14060 |
|
14061 |
-
#: wppa-settings-autosave.php:
|
14062 |
#, fuzzy
|
14063 |
msgid ""
|
14064 |
"If you have many featured photos, you might wish to uncheck this item to "
|
@@ -14067,15 +14130,15 @@ msgstr ""
|
|
14067 |
"Si vous avez de nombreuses photos en vedette, vous voudrez peut-être décocher "
|
14068 |
"cet élément pour réduire la taille de l'en-tête de page."
|
14069 |
|
14070 |
-
#: wppa-settings-autosave.php:
|
14071 |
msgid "Add og meta tags"
|
14072 |
msgstr "Ajouter des balises meta"
|
14073 |
|
14074 |
-
#: wppa-settings-autosave.php:
|
14075 |
msgid "Add og meta tags to the page header."
|
14076 |
msgstr "Ajouter og balises meta pour l’en-tête de page."
|
14077 |
|
14078 |
-
#: wppa-settings-autosave.php:
|
14079 |
#, fuzzy
|
14080 |
msgid ""
|
14081 |
"Turning this off may affect the functionality of social media items in the "
|
@@ -14085,147 +14148,147 @@ msgstr ""
|
|
14085 |
"éléments des médias sociaux dans la boîte d'actions qui reposent sur "
|
14086 |
"l'information ouverte balises graphique."
|
14087 |
|
14088 |
-
#: wppa-settings-autosave.php:
|
14089 |
#, fuzzy
|
14090 |
msgid "Image Alt attribute type"
|
14091 |
msgstr "Image Alt type d'attribut"
|
14092 |
|
14093 |
-
#: wppa-settings-autosave.php:
|
14094 |
#, fuzzy
|
14095 |
msgid "Select kind of HTML alt=\"\" content for images."
|
14096 |
msgstr "Sélectionnez type de HTML alt = \"\" contenu pour les images."
|
14097 |
|
14098 |
-
#: wppa-settings-autosave.php:
|
14099 |
msgid "photo name"
|
14100 |
msgstr "Nom de la photo"
|
14101 |
|
14102 |
-
#: wppa-settings-autosave.php:
|
14103 |
msgid "name without file-ext"
|
14104 |
msgstr "nom sans l'extension de fichier"
|
14105 |
|
14106 |
-
#: wppa-settings-autosave.php:
|
14107 |
msgid "set in album admin"
|
14108 |
msgstr "Réglé dans album admin"
|
14109 |
|
14110 |
-
#: wppa-settings-autosave.php:
|
14111 |
#, fuzzy
|
14112 |
msgid "New Album and New Photo related miscellaneous settings"
|
14113 |
msgstr "Nouvel album et une nouvelle photo liées réglages divers"
|
14114 |
|
14115 |
-
#: wppa-settings-autosave.php:
|
14116 |
#, fuzzy
|
14117 |
msgid "Maximum time an album is indicated as New"
|
14118 |
msgstr "La durée maximale d'un album est indiqué comme New"
|
14119 |
|
14120 |
-
#: wppa-settings-autosave.php:
|
14121 |
msgid "New Photo"
|
14122 |
msgstr "Nouvelle photo"
|
14123 |
|
14124 |
-
#: wppa-settings-autosave.php:
|
14125 |
#, fuzzy
|
14126 |
msgid "Maximum time a photo is indicated as New"
|
14127 |
msgstr "La durée maximale d'une photo est indiquée comme New"
|
14128 |
|
14129 |
-
#: wppa-settings-autosave.php:
|
14130 |
msgid "Modified Album"
|
14131 |
msgstr "Album modifié"
|
14132 |
|
14133 |
-
#: wppa-settings-autosave.php:
|
14134 |
#, fuzzy
|
14135 |
msgid "Maximum time an album is indicated as Modified"
|
14136 |
msgstr "La durée maximale d'un album est indiqué comme modifié"
|
14137 |
|
14138 |
-
#: wppa-settings-autosave.php:
|
14139 |
msgid "Modified Photo"
|
14140 |
msgstr "Photo modifiée"
|
14141 |
|
14142 |
-
#: wppa-settings-autosave.php:
|
14143 |
#, fuzzy
|
14144 |
msgid "Maximum time a photo is indicated as Modofied"
|
14145 |
msgstr "La durée maximale d'une photo est indiquée comme Modofied"
|
14146 |
|
14147 |
-
#: wppa-settings-autosave.php:
|
14148 |
msgid "Use text labels"
|
14149 |
msgstr "Utiliser les étiquettes de texte"
|
14150 |
|
14151 |
-
#: wppa-settings-autosave.php:
|
14152 |
#, fuzzy
|
14153 |
msgid "Use editable text for the New and Modified labels"
|
14154 |
msgstr "Utilisez texte modifiable pour les nouvelles et modifiées étiquettes"
|
14155 |
|
14156 |
-
#: wppa-settings-autosave.php:
|
14157 |
#, fuzzy
|
14158 |
msgid "If UNticked, you can specify the urls for custom images to be used."
|
14159 |
msgstr ""
|
14160 |
"Si décochée, vous pouvez spécifier les urls pour les images personnalisées à "
|
14161 |
"utiliser."
|
14162 |
|
14163 |
-
#: wppa-settings-autosave.php:
|
14164 |
msgid "Orange"
|
14165 |
msgstr "Orange"
|
14166 |
|
14167 |
-
#: wppa-settings-autosave.php:
|
14168 |
msgid "Yellow"
|
14169 |
msgstr "Jaune"
|
14170 |
|
14171 |
-
#: wppa-settings-autosave.php:
|
14172 |
msgid "Purple"
|
14173 |
msgstr "Voilet"
|
14174 |
|
14175 |
-
#: wppa-settings-autosave.php:
|
14176 |
msgid "Black/white"
|
14177 |
msgstr "Noir/Blanc"
|
14178 |
|
14179 |
-
#: wppa-settings-autosave.php:
|
14180 |
msgid "New label"
|
14181 |
msgstr "Nouveau label"
|
14182 |
|
14183 |
-
#: wppa-settings-autosave.php:
|
14184 |
#, fuzzy
|
14185 |
msgid "Specify the \"New\" indicator details."
|
14186 |
msgstr "Spécifiez les «nouveaux» les détails de l'indicateur."
|
14187 |
|
14188 |
-
#: wppa-settings-autosave.php:
|
14189 |
msgid "If you use qTranslate, the text may be multilingual."
|
14190 |
msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
|
14191 |
|
14192 |
-
#: wppa-settings-autosave.php:
|
14193 |
#: wppa-stereo.php:31
|
14194 |
msgid "Color"
|
14195 |
msgstr "Couleur"
|
14196 |
|
14197 |
-
#: wppa-settings-autosave.php:
|
14198 |
#, fuzzy
|
14199 |
msgid "Modified label"
|
14200 |
msgstr "étiquette modifiée"
|
14201 |
|
14202 |
-
#: wppa-settings-autosave.php:
|
14203 |
#, fuzzy
|
14204 |
msgid "Specify the \"Modified\" indicator details."
|
14205 |
msgstr "Spécifiez les \"modifiés\" détails de l'indicateur."
|
14206 |
|
14207 |
-
#: wppa-settings-autosave.php:
|
14208 |
#, fuzzy
|
14209 |
msgid "Specify the \"New\" indicator url."
|
14210 |
msgstr "Spécifiez le \"Nouveau\" indicateur url."
|
14211 |
|
14212 |
-
#: wppa-settings-autosave.php:
|
14213 |
#, fuzzy
|
14214 |
msgid "Specify the \"Modified\" indicator url."
|
14215 |
msgstr "Spécifiez l'indicateur \"Modifié\" url."
|
14216 |
|
14217 |
-
#: wppa-settings-autosave.php:
|
14218 |
#, fuzzy
|
14219 |
msgid "Limit LasTen New"
|
14220 |
msgstr "Limite lasten Nouveau"
|
14221 |
|
14222 |
-
#: wppa-settings-autosave.php:
|
14223 |
#, fuzzy
|
14224 |
msgid "Limits the LasTen photos to those that are 'New', or newly modified."
|
14225 |
msgstr ""
|
14226 |
"Limite des photos lasten à ceux qui sont «Nouveau», ou nouvellement modifiées."
|
14227 |
|
14228 |
-
#: wppa-settings-autosave.php:
|
14229 |
msgid ""
|
14230 |
"If you tick this box and configured the new photo time, you can even limit the "
|
14231 |
"number by the setting in Table I-F7, or set that number to an unlikely high "
|
@@ -14235,12 +14298,12 @@ msgstr ""
|
|
14235 |
"même limiter le nombre par la mise en Table I-F7, ou définir ce nombre sur une "
|
14236 |
"valeur élevée peu probable."
|
14237 |
|
14238 |
-
#: wppa-settings-autosave.php:
|
14239 |
#, fuzzy
|
14240 |
msgid "LasTen use Modified"
|
14241 |
msgstr "utilisation lasten modification"
|
14242 |
|
14243 |
-
#: wppa-settings-autosave.php:
|
14244 |
#, fuzzy
|
14245 |
msgid ""
|
14246 |
"Use the time modified rather than time upload for LasTen widget/shortcode."
|
@@ -14248,15 +14311,15 @@ msgstr ""
|
|
14248 |
"Utilisez le temps modifié plutôt que le téléchargement de temps pour lasten "
|
14249 |
"widget / shortcode."
|
14250 |
|
14251 |
-
#: wppa-settings-autosave.php:
|
14252 |
msgid "Apply Newphoto desc"
|
14253 |
msgstr "Appliquer la description nouveau"
|
14254 |
|
14255 |
-
#: wppa-settings-autosave.php:
|
14256 |
msgid "Give each new photo a standard description."
|
14257 |
msgstr "Donner à chaque nouvelle photo une description normalisée."
|
14258 |
|
14259 |
-
#: wppa-settings-autosave.php:
|
14260 |
msgid ""
|
14261 |
"If checked, each new photo will get the description (template) as specified in "
|
14262 |
"the next item."
|
@@ -14264,46 +14327,46 @@ msgstr ""
|
|
14264 |
"Si cochée, chaque nouvelle photo obtient la description (modèle), comme "
|
14265 |
"spécifié dans l’element suivant."
|
14266 |
|
14267 |
-
#: wppa-settings-autosave.php:
|
14268 |
msgid "New photo desc"
|
14269 |
msgstr "Description nouvelle photo"
|
14270 |
|
14271 |
-
#: wppa-settings-autosave.php:
|
14272 |
#, fuzzy
|
14273 |
msgid "The description (template) to add to a new photo."
|
14274 |
msgstr "La description (modèle) pour ajouter une nouvelle photo."
|
14275 |
|
14276 |
-
#: wppa-settings-autosave.php:
|
14277 |
msgid "Enter the default description."
|
14278 |
msgstr "Entrez la description par défaut."
|
14279 |
|
14280 |
-
#: wppa-settings-autosave.php:
|
14281 |
msgid "If you use html, please check item A-1 of this table."
|
14282 |
msgstr "Si vous utilisez html, s’il vous plaît cochez point A-1 de ce table."
|
14283 |
|
14284 |
-
#: wppa-settings-autosave.php:
|
14285 |
msgid "New photo owner"
|
14286 |
msgstr "Propriétaire de nouvelle photo"
|
14287 |
|
14288 |
-
#: wppa-settings-autosave.php:
|
14289 |
msgid "The owner of a new uploaded photo."
|
14290 |
msgstr "Le propriétaire d’une nouvelle photo téléchargée."
|
14291 |
|
14292 |
-
#: wppa-settings-autosave.php:
|
14293 |
msgid "If you leave this blank, the uploader will be set as the owner"
|
14294 |
msgstr ""
|
14295 |
"Si vous laissez ce champ vide, l’uploader sera définie en tant que propriétaire"
|
14296 |
|
14297 |
-
#: wppa-settings-autosave.php:
|
14298 |
msgid "leave blank or enter login name"
|
14299 |
msgstr "laissez vide ou entrez le nom de connexion"
|
14300 |
|
14301 |
-
#: wppa-settings-autosave.php:
|
14302 |
#, fuzzy
|
14303 |
msgid "New albums are created with this upload limit."
|
14304 |
msgstr "Nouveaux albums sont créés avec cette limite de téléchargement."
|
14305 |
|
14306 |
-
#: wppa-settings-autosave.php:
|
14307 |
msgid ""
|
14308 |
"Administrators can change the limit settings in the \"Edit Album Information\" "
|
14309 |
"admin page."
|
@@ -14311,20 +14374,20 @@ msgstr ""
|
|
14311 |
"Administrateurs peuvent modifier les paramètres de limite dans la page "
|
14312 |
"d’administration de « Modifier les informations de Album »."
|
14313 |
|
14314 |
-
#: wppa-settings-autosave.php:
|
14315 |
msgid "Default parent"
|
14316 |
msgstr "Parent par défaut"
|
14317 |
|
14318 |
-
#: wppa-settings-autosave.php:
|
14319 |
#, fuzzy
|
14320 |
msgid "The parent album of new albums."
|
14321 |
msgstr "L'album de parent de nouveaux albums."
|
14322 |
|
14323 |
-
#: wppa-settings-autosave.php:
|
14324 |
msgid "Default parent always"
|
14325 |
msgstr "Par défaut parent toujours"
|
14326 |
|
14327 |
-
#: wppa-settings-autosave.php:
|
14328 |
#, fuzzy
|
14329 |
msgid ""
|
14330 |
"The parent album of new albums is always the default, except for "
|
@@ -14333,68 +14396,68 @@ msgstr ""
|
|
14333 |
"L'album de parent de nouveaux albums est toujours la valeur par défaut, sauf "
|
14334 |
"pour les administrateurs."
|
14335 |
|
14336 |
-
#: wppa-settings-autosave.php:
|
14337 |
#, fuzzy
|
14338 |
msgid "Show album full"
|
14339 |
msgstr "Voir l'album complet"
|
14340 |
|
14341 |
-
#: wppa-settings-autosave.php:
|
14342 |
#, fuzzy
|
14343 |
msgid "Show the Upload limit reached message if appropriate."
|
14344 |
msgstr "Afficher le chargement limite un message atteint le cas échéant."
|
14345 |
|
14346 |
-
#: wppa-settings-autosave.php:
|
14347 |
msgid "Grant an album"
|
14348 |
msgstr "Grant an album"
|
14349 |
|
14350 |
-
#: wppa-settings-autosave.php:
|
14351 |
msgid "Create an album for each user logging in."
|
14352 |
msgstr "Créer un album pour chaque utilisateur connecté."
|
14353 |
|
14354 |
-
#: wppa-settings-autosave.php:
|
14355 |
msgid "Grant album name"
|
14356 |
msgstr "Grant album name"
|
14357 |
|
14358 |
-
#: wppa-settings-autosave.php:
|
14359 |
#, fuzzy
|
14360 |
msgid "The name to be used for the album."
|
14361 |
msgstr "Le nom à utiliser pour l'album."
|
14362 |
|
14363 |
-
#: wppa-settings-autosave.php:
|
14364 |
msgid "Login name"
|
14365 |
msgstr "Identifiant"
|
14366 |
|
14367 |
-
#: wppa-settings-autosave.php:
|
14368 |
msgid "Display name"
|
14369 |
msgstr "Afficher le nom"
|
14370 |
|
14371 |
-
#: wppa-settings-autosave.php:
|
14372 |
msgid "Id"
|
14373 |
msgstr "Id"
|
14374 |
|
14375 |
-
#: wppa-settings-autosave.php:
|
14376 |
msgid "Firstname Lastname"
|
14377 |
msgstr "Prénom Nom de famille"
|
14378 |
|
14379 |
-
#: wppa-settings-autosave.php:
|
14380 |
msgid "Grant parent"
|
14381 |
msgstr "Grant parent"
|
14382 |
|
14383 |
-
#: wppa-settings-autosave.php:
|
14384 |
#, fuzzy
|
14385 |
msgid "The parent album of the auto created albums."
|
14386 |
msgstr "L'album de parent de l'auto albums créé."
|
14387 |
|
14388 |
-
#: wppa-settings-autosave.php:
|
14389 |
msgid "Max user albums"
|
14390 |
msgstr "Max albums d'utilisateur"
|
14391 |
|
14392 |
-
#: wppa-settings-autosave.php:
|
14393 |
#, fuzzy
|
14394 |
msgid "The max number of albums a user can create."
|
14395 |
msgstr "Le nombre maximum d'albums un utilisateur peut créer."
|
14396 |
|
14397 |
-
#: wppa-settings-autosave.php:
|
14398 |
#, fuzzy
|
14399 |
msgid ""
|
14400 |
"The maximum number of albums a user can create when he is not admin and owner "
|
@@ -14403,53 +14466,53 @@ msgstr ""
|
|
14403 |
"Le nombre maximum d'albums, un utilisateur peut créer quand il est pas "
|
14404 |
"administrateur et propriétaire seulement est actif"
|
14405 |
|
14406 |
-
#: wppa-settings-autosave.php:
|
14407 |
msgid "A number of 0 means No limit"
|
14408 |
msgstr "Un nombre de 0 signifie aucune limite"
|
14409 |
|
14410 |
-
#: wppa-settings-autosave.php:
|
14411 |
msgid "Default photo name"
|
14412 |
msgstr "Nom de photo par défaut"
|
14413 |
|
14414 |
-
#: wppa-settings-autosave.php:
|
14415 |
#, fuzzy
|
14416 |
msgid "Select the way the name of a new uploaded photo should be determined."
|
14417 |
msgstr ""
|
14418 |
"Sélectionnez la façon dont le nom d'une nouvelle photo téléchargée doit être "
|
14419 |
"déterminée."
|
14420 |
|
14421 |
-
#: wppa-settings-autosave.php:
|
14422 |
msgid "Filename"
|
14423 |
msgstr "Nom de fichier"
|
14424 |
|
14425 |
-
#: wppa-settings-autosave.php:
|
14426 |
msgid "Filename without extension"
|
14427 |
msgstr "Nom de fichier sans extension"
|
14428 |
|
14429 |
-
#: wppa-settings-autosave.php:
|
14430 |
#, fuzzy
|
14431 |
msgid "IPTC Tag 2#005 (Graphic name)"
|
14432 |
msgstr "IPTC Tag 2 # 005 (nom Graphic)"
|
14433 |
|
14434 |
-
#: wppa-settings-autosave.php:
|
14435 |
#, fuzzy
|
14436 |
msgid "IPTC Tag 2#120 (Caption)"
|
14437 |
msgstr "IPTC Tag 2 # 120 (Légende)"
|
14438 |
|
14439 |
-
#: wppa-settings-autosave.php:
|
14440 |
msgid "No name at all"
|
14441 |
msgstr "Pas de nom du tout"
|
14442 |
|
14443 |
-
#: wppa-settings-autosave.php:
|
14444 |
msgid "Default coverphoto"
|
14445 |
msgstr "Photo de couverture par défaut"
|
14446 |
|
14447 |
-
#: wppa-settings-autosave.php:
|
14448 |
#, fuzzy
|
14449 |
msgid "Name of photofile to become cover image"
|
14450 |
msgstr "Nom du photofile pour devenir l'image de couverture"
|
14451 |
|
14452 |
-
#: wppa-settings-autosave.php:
|
14453 |
msgid ""
|
14454 |
"If you name a photofile like this setting before upload, it will become the "
|
14455 |
"coverimage automaticly."
|
@@ -14457,67 +14520,67 @@ msgstr ""
|
|
14457 |
"Si vous nommez une Photothèque comme ce paramètre avant de télécharger, il "
|
14458 |
"deviendra automatiquement le coverimage."
|
14459 |
|
14460 |
-
#: wppa-settings-autosave.php:
|
14461 |
msgid "Copy Timestamp"
|
14462 |
msgstr "Copier timestamp"
|
14463 |
|
14464 |
-
#: wppa-settings-autosave.php:
|
14465 |
msgid "Copy timestamp when copying photo."
|
14466 |
msgstr "Copiez timestamp lors de la copie de photo."
|
14467 |
|
14468 |
-
#: wppa-settings-autosave.php:
|
14469 |
msgid "If checked, the copied photo is not \"new\""
|
14470 |
msgstr "Si elle est cochée, la photo copiée n'est pas \"nouveau\""
|
14471 |
|
14472 |
-
#: wppa-settings-autosave.php:
|
14473 |
msgid "Copy Owner"
|
14474 |
msgstr "Copier le propriétaire"
|
14475 |
|
14476 |
-
#: wppa-settings-autosave.php:
|
14477 |
msgid "Copy the owner when copying photo."
|
14478 |
msgstr "Copiez le propriétaire lors de la copie de photo."
|
14479 |
|
14480 |
-
#: wppa-settings-autosave.php:
|
14481 |
msgid "FE Albums public"
|
14482 |
msgstr "FE Albums publics"
|
14483 |
|
14484 |
-
#: wppa-settings-autosave.php:
|
14485 |
msgid "Frontend created albums are --- public ---"
|
14486 |
msgstr "Albums créé en Frontend sont --- publics ---"
|
14487 |
|
14488 |
-
#: wppa-settings-autosave.php:
|
14489 |
#, fuzzy
|
14490 |
msgid "Optimize image files right after upload/import"
|
14491 |
msgstr "Optimiser les fichiers d'image à droite après upload / import"
|
14492 |
|
14493 |
-
#: wppa-settings-autosave.php:
|
14494 |
#, fuzzy
|
14495 |
msgid "This option requires the plugin EWWW Image Optimizer to be activated"
|
14496 |
msgstr "Cette option nécessite le plugin EWWW Image Optimizer pour être activé"
|
14497 |
|
14498 |
-
#: wppa-settings-autosave.php:
|
14499 |
msgid "Default album linktype"
|
14500 |
msgstr "Linktype album par défaut"
|
14501 |
|
14502 |
-
#: wppa-settings-autosave.php:
|
14503 |
#, fuzzy
|
14504 |
msgid "The album linktype for new albums"
|
14505 |
msgstr "Le linktype album de nouveaux albums"
|
14506 |
|
14507 |
-
#: wppa-settings-autosave.php:
|
14508 |
#, fuzzy
|
14509 |
msgid "Search Albums and Photos related settings"
|
14510 |
msgstr "Recherche albums et les photos liées réglages"
|
14511 |
|
14512 |
-
#: wppa-settings-autosave.php:
|
14513 |
msgid "Search page"
|
14514 |
msgstr "Rechercher dans la page"
|
14515 |
|
14516 |
-
#: wppa-settings-autosave.php:
|
14517 |
msgid "Display the search results on page."
|
14518 |
msgstr "Affichez les résultats de recherche sur la page."
|
14519 |
|
14520 |
-
#: wppa-settings-autosave.php:
|
14521 |
#, fuzzy, php-format
|
14522 |
msgid ""
|
14523 |
"Select the page to be used to display search results. The page MUST contain "
|
@@ -14526,13 +14589,13 @@ msgstr ""
|
|
14526 |
"Sélectionnez la page à utiliser pour afficher les résultats de recherche. La "
|
14527 |
"page DOIT contenir %% LPPT %% ou [LPPT] [/ LPPT]."
|
14528 |
|
14529 |
-
#: wppa-settings-autosave.php:
|
14530 |
msgid "You may give it the title \"Search results\" or something alike."
|
14531 |
msgstr ""
|
14532 |
"Vous pouvez lui donner titre « résultats de la recherche » ou quelque chose "
|
14533 |
"comme."
|
14534 |
|
14535 |
-
#: wppa-settings-autosave.php:
|
14536 |
#, fuzzy
|
14537 |
msgid ""
|
14538 |
"Or you ou may use the standard page on which you display the generic album."
|
@@ -14540,15 +14603,15 @@ msgstr ""
|
|
14540 |
"Ou vous ous pouvez utiliser la page standard sur lequel vous affichez l'album "
|
14541 |
"générique."
|
14542 |
|
14543 |
-
#: wppa-settings-autosave.php:
|
14544 |
msgid "Exclude separate"
|
14545 |
msgstr "Exclure séparé"
|
14546 |
|
14547 |
-
#: wppa-settings-autosave.php:
|
14548 |
msgid "Do not search 'separate' albums."
|
14549 |
msgstr "Ne pas rechercher dans les albums 'séparés'"
|
14550 |
|
14551 |
-
#: wppa-settings-autosave.php:
|
14552 |
#, fuzzy
|
14553 |
msgid ""
|
14554 |
"When checked, albums (and photos in them) that have the parent set to --- "
|
@@ -14557,7 +14620,7 @@ msgstr ""
|
|
14557 |
"Lorsqu'elle est cochée, les albums (et des photos en eux) qui ont le parent "
|
14558 |
"mis à --- --- séparée seront exclus de la fouille."
|
14559 |
|
14560 |
-
#: wppa-settings-autosave.php:
|
14561 |
msgid ""
|
14562 |
"Except when you start searching in a 'saparate' album, with the \"search in "
|
14563 |
"current section\" box ticked."
|
@@ -14565,92 +14628,92 @@ msgstr ""
|
|
14565 |
"Sauf lorsque vous démarrez la recherche d’un album « saparate », avec la case "
|
14566 |
"« recherche dans la section en cours » cochée."
|
14567 |
|
14568 |
-
#: wppa-settings-autosave.php:
|
14569 |
msgid "Include tags"
|
14570 |
msgstr "Inclure les tags"
|
14571 |
|
14572 |
-
#: wppa-settings-autosave.php:
|
14573 |
msgid "Do also search the photo tags."
|
14574 |
msgstr "Également rechercher les balises de photo."
|
14575 |
|
14576 |
-
#: wppa-settings-autosave.php:
|
14577 |
#, fuzzy
|
14578 |
msgid "When checked, the tags of the photo will also be searched."
|
14579 |
msgstr ""
|
14580 |
"Lorsqu'elle est cochée, les balises de la photo seront également recherchées."
|
14581 |
|
14582 |
-
#: wppa-settings-autosave.php:
|
14583 |
msgid "Include categories"
|
14584 |
msgstr "Inclure les catégories:"
|
14585 |
|
14586 |
-
#: wppa-settings-autosave.php:
|
14587 |
msgid "Do also search the album categories."
|
14588 |
msgstr "Également rechercher les catégories de l’album."
|
14589 |
|
14590 |
-
#: wppa-settings-autosave.php:
|
14591 |
#, fuzzy
|
14592 |
msgid "When checked, the categories of the album will also be searched."
|
14593 |
msgstr ""
|
14594 |
"Lorsqu'elle est cochée, les catégories de l'album seront également recherchées."
|
14595 |
|
14596 |
-
#: wppa-settings-autosave.php:
|
14597 |
msgid "Include comments"
|
14598 |
msgstr "Inclure les commentaires"
|
14599 |
|
14600 |
-
#: wppa-settings-autosave.php:
|
14601 |
msgid "Do also search the comments on photos."
|
14602 |
msgstr "Également rechercher les commentaires sur les photos."
|
14603 |
|
14604 |
-
#: wppa-settings-autosave.php:
|
14605 |
#, fuzzy
|
14606 |
msgid "When checked, the comments of the photos will also be searched."
|
14607 |
msgstr ""
|
14608 |
"Lorsqu'elle est cochée, les commentaires des photos seront également "
|
14609 |
"recherchées."
|
14610 |
|
14611 |
-
#: wppa-settings-autosave.php:
|
14612 |
msgid "Photos only"
|
14613 |
msgstr "Photos seulement"
|
14614 |
|
14615 |
-
#: wppa-settings-autosave.php:
|
14616 |
#, fuzzy
|
14617 |
msgid "Search for photos only."
|
14618 |
msgstr "Rechercher des photos seulement."
|
14619 |
|
14620 |
-
#: wppa-settings-autosave.php:
|
14621 |
#, fuzzy
|
14622 |
msgid "When checked, only photos will be searched for."
|
14623 |
msgstr "Lorsqu'elle est cochée, seules les photos seront recherchées."
|
14624 |
|
14625 |
-
#: wppa-settings-autosave.php:
|
14626 |
msgid "Max albums found"
|
14627 |
msgstr "Maximum des albums trouvés"
|
14628 |
|
14629 |
-
#: wppa-settings-autosave.php:
|
14630 |
#, fuzzy
|
14631 |
msgid "The maximum number of albums to be displayed."
|
14632 |
msgstr "Le nombre maximum d'albums à afficher."
|
14633 |
|
14634 |
-
#: wppa-settings-autosave.php:
|
14635 |
#, fuzzy
|
14636 |
msgid "Max photos found"
|
14637 |
msgstr "Max photos trouvées"
|
14638 |
|
14639 |
-
#: wppa-settings-autosave.php:
|
14640 |
#, fuzzy
|
14641 |
msgid "The maximum number of photos to be displayed."
|
14642 |
msgstr "Le nombre maximum de photos à afficher."
|
14643 |
|
14644 |
-
#: wppa-settings-autosave.php:
|
14645 |
#, fuzzy
|
14646 |
msgid "Tags OR only"
|
14647 |
msgstr "Mots-clefs ou seulement"
|
14648 |
|
14649 |
-
#: wppa-settings-autosave.php:
|
14650 |
msgid "No and / or buttons"
|
14651 |
msgstr "Pas de boutons et / ou"
|
14652 |
|
14653 |
-
#: wppa-settings-autosave.php:
|
14654 |
msgid ""
|
14655 |
"Hide the and/or radiobuttons and do the or method in the multitag widget and "
|
14656 |
"shortcode."
|
@@ -14658,29 +14721,29 @@ msgstr ""
|
|
14658 |
"Masquer l’et/ou de cases d’option et ne l’ou la méthode dans le widget "
|
14659 |
"multibalises et shortcode."
|
14660 |
|
14661 |
-
#: wppa-settings-autosave.php:
|
14662 |
msgid "Tags add Inverse"
|
14663 |
msgstr "Balisess ajouter un Inverse"
|
14664 |
|
14665 |
-
#: wppa-settings-autosave.php:
|
14666 |
msgid "Add a checkbox to invert the selection."
|
14667 |
msgstr "Ajoute une case à cocher pour inverser la sélection."
|
14668 |
|
14669 |
-
#: wppa-settings-autosave.php:
|
14670 |
msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
|
14671 |
msgstr ""
|
14672 |
"Ajoute une case à cocher inverser (pas) sur le widget multibalises et "
|
14673 |
"shortcode."
|
14674 |
|
14675 |
-
#: wppa-settings-autosave.php:
|
14676 |
msgid "Floating searchtoken"
|
14677 |
msgstr "Jeton recherche flottant"
|
14678 |
|
14679 |
-
#: wppa-settings-autosave.php:
|
14680 |
msgid "A match need not start at the first char."
|
14681 |
msgstr "Un match ne besoin pas dès le premier char."
|
14682 |
|
14683 |
-
#: wppa-settings-autosave.php:
|
14684 |
msgid ""
|
14685 |
"A match is found while searching also when the entered token is somewhere in "
|
14686 |
"the middle of a word."
|
@@ -14688,23 +14751,23 @@ msgstr ""
|
|
14688 |
"Une correspondance est trouvée en cherchant également lorsque le jeton est "
|
14689 |
"entré est quelque part au milieu d’un mot."
|
14690 |
|
14691 |
-
#: wppa-settings-autosave.php:
|
14692 |
#, fuzzy
|
14693 |
msgid "This works in indexed search only!"
|
14694 |
msgstr "Cela fonctionne uniquement Recherche indexée!"
|
14695 |
|
14696 |
-
#: wppa-settings-autosave.php:
|
14697 |
#, fuzzy
|
14698 |
msgid "Search results display"
|
14699 |
msgstr "Résultats de la recherche affichage"
|
14700 |
|
14701 |
-
#: wppa-settings-autosave.php:
|
14702 |
#, fuzzy
|
14703 |
msgid "Select the way the search results should be displayed."
|
14704 |
msgstr ""
|
14705 |
"Sélectionnez la façon dont les résultats de la recherche doivent être affichés."
|
14706 |
|
14707 |
-
#: wppa-settings-autosave.php:
|
14708 |
msgid ""
|
14709 |
"If you select anything different from \"Albums and thumbnails\", \"Photos only"
|
14710 |
"\" is assumed (Table IX-E6)."
|
@@ -14712,26 +14775,26 @@ msgstr ""
|
|
14712 |
"Si vous choisissez quelque chose de différent de \"Albums et miniatures\", "
|
14713 |
"\"Photos seulement\" est supposé (Table IX-E6)."
|
14714 |
|
14715 |
-
#: wppa-settings-autosave.php:
|
14716 |
msgid "Albums and thumbnails"
|
14717 |
msgstr "Album et vignettes"
|
14718 |
|
14719 |
-
#: wppa-settings-autosave.php:
|
14720 |
#, fuzzy
|
14721 |
msgid "Slideonly slideshow"
|
14722 |
msgstr "Slideonly slideshow"
|
14723 |
|
14724 |
-
#: wppa-settings-autosave.php:
|
14725 |
#, fuzzy
|
14726 |
msgid "Name max length"
|
14727 |
-
msgstr "
|
14728 |
|
14729 |
-
#: wppa-settings-autosave.php:
|
14730 |
#, fuzzy
|
14731 |
msgid "Max length of displayed photonames in supersearch selectionlist"
|
14732 |
msgstr "Longueur maxi de photonames affichés dans SelectionList SuperRecherche"
|
14733 |
|
14734 |
-
#: wppa-settings-autosave.php:
|
14735 |
#, fuzzy
|
14736 |
msgid ""
|
14737 |
"To limit the length of the selectionlist, enter the number of characters to "
|
@@ -14740,75 +14803,75 @@ msgstr ""
|
|
14740 |
"Pour limiter la longueur de la SelectionList, entrez le nombre de caractères à "
|
14741 |
"afficher."
|
14742 |
|
14743 |
-
#: wppa-settings-autosave.php:
|
14744 |
#, fuzzy
|
14745 |
msgid "Text max length"
|
14746 |
-
msgstr "
|
14747 |
|
14748 |
-
#: wppa-settings-autosave.php:
|
14749 |
#, fuzzy
|
14750 |
msgid "Max length of displayed photo text in supersearch selectionlist"
|
14751 |
msgstr ""
|
14752 |
"Longueur maximale du texte affiché photo dans SelectionList SuperRecherche"
|
14753 |
|
14754 |
-
#: wppa-settings-autosave.php:
|
14755 |
#, fuzzy
|
14756 |
msgid "Search toptext"
|
14757 |
msgstr "Recherche Toptext"
|
14758 |
|
14759 |
-
#: wppa-settings-autosave.php:
|
14760 |
#, fuzzy
|
14761 |
msgid "The text at the top of the search box."
|
14762 |
msgstr "Le texte en haut de la zone de recherche."
|
14763 |
|
14764 |
-
#: wppa-settings-autosave.php:
|
14765 |
#, fuzzy
|
14766 |
msgid "May contain unfiltered HTML."
|
14767 |
msgstr "Peut contenir HTML non filtré."
|
14768 |
|
14769 |
-
#: wppa-settings-autosave.php:
|
14770 |
#, fuzzy
|
14771 |
msgid "Section search text"
|
14772 |
msgstr "texte Section de recherche"
|
14773 |
|
14774 |
-
#: wppa-settings-autosave.php:
|
14775 |
#, fuzzy
|
14776 |
msgid "The labeltext at the checkbox."
|
14777 |
msgstr "Le labelText à la case à cocher."
|
14778 |
|
14779 |
-
#: wppa-settings-autosave.php:
|
14780 |
#, fuzzy
|
14781 |
msgid "Results search text"
|
14782 |
msgstr "texte de recherche de résultats"
|
14783 |
|
14784 |
-
#: wppa-settings-autosave.php:
|
14785 |
msgid "Watermark related settings"
|
14786 |
msgstr "Paramètres associés de Filigrane"
|
14787 |
|
14788 |
-
#: wppa-settings-autosave.php:
|
14789 |
msgid "Enable the application of watermarks."
|
14790 |
msgstr "Permettre l’application de filigranes."
|
14791 |
|
14792 |
-
#: wppa-settings-autosave.php:
|
14793 |
msgid "If checked, photos can be watermarked during upload / import."
|
14794 |
msgstr ""
|
14795 |
"S’il est activé, les photos peuvent être filigranés pendant le "
|
14796 |
"téléchargement / import."
|
14797 |
|
14798 |
-
#: wppa-settings-autosave.php:
|
14799 |
msgid "Watermark file"
|
14800 |
msgstr "Fichier filigrane"
|
14801 |
|
14802 |
-
#: wppa-settings-autosave.php:
|
14803 |
#, fuzzy
|
14804 |
msgid "The default watermarkfile to be used."
|
14805 |
msgstr "Le watermarkfile par défaut à utiliser."
|
14806 |
|
14807 |
-
#: wppa-settings-autosave.php:
|
14808 |
msgid "Watermark files are of type png and reside in"
|
14809 |
msgstr "Les fichiers filigrane sont du type PNG et consistent en"
|
14810 |
|
14811 |
-
#: wppa-settings-autosave.php:
|
14812 |
msgid ""
|
14813 |
"A suitable watermarkfile typically consists of a transparent background and a "
|
14814 |
"black text or drawing."
|
@@ -14816,7 +14879,7 @@ msgstr ""
|
|
14816 |
"Un watermarkfile convenable se compose généralement d’un arrière-plan "
|
14817 |
"transparent et un texte noir ou un dessin."
|
14818 |
|
14819 |
-
#: wppa-settings-autosave.php:
|
14820 |
msgid ""
|
14821 |
"You may also select one of the textual watermark types at the bottom of the "
|
14822 |
"selection list."
|
@@ -14824,32 +14887,32 @@ msgstr ""
|
|
14824 |
"Vous pouvez également sélectionner un des types de filigrane textuel au bas de "
|
14825 |
"la liste de sélection."
|
14826 |
|
14827 |
-
#: wppa-settings-autosave.php:
|
14828 |
msgid "position:"
|
14829 |
msgstr "Position:"
|
14830 |
|
14831 |
-
#: wppa-settings-autosave.php:
|
14832 |
msgid "Upload watermark"
|
14833 |
msgstr "Charger filigrane"
|
14834 |
|
14835 |
-
#: wppa-settings-autosave.php:
|
14836 |
msgid "Upload a new watermark file"
|
14837 |
msgstr "Charger un nouveau fichier filigrane"
|
14838 |
|
14839 |
-
#: wppa-settings-autosave.php:
|
14840 |
msgid "Upload watermark image"
|
14841 |
msgstr "Charger une image filigrane"
|
14842 |
|
14843 |
-
#: wppa-settings-autosave.php:
|
14844 |
msgid "Watermark opacity image"
|
14845 |
msgstr "Opacité du filigrane d'image"
|
14846 |
|
14847 |
-
#: wppa-settings-autosave.php:
|
14848 |
#, fuzzy
|
14849 |
msgid "You can set the intensity of image watermarks here."
|
14850 |
msgstr "Vous pouvez régler l'intensité de l'image filigranes ici."
|
14851 |
|
14852 |
-
#: wppa-settings-autosave.php:
|
14853 |
#, fuzzy
|
14854 |
msgid ""
|
14855 |
"The higher the number, the intenser the watermark. Value must be > 0 and <= "
|
@@ -14858,85 +14921,85 @@ msgstr ""
|
|
14858 |
"Plus le nombre est élevé, plus intense du filigrane. La valeur doit être> 0 et "
|
14859 |
"<= 100."
|
14860 |
|
14861 |
-
#: wppa-settings-autosave.php:
|
14862 |
msgid "Textual watermark style"
|
14863 |
msgstr "Style du texte filigrane"
|
14864 |
|
14865 |
-
#: wppa-settings-autosave.php:
|
14866 |
#, fuzzy
|
14867 |
msgid "The way the textual watermarks look like"
|
14868 |
msgstr "La façon dont les filigranes textuels ressemblent"
|
14869 |
|
14870 |
-
#: wppa-settings-autosave.php:
|
14871 |
msgid "TV subtitle style"
|
14872 |
msgstr "Style des sous-titres"
|
14873 |
|
14874 |
-
#: wppa-settings-autosave.php:
|
14875 |
msgid "White text on black background"
|
14876 |
msgstr "Texte blanc sur fond noir"
|
14877 |
|
14878 |
-
#: wppa-settings-autosave.php:
|
14879 |
msgid "Black text on white background"
|
14880 |
msgstr "Texte noir sur fond blanc"
|
14881 |
|
14882 |
-
#: wppa-settings-autosave.php:
|
14883 |
#, fuzzy
|
14884 |
msgid "Reverse TV style (Utopia)"
|
14885 |
msgstr "le style Reverse TV (Utopia)"
|
14886 |
|
14887 |
-
#: wppa-settings-autosave.php:
|
14888 |
msgid "White on transparent background"
|
14889 |
msgstr "Blanc sur fond transparent"
|
14890 |
|
14891 |
-
#: wppa-settings-autosave.php:
|
14892 |
msgid "Black on transparent background"
|
14893 |
msgstr "Noir sur fond transparent"
|
14894 |
|
14895 |
-
#: wppa-settings-autosave.php:
|
14896 |
#, fuzzy
|
14897 |
msgid "Predefined watermark text"
|
14898 |
msgstr "texte en filigrane Predefined"
|
14899 |
|
14900 |
-
#: wppa-settings-autosave.php:
|
14901 |
#, fuzzy
|
14902 |
msgid "The text to use when --- pre-defined --- is selected."
|
14903 |
msgstr "Le texte à utiliser quand --- pré-défini --- est sélectionné."
|
14904 |
|
14905 |
-
#: wppa-settings-autosave.php:
|
14906 |
msgid "You may use the following keywords:"
|
14907 |
msgstr "Vous pouvez utiliser les mots clés suivants:"
|
14908 |
|
14909 |
-
#: wppa-settings-autosave.php:
|
14910 |
msgid ""
|
14911 |
"w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
|
14912 |
msgstr ""
|
14913 |
"w#site, w#displayname, tous les mots-clés photo standard, mots clés iptc et "
|
14914 |
"exif"
|
14915 |
|
14916 |
-
#: wppa-settings-autosave.php:
|
14917 |
msgid "Textual watermark font"
|
14918 |
msgstr "Police du texte filigrane"
|
14919 |
|
14920 |
-
#: wppa-settings-autosave.php:
|
14921 |
#, fuzzy
|
14922 |
msgid "The font to use with textusl watermarks."
|
14923 |
msgstr "La police à utiliser avec filigranes textusl."
|
14924 |
|
14925 |
-
#: wppa-settings-autosave.php:
|
14926 |
msgid "Except for the system font, are font files of type ttf and reside in"
|
14927 |
msgstr ""
|
14928 |
"À l’exception de la police système, sont des fichiers de police de type ttf et "
|
14929 |
"résident dans"
|
14930 |
|
14931 |
-
#: wppa-settings-autosave.php:
|
14932 |
msgid "Textual watermark font size"
|
14933 |
msgstr "Taille de la police texte filigrane"
|
14934 |
|
14935 |
-
#: wppa-settings-autosave.php:
|
14936 |
msgid "You can set the size of the truetype fonts only."
|
14937 |
msgstr "Vous pouvez définir seulement la taille des polices truetype."
|
14938 |
|
14939 |
-
#: wppa-settings-autosave.php:
|
14940 |
#, fuzzy
|
14941 |
msgid ""
|
14942 |
"System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
|
@@ -14945,7 +15008,7 @@ msgstr ""
|
|
14945 |
"la police du système peut avoir une taille 1,2,3,4 ou 5, dans certaines unités "
|
14946 |
"FontSize stoneage. Toute valeur> 5 sera traitée comme 5."
|
14947 |
|
14948 |
-
#: wppa-settings-autosave.php:
|
14949 |
#, fuzzy
|
14950 |
msgid ""
|
14951 |
"Truetype fonts can have any positive integer size, if your PHPs GD version is "
|
@@ -14954,20 +15017,20 @@ msgstr ""
|
|
14954 |
"Les polices TrueType peuvent avoir toute taille de nombre entier positif, si "
|
14955 |
"votre version de PHP GD est 1, en pixels, en GD2 points."
|
14956 |
|
14957 |
-
#: wppa-settings-autosave.php:
|
14958 |
#, fuzzy
|
14959 |
msgid "It is unclear howmany pixels a point is..."
|
14960 |
msgstr "On ne sait pas howmany pixels est un point ..."
|
14961 |
|
14962 |
-
#: wppa-settings-autosave.php:
|
14963 |
msgid "Upload watermark font"
|
14964 |
msgstr "Charger police filigrane"
|
14965 |
|
14966 |
-
#: wppa-settings-autosave.php:
|
14967 |
msgid "Upload a new watermark font file"
|
14968 |
msgstr "Charger un nouveau fichier filigrane"
|
14969 |
|
14970 |
-
#: wppa-settings-autosave.php:
|
14971 |
#, fuzzy
|
14972 |
msgid ""
|
14973 |
"Upload truetype fonts (.ttf) only, and test if they work on your server "
|
@@ -14976,189 +15039,189 @@ msgstr ""
|
|
14976 |
"Ajouter des polices TrueType (.ttf) seulement, et de tester si elles "
|
14977 |
"fonctionnent sur votre plate-forme serveur."
|
14978 |
|
14979 |
-
#: wppa-settings-autosave.php:
|
14980 |
msgid "Upload TrueType font"
|
14981 |
msgstr "Charger police TrueType"
|
14982 |
|
14983 |
-
#: wppa-settings-autosave.php:
|
14984 |
msgid "Watermark opacity text"
|
14985 |
msgstr "Opacité du filigrane de texte"
|
14986 |
|
14987 |
-
#: wppa-settings-autosave.php:
|
14988 |
#, fuzzy
|
14989 |
msgid "You can set the intensity of a text watermarks here."
|
14990 |
msgstr "Vous pouvez régler l'intensité d'un texte filigranes ici."
|
14991 |
|
14992 |
-
#: wppa-settings-autosave.php:
|
14993 |
msgid "A real life preview. To update: refresh the page."
|
14994 |
msgstr "Un aperçu de la vie réelle. Mise à jour: actualisez la page."
|
14995 |
|
14996 |
-
#: wppa-settings-autosave.php:
|
14997 |
msgid "Watermark thumbnails"
|
14998 |
msgstr "Vignettes filigrane"
|
14999 |
|
15000 |
-
#: wppa-settings-autosave.php:
|
15001 |
msgid "Watermark also the thumbnail image files."
|
15002 |
msgstr "Filigrane également les fichiers de l’image miniature."
|
15003 |
|
15004 |
-
#: wppa-settings-autosave.php:
|
15005 |
#, fuzzy
|
15006 |
msgid "Slideshow elements sequence order settings"
|
15007 |
msgstr "éléments du diaporama paramètres de l'ordre de séquence"
|
15008 |
|
15009 |
-
#: wppa-settings-autosave.php:
|
15010 |
msgid "StartStop"
|
15011 |
msgstr "DémarrerArréter"
|
15012 |
|
15013 |
-
#: wppa-settings-autosave.php:
|
15014 |
#, fuzzy
|
15015 |
msgid "SlideFrame"
|
15016 |
msgstr "SlideFrame"
|
15017 |
|
15018 |
-
#: wppa-settings-autosave.php:
|
15019 |
msgid "Desc"
|
15020 |
msgstr "Desc"
|
15021 |
|
15022 |
-
#: wppa-settings-autosave.php:
|
15023 |
msgid "FilmStrip"
|
15024 |
msgstr "FilmStrip"
|
15025 |
|
15026 |
-
#: wppa-settings-autosave.php:
|
15027 |
msgid "Browsebar"
|
15028 |
msgstr "Browsebar"
|
15029 |
|
15030 |
-
#: wppa-settings-autosave.php:
|
15031 |
msgid "IPTC data"
|
15032 |
msgstr "Données IPTC"
|
15033 |
|
15034 |
-
#: wppa-settings-autosave.php:
|
15035 |
msgid "EXIF data"
|
15036 |
msgstr "Données EXIF"
|
15037 |
|
15038 |
-
#: wppa-settings-autosave.php:
|
15039 |
msgid "Share box"
|
15040 |
msgstr "Boîte de partage"
|
15041 |
|
15042 |
-
#: wppa-settings-autosave.php:
|
15043 |
msgid "Enabled"
|
15044 |
msgstr "Activé"
|
15045 |
|
15046 |
-
#: wppa-settings-autosave.php:
|
15047 |
msgid "Disabled"
|
15048 |
msgstr "Désactivé"
|
15049 |
|
15050 |
-
#: wppa-settings-autosave.php:
|
15051 |
#, fuzzy
|
15052 |
msgid "Start/Stop & Slower/Faster navigation bar"
|
15053 |
msgstr "Start / Stop & Slower / Faster barre de navigation"
|
15054 |
|
15055 |
-
#: wppa-settings-autosave.php:
|
15056 |
#, fuzzy
|
15057 |
msgid "The Slide Frame"
|
15058 |
msgstr "Le cadre de diapositives"
|
15059 |
|
15060 |
-
#: wppa-settings-autosave.php:
|
15061 |
msgid "( Always )"
|
15062 |
msgstr "( Toujours )"
|
15063 |
|
15064 |
-
#: wppa-settings-autosave.php:
|
15065 |
msgid "Photo Name Box"
|
15066 |
msgstr "Boîte de nom de la photo"
|
15067 |
|
15068 |
-
#: wppa-settings-autosave.php:
|
15069 |
#, fuzzy
|
15070 |
msgid "Photo Description Box"
|
15071 |
msgstr "Description de la photo Box"
|
15072 |
|
15073 |
-
#: wppa-settings-autosave.php:
|
15074 |
msgid "Custom Box"
|
15075 |
msgstr "Boîte personnalisée"
|
15076 |
|
15077 |
-
#: wppa-settings-autosave.php:
|
15078 |
msgid "Rating Bar"
|
15079 |
msgstr "Barre de vote"
|
15080 |
|
15081 |
-
#: wppa-settings-autosave.php:
|
15082 |
msgid "Film Strip with embedded Start/Stop and Goto functionality"
|
15083 |
msgstr "Bande de film avec des fonctionnalités de Start/Stop et Goto incorporée"
|
15084 |
|
15085 |
-
#: wppa-settings-autosave.php:
|
15086 |
msgid "Browse Bar with Photo X of Y counter"
|
15087 |
msgstr "Parcourir Bar avec comptoir de la Photo X de Y"
|
15088 |
|
15089 |
-
#: wppa-settings-autosave.php:
|
15090 |
msgid "Comments Box"
|
15091 |
msgstr "Boîte de commentaires"
|
15092 |
|
15093 |
-
#: wppa-settings-autosave.php:
|
15094 |
msgid "IPTC box"
|
15095 |
msgstr "Boîte IPTC"
|
15096 |
|
15097 |
-
#: wppa-settings-autosave.php:
|
15098 |
msgid "EXIF box"
|
15099 |
msgstr "Boîte EXIF"
|
15100 |
|
15101 |
-
#: wppa-settings-autosave.php:
|
15102 |
msgid "Social media share box"
|
15103 |
msgstr "Boîte de partage social"
|
15104 |
|
15105 |
-
#: wppa-settings-autosave.php:
|
15106 |
#, fuzzy
|
15107 |
msgid "Move Up"
|
15108 |
msgstr "Déplacer vers le haut"
|
15109 |
|
15110 |
-
#: wppa-settings-autosave.php:
|
15111 |
msgid "NameDesc"
|
15112 |
msgstr "NomDesc"
|
15113 |
|
15114 |
-
#: wppa-settings-autosave.php:
|
15115 |
#, fuzzy
|
15116 |
msgid "Photo Name & Description Box"
|
15117 |
msgstr "Photo Nom & Description Box"
|
15118 |
|
15119 |
-
#: wppa-settings-autosave.php:
|
15120 |
#, fuzzy
|
15121 |
msgid "Swap Namedesc"
|
15122 |
msgstr "Swap Namedesc"
|
15123 |
|
15124 |
-
#: wppa-settings-autosave.php:
|
15125 |
#, fuzzy
|
15126 |
msgid "Swap the order sequence of name and description"
|
15127 |
msgstr "Remplacez la séquence d'ordre de nom et la description"
|
15128 |
|
15129 |
-
#: wppa-settings-autosave.php:
|
15130 |
#, fuzzy
|
15131 |
msgid "Split Name and Desc"
|
15132 |
msgstr "Nom de Split et de Desc"
|
15133 |
|
15134 |
-
#: wppa-settings-autosave.php:
|
15135 |
#, fuzzy
|
15136 |
msgid "Put Name and Description in separate boxes"
|
15137 |
msgstr "Mettez nom et la description dans des boîtes séparées"
|
15138 |
|
15139 |
-
#: wppa-settings-autosave.php:
|
15140 |
#, fuzzy
|
15141 |
msgid "Please reload this page after the green checkmark appears!"
|
15142 |
msgstr "S'il vous plaît recharger cette page après la coche verte apparaît!"
|
15143 |
|
15144 |
-
#: wppa-settings-autosave.php:
|
15145 |
#, fuzzy
|
15146 |
msgid "Source file management and other upload/import settings and actions."
|
15147 |
msgstr ""
|
15148 |
"la gestion du fichier source et d'autres paramètres / et des actions "
|
15149 |
"d'importation téléchargement."
|
15150 |
|
15151 |
-
#: wppa-settings-autosave.php:
|
15152 |
#, fuzzy
|
15153 |
msgid "Keep sourcefiles admin"
|
15154 |
msgstr "Gardez administrateur SourceFiles"
|
15155 |
|
15156 |
-
#: wppa-settings-autosave.php:
|
15157 |
#, fuzzy
|
15158 |
msgid "Keep the original uploaded and imported photo files."
|
15159 |
msgstr "Gardez l'original et téléchargé des fichiers photo importés."
|
15160 |
|
15161 |
-
#: wppa-settings-autosave.php:
|
15162 |
#, fuzzy
|
15163 |
msgid ""
|
15164 |
"The files will be kept in a separate directory with subdirectories for each "
|
@@ -15167,7 +15230,7 @@ msgstr ""
|
|
15167 |
"Les fichiers seront conservés dans un répertoire distinct avec les sous-"
|
15168 |
"répertoires pour chaque album"
|
15169 |
|
15170 |
-
#: wppa-settings-autosave.php:
|
15171 |
#, fuzzy
|
15172 |
msgid ""
|
15173 |
"These files can be used to update the photos used in displaying in wppa+ and "
|
@@ -15177,53 +15240,53 @@ msgstr ""
|
|
15177 |
"dans l'affichage en LPPT et éventuellement pour le téléchargement, les "
|
15178 |
"images un-Downsized d'origine."
|
15179 |
|
15180 |
-
#: wppa-settings-autosave.php:
|
15181 |
#, fuzzy
|
15182 |
msgid "Keep sourcefiles frontend"
|
15183 |
msgstr "Gardez SourceFiles frontend"
|
15184 |
|
15185 |
-
#: wppa-settings-autosave.php:
|
15186 |
msgid "Keep the original frontend uploaded photo files."
|
15187 |
msgstr "Keep the original frontend uploaded photo files."
|
15188 |
|
15189 |
-
#: wppa-settings-autosave.php:
|
15190 |
msgid "Source directory"
|
15191 |
msgstr "Répertoire source"
|
15192 |
|
15193 |
-
#: wppa-settings-autosave.php:
|
15194 |
#, fuzzy
|
15195 |
msgid "The path to the directory where the original photofiles will be saved."
|
15196 |
msgstr ""
|
15197 |
"Le chemin vers le répertoire où les Photofiles originaux seront sauvegardés."
|
15198 |
|
15199 |
-
#: wppa-settings-autosave.php:
|
15200 |
msgid "You may change the directory path, but it can not be an url."
|
15201 |
msgstr ""
|
15202 |
"Vous pouvez changer le chemin d’accès du répertoire, mais il ne peut pas être "
|
15203 |
"une url."
|
15204 |
|
15205 |
-
#: wppa-settings-autosave.php:
|
15206 |
#, fuzzy
|
15207 |
msgid ""
|
15208 |
"The parent of the directory that you enter here must exist and be writable."
|
15209 |
msgstr ""
|
15210 |
"Le parent du répertoire que vous entrez ici doit exister et être inscriptible."
|
15211 |
|
15212 |
-
#: wppa-settings-autosave.php:
|
15213 |
#, fuzzy
|
15214 |
msgid "The directory itsself will be created if it does not exist yet."
|
15215 |
msgstr "Le répertoire itsself sera créé si elle n'existe pas encore."
|
15216 |
|
15217 |
-
#: wppa-settings-autosave.php:
|
15218 |
msgid "Keep sync"
|
15219 |
msgstr "Garder la synchronisation"
|
15220 |
|
15221 |
-
#: wppa-settings-autosave.php:
|
15222 |
#, fuzzy
|
15223 |
msgid "Keep source synchronously with wppa system."
|
15224 |
msgstr "Gardez la source synchrone avec système de LPPT."
|
15225 |
|
15226 |
-
#: wppa-settings-autosave.php:
|
15227 |
msgid ""
|
15228 |
"If checked, photos that are deleted from wppa, will also be removed from the "
|
15229 |
"sourcefiles."
|
@@ -15231,7 +15294,7 @@ msgstr ""
|
|
15231 |
"S’il est activé, les photos qui sont supprimés du wppa, sera également "
|
15232 |
"supprimé depuis les fichiers sources."
|
15233 |
|
15234 |
-
#: wppa-settings-autosave.php:
|
15235 |
msgid ""
|
15236 |
"Also, copying or moving photos to different albums, will also copy/move the "
|
15237 |
"sourcefiles."
|
@@ -15239,16 +15302,16 @@ msgstr ""
|
|
15239 |
"En outre, copier ou déplacer des photos de différents albums, sera également "
|
15240 |
"copier/déplacer les fichiers sources."
|
15241 |
|
15242 |
-
#: wppa-settings-autosave.php:
|
15243 |
msgid "Remake add"
|
15244 |
msgstr "Ajouter remake"
|
15245 |
|
15246 |
-
#: wppa-settings-autosave.php:
|
15247 |
#, fuzzy
|
15248 |
msgid "Photos will be added from the source pool"
|
15249 |
msgstr "Les photos seront ajoutées à partir du pool de la source"
|
15250 |
|
15251 |
-
#: wppa-settings-autosave.php:
|
15252 |
#, fuzzy
|
15253 |
msgid ""
|
15254 |
"If checked: If photo files are found in the source directory that do not exist "
|
@@ -15257,16 +15320,16 @@ msgstr ""
|
|
15257 |
"Si coché: Si les fichiers photo se trouvent dans le répertoire source qui "
|
15258 |
"n'existe pas dans l'album correspondant, ils seront ajoutés à l'album."
|
15259 |
|
15260 |
-
#: wppa-settings-autosave.php:
|
15261 |
msgid "Save IPTC data"
|
15262 |
msgstr "Sauver les données IPTC"
|
15263 |
|
15264 |
-
#: wppa-settings-autosave.php:
|
15265 |
#, fuzzy
|
15266 |
msgid "Store the iptc data from the photo into the iptc db table"
|
15267 |
msgstr "Stocker les données IPTC de la photo dans la table iptc db"
|
15268 |
|
15269 |
-
#: wppa-settings-autosave.php:
|
15270 |
msgid ""
|
15271 |
"You will need this if you enabled the display of iptc data in Table II-B17 or "
|
15272 |
"if you use it in the photo descriptions."
|
@@ -15274,16 +15337,16 @@ msgstr ""
|
|
15274 |
"Vous en aurez besoin si vous avez activé l’affichage des données iptc dans le "
|
15275 |
"Table II-B17 ou si vous l’utiliser dans les descriptions de photo."
|
15276 |
|
15277 |
-
#: wppa-settings-autosave.php:
|
15278 |
msgid "Save EXIF data"
|
15279 |
msgstr "Sauver les données EXIF"
|
15280 |
|
15281 |
-
#: wppa-settings-autosave.php:
|
15282 |
#, fuzzy
|
15283 |
msgid "Store the exif data from the photo into the exif db table"
|
15284 |
msgstr "Stocker les données EXIF de la photo dans la table exif db"
|
15285 |
|
15286 |
-
#: wppa-settings-autosave.php:
|
15287 |
msgid ""
|
15288 |
"You will need this if you enabled the display of exif data in Table II-B18 or "
|
15289 |
"if you use it in the photo descriptions."
|
@@ -15291,32 +15354,32 @@ msgstr ""
|
|
15291 |
"Vous en aurez besoin si vous avez activé l’affichage des données d’exif dans "
|
15292 |
"le Table II-B18 ou si vous l’utiliser dans les descriptions de photo."
|
15293 |
|
15294 |
-
#: wppa-settings-autosave.php:
|
15295 |
msgid "Max EXIF tag array size"
|
15296 |
msgstr "Taille max de tableau des balises EXIF"
|
15297 |
|
15298 |
-
#: wppa-settings-autosave.php:
|
15299 |
msgid "Truncate array tags to ..."
|
15300 |
msgstr "Tronquer les balises de tableau pour..."
|
15301 |
|
15302 |
-
#: wppa-settings-autosave.php:
|
15303 |
msgid "A value of 0 disables this feature"
|
15304 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
15305 |
|
15306 |
-
#: wppa-settings-autosave.php:
|
15307 |
msgid "elements"
|
15308 |
msgstr "éléments"
|
15309 |
|
15310 |
-
#: wppa-settings-autosave.php:
|
15311 |
#, fuzzy
|
15312 |
msgid "Import Create page"
|
15313 |
msgstr "Importer Créer une page"
|
15314 |
|
15315 |
-
#: wppa-settings-autosave.php:
|
15316 |
msgid "Create wp page when a directory to album is imported."
|
15317 |
msgstr "Créer page wp lorsqu’un répertoire de l’album est importé."
|
15318 |
|
15319 |
-
#: wppa-settings-autosave.php:
|
15320 |
msgid ""
|
15321 |
"As soon as an album is created when a directory is imported, a wp page is made "
|
15322 |
"that displays the album content."
|
@@ -15324,16 +15387,16 @@ msgstr ""
|
|
15324 |
"Dès qu’un album est créé lorsqu’un répertoire est importé, une page de wp est "
|
15325 |
"faite qui affiche le contenu de l’album."
|
15326 |
|
15327 |
-
#: wppa-settings-autosave.php:
|
15328 |
msgid "Page content"
|
15329 |
msgstr "Contenu de la page"
|
15330 |
|
15331 |
-
#: wppa-settings-autosave.php:
|
15332 |
#, fuzzy
|
15333 |
msgid "The content of the page. Must contain <b>w#album</b>"
|
15334 |
msgstr "Le contenu de la page. Doit contenir <b>w # album</b>"
|
15335 |
|
15336 |
-
#: wppa-settings-autosave.php:
|
15337 |
#, fuzzy
|
15338 |
msgid ""
|
15339 |
"The content of the page. Note: it must contain w#album. This will be replaced "
|
@@ -15342,43 +15405,43 @@ msgstr ""
|
|
15342 |
"Le contenu de la page. Remarque: il doit contenir w # album. Cela sera "
|
15343 |
"remplacé par le numéro de l'album dans le shortcode généré."
|
15344 |
|
15345 |
-
#: wppa-settings-autosave.php:
|
15346 |
msgid "Page type"
|
15347 |
msgstr "Type de la page"
|
15348 |
|
15349 |
-
#: wppa-settings-autosave.php:
|
15350 |
msgid "Select the type of page to create."
|
15351 |
msgstr "Choisir le type de page à créer."
|
15352 |
|
15353 |
-
#: wppa-settings-autosave.php:
|
15354 |
msgid "Post"
|
15355 |
msgstr "Article"
|
15356 |
|
15357 |
-
#: wppa-settings-autosave.php:
|
15358 |
msgid "Page status"
|
15359 |
msgstr "Statut de la page"
|
15360 |
|
15361 |
-
#: wppa-settings-autosave.php:
|
15362 |
msgid "Select the initial status of the page."
|
15363 |
msgstr "Choisir le statut initial de la page."
|
15364 |
|
15365 |
-
#: wppa-settings-autosave.php:
|
15366 |
msgid "Published"
|
15367 |
msgstr "Publié"
|
15368 |
|
15369 |
-
#: wppa-settings-autosave.php:
|
15370 |
msgid "Draft"
|
15371 |
msgstr "Brouillon"
|
15372 |
|
15373 |
-
#: wppa-settings-autosave.php:
|
15374 |
msgid "Permalink root"
|
15375 |
msgstr "Racine permalien"
|
15376 |
|
15377 |
-
#: wppa-settings-autosave.php:
|
15378 |
msgid "The name of the root for the photofile ermalink structure."
|
15379 |
msgstr "Le nom racine pour la structure du permalien de fichier photo."
|
15380 |
|
15381 |
-
#: wppa-settings-autosave.php:
|
15382 |
msgid ""
|
15383 |
"Choose a convenient name like \"albums\" or so; this will be the name of a "
|
15384 |
"folder inside .../wp-content/. Make sure you choose a unique name"
|
@@ -15387,16 +15450,16 @@ msgstr ""
|
|
15387 |
"dossier à l’intérieur de la .../wp-content /. Veillez à que choisir un nom "
|
15388 |
"unique"
|
15389 |
|
15390 |
-
#: wppa-settings-autosave.php:
|
15391 |
msgid "Import parent check"
|
15392 |
msgstr "Importer le parent vérification"
|
15393 |
|
15394 |
-
#: wppa-settings-autosave.php:
|
15395 |
#, fuzzy
|
15396 |
msgid "On import dirs to albums: keep dir tree as albums."
|
15397 |
msgstr "Sur dirs d'importation aux albums: garder arbre dir que des albums."
|
15398 |
|
15399 |
-
#: wppa-settings-autosave.php:
|
15400 |
msgid ""
|
15401 |
"Untick only if all your albums have unique names. Then: additional photos may "
|
15402 |
"be ftp'd to toplevel depot subdirs."
|
@@ -15405,53 +15468,53 @@ msgstr ""
|
|
15405 |
"supplémentaires pourront être chargées via FTP dans les répertoires de dépôt "
|
15406 |
"du niveau supérieur."
|
15407 |
|
15408 |
-
#: wppa-settings-autosave.php:
|
15409 |
msgid "IPTC need utf8 conversion"
|
15410 |
msgstr "IPTC a besoin d'une conversion UTF8"
|
15411 |
|
15412 |
-
#: wppa-settings-autosave.php:
|
15413 |
msgid "This setting converts iso to utf8 in iptc text."
|
15414 |
msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
|
15415 |
|
15416 |
-
#: wppa-settings-autosave.php:
|
15417 |
msgid "Untick if you have funny characters in iptc data"
|
15418 |
msgstr "Décocher si vous avez des caractères bizarres dans les données IPTC"
|
15419 |
|
15420 |
-
#: wppa-settings-autosave.php:
|
15421 |
msgid "Keep dir to album files"
|
15422 |
msgstr "Garder les fichiers de dir aux l’album"
|
15423 |
|
15424 |
-
#: wppa-settings-autosave.php:
|
15425 |
#, fuzzy
|
15426 |
msgid "Keep imported files after dir to album import"
|
15427 |
msgstr "Conserver les fichiers importés après dir à l'album import"
|
15428 |
|
15429 |
-
#: wppa-settings-autosave.php:
|
15430 |
#, fuzzy
|
15431 |
msgid "Other plugins related settings"
|
15432 |
msgstr "paramètres Autres plugins liés"
|
15433 |
|
15434 |
-
#: wppa-settings-autosave.php:
|
15435 |
msgid "Foreign shortcodes general"
|
15436 |
msgstr "Généraux étrangers shortcodes"
|
15437 |
|
15438 |
-
#: wppa-settings-autosave.php:
|
15439 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
15440 |
msgstr ""
|
15441 |
"Activez les shortcodes étrangers au nom de l’album, au description de l'album "
|
15442 |
"et au nom de photo"
|
15443 |
|
15444 |
-
#: wppa-settings-autosave.php:
|
15445 |
msgid "Foreign shortcodes fullsize"
|
15446 |
msgstr "Shortcodes étrangers fullsize"
|
15447 |
|
15448 |
-
#: wppa-settings-autosave.php:
|
15449 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
15450 |
msgstr ""
|
15451 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
15452 |
"pleine grandeur."
|
15453 |
|
15454 |
-
#: wppa-settings-autosave.php:
|
15455 |
#, fuzzy
|
15456 |
msgid ""
|
15457 |
"When checked, you can use shortcodes from other plugins in the description of "
|
@@ -15460,39 +15523,39 @@ msgstr ""
|
|
15460 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins dans "
|
15461 |
"la description de photos."
|
15462 |
|
15463 |
-
#: wppa-settings-autosave.php:
|
15464 |
#, fuzzy
|
15465 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
15466 |
msgstr "Les shortcodes seront étendus dans les descriptions des images fullsize."
|
15467 |
|
15468 |
-
#: wppa-settings-autosave.php:
|
15469 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
15470 |
msgstr ""
|
15471 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
15472 |
|
15473 |
-
#: wppa-settings-autosave.php:
|
15474 |
msgid "Foreign shortcodes thumbnails"
|
15475 |
msgstr "Foreign shortcodes thumbnails"
|
15476 |
|
15477 |
-
#: wppa-settings-autosave.php:
|
15478 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
15479 |
msgstr ""
|
15480 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
15481 |
"miniature."
|
15482 |
|
15483 |
-
#: wppa-settings-autosave.php:
|
15484 |
msgid "The shortcodes will be expanded in the descriptions of thumbnail images."
|
15485 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
15486 |
|
15487 |
-
#: wppa-settings-autosave.php:
|
15488 |
msgid "Lightbox keyname"
|
15489 |
msgstr "Nom-clé Lightbox"
|
15490 |
|
15491 |
-
#: wppa-settings-autosave.php:
|
15492 |
msgid "The identifier of lightbox."
|
15493 |
msgstr "L'identifiant Lightbox."
|
15494 |
|
15495 |
-
#: wppa-settings-autosave.php:
|
15496 |
msgid ""
|
15497 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the lbox-"
|
15498 |
"id here."
|
@@ -15500,64 +15563,64 @@ msgstr ""
|
|
15500 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
15501 |
"entrer l’id lbox ici."
|
15502 |
|
15503 |
-
#: wppa-settings-autosave.php:
|
15504 |
msgid "myCRED / Cube Points: Comment"
|
15505 |
msgstr "myCRED / Cube Points: commentaire"
|
15506 |
|
15507 |
-
#: wppa-settings-autosave.php:
|
15508 |
msgid "Number of points for giving a comment"
|
15509 |
msgstr "Nombre de points pour mettre un commentaire"
|
15510 |
|
15511 |
-
#: wppa-settings-autosave.php:
|
15512 |
-
#: wppa-settings-autosave.php:
|
15513 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
15514 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
15515 |
|
15516 |
-
#: wppa-settings-autosave.php:
|
15517 |
msgid "points per comment"
|
15518 |
msgstr "points par commentaire"
|
15519 |
|
15520 |
-
#: wppa-settings-autosave.php:
|
15521 |
msgid "myCRED / Cube Points: Appr Comment"
|
15522 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
15523 |
|
15524 |
-
#: wppa-settings-autosave.php:
|
15525 |
msgid "Number of points for receiving an approved comment"
|
15526 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
15527 |
|
15528 |
-
#: wppa-settings-autosave.php:
|
15529 |
msgid "myCRED / Cube Points: Rating"
|
15530 |
msgstr "myCRED / Cube Points: notation"
|
15531 |
|
15532 |
-
#: wppa-settings-autosave.php:
|
15533 |
msgid "Number of points for a rating vote"
|
15534 |
msgstr "Nombre de points pour un vote de cote"
|
15535 |
|
15536 |
-
#: wppa-settings-autosave.php:
|
15537 |
msgid "points per vote"
|
15538 |
msgstr "points par vote"
|
15539 |
|
15540 |
-
#: wppa-settings-autosave.php:
|
15541 |
msgid "myCRED / Cube Points: Upload"
|
15542 |
msgstr "myCRED / Cube Points : Télécharger"
|
15543 |
|
15544 |
-
#: wppa-settings-autosave.php:
|
15545 |
msgid "Number of points for a successfull frontend upload"
|
15546 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
15547 |
|
15548 |
-
#: wppa-settings-autosave.php:
|
15549 |
msgid "points per upload"
|
15550 |
msgstr "points par chargement"
|
15551 |
|
15552 |
-
#: wppa-settings-autosave.php:
|
15553 |
msgid "Use SCABN"
|
15554 |
msgstr "Utiliser SCABN"
|
15555 |
|
15556 |
-
#: wppa-settings-autosave.php:
|
15557 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
15558 |
msgstr "Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
15559 |
|
15560 |
-
#: wppa-settings-autosave.php:
|
15561 |
msgid ""
|
15562 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
15563 |
"descriptions is [cart ...]"
|
@@ -15565,23 +15628,23 @@ msgstr ""
|
|
15565 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
15566 |
"les descriptions photo est [cart ...]"
|
15567 |
|
15568 |
-
#: wppa-settings-autosave.php:
|
15569 |
msgid "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
15570 |
msgstr ""
|
15571 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de SCABN."
|
15572 |
|
15573 |
-
#: wppa-settings-autosave.php:
|
15574 |
msgid "The shortcode for the check-out page is still [scabn]"
|
15575 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
15576 |
|
15577 |
-
#: wppa-settings-autosave.php:
|
15578 |
msgid ""
|
15579 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
15580 |
msgstr ""
|
15581 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = photoname, "
|
15582 |
"price = 0.01."
|
15583 |
|
15584 |
-
#: wppa-settings-autosave.php:
|
15585 |
msgid ""
|
15586 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
15587 |
"from the photo name."
|
@@ -15589,11 +15652,11 @@ msgstr ""
|
|
15589 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
15590 |
"diffère de celui de la photo."
|
15591 |
|
15592 |
-
#: wppa-settings-autosave.php:
|
15593 |
msgid "This shortcode handler will also work with Ajax enabled."
|
15594 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
15595 |
|
15596 |
-
#: wppa-settings-autosave.php:
|
15597 |
msgid ""
|
15598 |
"Using this interface makes sure that the item urls and callback action urls "
|
15599 |
"are correct."
|
@@ -15601,17 +15664,17 @@ msgstr ""
|
|
15601 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
15602 |
"callback sont correctes."
|
15603 |
|
15604 |
-
#: wppa-settings-autosave.php:
|
15605 |
msgid "Use CM Tooltip Glossary"
|
15606 |
msgstr "Utiliser CM Tooltip Glossary"
|
15607 |
|
15608 |
-
#: wppa-settings-autosave.php:
|
15609 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
15610 |
msgstr ""
|
15611 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
15612 |
"photos."
|
15613 |
|
15614 |
-
#: wppa-settings-autosave.php:
|
15615 |
msgid ""
|
15616 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
15617 |
"plugin to act on album and photo descriptions!"
|
@@ -15619,137 +15682,137 @@ msgstr ""
|
|
15619 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
15620 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
15621 |
|
15622 |
-
#: wppa-settings-autosave.php:
|
15623 |
msgid "External services related settings and actions."
|
15624 |
msgstr "Réglages et actions pour les services extérieurs."
|
15625 |
|
15626 |
-
#: wppa-settings-autosave.php:
|
15627 |
msgid "QR Code widget size"
|
15628 |
msgstr "Taille du widget QR Code"
|
15629 |
|
15630 |
-
#: wppa-settings-autosave.php:
|
15631 |
msgid "The size of the QR code display."
|
15632 |
msgstr "La taille de l'affichage du QR code."
|
15633 |
|
15634 |
-
#: wppa-settings-autosave.php:
|
15635 |
msgid "QR color"
|
15636 |
msgstr "Couleur QR code"
|
15637 |
|
15638 |
-
#: wppa-settings-autosave.php:
|
15639 |
msgid "The display color of the qr code (dark)"
|
15640 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
15641 |
|
15642 |
-
#: wppa-settings-autosave.php:
|
15643 |
msgid "This color MUST be given in hexadecimal format!"
|
15644 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
15645 |
|
15646 |
-
#: wppa-settings-autosave.php:
|
15647 |
msgid "QR background color"
|
15648 |
msgstr "Couleur de fond de QR Code"
|
15649 |
|
15650 |
-
#: wppa-settings-autosave.php:
|
15651 |
msgid "The background color of the qr code (light)"
|
15652 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
15653 |
|
15654 |
-
#: wppa-settings-autosave.php:
|
15655 |
msgid "CDN Service"
|
15656 |
msgstr "Service CDN"
|
15657 |
|
15658 |
-
#: wppa-settings-autosave.php:
|
15659 |
msgid "Select a CDN Service you want to use."
|
15660 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
15661 |
|
15662 |
-
#: wppa-settings-autosave.php:
|
15663 |
msgid "Cloudinary in maintenance mode"
|
15664 |
msgstr "Cloudinary en mode maintenance"
|
15665 |
|
15666 |
-
#: wppa-settings-autosave.php:
|
15667 |
msgid "Cloud name"
|
15668 |
msgstr "Nom du nuage"
|
15669 |
|
15670 |
-
#: wppa-settings-autosave.php:
|
15671 |
msgid "API key"
|
15672 |
msgstr "Clé API"
|
15673 |
|
15674 |
-
#: wppa-settings-autosave.php:
|
15675 |
msgid "API secret"
|
15676 |
msgstr "Secret API"
|
15677 |
|
15678 |
-
#: wppa-settings-autosave.php:
|
15679 |
msgid "Delete all"
|
15680 |
msgstr "Tout effacer"
|
15681 |
|
15682 |
-
#: wppa-settings-autosave.php:
|
15683 |
msgid "Deletes them all !!!"
|
15684 |
msgstr "Cela les efface tous !!!"
|
15685 |
|
15686 |
-
#: wppa-settings-autosave.php:
|
15687 |
msgid "Delete derived images"
|
15688 |
msgstr "Effacer les images dérivées"
|
15689 |
|
15690 |
-
#: wppa-settings-autosave.php:
|
15691 |
msgid "Deletes all derived images !!!"
|
15692 |
msgstr "Efface toutes les images dérivées !!!"
|
15693 |
|
15694 |
-
#: wppa-settings-autosave.php:
|
15695 |
msgid "Max lifetime"
|
15696 |
msgstr "Temps de vie maximum"
|
15697 |
|
15698 |
-
#: wppa-settings-autosave.php:
|
15699 |
msgid "Old images from local server, new images from Cloudinary."
|
15700 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
15701 |
|
15702 |
-
#: wppa-settings-autosave.php:
|
15703 |
msgid "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
15704 |
msgstr ""
|
15705 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon régulière."
|
15706 |
|
15707 |
-
#: wppa-settings-autosave.php:
|
15708 |
msgid "Forever"
|
15709 |
msgstr "Infini"
|
15710 |
|
15711 |
-
#: wppa-settings-autosave.php:
|
15712 |
msgid "Cloudinary usage"
|
15713 |
msgstr "Utilisation de Cloudinary"
|
15714 |
|
15715 |
-
#: wppa-settings-autosave.php:
|
15716 |
msgid "Cloudinary usage data not available"
|
15717 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
15718 |
|
15719 |
-
#: wppa-settings-autosave.php:
|
15720 |
msgid "Cloudinary routines not installed."
|
15721 |
msgstr "Routines Cloudinary pas installées."
|
15722 |
|
15723 |
-
#: wppa-settings-autosave.php:
|
15724 |
msgid "Cloudinary"
|
15725 |
msgstr "Cloudinary"
|
15726 |
|
15727 |
-
#: wppa-settings-autosave.php:
|
15728 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
15729 |
msgstr ""
|
15730 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale à "
|
15731 |
"5.3</span>"
|
15732 |
|
15733 |
-
#: wppa-settings-autosave.php:
|
15734 |
msgid "GPX Implementation"
|
15735 |
msgstr "Implémentation GPX"
|
15736 |
|
15737 |
-
#: wppa-settings-autosave.php:
|
15738 |
msgid "The way the maps are produced."
|
15739 |
msgstr "La méthode de production des cartes."
|
15740 |
|
15741 |
-
#: wppa-settings-autosave.php:
|
15742 |
msgid "Select the way the maps are produced."
|
15743 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
15744 |
|
15745 |
-
#: wppa-settings-autosave.php:
|
15746 |
msgid ""
|
15747 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
15748 |
msgstr ""
|
15749 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne pouvez "
|
15750 |
"utiliser Ajax (table IV-A1)"
|
15751 |
|
15752 |
-
#: wppa-settings-autosave.php:
|
15753 |
msgid ""
|
15754 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
15755 |
"options."
|
@@ -15757,39 +15820,39 @@ msgstr ""
|
|
15757 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais il "
|
15758 |
"y aura alors moins d'options d'affichage."
|
15759 |
|
15760 |
-
#: wppa-settings-autosave.php:
|
15761 |
msgid "WPPA+ Embedded code"
|
15762 |
msgstr "Code embarqué WPPA+"
|
15763 |
|
15764 |
-
#: wppa-settings-autosave.php:
|
15765 |
msgid "Google maps GPX viewer plugin"
|
15766 |
msgstr "Plugin Google maps de visualisation GPX"
|
15767 |
|
15768 |
-
#: wppa-settings-autosave.php:
|
15769 |
msgid "Map height"
|
15770 |
msgstr "Hauteur de la carte"
|
15771 |
|
15772 |
-
#: wppa-settings-autosave.php:
|
15773 |
msgid "The height of the map display."
|
15774 |
msgstr "La hauteur de l’affichage de la carte."
|
15775 |
|
15776 |
-
#: wppa-settings-autosave.php:
|
15777 |
msgid "Google maps API key"
|
15778 |
msgstr "Clé API Google maps"
|
15779 |
|
15780 |
-
#: wppa-settings-autosave.php:
|
15781 |
msgid "Enter your Google maps api key here if you have one."
|
15782 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
15783 |
|
15784 |
-
#: wppa-settings-autosave.php:
|
15785 |
msgid "GPX Shortcode"
|
15786 |
msgstr "Shortcode GPX"
|
15787 |
|
15788 |
-
#: wppa-settings-autosave.php:
|
15789 |
msgid "The shortcode to be used for the gpx feature."
|
15790 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
15791 |
|
15792 |
-
#: wppa-settings-autosave.php:
|
15793 |
msgid ""
|
15794 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
15795 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
@@ -15798,28 +15861,28 @@ msgstr ""
|
|
15798 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
15799 |
"longitude."
|
15800 |
|
15801 |
-
#: wppa-settings-autosave.php:
|
15802 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
15803 |
msgstr ""
|
15804 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
15805 |
|
15806 |
-
#: wppa-settings-autosave.php:
|
15807 |
msgid "Fotomoto"
|
15808 |
msgstr "Fotomoto"
|
15809 |
|
15810 |
-
#: wppa-settings-autosave.php:
|
15811 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
15812 |
msgstr "Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
15813 |
|
15814 |
-
#: wppa-settings-autosave.php:
|
15815 |
msgid "In order to function properly:"
|
15816 |
msgstr "Pour fonctionner correctement:"
|
15817 |
|
15818 |
-
#: wppa-settings-autosave.php:
|
15819 |
msgid "1. Get yourself a Fotomoto account."
|
15820 |
msgstr "1. Créez-vous un compte Fotomoto."
|
15821 |
|
15822 |
-
#: wppa-settings-autosave.php:
|
15823 |
msgid ""
|
15824 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check the "
|
15825 |
"\"Use API Mode:\" checkbox."
|
@@ -15827,24 +15890,24 @@ msgstr ""
|
|
15827 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et vérifiez "
|
15828 |
"la case à cocher \"Use API Mode:\"."
|
15829 |
|
15830 |
-
#: wppa-settings-autosave.php:
|
15831 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
15832 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
15833 |
|
15834 |
-
#: wppa-settings-autosave.php:
|
15835 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
15836 |
msgstr ""
|
15837 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-B15 )."
|
15838 |
|
15839 |
-
#: wppa-settings-autosave.php:
|
15840 |
msgid "Fotomoto fontsize"
|
15841 |
msgstr "Taille de la police de caractère Fotomoto"
|
15842 |
|
15843 |
-
#: wppa-settings-autosave.php:
|
15844 |
msgid "Fontsize for the Fotomoto toolbar."
|
15845 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
15846 |
|
15847 |
-
#: wppa-settings-autosave.php:
|
15848 |
msgid ""
|
15849 |
"If you set it here, it overrules a possible setting for font-size in ."
|
15850 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
@@ -15852,61 +15915,61 @@ msgstr ""
|
|
15852 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
15853 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
15854 |
|
15855 |
-
#: wppa-settings-autosave.php:
|
15856 |
msgid "Hide toolbar on running slideshows"
|
15857 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
15858 |
|
15859 |
-
#: wppa-settings-autosave.php:
|
15860 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
15861 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
15862 |
|
15863 |
-
#: wppa-settings-autosave.php:
|
15864 |
msgid "Fotomoto minwidth"
|
15865 |
msgstr "Largeur mini de Fotomoto"
|
15866 |
|
15867 |
-
#: wppa-settings-autosave.php:
|
15868 |
msgid "Minimum width to display Fotomoto toolbar."
|
15869 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
15870 |
|
15871 |
-
#: wppa-settings-autosave.php:
|
15872 |
msgid ""
|
15873 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
15874 |
msgstr ""
|
15875 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus petits."
|
15876 |
|
15877 |
-
#: wppa-settings-autosave.php:
|
15878 |
msgid "Table X:"
|
15879 |
msgstr "Table X:"
|
15880 |
|
15881 |
-
#: wppa-settings-autosave.php:
|
15882 |
msgid "IPTC Configuration:"
|
15883 |
msgstr "Configuration IPTC:"
|
15884 |
|
15885 |
-
#: wppa-settings-autosave.php:
|
15886 |
msgid "This table defines the IPTC configuration"
|
15887 |
msgstr "Cette table règle la configuration de IPTC"
|
15888 |
|
15889 |
-
#: wppa-settings-autosave.php:
|
15890 |
msgid "Display"
|
15891 |
msgstr "Afficher"
|
15892 |
|
15893 |
-
#: wppa-settings-autosave.php:
|
15894 |
msgid "Hide"
|
15895 |
msgstr "Cacher"
|
15896 |
|
15897 |
-
#: wppa-settings-autosave.php:
|
15898 |
msgid "Table XI:"
|
15899 |
msgstr "Table XI:"
|
15900 |
|
15901 |
-
#: wppa-settings-autosave.php:
|
15902 |
msgid "EXIF Configuration:"
|
15903 |
msgstr "Configuration EXIF:"
|
15904 |
|
15905 |
-
#: wppa-settings-autosave.php:
|
15906 |
msgid "This table defines the EXIF configuration"
|
15907 |
msgstr "Cette table règle la configuration d'EXIF"
|
15908 |
|
15909 |
-
#: wppa-settings-autosave.php:
|
15910 |
msgid ""
|
15911 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
15912 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to add "
|
@@ -15917,15 +15980,15 @@ msgstr ""
|
|
15917 |
"hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de configuration</"
|
15918 |
"b> de PHP."
|
15919 |
|
15920 |
-
#: wppa-settings-autosave.php:
|
15921 |
msgid "Table XII:"
|
15922 |
msgstr "Table XII:"
|
15923 |
|
15924 |
-
#: wppa-settings-autosave.php:
|
15925 |
msgid "WPPA+ and PHP Configuration:"
|
15926 |
msgstr "Configuration WPPA+ et PHP:"
|
15927 |
|
15928 |
-
#: wppa-settings-autosave.php:
|
15929 |
msgid ""
|
15930 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
15931 |
"and is read only"
|
@@ -15933,166 +15996,166 @@ msgstr ""
|
|
15933 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
15934 |
"les paramètres de configuration du serveur PHP"
|
15935 |
|
15936 |
-
#: wppa-settings-autosave.php:
|
15937 |
msgid "Value"
|
15938 |
msgstr "Valeur"
|
15939 |
|
15940 |
-
#: wppa-settings-autosave.php:
|
15941 |
msgid "Albums db table name."
|
15942 |
msgstr "Nom de la table albums dans la base de données."
|
15943 |
|
15944 |
-
#: wppa-settings-autosave.php:
|
15945 |
msgid "Photos db table name."
|
15946 |
msgstr "Nom de la table photos dans la base de données."
|
15947 |
|
15948 |
-
#: wppa-settings-autosave.php:
|
15949 |
msgid "Rating db table name."
|
15950 |
msgstr "Nom de la table votes dans la base de données."
|
15951 |
|
15952 |
-
#: wppa-settings-autosave.php:
|
15953 |
msgid "Comments db table name."
|
15954 |
msgstr "Nom de la table commentaires dans la base de données."
|
15955 |
|
15956 |
-
#: wppa-settings-autosave.php:
|
15957 |
msgid "IPTC db table name."
|
15958 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
15959 |
|
15960 |
-
#: wppa-settings-autosave.php:
|
15961 |
msgid "EXIF db table name."
|
15962 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
15963 |
|
15964 |
-
#: wppa-settings-autosave.php:
|
15965 |
msgid "Index db table name."
|
15966 |
msgstr "Nom de la table Index dans la base de donnée."
|
15967 |
|
15968 |
-
#: wppa-settings-autosave.php:
|
15969 |
msgid "Plugins main file name."
|
15970 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
15971 |
|
15972 |
-
#: wppa-settings-autosave.php:
|
15973 |
msgid "ABSPATH windows proof"
|
15974 |
msgstr "ABSPATH windows proof"
|
15975 |
|
15976 |
-
#: wppa-settings-autosave.php:
|
15977 |
msgid "Path to plugins directory."
|
15978 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
15979 |
|
15980 |
-
#: wppa-settings-autosave.php:
|
15981 |
msgid "Plugins directory name."
|
15982 |
msgstr "Nom du répertoire des greffons (plugins)."
|
15983 |
|
15984 |
-
#: wppa-settings-autosave.php:
|
15985 |
msgid "Plugins directory url."
|
15986 |
msgstr "URL du répertoire des greffons (plugins)."
|
15987 |
|
15988 |
-
#: wppa-settings-autosave.php:
|
15989 |
msgid "The relative upload directory."
|
15990 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
15991 |
|
15992 |
-
#: wppa-settings-autosave.php:
|
15993 |
msgid "The upload directory path."
|
15994 |
msgstr "Chemin du répertoire de chargement (upload)."
|
15995 |
|
15996 |
-
#: wppa-settings-autosave.php:
|
15997 |
msgid "The upload directory url."
|
15998 |
msgstr "URL du répertoire de chargement (upload)."
|
15999 |
|
16000 |
-
#: wppa-settings-autosave.php:
|
16001 |
msgid "The relative depot directory."
|
16002 |
msgstr "Chemin relatif du répertoire de dépôt."
|
16003 |
|
16004 |
-
#: wppa-settings-autosave.php:
|
16005 |
msgid "The depot directory path."
|
16006 |
msgstr "Chemin du répertoire de dépôt."
|
16007 |
|
16008 |
-
#: wppa-settings-autosave.php:
|
16009 |
msgid "The depot directory url."
|
16010 |
msgstr "URL du répertoire de dépôt."
|
16011 |
|
16012 |
-
#: wppa-settings-autosave.php:
|
16013 |
msgid "The path to wp-content."
|
16014 |
msgstr "Chemin vers wp-content."
|
16015 |
|
16016 |
-
#: wppa-settings-autosave.php:
|
16017 |
msgid "WP Base upload dir."
|
16018 |
msgstr "Répertoire de chargement de WP."
|
16019 |
|
16020 |
-
#: wppa-settings-autosave.php:
|
16021 |
msgid "WP Content url."
|
16022 |
msgstr "URL de contenu WP."
|
16023 |
|
16024 |
-
#: wppa-settings-autosave.php:
|
16025 |
#, php-format
|
16026 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
16027 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
16028 |
|
16029 |
-
#: wppa-settings-autosave.php:
|
16030 |
#, php-format
|
16031 |
msgid "<br />There are %d settings and %d runtime parameters."
|
16032 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
16033 |
|
16034 |
-
#: wppa-settings-autosave.php:
|
16035 |
msgid "The default for this setting is:"
|
16036 |
msgstr "Le réglage par défaut pour cette option est:"
|
16037 |
|
16038 |
-
#: wppa-settings-autosave.php:
|
16039 |
msgid "Click for help"
|
16040 |
msgstr "Cliquer pour l'aide"
|
16041 |
|
16042 |
-
#: wppa-settings-autosave.php:
|
16043 |
-
#: wppa-settings-autosave.php:
|
16044 |
-
#: wppa-settings-autosave.php:
|
16045 |
-
#: wppa-settings-autosave.php:
|
16046 |
msgid "Slug ="
|
16047 |
msgstr "Slug ="
|
16048 |
|
16049 |
-
#: wppa-settings-autosave.php:
|
16050 |
-
#: wppa-settings-autosave.php:
|
16051 |
msgid "Values = yes, no"
|
16052 |
msgstr "Valeurs=oui,non"
|
16053 |
|
16054 |
-
#: wppa-settings-autosave.php:
|
16055 |
-
#: wppa-settings-autosave.php:
|
16056 |
msgid "Warning!"
|
16057 |
msgstr "Attention!"
|
16058 |
|
16059 |
-
#: wppa-settings-autosave.php:
|
16060 |
msgid "Please read the help"
|
16061 |
msgstr "Veuillez consulter l'aide"
|
16062 |
|
16063 |
-
#: wppa-settings-autosave.php:
|
16064 |
msgid "Values = "
|
16065 |
msgstr "Values = "
|
16066 |
|
16067 |
-
#: wppa-settings-autosave.php:
|
16068 |
msgid "Checked"
|
16069 |
msgstr "Coché"
|
16070 |
|
16071 |
-
#: wppa-settings-autosave.php:
|
16072 |
msgid "Unchecked"
|
16073 |
msgstr "Décoché"
|
16074 |
|
16075 |
-
#: wppa-settings-autosave.php:
|
16076 |
msgid "the photo specific link."
|
16077 |
msgstr "le lien spécifique de la photo."
|
16078 |
|
16079 |
-
#: wppa-settings-autosave.php:
|
16080 |
msgid "Show!"
|
16081 |
msgstr "Montrer!"
|
16082 |
|
16083 |
-
#: wppa-settings-autosave.php:
|
16084 |
msgid "Not done yet"
|
16085 |
msgstr "Pas encore fait"
|
16086 |
|
16087 |
-
#: wppa-settings-autosave.php:
|
16088 |
msgid "Start!"
|
16089 |
msgstr "Démarrer!"
|
16090 |
|
16091 |
-
#: wppa-settings-autosave.php:
|
16092 |
msgid "Locked!"
|
16093 |
msgstr "Verrouillé!"
|
16094 |
|
16095 |
-
#: wppa-settings-autosave.php:
|
16096 |
msgid ""
|
16097 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
16098 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
@@ -16101,7 +16164,7 @@ msgstr ""
|
|
16101 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
16102 |
"VI-2."
|
16103 |
|
16104 |
-
#: wppa-settings-autosave.php:
|
16105 |
#, php-format
|
16106 |
msgid ""
|
16107 |
"It is important that you select a page that contains at least %%wppa%% or "
|
@@ -16110,7 +16173,7 @@ msgstr ""
|
|
16110 |
"Il est important que sélectionniez une page qui contient au moins %%wppa%% or "
|
16111 |
"[wppa][/wppa]."
|
16112 |
|
16113 |
-
#: wppa-settings-autosave.php:
|
16114 |
msgid ""
|
16115 |
"If you ommit this, the link will not work at all or simply refresh the "
|
16116 |
"(home)page."
|
@@ -16118,11 +16181,11 @@ msgstr ""
|
|
16118 |
"Si vous omettez ceci, le lien ne fonctionnera pas du tout ou se contentera de "
|
16119 |
"rafraîchir la page."
|
16120 |
|
16121 |
-
#: wppa-setup.php:
|
16122 |
msgid "IMPORTANT UPGRADE NOTICE"
|
16123 |
msgstr "MESSAGE IMPORTANT DE MISE A NIVEAU"
|
16124 |
|
16125 |
-
#: wppa-setup.php:
|
16126 |
msgid ""
|
16127 |
"Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
|
16128 |
"one. You may wish to add or modify some attributes. Be aware of the fact that "
|
@@ -16133,7 +16196,7 @@ msgstr ""
|
|
16133 |
"certains attributs. Soyez conscient du fait que la plupart des paramètres "
|
16134 |
"peuvent maintenant être réglés dans la page d'administration."
|
16135 |
|
16136 |
-
#: wppa-setup.php:
|
16137 |
msgid ""
|
16138 |
"Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied one, "
|
16139 |
"or just remove it from your theme directory. You may modify it later if you "
|
@@ -16145,152 +16208,152 @@ msgstr ""
|
|
16145 |
"thème. Vous pouvez le modifier plus tard si vous voulez. La version "
|
16146 |
"personnalisée courante n'est PAS compatible avec cette version du plugin."
|
16147 |
|
16148 |
-
#: wppa-setup.php:
|
16149 |
#, php-format
|
16150 |
msgid "WPPA+ successfully updated in multi site mode to db version %s."
|
16151 |
msgstr ""
|
16152 |
"WPPA+ s'est mis à jour avec succès en mode multi site vers la version de base "
|
16153 |
"de donnée %s."
|
16154 |
|
16155 |
-
#: wppa-setup.php:
|
16156 |
#, php-format
|
16157 |
msgid "WPPA+ successfully updated in single site mode to db version %s."
|
16158 |
msgstr ""
|
16159 |
"WPPA+ s'est mis à jour avec succès en mode mono site vers la version de base "
|
16160 |
"de donnée %s."
|
16161 |
|
16162 |
-
#: wppa-setup.php:
|
16163 |
msgid "An error occurred during update"
|
16164 |
msgstr "Erreur durant le la mise à jour"
|
16165 |
|
16166 |
-
#: wppa-setup.php:
|
16167 |
msgid ""
|
16168 |
"<span style=\"color:red\" >Warning: Do not upload copyrighted material!</span>"
|
16169 |
msgstr ""
|
16170 |
"<span style=\"color:red\" >Attention: Ne chargez pas de fichiers sous "
|
16171 |
"copyright!!</span>"
|
16172 |
|
16173 |
-
#: wppa-setup.php:
|
16174 |
msgid "Select tags:"
|
16175 |
msgstr "Choisir les tags:"
|
16176 |
|
16177 |
-
#: wppa-setup.php:
|
16178 |
msgid "Enter new tags:"
|
16179 |
msgstr "Entrez les nouveaux tags:"
|
16180 |
|
16181 |
-
#: wppa-setup.php:
|
16182 |
msgid "Vote for me!"
|
16183 |
msgstr "Votez pour moi !"
|
16184 |
|
16185 |
-
#: wppa-setup.php:
|
16186 |
msgid "Voted for me"
|
16187 |
msgstr "Ont voté pour moi"
|
16188 |
|
16189 |
-
#: wppa-setup.php:
|
16190 |
msgid "NEW"
|
16191 |
msgstr "NOUVEAU"
|
16192 |
|
16193 |
-
#: wppa-setup.php:
|
16194 |
msgid "MODIFIED"
|
16195 |
msgstr "MODIFIE"
|
16196 |
|
16197 |
-
#: wppa-setup.php:
|
16198 |
msgid "Search in current section"
|
16199 |
msgstr "Rechercher dans la section courante"
|
16200 |
|
16201 |
-
#: wppa-setup.php:
|
16202 |
msgid "Search in current results"
|
16203 |
msgstr "Rechercher dans les résultats courants"
|
16204 |
|
16205 |
-
#: wppa-setup.php:
|
16206 |
msgid "Type your custom url here"
|
16207 |
msgstr "Tapez votre URL personnalisée ici"
|
16208 |
|
16209 |
-
#: wppa-setup.php:
|
16210 |
msgid "Type the title here"
|
16211 |
msgstr "Entrez ici le titre de la page"
|
16212 |
|
16213 |
-
#: wppa-setup.php:
|
16214 |
#: wppa-topten-widget.php:298
|
16215 |
msgid "Top Ten Photos"
|
16216 |
msgstr "Meilleures photos"
|
16217 |
|
16218 |
-
#: wppa-setup.php:
|
16219 |
msgid "Thumbnail Photos"
|
16220 |
msgstr "Vignettes"
|
16221 |
|
16222 |
-
#: wppa-setup.php:
|
16223 |
msgid "Search photos"
|
16224 |
msgstr "Rechercher dans les photos"
|
16225 |
|
16226 |
-
#: wppa-setup.php:
|
16227 |
msgid ""
|
16228 |
"The uploads directory does not exist, please do a regular WP upload first."
|
16229 |
msgstr ""
|
16230 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire un "
|
16231 |
"chargement basique via WordPress."
|
16232 |
|
16233 |
-
#: wppa-setup.php:
|
16234 |
msgid "Successfully created uploads directory."
|
16235 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
16236 |
|
16237 |
-
#: wppa-setup.php:
|
16238 |
msgid "Could not create the wppa directory."
|
16239 |
msgstr "Impossible de créer le répertoire WPPA."
|
16240 |
|
16241 |
-
#: wppa-setup.php:
|
16242 |
msgid "Successfully created wppa directory."
|
16243 |
msgstr "Répertoire WPPA créé avec succès."
|
16244 |
|
16245 |
-
#: wppa-setup.php:
|
16246 |
msgid "Could not create the wppa thumbs directory."
|
16247 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
16248 |
|
16249 |
-
#: wppa-setup.php:
|
16250 |
msgid "Successfully created wppa thumbs directory."
|
16251 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
16252 |
|
16253 |
-
#: wppa-setup.php:
|
16254 |
msgid "Could not create the wppa watermarks directory."
|
16255 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
16256 |
|
16257 |
-
#: wppa-setup.php:
|
16258 |
msgid "Successfully created wppa watermarks directory."
|
16259 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
16260 |
|
16261 |
-
#: wppa-setup.php:
|
16262 |
msgid "Could not create the wppa fonts directory."
|
16263 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
16264 |
|
16265 |
-
#: wppa-setup.php:
|
16266 |
msgid "Successfully created wppa fonts directory."
|
16267 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
16268 |
|
16269 |
-
#: wppa-setup.php:
|
16270 |
msgid "Unable to create depot directory."
|
16271 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
16272 |
|
16273 |
-
#: wppa-setup.php:
|
16274 |
msgid "Successfully created wppa depot directory."
|
16275 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
16276 |
|
16277 |
-
#: wppa-setup.php:
|
16278 |
msgid "Unable to create user depot directory"
|
16279 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
16280 |
|
16281 |
-
#: wppa-setup.php:
|
16282 |
msgid "Successfully created wppa user depot directory."
|
16283 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
16284 |
|
16285 |
-
#: wppa-setup.php:
|
16286 |
msgid "Unable to create temp directory"
|
16287 |
msgstr "Impossible de créer le répertoire temporaire"
|
16288 |
|
16289 |
-
#: wppa-setup.php:
|
16290 |
msgid "Successfully created temp directory."
|
16291 |
msgstr "Répertoire temporaire créé avec succès."
|
16292 |
|
16293 |
-
#: wppa-setup.php:
|
16294 |
#, php-format
|
16295 |
msgid ""
|
16296 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
@@ -16323,7 +16386,7 @@ msgstr ""
|
|
16323 |
"vertical à 'adapté'."
|
16324 |
|
16325 |
#: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
|
16326 |
-
#: wppa-widget-admin.php:
|
16327 |
msgid "pixels."
|
16328 |
msgstr "pixels."
|
16329 |
|
@@ -16414,77 +16477,77 @@ msgstr "Checkout"
|
|
16414 |
msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span> "
|
16415 |
msgstr "Nombre de votes: <span id=\"wppa-vote-count-%s\" >%s</span> "
|
16416 |
|
16417 |
-
#: wppa-slideshow.php:692 wppa-slideshow.php:
|
16418 |
#, php-format
|
16419 |
msgid "You must <a href=\"%s\">login</a> to vote"
|
16420 |
msgstr "Vous devez vous <a href=\"%s\">connecter</a> pour voter"
|
16421 |
|
16422 |
-
#: wppa-slideshow.php:695 wppa-slideshow.php:
|
16423 |
msgid "You must login to vote"
|
16424 |
msgstr "Se connecter pour voter"
|
16425 |
|
16426 |
-
#: wppa-slideshow.php:
|
16427 |
msgid "very low"
|
16428 |
msgstr "très basse"
|
16429 |
|
16430 |
-
#: wppa-slideshow.php:
|
16431 |
msgid "low"
|
16432 |
msgstr "basse"
|
16433 |
|
16434 |
-
#: wppa-slideshow.php:
|
16435 |
msgid "average"
|
16436 |
msgstr "moyenne"
|
16437 |
|
16438 |
-
#: wppa-slideshow.php:
|
16439 |
msgid "high"
|
16440 |
msgstr "haute"
|
16441 |
|
16442 |
-
#: wppa-slideshow.php:
|
16443 |
msgid "very high"
|
16444 |
msgstr "très haute"
|
16445 |
|
16446 |
-
#: wppa-slideshow.php:
|
16447 |
msgid "Click this if you do NOT like this image!"
|
16448 |
msgstr "Cliquez ici si vous N'aimez PAS cette image !"
|
16449 |
|
16450 |
-
#: wppa-slideshow.php:
|
16451 |
msgid "Are you sure you want to mark this image as inappropriate?"
|
16452 |
msgstr "Etes-vous sûr de vouloir marquer cette image comme inappropriée ?"
|
16453 |
|
16454 |
-
#: wppa-slideshow.php:
|
16455 |
msgid "Number of people who marked this photo as inappropriate"
|
16456 |
msgstr "Nombre de personnes qui ont marqué cette photo comme inappropriée"
|
16457 |
|
16458 |
-
#: wppa-slideshow.php:
|
16459 |
msgid "My rating:"
|
16460 |
msgstr "Mon vote:"
|
16461 |
|
16462 |
-
#: wppa-slideshow.php:
|
16463 |
msgid "First"
|
16464 |
msgstr "Premier"
|
16465 |
|
16466 |
-
#: wppa-slideshow.php:
|
16467 |
msgid "Last"
|
16468 |
msgstr "Dernier"
|
16469 |
|
16470 |
-
#: wppa-slideshow.php:
|
16471 |
#, php-format
|
16472 |
msgid "Photo %s of %s"
|
16473 |
msgstr "Photo %s de %s"
|
16474 |
|
16475 |
-
#: wppa-slideshow.php:
|
16476 |
msgid "Click to start/stop"
|
16477 |
msgstr "Cliquer pour lancer/arrêter"
|
16478 |
|
16479 |
-
#: wppa-slideshow.php:
|
16480 |
msgid "- - - Comments box activated - - -"
|
16481 |
msgstr "- - - Boîte de commentaires activée - - -"
|
16482 |
|
16483 |
-
#: wppa-slideshow.php:
|
16484 |
msgid "- - - IPTC box activated - - -"
|
16485 |
msgstr "- - - Boîte IPTC activée - - -"
|
16486 |
|
16487 |
-
#: wppa-slideshow.php:
|
16488 |
msgid "- - - EXIF box activated - - -"
|
16489 |
msgstr "- - - Boîte EXIF activée - - -"
|
16490 |
|
@@ -16592,11 +16655,11 @@ msgstr "Nombre maximum:"
|
|
16592 |
msgid "Show photo names <small>under thumbnails only</small>:"
|
16593 |
msgstr "Montrer les noms des photos <small>sous les vignettes seulement</small>:"
|
16594 |
|
16595 |
-
#: wppa-thumbnails.php:177 wppa-thumbnails.php:
|
16596 |
msgid "View the top rated photos"
|
16597 |
msgstr "Voir les photos les mieux notées"
|
16598 |
|
16599 |
-
#: wppa-thumbnails.php:
|
16600 |
#, php-format
|
16601 |
msgid "Missing thumbnail image #%s"
|
16602 |
msgstr "Vignette non trouvée #%s"
|
@@ -16803,7 +16866,7 @@ msgid "Leave this blank for default size"
|
|
16803 |
msgstr "Laisser vide pour la taille par défaut"
|
16804 |
|
16805 |
#: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:610
|
16806 |
-
#: wppa-widget-admin.php:
|
16807 |
msgid "Horizontal alignment:"
|
16808 |
msgstr "Alignement horizontal:"
|
16809 |
|
@@ -17043,7 +17106,7 @@ msgstr "Le(s) album(s) à utiliser:"
|
|
17043 |
msgid "Please select one or more albums"
|
17044 |
msgstr "Sélectionner un ou plus album(s)"
|
17045 |
|
17046 |
-
#: wppa-tinymce-shortcodes.php:309 wppa-upldr-widget.php:210 wppa-utils.php:
|
17047 |
msgid "All albums"
|
17048 |
msgstr "Tous les albums"
|
17049 |
|
@@ -17902,68 +17965,68 @@ msgstr "--- Mon dépôt ---"
|
|
17902 |
msgid "--- Ngg Galleries --- "
|
17903 |
msgstr "--- Ngg Galleries --- "
|
17904 |
|
17905 |
-
#: wppa-utils.php:299
|
17906 |
#, php-format
|
17907 |
msgid "Rating: %s"
|
17908 |
msgstr "Vote: %s"
|
17909 |
|
17910 |
-
#: wppa-utils.php:
|
17911 |
msgid "Notification of inappropriate image"
|
17912 |
msgstr "Notification d'image inappropriée"
|
17913 |
|
17914 |
-
#: wppa-utils.php:
|
17915 |
#, php-format
|
17916 |
msgid "Photo %s has been marked as inappropriate by %s different visitors."
|
17917 |
msgstr ""
|
17918 |
"La photo %s a été marquée comme inappropriée par %s visiteurs différents."
|
17919 |
|
17920 |
-
#: wppa-utils.php:
|
17921 |
msgid "The status has been changed to 'pending'."
|
17922 |
msgstr "Le statut est passé à \"pending\"."
|
17923 |
|
17924 |
-
#: wppa-utils.php:
|
17925 |
msgid "It has been deleted."
|
17926 |
msgstr "A été effacé."
|
17927 |
|
17928 |
-
#: wppa-utils.php:
|
17929 |
msgid "Your photo has a new approved comment"
|
17930 |
msgstr "Votre photo a un nouveau commentaire approuvé"
|
17931 |
|
17932 |
-
#: wppa-utils.php:
|
17933 |
msgid "From:"
|
17934 |
msgstr "De:"
|
17935 |
|
17936 |
-
#: wppa-utils.php:
|
17937 |
msgid "Approved comment on photo"
|
17938 |
msgstr "Approuvé commentaire sur photo"
|
17939 |
|
17940 |
-
#: wppa-utils.php:
|
17941 |
#, php-format
|
17942 |
msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
|
17943 |
msgstr "L'adresse email du visiteur est: <a href=\"mailto:%s\">%s</a>"
|
17944 |
|
17945 |
-
#: wppa-utils.php:
|
17946 |
#, php-format
|
17947 |
msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
|
17948 |
msgstr "Le visiteur dit que son adresse email est: <a href=\"mailto:%s\">%s</a>"
|
17949 |
|
17950 |
-
#: wppa-utils.php:
|
17951 |
#, php-format
|
17952 |
msgid ""
|
17953 |
"This message is automaticly generated at %s. It is useless to respond to it."
|
17954 |
msgstr "Ce message est généré automatiquement à %s. Il est inutile d'y répondre."
|
17955 |
|
17956 |
-
#: wppa-utils.php:
|
17957 |
#, php-format
|
17958 |
msgid "Time out after processing %s items."
|
17959 |
msgstr "Time out après traitement de %s objets."
|
17960 |
|
17961 |
-
#: wppa-utils.php:
|
17962 |
#, php-format
|
17963 |
msgid "Time out after processing %s items. Please restart this operation"
|
17964 |
msgstr "Time out après traitement de %s objets. Recommencer l'opération"
|
17965 |
|
17966 |
-
#: wppa-utils.php:
|
17967 |
msgid "There are no ratings between"
|
17968 |
msgstr "Il n’y a aucune cote entre"
|
17969 |
|
@@ -17991,23 +18054,23 @@ msgstr "--- texte: description ---"
|
|
17991 |
msgid "--- text: pre-defined ---"
|
17992 |
msgstr "--- texte: prédéfini ---"
|
17993 |
|
17994 |
-
#: wppa-widget-admin.php:
|
17995 |
msgid "Widget Photo Width."
|
17996 |
msgstr "Largeur du widget photo."
|
17997 |
|
17998 |
-
#: wppa-widget-admin.php:
|
17999 |
msgid "Changes Saved. Don't forget to activate the widget!"
|
18000 |
msgstr "Changements enregistrés. Ne pas oublier d'activer le widget!"
|
18001 |
|
18002 |
-
#: wppa-widget-admin.php:
|
18003 |
msgid "Photo of the Day Widget Settings"
|
18004 |
msgstr "Réglages du widget \"Photo du jour\""
|
18005 |
|
18006 |
-
#: wppa-widget-admin.php:
|
18007 |
msgid "Widget Title:"
|
18008 |
msgstr "Titre du widget:"
|
18009 |
|
18010 |
-
#: wppa-widget-admin.php:
|
18011 |
msgid ""
|
18012 |
"Enter/modify the title for the widget. This is a default and can be overriden "
|
18013 |
"at widget activation."
|
@@ -18015,40 +18078,40 @@ msgstr ""
|
|
18015 |
"Entrer/modifier le titre pour le widget. Ceci est un réglage par défaut et "
|
18016 |
"peut être remplacé à l'activation du widget."
|
18017 |
|
18018 |
-
#: wppa-widget-admin.php:
|
18019 |
msgid "Widget Photo Width:"
|
18020 |
msgstr "Largeur du widget photo:"
|
18021 |
|
18022 |
-
#: wppa-widget-admin.php:
|
18023 |
msgid ""
|
18024 |
"Enter the desired display width and alignment of the photo in the sidebar."
|
18025 |
msgstr ""
|
18026 |
"Entrer largeur d'affichage et alignement désirés de la photo dans la barre "
|
18027 |
"latérale."
|
18028 |
|
18029 |
-
#: wppa-widget-admin.php:
|
18030 |
msgid "Use album(s):"
|
18031 |
msgstr "Utiliser album(s):"
|
18032 |
|
18033 |
-
#: wppa-widget-admin.php:
|
18034 |
msgid "Select:"
|
18035 |
msgstr "Sélectionner:"
|
18036 |
|
18037 |
-
#: wppa-widget-admin.php:
|
18038 |
msgid "Or Edit:"
|
18039 |
msgstr "Ou Modifier:"
|
18040 |
|
18041 |
-
#: wppa-widget-admin.php:
|
18042 |
msgid "Update thumbnails"
|
18043 |
msgstr "Mettre à jour les vignettes"
|
18044 |
|
18045 |
-
#: wppa-widget-admin.php:
|
18046 |
msgid "Select or edit the album(s) you want to use the photos of for the widget."
|
18047 |
msgstr ""
|
18048 |
"Choisir ou modifier le(s) album(s) dont vous voulez utiliser les photos pour "
|
18049 |
"le widget."
|
18050 |
|
18051 |
-
#: wppa-widget-admin.php:
|
18052 |
msgid ""
|
18053 |
"If you want a <b>- special -</b> selection or get rid of it, you may need to "
|
18054 |
"use <b>- start over -</b> first."
|
@@ -18056,109 +18119,114 @@ msgstr ""
|
|
18056 |
"Si vous voulez une sélection <b>- spéciale -</b> ou vous en débarrasser, vous "
|
18057 |
"pourriez avoir besoin d'utiliser <b>- repartir de zéro -</b> en premier."
|
18058 |
|
18059 |
-
#: wppa-widget-admin.php:
|
18060 |
msgid "Status filter:"
|
18061 |
msgstr "Filtre de statut:"
|
18062 |
|
18063 |
-
#: wppa-widget-admin.php:
|
18064 |
msgid "- none -"
|
18065 |
msgstr "- aucun -"
|
18066 |
|
18067 |
-
#: wppa-widget-admin.php:
|
18068 |
msgid "Any medal"
|
18069 |
msgstr "N'importe quelle médaille"
|
18070 |
|
18071 |
-
#: wppa-widget-admin.php:
|
18072 |
msgid "Display method:"
|
18073 |
msgstr "Méthode d'affichage:"
|
18074 |
|
18075 |
-
#: wppa-widget-admin.php:
|
18076 |
msgid "Fixed photo"
|
18077 |
msgstr "Photo fixe"
|
18078 |
|
18079 |
-
#: wppa-widget-admin.php:
|
18080 |
msgid "Last upload"
|
18081 |
msgstr "Dernier chargement"
|
18082 |
|
18083 |
-
#: wppa-widget-admin.php:
|
18084 |
msgid "Change every"
|
18085 |
msgstr "Changer tous les"
|
18086 |
|
18087 |
-
#: wppa-widget-admin.php:
|
18088 |
msgid "The page will now be reloaded"
|
18089 |
msgstr "La page va maintenant être rechargée"
|
18090 |
|
18091 |
-
#: wppa-widget-admin.php:
|
18092 |
msgid "pageview."
|
18093 |
msgstr "vue page."
|
18094 |
|
18095 |
-
#: wppa-widget-admin.php:
|
18096 |
msgid "hour."
|
18097 |
msgstr "heure."
|
18098 |
|
18099 |
-
#: wppa-widget-admin.php:
|
18100 |
msgid "day."
|
18101 |
msgstr "jour."
|
18102 |
|
18103 |
-
#: wppa-widget-admin.php:
|
18104 |
msgid "week."
|
18105 |
msgstr "semaine."
|
18106 |
|
18107 |
-
#: wppa-widget-admin.php:
|
18108 |
msgid "month."
|
18109 |
msgstr "mois."
|
18110 |
|
18111 |
-
#: wppa-widget-admin.php:
|
18112 |
msgid "day of week is order#"
|
18113 |
msgstr "day of month is order#"
|
18114 |
|
18115 |
-
#: wppa-widget-admin.php:
|
18116 |
msgid "day of month is order#"
|
18117 |
msgstr "day of month is order#"
|
18118 |
|
18119 |
-
#: wppa-widget-admin.php:
|
18120 |
msgid "day of year is order#"
|
18121 |
msgstr "day of year is order#"
|
18122 |
|
18123 |
-
#: wppa-widget-admin.php:
|
18124 |
msgid "Select how the widget should display."
|
18125 |
msgstr "Sélectionner comment le widget doit s'afficher."
|
18126 |
|
18127 |
-
#: wppa-widget-admin.php:
|
18128 |
#, php-format
|
18129 |
msgid "Current day# = %s, offset ="
|
18130 |
msgstr "Jour courant# = %s, offset ="
|
18131 |
|
18132 |
-
#: wppa-widget-admin.php:
|
18133 |
#, php-format
|
18134 |
msgid "Todays photo order# = %s."
|
18135 |
msgstr "Photo du jour order# = %s."
|
18136 |
|
18137 |
-
#: wppa-widget-admin.php:
|
18138 |
msgid "Not found."
|
18139 |
msgstr "Non trouvé."
|
18140 |
|
18141 |
-
#: wppa-widget-admin.php:
|
18142 |
msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
|
18143 |
msgstr "Les liens sont configurés dans le menu: <b>Photo Albums -> Settings</b>."
|
18144 |
|
18145 |
-
#: wppa-widget-admin.php:
|
18146 |
msgid "Url:"
|
18147 |
msgstr "URL:"
|
18148 |
|
18149 |
-
#: wppa-widget-admin.php:
|
18150 |
msgid "Enter the title and the url. Do'nt forget the HTTP://"
|
18151 |
msgstr "Entrer le titre et l'URL. Ne pas oublier le HTTP://"
|
18152 |
|
18153 |
-
#: wppa-widget-admin.php:
|
18154 |
msgid "Photo Name"
|
18155 |
msgstr "Nom de laphoto"
|
18156 |
|
18157 |
-
#: wppa-widget-admin.php:
|
18158 |
msgid "Select the content of the subtitle."
|
18159 |
msgstr "Sélectionner le contenu du sous titre."
|
18160 |
|
18161 |
-
#: wppa-widget-admin.php:
|
|
|
|
|
|
|
|
|
|
|
18162 |
#, php-format
|
18163 |
msgid "There are too many photos in the selection to show a preview ( %d )"
|
18164 |
msgstr ""
|
@@ -18212,3 +18280,19 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
|
|
18212 |
#. Author URI of the plugin/theme
|
18213 |
msgid "http://wppa.opajaap.nl/"
|
18214 |
msgstr "http://wppa.opajaap.nl/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-07-05 17:07+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-07-05 17:38+0200\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"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
+
#: theme/photo-album-page-2010.php:30 theme/photo-album-search-page.php:52
|
28 |
msgid "Pages:"
|
29 |
msgstr "Pages:"
|
30 |
|
31 |
+
#: theme/photo-album-page-2010.php:31 theme/photo-album-search-page.php:53
|
32 |
+
#: wppa-album-admin-autosave.php:1156 wppa-album-admin-autosave.php:1194
|
33 |
+
#: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
|
34 |
+
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1634
|
35 |
+
#: wppa-album-admin-autosave.php:1745 wppa-album-admin-autosave.php:2067
|
36 |
#: wppa-comment-admin.php:318 wppa-comment-admin.php:387
|
37 |
+
#: wppa-comment-admin.php:405 wppa-setup.php:1290 wppa-thumbnails.php:639
|
38 |
msgid "Edit"
|
39 |
msgstr "Modifier"
|
40 |
|
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:175
|
46 |
+
#: wppa-settings-autosave.php:421 wppa-settings-autosave.php:3368
|
47 |
msgid "Search"
|
48 |
msgstr "Chercher"
|
49 |
|
50 |
+
#: theme/search-2010.php:20 theme/search-2016.php:23
|
51 |
#, php-format
|
52 |
msgid "Search Results for: %s"
|
53 |
msgstr "Résultats de recherche pour: %s"
|
54 |
|
55 |
+
#: theme/search-2010.php:31
|
56 |
msgid "Nothing Found"
|
57 |
msgstr "Aucun résultat"
|
58 |
|
59 |
+
#: theme/search-2010.php:33
|
60 |
msgid ""
|
61 |
"Sorry, but nothing matched your search criteria. Please try again with some "
|
62 |
"different keywords."
|
64 |
"Désolé, mais rien ne correspond à votre critère de recherche. Essayez avec des "
|
65 |
"mots clé différents."
|
66 |
|
67 |
+
#: theme/search-2016.php:46
|
68 |
+
#, fuzzy
|
69 |
+
msgid "Previous page"
|
70 |
+
msgstr "Page précédente"
|
71 |
+
|
72 |
+
#: theme/search-2016.php:47 wppa-admin-functions.php:659
|
73 |
+
msgid "Next page"
|
74 |
+
msgstr "Page suiv."
|
75 |
+
|
76 |
+
#: theme/search-2016.php:48 wppa-settings-autosave.php:419
|
77 |
+
#: wppa-settings-autosave.php:1619 wppa-settings-autosave.php:8702
|
78 |
+
msgid "Page"
|
79 |
+
msgstr "Page"
|
80 |
+
|
81 |
#: theme/wppa-theme.php:328 theme/wppa-theme.php:347
|
82 |
msgid "No photos found matching your search criteria."
|
83 |
msgstr "Aucune photo correspondant à vos critères de recherche."
|
106 |
msgid "Settings file not found"
|
107 |
msgstr "Fichier de paramètres non trouvé"
|
108 |
|
109 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2629
|
110 |
+
#: wppa-ajax.php:2636
|
111 |
msgid "Please supply a numeric value greater than or equal to"
|
112 |
msgstr "Entrez une valeur numérique supérieure ou égale à"
|
113 |
|
114 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2629
|
115 |
+
#: wppa-ajax.php:2636
|
116 |
msgid "for"
|
117 |
msgstr "pour"
|
118 |
|
119 |
+
#: wppa-admin-functions.php:208 wppa-ajax.php:2636
|
120 |
msgid "and less than or equal to"
|
121 |
msgstr "et inférieure ou égale à"
|
122 |
|
123 |
+
#: wppa-admin-functions.php:223 wppa-album-admin-autosave.php:323
|
124 |
msgid "--- public ---"
|
125 |
msgstr "--- public ---"
|
126 |
|
162 |
msgid "Prev page"
|
163 |
msgstr "page préc."
|
164 |
|
|
|
|
|
|
|
|
|
165 |
#: wppa-admin-functions.php:769 wppa-admin-functions.php:772
|
166 |
#, php-format
|
167 |
msgid "Album %s is full"
|
239 |
msgid "Photo Albums"
|
240 |
msgstr "Albums Photo"
|
241 |
|
242 |
+
#: wppa-admin.php:57 wppa-adminbar.php:40 wppa-settings-autosave.php:6012
|
243 |
msgid "Album Admin"
|
244 |
msgstr "Administration de l'album"
|
245 |
|
246 |
+
#: wppa-admin.php:58 wppa-adminbar.php:47 wppa-settings-autosave.php:6013
|
247 |
#: wppa-upload-widget.php:79 wppa-upload.php:88
|
248 |
msgid "Upload Photos"
|
249 |
msgstr "Charger des photos"
|
252 |
msgid "Edit Photos"
|
253 |
msgstr "Modifier les photos"
|
254 |
|
255 |
+
#: wppa-admin.php:63 wppa-adminbar.php:61 wppa-settings-autosave.php:6014
|
256 |
#: wppa-upload.php:459
|
257 |
msgid "Import Photos"
|
258 |
msgstr "Importer des photos"
|
262 |
msgstr "Modérez les photos"
|
263 |
|
264 |
#: wppa-admin.php:65 wppa-adminbar.php:75 wppa-export.php:32
|
265 |
+
#: wppa-settings-autosave.php:6016
|
266 |
msgid "Export Photos"
|
267 |
msgstr "Exporter des photos"
|
268 |
|
269 |
#: wppa-admin.php:66 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
270 |
+
#: wppa-settings-autosave.php:6017
|
271 |
msgid "Settings"
|
272 |
msgstr "Réglages"
|
273 |
|
276 |
msgstr "Widget \"Photo du jour\""
|
277 |
|
278 |
#: wppa-admin.php:67 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
279 |
+
#: wppa-settings-autosave.php:6018 wppa-setup.php:1564
|
280 |
msgid "Photo of the day"
|
281 |
msgstr "Photo du jour"
|
282 |
|
285 |
msgstr "Gérer les commentaires"
|
286 |
|
287 |
#: wppa-admin.php:68 wppa-adminbar.php:96 wppa-settings-autosave.php:411
|
288 |
+
#: wppa-settings-autosave.php:3197 wppa-settings-autosave.php:8501
|
289 |
+
#: wppa-settings-autosave.php:8546
|
290 |
msgid "Comments"
|
291 |
msgstr "Commentaires"
|
292 |
|
315 |
msgid "Import"
|
316 |
msgstr "Importer"
|
317 |
|
318 |
+
#: wppa-admin.php:122 wppa-settings-autosave.php:9679
|
319 |
msgid "Update"
|
320 |
msgstr "Mettre à jour"
|
321 |
|
345 |
#: wppa-album-widget.php:322 wppa-bestof-widget.php:131
|
346 |
#: wppa-comment-widget.php:119 wppa-featen-widget.php:176 wppa-gp-widget.php:88
|
347 |
#: wppa-lasten-widget.php:200 wppa-multitag-widget.php:72
|
348 |
+
#: wppa-potd-widget.php:204 wppa-qr-widget.php:94 wppa-search-widget.php:94
|
349 |
#: wppa-slideshow-widget.php:198 wppa-stereo-widget.php:68
|
350 |
#: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
|
351 |
#: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
|
352 |
+
#: wppa-upldr-widget.php:176 wppa-upload-widget.php:83 wppa-widget-admin.php:245
|
353 |
msgid "Title:"
|
354 |
msgstr "Titre:"
|
355 |
|
367 |
msgid "Exit & Refresh"
|
368 |
msgstr "Quitter et rafraîchirr"
|
369 |
|
370 |
+
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
371 |
+
#: wppa-ajax.php:901 wppa-ajax.php:2586
|
372 |
msgid "Security check failure"
|
373 |
msgstr "Echec de la vérification de sécurité"
|
374 |
|
375 |
+
#: wppa-ajax.php:284 wppa-ajax.php:340
|
376 |
msgid "You do not have the rights to moderate photos this way"
|
377 |
msgstr "Vous n'avez pas les droits de modérer les photos de cette façon"
|
378 |
|
379 |
+
#: wppa-ajax.php:300 wppa-ajax.php:1205 wppa-functions.php:2306
|
380 |
msgid "Photo comment approved"
|
381 |
msgstr "Commentaire photo approuvé"
|
382 |
|
383 |
+
#: wppa-ajax.php:313
|
384 |
#, php-format
|
385 |
msgid "Failed to update stutus of photo %s"
|
386 |
msgstr "Échec de mise à jour du statut de la photo %s"
|
387 |
|
388 |
+
#: wppa-ajax.php:313 wppa-ajax.php:320
|
389 |
msgid "Please refresh the page"
|
390 |
msgstr "Rafraîchissez la page"
|
391 |
|
392 |
+
#: wppa-ajax.php:320
|
393 |
#, php-format
|
394 |
msgid "Failed to update stutus of comment %s"
|
395 |
msgstr "Échec de la mise à jour du statut du commentaire %s"
|
396 |
|
397 |
+
#: wppa-ajax.php:335 wppa-ajax.php:355
|
398 |
msgid "Photo removed"
|
399 |
msgstr "Photo retirée"
|
400 |
|
401 |
+
#: wppa-ajax.php:360
|
402 |
msgid "Comment removed"
|
403 |
msgstr "Commentaire retiré"
|
404 |
|
405 |
+
#: wppa-ajax.php:361
|
406 |
msgid "Could not remove comment"
|
407 |
msgstr "Impossible de retirer le commentaire"
|
408 |
|
409 |
+
#: wppa-ajax.php:364 wppa-ajax.php:769
|
410 |
msgid "Unexpected error"
|
411 |
msgstr "Erreur inattendue"
|
412 |
|
413 |
+
#: wppa-ajax.php:370
|
414 |
msgid "This feature is not enabled on this website"
|
415 |
msgstr "Cette fonctionnalité n'est pas activée sur votre site web"
|
416 |
|
417 |
+
#: wppa-ajax.php:382
|
418 |
msgid "The album is empty"
|
419 |
msgstr "Cet album est vide"
|
420 |
|
421 |
+
#: wppa-ajax.php:391 wppa-ajax.php:470 wppa-ajax.php:592
|
422 |
msgid "Unable to create zip archive"
|
423 |
msgstr "Impossible de créer l'archive zip"
|
424 |
|
425 |
+
#: wppa-ajax.php:403
|
426 |
#, php-format
|
427 |
msgid "Unable to create zip archive. code = %s"
|
428 |
msgstr "Impossible de créer l'archive zip. Code = %s"
|
429 |
|
430 |
+
#: wppa-ajax.php:440
|
431 |
#, php-format
|
432 |
msgid "Only %s out of %s photos could be added to the zipfile"
|
433 |
msgstr "Seulement %s des %s photos ont pu être ajoutées à l'archive zip"
|
434 |
|
435 |
+
#: wppa-ajax.php:478
|
436 |
msgid "Unable to create zipsdir"
|
437 |
msgstr "Impossible de créer zipsdir"
|
438 |
|
439 |
+
#: wppa-ajax.php:503 wppa-functions.php:2117 wppa-thumbnails.php:614
|
440 |
msgid "Selected"
|
441 |
msgstr "Sélectionné"
|
442 |
|
443 |
+
#: wppa-ajax.php:533
|
444 |
msgid "Unknown source of request"
|
445 |
msgstr "Origine de la requête inconnue"
|
446 |
|
447 |
+
#: wppa-ajax.php:551
|
448 |
msgid "Empty filename"
|
449 |
msgstr "Nom de fichier vide"
|
450 |
|
451 |
+
#: wppa-ajax.php:578
|
452 |
msgid "Unable to create tempdir"
|
453 |
msgstr "Impossible de créer tempdir"
|
454 |
|
455 |
+
#: wppa-ajax.php:602
|
456 |
msgid "Unknown type"
|
457 |
msgstr "Type inconnu"
|
458 |
|
459 |
+
#: wppa-ajax.php:611
|
460 |
msgid "The photo does no longer exist"
|
461 |
msgstr "La photo n'existe plus"
|
462 |
|
463 |
+
#: wppa-ajax.php:643
|
464 |
msgid "An error occurred while processing you rating request."
|
465 |
msgstr ""
|
466 |
"Une erreur est survenue pendant l’exécution de votre requête de notation."
|
467 |
|
468 |
+
#: wppa-ajax.php:644
|
469 |
msgid "Maybe you opened the page too long ago to recognize you."
|
470 |
msgstr ""
|
471 |
"Peut-être avez vous ouvert la page depuis longtemps et votre session a expiré "
|
472 |
"depuis."
|
473 |
|
474 |
+
#: wppa-ajax.php:645
|
475 |
msgid "You may refresh the page and try again."
|
476 |
msgstr "Vous devriez rafraîchir la page et réessayer."
|
477 |
|
478 |
+
#: wppa-ajax.php:646
|
479 |
msgid ""
|
480 |
"Althoug an error occurred while processing your rating, your vote has been "
|
481 |
"registered."
|
483 |
"Une erreur s'est produite pendant l’opération de notation, cependant votre "
|
484 |
"vote a tout de même été enregistré."
|
485 |
|
486 |
+
#: wppa-ajax.php:647
|
487 |
msgid "However, this may not be reflected in the current pageview"
|
488 |
msgstr ""
|
489 |
"Cependant, il se peut que cela ne soit pas répercuté sur la page courante"
|
490 |
|
491 |
+
#: wppa-ajax.php:676
|
492 |
msgid "Photo has been removed."
|
493 |
msgstr "Photo retirée."
|
494 |
|
495 |
+
#: wppa-ajax.php:685 wppa-slideshow.php:721
|
496 |
msgid "Sorry, you can not rate your own photos"
|
497 |
msgstr "Désolé, vous ne pouvez pas noter vos propres photos"
|
498 |
|
499 |
+
#: wppa-ajax.php:697
|
500 |
msgid "Please enter a comment."
|
501 |
msgstr "Entrer un commentaire."
|
502 |
|
503 |
+
#: wppa-ajax.php:722
|
504 |
msgid "Security check failure."
|
505 |
msgstr "Échec de vérification sécu."
|
506 |
|
507 |
+
#: wppa-ajax.php:734 wppa-ajax.php:750
|
508 |
msgid "Photo rated"
|
509 |
msgstr "Photo évaluée (vote)"
|
510 |
|
511 |
+
#: wppa-ajax.php:853
|
512 |
msgid ""
|
513 |
"Please explain your vote in a comment.\n"
|
514 |
"Your vote will be discarded if you don't.\n"
|
524 |
"vous pouvez rafraîchir la page\n"
|
525 |
"pour voir votre vote apparaître."
|
526 |
|
527 |
+
#: wppa-ajax.php:897
|
528 |
msgid "You do not have the rights to delete a photo"
|
529 |
msgstr "Vous n'avez pas les droits pour effacer une photo"
|
530 |
|
531 |
+
#: wppa-ajax.php:907
|
532 |
#, php-format
|
533 |
msgid "Photo %s has been deleted"
|
534 |
msgstr "La photo %s a été effacée."
|
535 |
|
536 |
+
#: wppa-ajax.php:923
|
537 |
msgid "You do not have the rights to update album information"
|
538 |
msgstr "Vous n'avez pas les droits pour mettre à jour la description de l'album"
|
539 |
|
540 |
+
#: wppa-ajax.php:935
|
541 |
msgid "<b>Ratings cleared</b>"
|
542 |
msgstr "<b>Notes effacées</b>"
|
543 |
|
544 |
+
#: wppa-ajax.php:935 wppa-ajax.php:941 wppa-photo-admin-autosave.php:318
|
545 |
msgid "No ratings for this photo."
|
546 |
msgstr "Pas de notes pour cette photo."
|
547 |
|
548 |
+
#: wppa-ajax.php:938
|
549 |
msgid "An error occurred while clearing ratings"
|
550 |
msgstr "Une erreur est survenue pendant l'effacement des notes"
|
551 |
|
552 |
+
#: wppa-ajax.php:941 wppa-ajax.php:962 wppa-ajax.php:984
|
553 |
msgid "<b>No photos in this album</b>"
|
554 |
msgstr "<b>Pas de photos dans cet album</b>"
|
555 |
|
556 |
+
#: wppa-ajax.php:956
|
557 |
msgid "<b>Tags set to defaults</b> (reload)"
|
558 |
msgstr "<b>Tags remis à zéro</b> (rechargement)"
|
559 |
|
560 |
+
#: wppa-ajax.php:959
|
561 |
msgid "An error occurred while setting tags"
|
562 |
msgstr "Une erreur s'est produite pendant l'application des tags"
|
563 |
|
564 |
+
#: wppa-ajax.php:978
|
565 |
msgid "<b>Tags added width defaults</b> (reload)"
|
566 |
msgstr "<b>Tags ajoutés avec réglages par défaut</b> (rechargement)"
|
567 |
|
568 |
+
#: wppa-ajax.php:981
|
569 |
msgid "An error occurred while adding tags"
|
570 |
msgstr "Une erreur s'est produite pendant l'ajout des tags"
|
571 |
|
572 |
+
#: wppa-ajax.php:1007
|
573 |
msgid "No subalbums found to process"
|
574 |
msgstr "Aucun sous-albums trouvés pour traiter"
|
575 |
|
576 |
+
#: wppa-ajax.php:1012
|
577 |
msgid "No categories found to process"
|
578 |
msgstr "Aucune catégorie trouvée pour traiter"
|
579 |
|
580 |
+
#: wppa-ajax.php:1016
|
581 |
#, php-format
|
582 |
msgid "%d album updated"
|
583 |
msgid_plural "%d albums updated"
|
584 |
msgstr[0] "%d album mis à jour"
|
585 |
msgstr[1] "%d albums mis à jour"
|
586 |
|
587 |
+
#: wppa-ajax.php:1023
|
588 |
#, php-format
|
589 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
590 |
msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à <b>%s</b>"
|
591 |
|
592 |
+
#: wppa-ajax.php:1025 wppa-ajax.php:1465 wppa-album-admin-autosave.php:392
|
593 |
+
#: wppa-album-admin-autosave.php:449 wppa-album-admin-autosave.php:1103
|
594 |
+
#: wppa-album-admin-autosave.php:1240 wppa-album-admin-autosave.php:1412
|
595 |
+
#: wppa-album-admin-autosave.php:1507 wppa-boxes-html.php:415
|
596 |
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1363
|
597 |
#: wppa-photo-admin-autosave.php:1482 wppa-photo-admin-autosave.php:1879
|
598 |
#: wppa-settings-autosave.php:553 wppa-settings-autosave.php:715
|
599 |
#: wppa-settings-autosave.php:737 wppa-settings-autosave.php:1485
|
600 |
+
#: wppa-settings-autosave.php:1506 wppa-settings-autosave.php:3094
|
601 |
+
#: wppa-settings-autosave.php:3115 wppa-settings-autosave.php:3439
|
602 |
+
#: wppa-settings-autosave.php:3463 wppa-settings-autosave.php:3988
|
603 |
+
#: wppa-settings-autosave.php:4102 wppa-settings-autosave.php:4751
|
604 |
+
#: wppa-settings-autosave.php:4772 wppa-settings-autosave.php:4948
|
605 |
+
#: wppa-settings-autosave.php:4972 wppa-settings-autosave.php:5978
|
606 |
+
#: wppa-settings-autosave.php:6388 wppa-settings-autosave.php:6638
|
607 |
+
#: wppa-settings-autosave.php:6660 wppa-settings-autosave.php:7390
|
608 |
+
#: wppa-settings-autosave.php:7414 wppa-settings-autosave.php:8495
|
609 |
+
#: wppa-settings-autosave.php:9136 wppa-settings-autosave.php:9292
|
610 |
#: wppa-thumbnail-widget.php:202 wppa-upload.php:166
|
611 |
msgid "Name"
|
612 |
msgstr "Nom"
|
613 |
|
614 |
+
#: wppa-ajax.php:1028 wppa-ajax.php:1468 wppa-album-admin-autosave.php:1113
|
615 |
+
#: wppa-album-admin-autosave.php:1250 wppa-album-admin-autosave.php:1422
|
616 |
+
#: wppa-album-admin-autosave.php:1517 wppa-photo-admin-autosave.php:1364
|
617 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1880
|
618 |
#: wppa-settings-autosave.php:554 wppa-settings-autosave.php:716
|
619 |
#: wppa-settings-autosave.php:738 wppa-settings-autosave.php:1486
|
620 |
+
#: wppa-settings-autosave.php:1507 wppa-settings-autosave.php:3095
|
621 |
+
#: wppa-settings-autosave.php:3116 wppa-settings-autosave.php:3440
|
622 |
+
#: wppa-settings-autosave.php:3464 wppa-settings-autosave.php:4752
|
623 |
+
#: wppa-settings-autosave.php:4773 wppa-settings-autosave.php:4949
|
624 |
+
#: wppa-settings-autosave.php:4973 wppa-settings-autosave.php:5979
|
625 |
+
#: wppa-settings-autosave.php:6389 wppa-settings-autosave.php:6639
|
626 |
+
#: wppa-settings-autosave.php:6661 wppa-settings-autosave.php:7391
|
627 |
+
#: wppa-settings-autosave.php:7415 wppa-settings-autosave.php:9137
|
628 |
+
#: wppa-settings-autosave.php:9159 wppa-settings-autosave.php:9199
|
629 |
+
#: wppa-settings-autosave.php:9221 wppa-settings-autosave.php:9267
|
630 |
+
#: wppa-settings-autosave.php:9293 wppa-widget-admin.php:263
|
631 |
msgid "Description"
|
632 |
msgstr "Description"
|
633 |
|
634 |
+
#: wppa-ajax.php:1032
|
635 |
msgid "Unbalanced tags in album description!"
|
636 |
msgstr "Unbalanced tags dans la description de l'album!"
|
637 |
|
638 |
+
#: wppa-ajax.php:1039
|
639 |
msgid "Album order #"
|
640 |
msgstr "Ordre de l'album #"
|
641 |
|
642 |
+
#: wppa-ajax.php:1042
|
643 |
msgid "Cover photo"
|
644 |
msgstr "Photo de couverture"
|
645 |
|
646 |
+
#: wppa-ajax.php:1045
|
647 |
msgid "Parent album"
|
648 |
msgstr "Album Parent"
|
649 |
|
650 |
+
#: wppa-ajax.php:1050 wppa-settings-autosave.php:3982
|
651 |
msgid "Photo order"
|
652 |
msgstr "Ordre des photos"
|
653 |
|
654 |
+
#: wppa-ajax.php:1053
|
655 |
msgid "Use Alt thumbsize"
|
656 |
msgstr "Utiliser taille de vignette alternative"
|
657 |
|
658 |
+
#: wppa-ajax.php:1056
|
659 |
msgid "Cover Type"
|
660 |
msgstr "Type de couverture"
|
661 |
|
662 |
+
#: wppa-ajax.php:1059 wppa-settings-autosave.php:4974
|
663 |
+
#: wppa-settings-autosave.php:5980
|
664 |
msgid "Link type"
|
665 |
msgstr "Type de lien"
|
666 |
|
667 |
+
#: wppa-ajax.php:1062 wppa-album-covers.php:1303
|
668 |
msgid "Link to"
|
669 |
msgstr "Lien vers"
|
670 |
|
671 |
+
#: wppa-ajax.php:1065 wppa-ajax.php:1489 wppa-album-admin-autosave.php:1124
|
672 |
+
#: wppa-album-admin-autosave.php:1261 wppa-album-admin-autosave.php:1433
|
673 |
+
#: wppa-album-admin-autosave.php:1528 wppa-boxes-html.php:537
|
674 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
675 |
+
#: wppa-widget-admin.php:264
|
676 |
msgid "Owner"
|
677 |
msgstr "Propriétaire"
|
678 |
|
679 |
+
#: wppa-ajax.php:1067
|
680 |
#, php-format
|
681 |
msgid "User %s does not exist"
|
682 |
msgstr "L'utilisateur %s n'existe pas"
|
683 |
|
684 |
+
#: wppa-ajax.php:1072 wppa-ajax.php:1078
|
685 |
msgid "Upload limit count"
|
686 |
msgstr "Compteur limite d'upload"
|
687 |
|
688 |
+
#: wppa-ajax.php:1085
|
689 |
msgid "Upload limit time"
|
690 |
msgstr "Temps limite d'upload"
|
691 |
|
692 |
+
#: wppa-ajax.php:1089
|
693 |
msgid "Default tags"
|
694 |
msgstr "Tags par défaut"
|
695 |
|
696 |
+
#: wppa-ajax.php:1094
|
697 |
msgid "Categories"
|
698 |
msgstr "Catégories"
|
699 |
|
700 |
+
#: wppa-ajax.php:1097
|
701 |
msgid "Sub albums sort order"
|
702 |
msgstr "Ordre de tri des albums fils"
|
703 |
|
704 |
+
#: wppa-ajax.php:1105 wppa-ajax.php:1559
|
705 |
msgid "Schedule date/time"
|
706 |
msgstr "Date/Heure de planification"
|
707 |
|
708 |
+
#: wppa-ajax.php:1118 wppa-ajax.php:1170
|
709 |
#, php-format
|
710 |
msgid "<b>%s</b> of album %s updated"
|
711 |
msgstr "<b>%s</b> de l'album %s mis à jour"
|
712 |
|
713 |
+
#: wppa-ajax.php:1126
|
714 |
msgid "All photos set to scheduled per date"
|
715 |
msgstr "Toutes les photos réglées à planifié par date"
|
716 |
|
717 |
+
#: wppa-ajax.php:1153
|
718 |
+
#, fuzzy, php-format
|
719 |
+
msgid "<b>Custom field %s</b> updated"
|
720 |
+
msgstr "Champ personnalisé mis à jour"
|
721 |
+
|
722 |
+
#: wppa-ajax.php:1179
|
723 |
#, php-format
|
724 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
725 |
msgstr ""
|
726 |
"Une erreur est survenue pendant la tentative de modification <b>%s</b> de "
|
727 |
"l'album %s"
|
728 |
|
729 |
+
#: wppa-ajax.php:1180 wppa-ajax.php:1443 wppa-ajax.php:1549
|
730 |
msgid "Press CTRL+F5 and try again."
|
731 |
msgstr "Presser CTRL+F5 et réessayer."
|
732 |
|
733 |
+
#: wppa-ajax.php:1194
|
734 |
msgid "You do not have the rights to update comment status"
|
735 |
msgstr "Vous n'avez pas les droits pour modifier le statut du commentaire"
|
736 |
|
737 |
+
#: wppa-ajax.php:1211
|
738 |
#, php-format
|
739 |
msgid "Status of comment #%s updated"
|
740 |
msgstr "statut du commentaire #%s modifié"
|
741 |
|
742 |
+
#: wppa-ajax.php:1214
|
743 |
#, php-format
|
744 |
msgid "Error updating status comment #%s"
|
745 |
msgstr "Erreur pendant la modification du commentaire #%s"
|
746 |
|
747 |
+
#: wppa-ajax.php:1225
|
748 |
msgid "You do not have the rights to change photos"
|
749 |
msgstr "Vous n'avez pas les droits pour changer les photos"
|
750 |
|
751 |
+
#: wppa-ajax.php:1234
|
752 |
msgid "Watermark applied"
|
753 |
msgstr "Filigrane appliqué"
|
754 |
|
755 |
+
#: wppa-ajax.php:1238
|
756 |
msgid "An error occured while trying to apply a watermark"
|
757 |
msgstr "Une erreur est survenue pendant l'application du filigrane"
|
758 |
|
759 |
+
#: wppa-ajax.php:1257
|
760 |
msgid "You do not have the rights to update photo information"
|
761 |
msgstr "Vous n'avez pas les droits pour changer la description de la photo"
|
762 |
|
763 |
+
#: wppa-ajax.php:1263
|
764 |
#, php-format
|
765 |
msgid "%s updated to %s."
|
766 |
msgstr "%s mis à jour à %s."
|
767 |
|
768 |
+
#: wppa-ajax.php:1313
|
769 |
#, php-format
|
770 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
771 |
msgstr "Erreur de format %s. Doit être yyyy:mm:dd hh:mm:ss"
|
772 |
|
773 |
+
#: wppa-ajax.php:1317
|
774 |
msgid "Exif date/time updated"
|
775 |
msgstr "Date/heure EXIF modifiée"
|
776 |
|
777 |
+
#: wppa-ajax.php:1323
|
778 |
msgid "Enter a value > -90 and < 90"
|
779 |
msgstr "Entrez une valeur comprise entre -90 et 90"
|
780 |
|
781 |
+
#: wppa-ajax.php:1331
|
782 |
msgid "Lattitude updated"
|
783 |
msgstr "Latitude mise à jour"
|
784 |
|
785 |
+
#: wppa-ajax.php:1333
|
786 |
msgid "Could not update lattitude"
|
787 |
msgstr "Ne peut pas mettre à jour la latitude"
|
788 |
|
789 |
+
#: wppa-ajax.php:1339
|
790 |
msgid "Enter a value > -180 and < 180"
|
791 |
msgstr "Entrez une valeur comprise entre -180 et 180"
|
792 |
|
793 |
+
#: wppa-ajax.php:1347
|
794 |
msgid "Longitude updated"
|
795 |
msgstr "Longitude mise à jour"
|
796 |
|
797 |
+
#: wppa-ajax.php:1349
|
798 |
msgid "Could not update longitude"
|
799 |
msgstr "Ne peut pas mettre à jour la longitude"
|
800 |
|
801 |
+
#: wppa-ajax.php:1357
|
802 |
msgid "Photo files remade"
|
803 |
msgstr "Fichiers photo recréés"
|
804 |
|
805 |
+
#: wppa-ajax.php:1360
|
806 |
msgid "Could not remake files"
|
807 |
msgstr "Impossible de recréer les fichiers"
|
808 |
|
809 |
+
#: wppa-ajax.php:1366
|
810 |
msgid "Thumbnail remade"
|
811 |
msgstr "Vignettes recréées"
|
812 |
|
813 |
+
#: wppa-ajax.php:1369
|
814 |
msgid "Could not remake thumbnail"
|
815 |
msgstr "Impossible de recréer les vignette"
|
816 |
|
817 |
+
#: wppa-ajax.php:1379 wppa-photo-admin-autosave.php:184
|
818 |
+
#: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:288
|
819 |
+
#: wppa-tinymce-shortcodes.php:614 wppa-widget-admin.php:91
|
820 |
msgid "left"
|
821 |
msgstr "gauche"
|
822 |
|
823 |
+
#: wppa-ajax.php:1383 wppa-photo-admin-autosave.php:186
|
824 |
msgid "180°"
|
825 |
msgstr "180°"
|
826 |
|
827 |
+
#: wppa-ajax.php:1387 wppa-photo-admin-autosave.php:188
|
828 |
+
#: wppa-settings-autosave.php:3798 wppa-tinymce-scripts.php:290
|
829 |
+
#: wppa-tinymce-shortcodes.php:616 wppa-widget-admin.php:93
|
830 |
msgid "right"
|
831 |
msgstr "droite"
|
832 |
|
833 |
+
#: wppa-ajax.php:1395
|
834 |
#, php-format
|
835 |
msgid "Photo %s rotated %s"
|
836 |
msgstr "Photo %s pivotée %s"
|
837 |
|
838 |
+
#: wppa-ajax.php:1398
|
839 |
#, php-format
|
840 |
msgid "An error occurred while trying to rotate photo %s"
|
841 |
msgstr "Une erreur est survenue pendant la rotation de la photo %s"
|
842 |
|
843 |
+
#: wppa-ajax.php:1408 wppa-ajax.php:1431 wppa-photo-admin-autosave.php:1100
|
844 |
#: wppa-photo-admin-autosave.php:1118
|
845 |
#, php-format
|
846 |
msgid "A photo with filename %s already exists in album %s."
|
847 |
msgstr "Une photo avec le nom de fichier %s existe déjà dans l'album %s."
|
848 |
|
849 |
+
#: wppa-ajax.php:1418
|
850 |
#, php-format
|
851 |
msgid "Photo %s has been moved to album %s (%s)"
|
852 |
msgstr "La photo %s a été déplacée vers l'album %s (%s)"
|
853 |
|
854 |
+
#: wppa-ajax.php:1421
|
855 |
#, php-format
|
856 |
msgid "An error occurred while trying to move photo %s"
|
857 |
msgstr "Une erreur est survenue pendant le déplacement de la photo %s"
|
858 |
|
859 |
+
#: wppa-ajax.php:1439
|
860 |
#, php-format
|
861 |
msgid "Photo %s copied to album %s (%s)"
|
862 |
msgstr "Photo %s copiée vers l'album %s (%s)"
|
863 |
|
864 |
+
#: wppa-ajax.php:1442
|
865 |
#, php-format
|
866 |
msgid "An error occurred while trying to copy photo %s"
|
867 |
msgstr "Une erreur est survenue pendant la copie de la photo %s"
|
868 |
|
869 |
+
#: wppa-ajax.php:1472 wppa-ajax.php:2060
|
870 |
msgid "Unbalanced tags in photo description!"
|
871 |
msgstr "Unbalanced tags dans la description de la photo!"
|
872 |
|
873 |
+
#: wppa-ajax.php:1478
|
874 |
msgid "Photo order #"
|
875 |
msgstr "Photo en position #"
|
876 |
|
877 |
+
#: wppa-ajax.php:1483
|
878 |
#, php-format
|
879 |
msgid "User %s does not exists"
|
880 |
msgstr "L'utilisateur %s n'existe pas"
|
881 |
|
882 |
+
#: wppa-ajax.php:1492
|
883 |
msgid "Link url"
|
884 |
msgstr "URL du lien"
|
885 |
|
886 |
+
#: wppa-ajax.php:1495
|
887 |
msgid "Link title"
|
888 |
msgstr "Titre du lien"
|
889 |
|
890 |
+
#: wppa-ajax.php:1498
|
891 |
msgid "Link target"
|
892 |
msgstr "Cible du lien"
|
893 |
|
894 |
+
#: wppa-ajax.php:1504 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
|
895 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
896 |
msgid "Photo Tags"
|
897 |
msgstr "Tags de la photo"
|
898 |
|
899 |
+
#: wppa-ajax.php:1509 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
900 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
901 |
+
#: wppa-settings-autosave.php:6664 wppa-settings-autosave.php:7394
|
902 |
+
#: wppa-settings-autosave.php:9160 wppa-settings-autosave.php:9200
|
903 |
+
#: wppa-settings-autosave.php:9222 wppa-settings-autosave.php:9268
|
904 |
msgid "Status"
|
905 |
msgstr "Statut"
|
906 |
|
907 |
+
#: wppa-ajax.php:1512
|
908 |
msgid "HTML Alt"
|
909 |
msgstr "HTML alt"
|
910 |
|
911 |
+
#: wppa-ajax.php:1516
|
912 |
msgid "Video width"
|
913 |
msgstr "Largeur de la vidéo"
|
914 |
|
915 |
+
#: wppa-ajax.php:1518 wppa-ajax.php:1525
|
916 |
msgid "Please enter an integer value >= 0"
|
917 |
msgstr "Entrer un nombre entier >= 0"
|
918 |
|
919 |
+
#: wppa-ajax.php:1523
|
920 |
msgid "Video height"
|
921 |
msgstr "Hauteur de la vidéo"
|
922 |
|
923 |
+
#: wppa-ajax.php:1541 wppa-ajax.php:1575
|
924 |
#, php-format
|
925 |
msgid "<b>%s</b> of video %s updated"
|
926 |
msgstr "<b>%s</b> de la vidéo %s effectué"
|
927 |
|
928 |
+
#: wppa-ajax.php:1544 wppa-ajax.php:1578
|
929 |
#, php-format
|
930 |
msgid "<b>%s</b> of photo %s updated"
|
931 |
msgstr "<b>%s</b> de la photo %s modifié"
|
932 |
|
933 |
+
#: wppa-ajax.php:1548
|
934 |
#, php-format
|
935 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
936 |
msgstr "Une erreur est survenue pendant la modification <b>%s</b> de la photo %s"
|
937 |
|
938 |
+
#: wppa-ajax.php:1604
|
939 |
#, php-format
|
940 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
941 |
msgstr "<b>Champ personnalisé %s</b> de la photo %s modifié"
|
942 |
|
943 |
+
#: wppa-ajax.php:1611
|
944 |
msgid "<b>Error during upload.</b>"
|
945 |
msgstr "<b>Erreur pendant le chargement.</b>"
|
946 |
|
947 |
+
#: wppa-ajax.php:1645
|
948 |
msgid "Photo files updated."
|
949 |
msgstr "Fichiers photo mis à jour."
|
950 |
|
951 |
+
#: wppa-ajax.php:1650
|
952 |
msgid "Could not update files."
|
953 |
msgstr "Impossible de créer les fichiers."
|
954 |
|
955 |
+
#: wppa-ajax.php:1661
|
956 |
#, php-format
|
957 |
msgid "Stereo mode updated in %d milliseconds"
|
958 |
msgstr "Mode stéréo modifié en %d millisecondes"
|
959 |
|
960 |
+
#: wppa-ajax.php:1677
|
961 |
msgid "You do not have the rights to update settings"
|
962 |
msgstr "Vous n'avez pas les droits de modifier les réglages"
|
963 |
|
964 |
+
#: wppa-ajax.php:1758
|
965 |
msgid "Capability granted"
|
966 |
msgstr "Capacité accordée"
|
967 |
|
968 |
+
#: wppa-ajax.php:1763
|
969 |
msgid "Capability withdrawn"
|
970 |
msgstr "Capacité retirée"
|
971 |
|
972 |
+
#: wppa-ajax.php:1774
|
973 |
msgid "Column width."
|
974 |
msgstr "Largeur de colonne."
|
975 |
|
976 |
+
#: wppa-ajax.php:1777
|
977 |
msgid "Initial width."
|
978 |
msgstr "Largeur initiale."
|
979 |
|
980 |
+
#: wppa-ajax.php:1780
|
981 |
msgid "Full size."
|
982 |
msgstr "Pleine taille."
|
983 |
|
984 |
+
#: wppa-ajax.php:1783
|
985 |
msgid "Max height."
|
986 |
msgstr "Hauteur maximum."
|
987 |
|
988 |
+
#: wppa-ajax.php:1788
|
989 |
msgid "Thumbnail size."
|
990 |
msgstr "Taille de la vignette"
|
991 |
|
992 |
+
#: wppa-ajax.php:1792
|
993 |
msgid "Thumbnail frame width"
|
994 |
msgstr "Largeur du cadre vignette"
|
995 |
|
996 |
+
#: wppa-ajax.php:1796
|
997 |
msgid "Thumbnail frame height"
|
998 |
msgstr "Hauteur du cadre vignette"
|
999 |
|
1000 |
+
#: wppa-ajax.php:1799
|
1001 |
msgid "Thumbnail Spacing"
|
1002 |
msgstr "Espacement des vignettes"
|
1003 |
|
1004 |
+
#: wppa-ajax.php:1802
|
1005 |
msgid "Photocount treshold."
|
1006 |
msgstr "Seuil de comptage des photos."
|
1007 |
|
1008 |
+
#: wppa-ajax.php:1805
|
1009 |
msgid "Thumb page size."
|
1010 |
msgstr "Taille de la page de vignettes"
|
1011 |
|
1012 |
+
#: wppa-ajax.php:1808
|
1013 |
msgid "Cover photo size."
|
1014 |
msgstr "Taille de la photo de couverture."
|
1015 |
|
1016 |
+
#: wppa-ajax.php:1811
|
1017 |
msgid "Album page size."
|
1018 |
msgstr "Taille de page de l'album."
|
1019 |
|
1020 |
+
#: wppa-ajax.php:1814
|
1021 |
msgid "Number of TopTen photos"
|
1022 |
msgstr "Nombre du TopTen des photos"
|
1023 |
|
1024 |
+
#: wppa-ajax.php:1817
|
1025 |
msgid "Widget image thumbnail size"
|
1026 |
msgstr "Taille de la vignette dans le widget"
|
1027 |
|
1028 |
+
#: wppa-ajax.php:1820 wppa-settings-autosave.php:1143
|
1029 |
msgid "Max Cover width"
|
1030 |
msgstr "Largeur maximum de la couverture"
|
1031 |
|
1032 |
+
#: wppa-ajax.php:1823
|
1033 |
msgid "Minimal description height"
|
1034 |
msgstr "Hauteur minimale de la description"
|
1035 |
|
1036 |
+
#: wppa-ajax.php:1826
|
1037 |
msgid "Minimal cover height"
|
1038 |
msgstr "Hauteur minimale de la couverture"
|
1039 |
|
1040 |
+
#: wppa-ajax.php:1829
|
1041 |
msgid "Minimal text frame height"
|
1042 |
msgstr "Hauteur minimale du cadre de texte"
|
1043 |
|
1044 |
+
#: wppa-ajax.php:1832 wppa-settings-autosave.php:1440
|
1045 |
msgid "Border width"
|
1046 |
msgstr "Largeur de bordure"
|
1047 |
|
1048 |
+
#: wppa-ajax.php:1835 wppa-settings-autosave.php:814
|
1049 |
#: wppa-settings-autosave.php:1449
|
1050 |
msgid "Border radius"
|
1051 |
msgstr "Rayon de bordure"
|
1052 |
|
1053 |
+
#: wppa-ajax.php:1838 wppa-settings-autosave.php:825
|
1054 |
msgid "Box spacing"
|
1055 |
msgstr "Espacement boîtes"
|
1056 |
|
1057 |
+
#: wppa-ajax.php:1844 wppa-settings-autosave.php:1118
|
1058 |
msgid "Popup size"
|
1059 |
msgstr "Taille du popup"
|
1060 |
|
1061 |
+
#: wppa-ajax.php:1847
|
1062 |
msgid "Fullsize border width"
|
1063 |
msgstr "Largeur de bordure pleine taille"
|
1064 |
|
1065 |
+
#: wppa-ajax.php:1850
|
1066 |
msgid "Lightbox Bordersize"
|
1067 |
msgstr "Taille de bordure de Lightbox"
|
1068 |
|
1069 |
+
#: wppa-ajax.php:1853
|
1070 |
msgid "Lightbox Borderwidth"
|
1071 |
msgstr "Largeur de bordure de Lightbox"
|
1072 |
|
1073 |
+
#: wppa-ajax.php:1856
|
1074 |
msgid "Lightbox Borderradius"
|
1075 |
msgstr "Rayon de bordure de Lightbox"
|
1076 |
|
1077 |
+
#: wppa-ajax.php:1859
|
1078 |
msgid "Number of Comment widget entries"
|
1079 |
msgstr "Nombre d'entrées de widget commentaire"
|
1080 |
|
1081 |
+
#: wppa-ajax.php:1862
|
1082 |
msgid "Comment Widget image thumbnail size"
|
1083 |
msgstr "Taille de vignette du widget commentaire"
|
1084 |
|
1085 |
+
#: wppa-ajax.php:1865 wppa-ajax.php:1868 wppa-ajax.php:1871
|
1086 |
msgid "Opacity."
|
1087 |
msgstr "Opacité."
|
1088 |
|
1089 |
+
#: wppa-ajax.php:1880 wppa-settings-autosave.php:1249
|
1090 |
msgid "Avatar size"
|
1091 |
msgstr "Taille de l'avatar"
|
1092 |
|
1093 |
+
#: wppa-ajax.php:1883 wppa-ajax.php:1886
|
1094 |
msgid "Watermark opacity"
|
1095 |
msgstr "Opacité du filigrane"
|
1096 |
|
1097 |
+
#: wppa-ajax.php:1889 wppa-settings-autosave.php:1418
|
1098 |
msgid "Number of text lines"
|
1099 |
msgstr "Nombre de lignes de texte"
|
1100 |
|
1101 |
+
#: wppa-ajax.php:1892 wppa-settings-autosave.php:4628
|
1102 |
msgid "Overlay opacity"
|
1103 |
msgstr "Opacité de l'overlay"
|
1104 |
|
1105 |
+
#: wppa-ajax.php:1895 wppa-settings-autosave.php:7954
|
1106 |
msgid "Upload limit"
|
1107 |
msgstr "Limite d'upload"
|
1108 |
|
1109 |
+
#: wppa-ajax.php:1898 wppa-settings-autosave.php:4298
|
1110 |
msgid "Notify inappropriate"
|
1111 |
msgstr "Notifier inapproprié"
|
1112 |
|
1113 |
+
#: wppa-ajax.php:1901
|
1114 |
msgid "Dislike pending"
|
1115 |
msgstr "Avis négatif en attente"
|
1116 |
|
1117 |
+
#: wppa-ajax.php:1904
|
1118 |
msgid "Dislike delete"
|
1119 |
msgstr "Effacer les avis négatifs"
|
1120 |
|
1121 |
+
#: wppa-ajax.php:1907 wppa-settings-autosave.php:7490
|
1122 |
msgid "Max execution time"
|
1123 |
msgstr "Temps d'exécution maximum"
|
1124 |
|
1125 |
+
#: wppa-ajax.php:1913
|
1126 |
msgid "myCRED / Cube Points"
|
1127 |
msgstr "Points myCRED / Cube"
|
1128 |
|
1129 |
+
#: wppa-ajax.php:1916
|
1130 |
msgid "JPG Image quality"
|
1131 |
msgstr "Qualité d'image JPG"
|
1132 |
|
1133 |
+
#: wppa-ajax.php:1922 wppa-settings-autosave.php:4191
|
1134 |
msgid "Number of coverphotos"
|
1135 |
msgstr "Nombre de photos de couverture"
|
1136 |
|
1137 |
+
#: wppa-ajax.php:1925 wppa-settings-autosave.php:4269
|
1138 |
msgid "Dislike value"
|
1139 |
msgstr "Valeur du vote négatif"
|
1140 |
|
1141 |
+
#: wppa-ajax.php:1928 wppa-settings-autosave.php:955
|
1142 |
msgid "Slideshow pagesize"
|
1143 |
msgstr "Taille de page du diaporama"
|
1144 |
|
1145 |
+
#: wppa-ajax.php:1931 wppa-settings-autosave.php:974
|
1146 |
msgid "Slideonly max"
|
1147 |
msgstr "Slideonly max"
|
1148 |
|
1149 |
+
#: wppa-ajax.php:1934 wppa-settings-autosave.php:843
|
1150 |
msgid "Max Pagelinks"
|
1151 |
msgstr "Nb max. de liens de page"
|
1152 |
|
1153 |
+
#: wppa-ajax.php:1937 wppa-settings-autosave.php:3033
|
1154 |
msgid "Start/pause symbol size"
|
1155 |
msgstr "Taille du symbole Démarrer/Pause"
|
1156 |
|
1157 |
+
#: wppa-ajax.php:1940 wppa-settings-autosave.php:3042
|
1158 |
msgid "Start/pause symbol border radius"
|
1159 |
msgstr "Rayon de bordure du symbole Démarrer/Pause"
|
1160 |
|
1161 |
+
#: wppa-ajax.php:1943 wppa-settings-autosave.php:3051
|
1162 |
msgid "Stop symbol size"
|
1163 |
msgstr "Taille du symbole Stop"
|
1164 |
|
1165 |
+
#: wppa-ajax.php:1946 wppa-settings-autosave.php:3060
|
1166 |
msgid "Stop symbol border radius"
|
1167 |
msgstr "Rayon de bordure du symbole Stop"
|
1168 |
|
1169 |
+
#: wppa-ajax.php:1949 wppa-settings-autosave.php:870
|
1170 |
#, fuzzy
|
1171 |
msgid "Sticky header size"
|
1172 |
msgstr "En-tête fixe"
|
1173 |
|
1174 |
+
#: wppa-ajax.php:1957
|
1175 |
msgid "Ratings cleared"
|
1176 |
msgstr "Notes remises à zéro"
|
1177 |
|
1178 |
+
#: wppa-ajax.php:1960
|
1179 |
msgid "Could not clear ratings"
|
1180 |
msgstr "Impossible d'effacer les notes"
|
1181 |
|
1182 |
+
#: wppa-ajax.php:1969
|
1183 |
msgid "Viewcounts cleared"
|
1184 |
msgstr "Compteur de vues remis à zéro"
|
1185 |
|
1186 |
+
#: wppa-ajax.php:1972
|
1187 |
msgid "Could not clear viewcounts"
|
1188 |
msgstr "Impossible d'effacer le comptage des vues"
|
1189 |
|
1190 |
+
#: wppa-ajax.php:1982
|
1191 |
msgid "IPTC data cleared"
|
1192 |
msgstr "Données IPTC effacées"
|
1193 |
|
1194 |
+
#: wppa-ajax.php:1983
|
1195 |
msgid "Refresh this page to clear table X"
|
1196 |
msgstr "Rafraîchir cette page pour nettoyer la table X"
|
1197 |
|
1198 |
+
#: wppa-ajax.php:1987
|
1199 |
msgid "Could not clear IPTC data"
|
1200 |
msgstr "Impossible d'effacer les données IPTC"
|
1201 |
|
1202 |
+
#: wppa-ajax.php:1997
|
1203 |
msgid "EXIF data cleared"
|
1204 |
msgstr "Données EXIF effacées"
|
1205 |
|
1206 |
+
#: wppa-ajax.php:1998
|
1207 |
msgid "Refresh this page to clear table XI"
|
1208 |
msgstr "Rafraîchir cette page pour nettoyer la table XI"
|
1209 |
|
1210 |
+
#: wppa-ajax.php:2002
|
1211 |
msgid "Could not clear EXIF data"
|
1212 |
msgstr "Impossible d'effacer les données EXIF"
|
1213 |
|
1214 |
+
#: wppa-ajax.php:2010
|
1215 |
msgid "Recuperation performed"
|
1216 |
msgstr "Récupération effectuée"
|
1217 |
|
1218 |
+
#: wppa-ajax.php:2025
|
1219 |
msgid ""
|
1220 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1221 |
"#77bbff"
|
1223 |
"Format incorrect. Veuillez entrer une valeur de couleur hexadécimale à 6 "
|
1224 |
"digits. Exemple: #77bbff"
|
1225 |
|
1226 |
+
#: wppa-ajax.php:2051
|
1227 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1228 |
msgstr "Vous venez de changer une option qui requiert le recalcul des notes."
|
1229 |
|
1230 |
+
#: wppa-ajax.php:2052 wppa-ajax.php:2500
|
1231 |
msgid "Please run the appropriate action in Table VIII."
|
1232 |
msgstr "Veuillez lancer l'action appropriée dans la table VIII."
|
1233 |
|
1234 |
+
#: wppa-ajax.php:2076 wppa-ajax.php:2092
|
1235 |
#, php-format
|
1236 |
msgid "Unable to create or write to %s"
|
1237 |
msgstr "Impossible de créer ou d'écrire sur %s"
|
1238 |
|
1239 |
+
#: wppa-ajax.php:2085
|
1240 |
msgid "Source can not be inside the wppa folder."
|
1241 |
msgstr "La source ne peut se trouver dans le dossier WPPA."
|
1242 |
|
1243 |
+
#: wppa-ajax.php:2102
|
1244 |
msgid "The content must contain w#album"
|
1245 |
msgstr "Le contenu doit contenir w#album"
|
1246 |
|
1247 |
+
#: wppa-ajax.php:2109
|
1248 |
msgid "The content must contain w#lat and w#lon"
|
1249 |
msgstr "Le contenu doit contenir w#lat et w#lon"
|
1250 |
|
1251 |
+
#: wppa-ajax.php:2157 wppa-ajax.php:2163
|
1252 |
msgid "Members"
|
1253 |
msgstr "Membres"
|
1254 |
|
1255 |
+
#: wppa-ajax.php:2157
|
1256 |
msgid "Parent of the member albums"
|
1257 |
msgstr "Parent des albums membres"
|
1258 |
|
1259 |
+
#: wppa-ajax.php:2301
|
1260 |
#, php-format
|
1261 |
msgid "User %s has been blacklisted."
|
1262 |
msgstr "L'utilisateur %s a été blacklisté."
|
1263 |
|
1264 |
+
#: wppa-ajax.php:2304 wppa-ajax.php:2334
|
1265 |
#, php-format
|
1266 |
msgid "User %s does not exist."
|
1267 |
msgstr "L'utilisateur %s n'existe pas."
|
1268 |
|
1269 |
+
#: wppa-ajax.php:2331
|
1270 |
#, php-format
|
1271 |
msgid "User %s is now superuser."
|
1272 |
msgstr "L'utilisateur %s est maintenant superutilisateur."
|
1273 |
|
1274 |
+
#: wppa-ajax.php:2356
|
1275 |
msgid ""
|
1276 |
"The content of the Custom box has been changed to display the Fotomoto toolbar."
|
1277 |
msgstr ""
|
1278 |
"Le contenu de la boîte personnalisée a été changé pour afficher la barre "
|
1279 |
"d'outils Fotomoto."
|
1280 |
|
1281 |
+
#: wppa-ajax.php:2360 wppa-ajax.php:2375
|
1282 |
msgid "The display of the custom box has been enabled"
|
1283 |
msgstr "L'affichage de la boîte personnalisée a été activé"
|
1284 |
|
1285 |
+
#: wppa-ajax.php:2371
|
1286 |
msgid "The content of the Custom box has been changed to display maps."
|
1287 |
msgstr ""
|
1288 |
"Le contenu de la boîte personnalisée à été modifié pour afficher des cartes."
|
1289 |
|
1290 |
+
#: wppa-ajax.php:2409
|
1291 |
msgid "This value can not be empty"
|
1292 |
msgstr "Cette valeur ne peut être vide"
|
1293 |
|
1294 |
+
#: wppa-ajax.php:2438
|
1295 |
msgid ""
|
1296 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1297 |
"encrypted urls."
|
1299 |
"Vous devez exécuter le Table VIII-A13 et VIII-A14 avant de pouvoir passer à "
|
1300 |
"urls cryptées."
|
1301 |
|
1302 |
+
#: wppa-ajax.php:2441
|
1303 |
msgid "Table IV-A3 will be switched off."
|
1304 |
msgstr "Table IV-A3 sera éteint."
|
1305 |
|
1306 |
+
#: wppa-ajax.php:2445
|
1307 |
msgid "Table IV-A4 will be switched off."
|
1308 |
msgstr "Table IV-A4 sera éteint."
|
1309 |
|
1310 |
+
#: wppa-ajax.php:2455
|
1311 |
msgid "Not allowed when cryptic links is active"
|
1312 |
msgstr "Non autorisé lorsque les liens cryptiques est actif"
|
1313 |
|
1314 |
+
#: wppa-ajax.php:2467
|
1315 |
#, fuzzy
|
1316 |
msgid "A Twitter account name must start with an at sign: @"
|
1317 |
msgstr "Un nom de compte Twitter doit commencer par un signe à: @"
|
1318 |
|
1319 |
+
#: wppa-ajax.php:2478
|
1320 |
#, php-format
|
1321 |
msgid "Failed to set %s to %s"
|
1322 |
msgstr "Échec du réglage de %s à %s"
|
1323 |
|
1324 |
+
#: wppa-ajax.php:2483
|
1325 |
#, php-format
|
1326 |
msgid "Setting %s updated to %s"
|
1327 |
msgstr "Réglage %s changé pour %s"
|
1328 |
|
1329 |
+
#: wppa-ajax.php:2499
|
1330 |
msgid "You just changed a setting that requires the regeneration of thumbnails."
|
1331 |
msgstr ""
|
1332 |
"Vous venez juste de changer un réglage qui implique la re-génération des "
|
1333 |
"vignettes."
|
1334 |
|
1335 |
+
#: wppa-ajax.php:2554
|
1336 |
msgid "Missing album id"
|
1337 |
msgstr "ID d'album manquant"
|
1338 |
|
1339 |
+
#: wppa-ajax.php:2574
|
1340 |
msgid "You do not have the rights to delete this album"
|
1341 |
msgstr "Vous n'avez pas les droits pour effacer cet album"
|
1342 |
|
1343 |
+
#: wppa-ajax.php:2595
|
1344 |
msgid "An error has occurred"
|
1345 |
msgstr "Une erreur est survenue"
|
1346 |
|
1347 |
+
#: wppa-ajax.php:2631 wppa-ajax.php:2638
|
1348 |
msgid "You may also enter:"
|
1349 |
msgstr "Vous pouvez aussi entrer:"
|
1350 |
|
1351 |
+
#: wppa-ajax.php:2632 wppa-ajax.php:2639
|
1352 |
msgid "You may also leave/set this blank"
|
1353 |
msgstr "Vous pouvez aussi laisser ceci vide"
|
1354 |
|
1355 |
+
#: wppa-album-admin-autosave.php:23 wppa-album-admin-autosave.php:773
|
1356 |
msgid "Upload to this album"
|
1357 |
msgstr "Charger vers cet album"
|
1358 |
|
1369 |
"Le répertoire de chargement n'existe pas ou n'est pas accessible en écriture "
|
1370 |
"par le serveur. Veuillez vous assurer que %s est accessible en écriture."
|
1371 |
|
1372 |
+
#: wppa-album-admin-autosave.php:79 wppa-album-admin-autosave.php:816
|
1373 |
msgid "Manage Photos"
|
1374 |
msgstr "Gérer les photos"
|
1375 |
|
1376 |
+
#: wppa-album-admin-autosave.php:80 wppa-album-admin-autosave.php:817
|
1377 |
msgid "Copy / move / delete / edit name / edit description / change status"
|
1378 |
msgstr ""
|
1379 |
"Copier / Déplacer / Effacer / Modifier nom / Modifier description / Changer "
|
1380 |
"statut"
|
1381 |
|
1382 |
+
#: wppa-album-admin-autosave.php:81 wppa-album-admin-autosave.php:819
|
1383 |
msgid "Edit photo information except copy and move"
|
1384 |
msgstr "Modifier l'information de la photo excepté copier et déplacer"
|
1385 |
|
1386 |
+
#: wppa-album-admin-autosave.php:82 wppa-album-admin-autosave.php:820
|
1387 |
+
#: wppa-setup.php:1291
|
1388 |
msgid "Edit photo information"
|
1389 |
msgstr "Éditer les infos de la photo"
|
1390 |
|
1392 |
msgid "Back to album table"
|
1393 |
msgstr "Retour à la table albums"
|
1394 |
|
1395 |
+
#: wppa-album-admin-autosave.php:91 wppa-album-admin-autosave.php:827
|
1396 |
msgid "Top of page"
|
1397 |
msgstr "Haut de page"
|
1398 |
|
1399 |
+
#: wppa-album-admin-autosave.php:118 wppa-functions.php:4174
|
1400 |
+
#: wppa-settings-autosave.php:7802 wppa-wpdb-insert.php:332
|
1401 |
msgid "New Album"
|
1402 |
msgstr "Nouvel album"
|
1403 |
|
1471 |
msgid "Enter / modify the description for this album."
|
1472 |
msgstr "Entrez/modifiez la description pour cet album."
|
1473 |
|
1474 |
+
#: wppa-album-admin-autosave.php:280
|
1475 |
msgid "Created:"
|
1476 |
msgstr "Créé:"
|
1477 |
|
1478 |
+
#: wppa-album-admin-autosave.php:283 wppa-album-admin-autosave.php:294
|
1479 |
#: wppa-photo-admin-autosave.php:257 wppa-photo-admin-autosave.php:280
|
1480 |
msgid "local time"
|
1481 |
msgstr "Temps local"
|
1482 |
|
1483 |
+
#: wppa-album-admin-autosave.php:289 wppa-photo-admin-autosave.php:275
|
1484 |
msgid "Modified:"
|
1485 |
msgstr "Modifié:"
|
1486 |
|
1487 |
+
#: wppa-album-admin-autosave.php:297 wppa-photo-admin-autosave.php:283
|
1488 |
#: wppa-photo-admin-autosave.php:1472
|
1489 |
msgid "Not modified"
|
1490 |
msgstr "Non modifié"
|
1491 |
|
1492 |
+
#: wppa-album-admin-autosave.php:306
|
1493 |
msgid "Views:"
|
1494 |
msgstr "Vues :"
|
1495 |
|
1496 |
+
#: wppa-album-admin-autosave.php:319 wppa-photo-admin-autosave.php:261
|
1497 |
msgid "Owned by:"
|
1498 |
msgstr "Possédé par:"
|
1499 |
|
1500 |
+
#: wppa-album-admin-autosave.php:337
|
1501 |
msgid ""
|
1502 |
"WARNING If you change the owner, you will no longer be able to modify this "
|
1503 |
"album and upload or import photos to it!"
|
1505 |
"IMPORTANT Si vous changez le propriétaire, vous ne serez plus en mesure de "
|
1506 |
"modifier cet album ni de charger ou importer des photos dedans!"
|
1507 |
|
1508 |
+
#: wppa-album-admin-autosave.php:339
|
1509 |
msgid "Enter user login name or <b>--- public ---</b>"
|
1510 |
msgstr "Entrer identifiant utilisateur ou <b>--- public ---</b>"
|
1511 |
|
1512 |
+
#: wppa-album-admin-autosave.php:348
|
1513 |
msgid "Album sort order #:"
|
1514 |
msgstr "Ordre de tri de l'album #:"
|
1515 |
|
1516 |
+
#: wppa-album-admin-autosave.php:356
|
1517 |
msgid ""
|
1518 |
"Album order # has only effect if you set the album sort order method to "
|
1519 |
"<b>Order #</b> in the Photo Albums -> Settings screen.<br />"
|
1521 |
"Le tri de l'album # n'est effectif que si vous réglez la méthode de tri à "
|
1522 |
"<b>Ordre #</b> dans l'écran Album Photo -> Réglages.<br />"
|
1523 |
|
1524 |
+
#: wppa-album-admin-autosave.php:359
|
1525 |
msgid ""
|
1526 |
"If you want to sort the albums by order #, enter / modify the order number "
|
1527 |
"here."
|
1529 |
"Si vous voulez tri l'album par ordre #, entrez / modifiez le numéro d'ordre "
|
1530 |
"ici."
|
1531 |
|
1532 |
+
#: wppa-album-admin-autosave.php:366 wppa-tinymce-shortcodes.php:345
|
1533 |
#: wppa-tinymce-shortcodes.php:371 wppa-tinymce-shortcodes.php:559
|
1534 |
msgid "Parent album:"
|
1535 |
msgstr "Album parent::"
|
1536 |
|
1537 |
+
#: wppa-album-admin-autosave.php:377
|
1538 |
msgid "If this is a sub album, select the album in which this album will appear."
|
1539 |
msgstr ""
|
1540 |
"Si c'est un album fils, sélectionner l'album dans lequel celui-ci devra "
|
1541 |
"apparaître."
|
1542 |
|
1543 |
+
#: wppa-album-admin-autosave.php:386
|
1544 |
msgid "Photo order:"
|
1545 |
msgstr "Ordre des photos:"
|
1546 |
|
1547 |
+
#: wppa-album-admin-autosave.php:390 wppa-album-admin-autosave.php:491
|
1548 |
+
#: wppa-settings-autosave.php:4025 wppa-settings-autosave.php:4049
|
1549 |
#: wppa-tinymce-shortcodes.php:504 wppa-tinymce-shortcodes.php:523
|
1550 |
msgid "--- default ---"
|
1551 |
msgstr "--- défaut ---"
|
1552 |
|
1553 |
+
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:447
|
1554 |
+
#: wppa-settings-autosave.php:3987 wppa-settings-autosave.php:4101
|
1555 |
#: wppa-thumbnail-widget.php:201
|
1556 |
msgid "Order #"
|
1557 |
msgstr "Ordre #"
|
1558 |
|
1559 |
+
#: wppa-album-admin-autosave.php:393 wppa-album-admin-autosave.php:446
|
1560 |
+
#: wppa-settings-autosave.php:3989 wppa-settings-autosave.php:4103
|
1561 |
+
#: wppa-thumbnail-widget.php:203 wppa-widget-admin.php:156
|
1562 |
msgid "Random"
|
1563 |
msgstr "Aléatoire"
|
1564 |
|
1565 |
+
#: wppa-album-admin-autosave.php:394 wppa-settings-autosave.php:3990
|
1566 |
msgid "Rating mean value"
|
1567 |
msgstr "Valeur moyenne des notes"
|
1568 |
|
1569 |
+
#: wppa-album-admin-autosave.php:395 wppa-bestof-widget.php:170
|
1570 |
+
#: wppa-settings-autosave.php:3991 wppa-topten-widget.php:345
|
1571 |
msgid "Number of votes"
|
1572 |
msgstr "Nombre de votes"
|
1573 |
|
1574 |
+
#: wppa-album-admin-autosave.php:396 wppa-album-admin-autosave.php:451
|
1575 |
+
#: wppa-settings-autosave.php:3992 wppa-settings-autosave.php:4104
|
1576 |
msgid "Timestamp"
|
1577 |
msgstr "Timstamp"
|
1578 |
|
1579 |
+
#: wppa-album-admin-autosave.php:397 wppa-photo-admin-autosave.php:292
|
1580 |
+
#: wppa-settings-autosave.php:3993
|
1581 |
msgid "EXIF Date"
|
1582 |
msgstr "Date EXIF"
|
1583 |
|
1584 |
+
#: wppa-album-admin-autosave.php:398 wppa-settings-autosave.php:3994
|
1585 |
+
#: wppa-settings-autosave.php:4105
|
1586 |
msgid "Order # desc"
|
1587 |
msgstr "Ordre # desc"
|
1588 |
|
1589 |
+
#: wppa-album-admin-autosave.php:399 wppa-settings-autosave.php:3995
|
1590 |
+
#: wppa-settings-autosave.php:4106
|
1591 |
msgid "Name desc"
|
1592 |
msgstr "Nom desc"
|
1593 |
|
1594 |
+
#: wppa-album-admin-autosave.php:400 wppa-settings-autosave.php:3996
|
1595 |
#: wppa-thumbnail-widget.php:204
|
1596 |
msgid "Rating mean value desc"
|
1597 |
msgstr "Description valeur moyenne des notes"
|
1598 |
|
1599 |
+
#: wppa-album-admin-autosave.php:401 wppa-settings-autosave.php:3997
|
1600 |
#: wppa-thumbnail-widget.php:205
|
1601 |
msgid "Number of votes desc"
|
1602 |
msgstr "Description nombre de votes"
|
1603 |
|
1604 |
+
#: wppa-album-admin-autosave.php:402 wppa-settings-autosave.php:3998
|
1605 |
+
#: wppa-settings-autosave.php:4107 wppa-thumbnail-widget.php:206
|
1606 |
msgid "Timestamp desc"
|
1607 |
msgstr "Description timestamp"
|
1608 |
|
1609 |
+
#: wppa-album-admin-autosave.php:403 wppa-settings-autosave.php:3999
|
1610 |
msgid "EXIF Date desc"
|
1611 |
msgstr "Description date EXIF"
|
1612 |
|
1613 |
+
#: wppa-album-admin-autosave.php:432
|
1614 |
msgid "Specify the way the photos should be ordered in this album."
|
1615 |
msgstr "Spécifie la façon dont les photos doivent être triées dans cet album."
|
1616 |
|
1617 |
+
#: wppa-album-admin-autosave.php:433
|
1618 |
msgid ""
|
1619 |
"The default setting can be changed in the <b>Photo Albums -> Settings</b> page "
|
1620 |
"<b>Table IV-C1</b>."
|
1622 |
"Le réglage par défaut peut être modifié dans la page <b>Albums photo -> "
|
1623 |
"Réglages</b> <b>Table IV-C1</b>."
|
1624 |
|
1625 |
+
#: wppa-album-admin-autosave.php:441
|
1626 |
msgid "Sub album sort order:"
|
1627 |
msgstr "Ordre de tri de l'album fils:"
|
1628 |
|
1629 |
+
#: wppa-album-admin-autosave.php:445
|
1630 |
msgid "See Table IV-D1"
|
1631 |
msgstr "Voir table IV-D1"
|
1632 |
|
1633 |
+
#: wppa-album-admin-autosave.php:448
|
1634 |
msgid "Order # reverse"
|
1635 |
msgstr "Inverser # ordre"
|
1636 |
|
1637 |
+
#: wppa-album-admin-autosave.php:450
|
1638 |
msgid "Name reverse"
|
1639 |
msgstr "Inverser nom"
|
1640 |
|
1641 |
+
#: wppa-album-admin-autosave.php:452
|
1642 |
msgid "Timestamp reverse"
|
1643 |
msgstr "Inverser timestamp"
|
1644 |
|
1645 |
+
#: wppa-album-admin-autosave.php:457
|
1646 |
msgid ""
|
1647 |
"Specify the sequence order method to be used for the sub albums of this album."
|
1648 |
msgstr "Spécifie la méthode de tri a utiliser pour les albums fils de cet album."
|
1649 |
|
1650 |
+
#: wppa-album-admin-autosave.php:466
|
1651 |
msgid "Use alt thumbsize:"
|
1652 |
msgstr "Utiliser taille alternative de vignette:"
|
1653 |
|
1654 |
+
#: wppa-album-admin-autosave.php:470 wppa-bestof-widget.php:182
|
1655 |
#: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
|
1656 |
#: wppa-lasten-widget.php:219 wppa-settings-autosave.php:573
|
1657 |
#: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
|
1667 |
msgid "no"
|
1668 |
msgstr "non"
|
1669 |
|
1670 |
+
#: wppa-album-admin-autosave.php:471 wppa-bestof-widget.php:181
|
1671 |
#: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
|
1672 |
#: wppa-lasten-widget.php:220 wppa-settings-autosave.php:573
|
1673 |
#: wppa-settings-autosave.php:582 wppa-settings-autosave.php:591
|
1684 |
msgid "yes"
|
1685 |
msgstr "oui"
|
1686 |
|
1687 |
+
#: wppa-album-admin-autosave.php:476
|
1688 |
msgid ""
|
1689 |
"If set to <b>yes</b> The settings in <b>Table I-C1a,3a</b> and <b>4a</b> apply "
|
1690 |
"rather than <b>I-C1,3</b> and <b>4</b>."
|
1692 |
"Si réglé à<b>yes</b> Les réglages de la <b>Table I-C1a,3a</b> et <b>4a</b> "
|
1693 |
"seront appliqués à la place de ceux de <b>I-C1,3</b> et <b>4</b>."
|
1694 |
|
1695 |
+
#: wppa-album-admin-autosave.php:486
|
1696 |
msgid "Cover Type:"
|
1697 |
msgstr "Type de couverture:"
|
1698 |
|
1699 |
+
#: wppa-album-admin-autosave.php:492 wppa-settings-autosave.php:2069
|
1700 |
+
#: wppa-settings-autosave.php:4171
|
1701 |
msgid "Standard"
|
1702 |
msgstr "Standard"
|
1703 |
|
1704 |
+
#: wppa-album-admin-autosave.php:493 wppa-settings-autosave.php:4172
|
1705 |
msgid "Long Descriptions"
|
1706 |
msgstr "Description longues"
|
1707 |
|
1708 |
+
#: wppa-album-admin-autosave.php:494 wppa-settings-autosave.php:4173
|
1709 |
msgid "Image Factory"
|
1710 |
msgstr "Image Factory"
|
1711 |
|
1712 |
+
#: wppa-album-admin-autosave.php:495 wppa-settings-autosave.php:4174
|
1713 |
msgid "Standard mcr"
|
1714 |
msgstr "Standard mcr"
|
1715 |
|
1716 |
+
#: wppa-album-admin-autosave.php:496 wppa-settings-autosave.php:4175
|
1717 |
msgid "Long Descriptions mcr"
|
1718 |
msgstr "Descriptions longues mcr"
|
1719 |
|
1720 |
+
#: wppa-album-admin-autosave.php:497 wppa-settings-autosave.php:4176
|
1721 |
msgid "Image Factory mcr"
|
1722 |
msgstr "Image Factory mcr"
|
1723 |
|
1724 |
+
#: wppa-album-admin-autosave.php:503
|
1725 |
msgid ""
|
1726 |
"The default cover type is the systems standard set in the <b>Photo Albums -> "
|
1727 |
"Settings</b> page <b>Table IV-D6</b>."
|
1729 |
"Le type de couverture par défaut est celui défini dans la page <b>Albums photo "
|
1730 |
"-> Réglages</b> <b>Table IV-D6</b>."
|
1731 |
|
1732 |
+
#: wppa-album-admin-autosave.php:513
|
1733 |
msgid "Cover Photo:"
|
1734 |
msgstr "Photo de couverture:"
|
1735 |
|
1736 |
+
#: wppa-album-admin-autosave.php:521
|
1737 |
msgid "Select the photo you want to appear on the cover of this album."
|
1738 |
msgstr "Choisir la photo à utiliser pour la couverture de cet album."
|
1739 |
|
1740 |
+
#: wppa-album-admin-autosave.php:522
|
1741 |
msgid ""
|
1742 |
"Select the way the cover photos of this album are selected, or select a single "
|
1743 |
"image."
|
1745 |
"Choisir la façon dont la photo de couverture de cet album est définie, ou "
|
1746 |
"choisir une image."
|
1747 |
|
1748 |
+
#: wppa-album-admin-autosave.php:531
|
1749 |
msgid "Upload limit:"
|
1750 |
msgstr "Limite d'upload:"
|
1751 |
|
1752 |
+
#: wppa-album-admin-autosave.php:542 wppa-settings-autosave.php:6105
|
1753 |
+
#: wppa-settings-autosave.php:7961
|
1754 |
msgid "for ever"
|
1755 |
msgstr "illimité"
|
1756 |
|
1757 |
+
#: wppa-album-admin-autosave.php:543 wppa-album-admin-autosave.php:560
|
1758 |
+
#: wppa-settings-autosave.php:6106 wppa-settings-autosave.php:7962
|
1759 |
msgid "per hour"
|
1760 |
msgstr "par heure"
|
1761 |
|
1762 |
+
#: wppa-album-admin-autosave.php:544 wppa-album-admin-autosave.php:561
|
1763 |
+
#: wppa-settings-autosave.php:6107 wppa-settings-autosave.php:7963
|
1764 |
msgid "per day"
|
1765 |
msgstr "par jour"
|
1766 |
|
1767 |
+
#: wppa-album-admin-autosave.php:545 wppa-album-admin-autosave.php:562
|
1768 |
+
#: wppa-settings-autosave.php:6108 wppa-settings-autosave.php:7964
|
1769 |
msgid "per week"
|
1770 |
msgstr "par semaine"
|
1771 |
|
1772 |
+
#: wppa-album-admin-autosave.php:546 wppa-album-admin-autosave.php:563
|
1773 |
+
#: wppa-settings-autosave.php:6109 wppa-settings-autosave.php:7965
|
1774 |
msgid "per month"
|
1775 |
msgstr "par mois"
|
1776 |
|
1777 |
+
#: wppa-album-admin-autosave.php:547 wppa-album-admin-autosave.php:564
|
1778 |
+
#: wppa-settings-autosave.php:6110 wppa-settings-autosave.php:7966
|
1779 |
msgid "per year"
|
1780 |
msgstr "par an"
|
1781 |
|
1782 |
+
#: wppa-album-admin-autosave.php:551
|
1783 |
msgid "Set the upload limit (0 means unlimited) and the upload limit period."
|
1784 |
msgstr ""
|
1785 |
"Choisir la limite d'upload (0 signifie illimité) et la durée limite de "
|
1786 |
"l'upload."
|
1787 |
|
1788 |
+
#: wppa-album-admin-autosave.php:556
|
1789 |
msgid "Unlimited"
|
1790 |
msgstr "Non limité"
|
1791 |
|
1792 |
+
#: wppa-album-admin-autosave.php:575
|
1793 |
msgid "Catogories:"
|
1794 |
msgstr "Catégories:"
|
1795 |
|
1796 |
+
#: wppa-album-admin-autosave.php:585
|
1797 |
msgid "Separate categories with commas."
|
1798 |
msgstr "Séparer les catégories par des virgules."
|
1799 |
|
1800 |
+
#: wppa-album-admin-autosave.php:586 wppa-photo-admin-autosave.php:832
|
1801 |
msgid "Examples:"
|
1802 |
msgstr "Exemples:"
|
1803 |
|
1804 |
+
#: wppa-album-admin-autosave.php:592 wppa-photo-admin-autosave.php:836
|
1805 |
msgid "- select -"
|
1806 |
msgstr "- Choisir -"
|
1807 |
|
1808 |
+
#: wppa-album-admin-autosave.php:598
|
1809 |
msgid "No categories yet"
|
1810 |
msgstr "Pas encore de catégories"
|
1811 |
|
1812 |
+
#: wppa-album-admin-autosave.php:602 wppa-photo-admin-autosave.php:846
|
1813 |
msgid "Select to add"
|
1814 |
msgstr "Sélectionnez pour ajout"
|
1815 |
|
1816 |
+
#: wppa-album-admin-autosave.php:608
|
1817 |
msgid ""
|
1818 |
"Are you sure you want to inherit categories to all (grand)children of this "
|
1819 |
"album?"
|
1821 |
"Etes-vous sûr de vouloir hériter des catégories à tous (petits-) enfants de "
|
1822 |
"cet album?"
|
1823 |
|
1824 |
+
#: wppa-album-admin-autosave.php:609
|
1825 |
msgid ""
|
1826 |
"Are you sure you want to add the categories to all (grand)children of this "
|
1827 |
"album?"
|
1829 |
"Etes-vous sûr que vous voulez ajouter les catégories à tous (petits-) enfants "
|
1830 |
"de cet album?"
|
1831 |
|
1832 |
+
#: wppa-album-admin-autosave.php:612
|
1833 |
msgid "Inherit Cats"
|
1834 |
msgstr "Hériter Cats"
|
1835 |
|
1836 |
+
#: wppa-album-admin-autosave.php:617
|
1837 |
msgid "Apply categories to all (grand)children."
|
1838 |
msgstr "Appliquer des catégories à tous les (grands) enfants."
|
1839 |
|
1840 |
+
#: wppa-album-admin-autosave.php:622
|
1841 |
msgid "Add Inherit Cats"
|
1842 |
msgstr "Ajouter Hériter Cats"
|
1843 |
|
1844 |
+
#: wppa-album-admin-autosave.php:627
|
1845 |
msgid "Add categories to all (grand)children."
|
1846 |
msgstr "Ajouter des catégories à tous les (grands) enfants."
|
1847 |
|
1848 |
+
#: wppa-album-admin-autosave.php:634
|
1849 |
msgid "Default photo tags:"
|
1850 |
msgstr "Tags par défaut de la photo:"
|
1851 |
|
1852 |
+
#: wppa-album-admin-autosave.php:640
|
1853 |
msgid "Enter the tags that you want to be assigned to new photos in this album."
|
1854 |
msgstr ""
|
1855 |
"Entrer les tags que vous voulez assigner aux nouvelles photos dans cet album."
|
1856 |
|
1857 |
+
#: wppa-album-admin-autosave.php:645
|
1858 |
msgid ""
|
1859 |
"Are you sure you want to set the default tags to all photos in this album?"
|
1860 |
msgstr ""
|
1861 |
"Êtes-vous sûr de vouloir appliquer les tags par défaut à toutes les photo de "
|
1862 |
"l'album ?"
|
1863 |
|
1864 |
+
#: wppa-album-admin-autosave.php:646
|
1865 |
msgid ""
|
1866 |
"Are you sure you want to add the default tags to all photos in this album?"
|
1867 |
msgstr ""
|
1868 |
"Êtes-vous sûr de vouloir ajouter les tags par défaut à toutes les photo de "
|
1869 |
"l'album ?"
|
1870 |
|
1871 |
+
#: wppa-album-admin-autosave.php:649
|
1872 |
msgid "Apply default tags"
|
1873 |
msgstr "Appliquer les tags par défaut"
|
1874 |
|
1875 |
+
#: wppa-album-admin-autosave.php:654
|
1876 |
msgid "Tag all photos in this album with the default tags."
|
1877 |
msgstr "Taguer toutes les photos de cet album avec les tags par défaut."
|
1878 |
|
1879 |
+
#: wppa-album-admin-autosave.php:659
|
1880 |
msgid "Add default tags"
|
1881 |
msgstr "Ajouter des tags par défaut"
|
1882 |
|
1883 |
+
#: wppa-album-admin-autosave.php:664
|
1884 |
msgid "Add the default tags to all photos in this album."
|
1885 |
msgstr "Ajoute les tags par défaut à toutes les photo de l'album."
|
1886 |
|
1887 |
+
#: wppa-album-admin-autosave.php:671
|
1888 |
msgid "Link type:"
|
1889 |
msgstr "Type de lien:"
|
1890 |
|
1891 |
+
#: wppa-album-admin-autosave.php:678 wppa-settings-autosave.php:8122
|
1892 |
msgid "the sub-albums and thumbnails"
|
1893 |
msgstr "les albums fils et vignettes"
|
1894 |
|
1895 |
+
#: wppa-album-admin-autosave.php:679 wppa-settings-autosave.php:8123
|
1896 |
msgid "the sub-albums"
|
1897 |
msgstr "les albums fils"
|
1898 |
|
1899 |
+
#: wppa-album-admin-autosave.php:680 wppa-settings-autosave.php:8124
|
1900 |
msgid "the thumbnails"
|
1901 |
msgstr "les vignettes"
|
1902 |
|
1903 |
+
#: wppa-album-admin-autosave.php:681 wppa-settings-autosave.php:8125
|
1904 |
msgid "the album photos as slideshow"
|
1905 |
msgstr "les photos de l'album comme diaporama"
|
1906 |
|
1907 |
+
#: wppa-album-admin-autosave.php:682
|
1908 |
msgid "the link page with a clean url"
|
1909 |
msgstr "la page de lien avec une URL claire"
|
1910 |
|
1911 |
+
#: wppa-album-admin-autosave.php:683 wppa-settings-autosave.php:8126
|
1912 |
msgid "no link at all"
|
1913 |
msgstr "Pas de lien du tout"
|
1914 |
|
1915 |
+
#: wppa-album-admin-autosave.php:688
|
1916 |
msgid ""
|
1917 |
"If you select \"the link page with a clean url\", select an Auto Page of one "
|
1918 |
"of the photos in this album."
|
1920 |
"Si vous choisissez \"la page de lien avec une URL claire\", choisissez une "
|
1921 |
"page automatique pour une des photos dans cet album."
|
1922 |
|
1923 |
+
#: wppa-album-admin-autosave.php:689
|
1924 |
msgid ""
|
1925 |
"If you select \"the link page with a clean url\", make sure you enter the "
|
1926 |
"correct shortcode on the target page."
|
1928 |
"Si vous choisissez \"la page de lien avec une URL claire\", assurez vous "
|
1929 |
"d'entrer le shortcode correct sur la page de destination."
|
1930 |
|
1931 |
+
#: wppa-album-admin-autosave.php:698 wppa-bestof-widget.php:196
|
1932 |
+
#: wppa-slideshow-widget.php:221 wppa-widget-admin.php:232
|
1933 |
+
#: wppa-widget-admin.php:242 wppa-widget-admin.php:277
|
1934 |
msgid "Link to:"
|
1935 |
msgstr "Lien vers:"
|
1936 |
|
1937 |
+
#: wppa-album-admin-autosave.php:704 wppa-settings-autosave.php:9805
|
1938 |
+
#: wppa-settings-autosave.php:9847 wppa-settings-autosave.php:9899
|
1939 |
msgid "There are no pages (yet) to link to."
|
1940 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1941 |
|
1942 |
+
#: wppa-album-admin-autosave.php:709
|
1943 |
msgid "--- the same page or post ---"
|
1944 |
msgstr "--- la même page ou article ---"
|
1945 |
|
1946 |
+
#: wppa-album-admin-autosave.php:717
|
1947 |
msgid ""
|
1948 |
"If you want, you can link the title to a WP page in stead of the album's "
|
1949 |
"content. If so, select the page the title links to."
|
1951 |
"Si vous le voulez, vous pouvez lier le titre à une page WordPress au lieu du "
|
1952 |
"cntenu de l'album. Dans ce cas, choisir la page vers lequel le titre pointe."
|
1953 |
|
1954 |
+
#: wppa-album-admin-autosave.php:727
|
1955 |
msgid "Schedule:"
|
1956 |
msgstr "Planification:"
|
1957 |
|
1958 |
+
#: wppa-album-admin-autosave.php:738
|
1959 |
msgid ""
|
1960 |
"If enabled, new photos will have their status set to the dat/time specified "
|
1961 |
"here."
|
1963 |
"Si activé, les nouvelles photos auront leur statut réglé à la date/heure "
|
1964 |
"spécifiée ici."
|
1965 |
|
1966 |
+
#: wppa-album-admin-autosave.php:744
|
1967 |
msgid "Are you sure you want to schedule all photos in this album?"
|
1968 |
msgstr "Êtes-vous sûr de vouloir planifier toutes les photos dans cet album?"
|
1969 |
|
1970 |
+
#: wppa-album-admin-autosave.php:744
|
1971 |
msgid "Schedule all"
|
1972 |
msgstr "Planifier toutes"
|
1973 |
|
1974 |
+
#: wppa-album-admin-autosave.php:752
|
1975 |
msgid "Are you sure you want to clear the ratings in this album?"
|
1976 |
msgstr "Êtes-vous sûr de vouloir effacer toutes les notes dans cet album?"
|
1977 |
|
1978 |
+
#: wppa-album-admin-autosave.php:752
|
1979 |
msgid "Reset ratings"
|
1980 |
msgstr "Effacer les notes"
|
1981 |
|
1982 |
+
#: wppa-album-admin-autosave.php:769
|
1983 |
msgid "Change the upload limit or remove photos to enable new uploads."
|
1984 |
msgstr ""
|
1985 |
"Changer la limite d'upload ou enlever des photos pour permettre d'autres "
|
1986 |
"chargements."
|
1987 |
|
1988 |
+
#: wppa-album-admin-autosave.php:773
|
1989 |
#, php-format
|
1990 |
msgid "(max %d)"
|
1991 |
msgstr "(max %d)"
|
1992 |
|
1993 |
+
#: wppa-album-admin-autosave.php:774
|
1994 |
msgid "Album is full"
|
1995 |
msgstr "L'album est plein"
|
1996 |
|
1997 |
+
#: wppa-album-admin-autosave.php:785
|
1998 |
msgid "Apply new photo desc"
|
1999 |
msgstr "Appliquer la nouvelle description photo"
|
2000 |
|
2001 |
+
#: wppa-album-admin-autosave.php:796
|
2002 |
msgid "Remake all"
|
2003 |
msgstr "Refaire tout"
|
2004 |
|
2005 |
+
#: wppa-album-admin-autosave.php:804 wppa-photo-admin-autosave.php:946
|
2006 |
msgid "Remark:"
|
2007 |
msgstr "Remarque:"
|
2008 |
|
2009 |
+
#: wppa-album-admin-autosave.php:807
|
2010 |
#, php-format
|
2011 |
msgid "Album %s is not modified yet"
|
2012 |
msgstr "L'album %s n'est modifié pour le moment"
|
2013 |
|
2014 |
+
#: wppa-album-admin-autosave.php:818 wppa-album-admin-autosave.php:1959
|
2015 |
msgid "Change sequence order by drag and drop"
|
2016 |
msgstr "Changer l'ordre de tri avec un glisser-déplacer"
|
2017 |
|
2018 |
+
#: wppa-album-admin-autosave.php:837
|
2019 |
msgid "Moderate comment"
|
2020 |
msgstr "Modérer le commentaire"
|
2021 |
|
2022 |
+
#: wppa-album-admin-autosave.php:853
|
2023 |
msgid "Moderate photo"
|
2024 |
msgstr "Modérer la photo"
|
2025 |
|
2026 |
+
#: wppa-album-admin-autosave.php:854 wppa-functions.php:2336
|
2027 |
#: wppa-photo-admin-autosave.php:24
|
2028 |
msgid "Edit photo"
|
2029 |
msgstr "Modifier photo"
|
2030 |
|
2031 |
+
#: wppa-album-admin-autosave.php:878
|
2032 |
msgid "Delete Album"
|
2033 |
msgstr "Supprimer l'album"
|
2034 |
|
2035 |
+
#: wppa-album-admin-autosave.php:880 wppa-boxes-html.php:820
|
2036 |
#: wppa-breadcrumb.php:279 wppa-breadcrumb.php:303 wppa-breadcrumb.php:333
|
2037 |
#: wppa-breadcrumb.php:353 wppa-breadcrumb.php:447 wppa-breadcrumb.php:474
|
2038 |
#: wppa-breadcrumb.php:627 wppa-comment-admin.php:65 wppa-featen-widget.php:179
|
2043 |
msgid "Album:"
|
2044 |
msgstr "Album:"
|
2045 |
|
2046 |
+
#: wppa-album-admin-autosave.php:881
|
2047 |
msgid "Are you sure you want to delete this album?"
|
2048 |
msgstr "Êtes-vous sûr de vouloir supprimer cet album?"
|
2049 |
|
2050 |
+
#: wppa-album-admin-autosave.php:882
|
2051 |
msgid "Press Delete to continue, and Cancel to go back."
|
2052 |
msgstr "Cliquez sur Effacer pour continuer, et Annuler pour revenir en arrière."
|
2053 |
|
2054 |
+
#: wppa-album-admin-autosave.php:887
|
2055 |
msgid "What would you like to do with photos currently in the album?"
|
2056 |
msgstr ""
|
2057 |
"Que voulez vous faire avec les photos présentes actuellement dans l'album ?"
|
2058 |
|
2059 |
+
#: wppa-album-admin-autosave.php:888 wppa-album-admin-autosave.php:897
|
2060 |
+
#: wppa-album-admin-autosave.php:1160 wppa-album-admin-autosave.php:1200
|
2061 |
+
#: wppa-album-admin-autosave.php:1297 wppa-album-admin-autosave.php:1469
|
2062 |
+
#: wppa-album-admin-autosave.php:1564 wppa-album-admin-autosave.php:1751
|
2063 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2064 |
+
#: wppa-comment-admin.php:406 wppa-functions.php:2095 wppa-links.php:782
|
2065 |
+
#: wppa-links.php:800 wppa-photo-admin-autosave.php:1312
|
2066 |
+
#: wppa-photo-admin-autosave.php:1380 wppa-thumbnails.php:627
|
2067 |
msgid "Delete"
|
2068 |
msgstr "Supprimer"
|
2069 |
|
2070 |
+
#: wppa-album-admin-autosave.php:889
|
2071 |
msgid "Move to:"
|
2072 |
msgstr "Déplacer vers:"
|
2073 |
|
2074 |
+
#: wppa-album-admin-autosave.php:896 wppa-photo-admin-autosave.php:2010
|
2075 |
+
#: wppa-settings-autosave.php:2899
|
2076 |
msgid "Cancel"
|
2077 |
msgstr "Annuler"
|
2078 |
|
2079 |
+
#: wppa-album-admin-autosave.php:927
|
2080 |
msgid "Unable to move photos. Album not deleted."
|
2081 |
msgstr "Impossible de déplacer les photos. Album pas effacé."
|
2082 |
|
2083 |
+
#: wppa-album-admin-autosave.php:949
|
2084 |
msgid "Manage Albums"
|
2085 |
msgstr "Gérer les albums"
|
2086 |
|
2087 |
+
#: wppa-album-admin-autosave.php:955
|
2088 |
msgid "Are you sure you want to create a new album?"
|
2089 |
msgstr "Etes-vous sûr de vouloir créer un nouvel album?"
|
2090 |
|
2091 |
+
#: wppa-album-admin-autosave.php:960
|
2092 |
msgid "Create New Empty Album"
|
2093 |
msgstr "Créer un nouvel album vide"
|
2094 |
|
2095 |
+
#: wppa-album-admin-autosave.php:966
|
2096 |
msgid "Switch to Collapsable table"
|
2097 |
msgstr "Affichage en table arborescente"
|
2098 |
|
2099 |
+
#: wppa-album-admin-autosave.php:969
|
2100 |
msgid "Switch to Flat table"
|
2101 |
msgstr "Affichage en table simple"
|
2102 |
|
2103 |
+
#: wppa-album-admin-autosave.php:981
|
2104 |
msgid "Open all"
|
2105 |
msgstr "Ouvrir tous"
|
2106 |
|
2107 |
+
#: wppa-album-admin-autosave.php:994
|
2108 |
msgid "Close all"
|
2109 |
msgstr "Fermer tous"
|
2110 |
|
2111 |
+
#: wppa-album-admin-autosave.php:1093 wppa-album-admin-autosave.php:1230
|
2112 |
+
#: wppa-album-admin-autosave.php:1401 wppa-album-admin-autosave.php:1496
|
2113 |
#: wppa-photo-admin-autosave.php:1361 wppa-photo-admin-autosave.php:1480
|
2114 |
msgid "ID"
|
2115 |
msgstr "ID"
|
2116 |
|
2117 |
+
#: wppa-album-admin-autosave.php:1135 wppa-album-admin-autosave.php:1272
|
2118 |
+
#: wppa-album-admin-autosave.php:1444 wppa-album-admin-autosave.php:1539
|
2119 |
msgid "Order"
|
2120 |
msgstr "Ordre"
|
2121 |
|
2122 |
+
#: wppa-album-admin-autosave.php:1145 wppa-album-admin-autosave.php:1282
|
2123 |
+
#: wppa-album-admin-autosave.php:1454 wppa-album-admin-autosave.php:1549
|
2124 |
msgid "Parent"
|
2125 |
msgstr "Parent"
|
2126 |
|
2127 |
+
#: wppa-album-admin-autosave.php:1153 wppa-album-admin-autosave.php:1290
|
2128 |
+
#: wppa-album-admin-autosave.php:1462 wppa-album-admin-autosave.php:1557
|
2129 |
msgid "Albums/Photos/Moderation required/Scheduled"
|
2130 |
msgstr "Albums/Photos/Modération requise/Planifié"
|
2131 |
|
2132 |
+
#: wppa-album-admin-autosave.php:1154 wppa-album-admin-autosave.php:1291
|
2133 |
+
#: wppa-album-admin-autosave.php:1463 wppa-album-admin-autosave.php:1558
|
2134 |
msgid "A/P/PM/S"
|
2135 |
msgstr "A/P/PM/S"
|
2136 |
|
2137 |
+
#: wppa-album-admin-autosave.php:1157 wppa-album-admin-autosave.php:1195
|
2138 |
+
#: wppa-album-admin-autosave.php:1294 wppa-album-admin-autosave.php:1466
|
2139 |
+
#: wppa-album-admin-autosave.php:1561 wppa-album-admin-autosave.php:1639
|
2140 |
+
#: wppa-album-admin-autosave.php:1746
|
2141 |
msgid "Quick"
|
2142 |
msgstr "Quick"
|
2143 |
|
2144 |
+
#: wppa-album-admin-autosave.php:1158 wppa-album-admin-autosave.php:1196
|
2145 |
+
#: wppa-album-admin-autosave.php:1295 wppa-album-admin-autosave.php:1467
|
2146 |
+
#: wppa-album-admin-autosave.php:1562 wppa-album-admin-autosave.php:1644
|
2147 |
+
#: wppa-album-admin-autosave.php:1747
|
2148 |
msgid "Bulk"
|
2149 |
msgstr "Bulk"
|
2150 |
|
2151 |
+
#: wppa-album-admin-autosave.php:1159 wppa-album-admin-autosave.php:1197
|
2152 |
+
#: wppa-album-admin-autosave.php:1296 wppa-album-admin-autosave.php:1468
|
2153 |
+
#: wppa-album-admin-autosave.php:1563 wppa-album-admin-autosave.php:1748
|
2154 |
msgid "Seq"
|
2155 |
msgstr "Seq"
|
2156 |
|
2157 |
+
#: wppa-album-admin-autosave.php:1161 wppa-album-admin-autosave.php:1205
|
2158 |
+
#: wppa-album-admin-autosave.php:1208 wppa-album-admin-autosave.php:1298
|
2159 |
+
#: wppa-album-admin-autosave.php:1470 wppa-album-admin-autosave.php:1565
|
2160 |
+
#: wppa-album-admin-autosave.php:1756 wppa-album-admin-autosave.php:1759
|
2161 |
msgid "Create"
|
2162 |
msgstr "Créer"
|
2163 |
|
2164 |
+
#: wppa-album-admin-autosave.php:1204 wppa-album-admin-autosave.php:1755
|
2165 |
msgid "Are you sure you want to create a subalbum?"
|
2166 |
msgstr "Êtes-vous sûr de vouloir créer un album fils?"
|
2167 |
|
2168 |
+
#: wppa-album-admin-autosave.php:1311 wppa-album-admin-autosave.php:1592
|
2169 |
msgid "No albums yet."
|
2170 |
msgstr "Pas encore d'album."
|
2171 |
|
2172 |
+
#: wppa-album-admin-autosave.php:1395 wppa-album-admin-autosave.php:1719
|
2173 |
msgid "Collapse subalbums"
|
2174 |
msgstr "Replier les album fils"
|
2175 |
|
2176 |
+
#: wppa-album-admin-autosave.php:1396 wppa-album-admin-autosave.php:1720
|
2177 |
msgid "Expand subalbums"
|
2178 |
msgstr "Déplier les albums fils"
|
2179 |
|
2180 |
+
#: wppa-album-admin-autosave.php:1478
|
2181 |
msgid ""
|
2182 |
"The following albums are ---separate--- and do not show up in the generic "
|
2183 |
"album display"
|
2185 |
"Les albums qui suivent sont ---separés--- et ne sont pas montrés dans "
|
2186 |
"l’affichage standard"
|
2187 |
|
2188 |
+
#: wppa-album-admin-autosave.php:1608
|
2189 |
msgid "Search for photos to edit"
|
2190 |
msgstr "Chercher des photos à modifier"
|
2191 |
|
2192 |
+
#: wppa-album-admin-autosave.php:1609
|
2193 |
msgid ""
|
2194 |
"Enter search words seperated by commas. Photos will meet all search words by "
|
2195 |
"their names, descriptions, translated keywords and/or tags."
|
2198 |
"résultantes auront tous les mots clés dans leur nom, description, mots clés et/"
|
2199 |
"ou tags."
|
2200 |
|
2201 |
+
#: wppa-album-admin-autosave.php:1615
|
2202 |
msgid "Any"
|
2203 |
msgstr "N'importe lequel"
|
2204 |
|
2205 |
+
#: wppa-album-admin-autosave.php:1619
|
2206 |
msgid "Search for"
|
2207 |
msgstr "Rechercher"
|
2208 |
|
2209 |
+
#: wppa-album-admin-autosave.php:1661
|
2210 |
#, php-format
|
2211 |
msgid ""
|
2212 |
"There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
|
2215 |
"Il y a <strong>%d</strong> albums et <strong>%d</strong> photos dans le "
|
2216 |
"système."
|
2217 |
|
2218 |
+
#: wppa-album-admin-autosave.php:1662
|
2219 |
#, php-format
|
2220 |
msgid "<strong>%d</strong> photos are pending moderation."
|
2221 |
msgstr "<strong>%d</strong> photos attendent une modération."
|
2222 |
|
2223 |
+
#: wppa-album-admin-autosave.php:1663
|
2224 |
#, php-format
|
2225 |
msgid "<strong>%d</strong> photos are scheduled for later publishing."
|
2226 |
msgstr "<strong>%d</strong> photos sont programmées pour publication ultérieure."
|
2227 |
|
2228 |
+
#: wppa-album-admin-autosave.php:1666
|
2229 |
#, php-format
|
2230 |
msgid "The most recently added album is <strong>%s</strong> (%d)."
|
2231 |
msgstr "L'album le plus récemment ajoutée est <strong>%s</strong> (%d)."
|
2232 |
|
2233 |
+
#: wppa-album-admin-autosave.php:1670
|
2234 |
#, php-format
|
2235 |
msgid "The most recently added photo is <strong>%s</strong> (%d)"
|
2236 |
msgstr "La photo la plus récemment ajoutée est <strong>%s</strong> (%d)"
|
2237 |
|
2238 |
+
#: wppa-album-admin-autosave.php:1671
|
2239 |
#, php-format
|
2240 |
msgid "in album <strong>%s</strong> (%d)."
|
2241 |
msgstr "dans l'album <strong>%s</strong> (%d)."
|
2242 |
|
2243 |
+
#: wppa-album-admin-autosave.php:1793
|
2244 |
#, php-format
|
2245 |
msgid "Unable to move photos to album %s. Album not deleted."
|
2246 |
msgstr "Impossible de déplacer les photos vers l'album %s. Album pas effacé."
|
2247 |
|
2248 |
+
#: wppa-album-admin-autosave.php:1814
|
2249 |
#, php-format
|
2250 |
msgid "Time is out after %d photo deletes. Please redo this operation"
|
2251 |
msgstr ""
|
2252 |
"Délai dépassé après %d effacement de photos. Veuillez recommencer l'opération"
|
2253 |
|
2254 |
+
#: wppa-album-admin-autosave.php:1849
|
2255 |
msgid "Album Deleted."
|
2256 |
msgstr "Album effacé."
|
2257 |
|
2258 |
+
#: wppa-album-admin-autosave.php:1871
|
2259 |
#, php-format
|
2260 |
msgid "auto select max %s random"
|
2261 |
msgstr "Sélection auto max %s aléatoire"
|
2262 |
|
2263 |
+
#: wppa-album-admin-autosave.php:1873
|
2264 |
#, php-format
|
2265 |
msgid "auto select max %s featured"
|
2266 |
msgstr "Sélection auto max %s recommandé"
|
2267 |
|
2268 |
+
#: wppa-album-admin-autosave.php:1875
|
2269 |
#, php-format
|
2270 |
msgid "max %s most recent added"
|
2271 |
msgstr "max %s ajoutés le plus récemment"
|
2272 |
|
2273 |
+
#: wppa-album-admin-autosave.php:1877
|
2274 |
#, php-format
|
2275 |
msgid "max %s from (grand)child albums"
|
2276 |
msgstr "max %s parmi les albums fils"
|
2277 |
|
2278 |
+
#: wppa-album-admin-autosave.php:1879
|
2279 |
#, php-format
|
2280 |
msgid "max %s most recent from (grand)child albums"
|
2281 |
msgstr "max %s plus récents parmi albums (petit)fils"
|
2282 |
|
2283 |
+
#: wppa-album-admin-autosave.php:1883
|
2284 |
msgid "--- random ---"
|
2285 |
msgstr "--- aléatoire ---"
|
2286 |
|
2287 |
+
#: wppa-album-admin-autosave.php:1885
|
2288 |
msgid "--- random featured ---"
|
2289 |
msgstr "--- aléatoire recommandé ---"
|
2290 |
|
2291 |
+
#: wppa-album-admin-autosave.php:1887
|
2292 |
msgid "--- most recent added ---"
|
2293 |
msgstr "--- ajouter le plus récemment ---"
|
2294 |
|
2295 |
+
#: wppa-album-admin-autosave.php:1889
|
2296 |
msgid "--- random from (grand)children ---"
|
2297 |
msgstr "--- aléatoire parmi les albums fils ---"
|
2298 |
|
2299 |
+
#: wppa-album-admin-autosave.php:1891
|
2300 |
msgid "--- most recent from (grand)children ---"
|
2301 |
msgstr "--- le plus récent du (petit)fils ---"
|
2302 |
|
2303 |
+
#: wppa-album-admin-autosave.php:1903
|
2304 |
msgid "Nameless, filename = "
|
2305 |
msgstr "Sans nom, nom du fichier = "
|
2306 |
|
2307 |
+
#: wppa-album-admin-autosave.php:1946
|
2308 |
msgid ""
|
2309 |
"You can edit top-level album sequence order here when you set the album order "
|
2310 |
"to \"Order #\" or \"Order # desc\" in Table IV-D1."
|
2313 |
"l'ordre de tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la table IV-"
|
2314 |
"D1."
|
2315 |
|
2316 |
+
#: wppa-album-admin-autosave.php:1949
|
2317 |
msgid ""
|
2318 |
"You can edit sub-album sequence order here when you set the album order to "
|
2319 |
"\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection box "
|
2323 |
"des albums à \"Ordre #\" ou \"Ordre # desc\" dans la boîte de sélection "
|
2324 |
"\"Ordre de tri des albums fils:\" ci-dessus."
|
2325 |
|
2326 |
+
#: wppa-album-admin-autosave.php:1957
|
2327 |
msgid "Manage album order"
|
2328 |
msgstr "Gérer album ordre"
|
2329 |
|
2330 |
+
#: wppa-album-admin-autosave.php:2063
|
2331 |
msgid "Id:"
|
2332 |
msgstr "ID:"
|
2333 |
|
2334 |
+
#: wppa-album-admin-autosave.php:2064
|
2335 |
msgid "Ord:"
|
2336 |
msgstr "Ord:"
|
2337 |
|
2361 |
#: wppa-breadcrumb.php:152 wppa-breadcrumb.php:159 wppa-breadcrumb.php:383
|
2362 |
#: wppa-breadcrumb.php:385 wppa-breadcrumb.php:391 wppa-breadcrumb.php:393
|
2363 |
#: wppa-breadcrumb.php:401 wppa-breadcrumb.php:417 wppa-breadcrumb.php:430
|
2364 |
+
#: wppa-breadcrumb.php:436 wppa-utils.php:1727 wppa-utils.php:2375
|
2365 |
msgid "and"
|
2366 |
msgstr "et"
|
2367 |
|
2376 |
msgid "New!"
|
2377 |
msgstr "Nouveau!"
|
2378 |
|
2379 |
+
#: wppa-album-covers.php:1487 wppa-thumbnails.php:1957 wppa-thumbnails.php:1958
|
2380 |
msgid "New"
|
2381 |
msgstr "Nouveau"
|
2382 |
|
2383 |
#: wppa-album-covers.php:1725 wppa-boxes-html.php:844 wppa-non-admin.php:739
|
2384 |
+
#: wppa-settings-autosave.php:2331 wppa-settings-autosave.php:5553
|
2385 |
+
#: wppa-settings-autosave.php:8281
|
2386 |
msgid "Slideshow"
|
2387 |
msgstr "Diaporama"
|
2388 |
|
2421 |
msgid "--- all separate albums ---"
|
2422 |
msgstr "--- tous albums séparés ---"
|
2423 |
|
2424 |
+
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1703
|
2425 |
+
#: wppa-items.php:436
|
2426 |
msgid "--- owner/public ---"
|
2427 |
msgstr "--- Propriétaire / publique ---"
|
2428 |
|
2536 |
msgstr "Valeur moyenne"
|
2537 |
|
2538 |
#: wppa-bestof-widget.php:178 wppa-topten-widget.php:364
|
2539 |
+
#: wppa-widget-admin.php:256
|
2540 |
msgid "Subtitle:"
|
2541 |
msgstr "Sous titre:"
|
2542 |
|
2552 |
msgid "Rating count:"
|
2553 |
msgstr "Nombre de notes:"
|
2554 |
|
2555 |
+
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1685 wppa-items.php:424
|
2556 |
#: wppa-settings-autosave.php:1431 wppa-settings-autosave.php:1780
|
2557 |
+
#: wppa-settings-autosave.php:1985 wppa-settings-autosave.php:3784
|
2558 |
+
#: wppa-settings-autosave.php:3798 wppa-settings-autosave.php:3986
|
2559 |
+
#: wppa-settings-autosave.php:4100 wppa-settings-autosave.php:5627
|
2560 |
+
#: wppa-settings-autosave.php:6349 wppa-settings-autosave.php:7758
|
2561 |
+
#: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
|
2562 |
+
#: wppa-settings-autosave.php:8896 wppa-settings-autosave.php:9053
|
2563 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
2564 |
#: wppa-tinymce-shortcodes.php:613 wppa-upload.php:1528 wppa-watermark.php:519
|
2565 |
+
#: wppa-widget-admin.php:90 wppa-widget-admin.php:261
|
2566 |
msgid "--- none ---"
|
2567 |
msgstr "--- aucun ---"
|
2568 |
|
2571 |
msgstr "Album(s) de l'auteur"
|
2572 |
|
2573 |
#: wppa-bestof-widget.php:200
|
2574 |
+
#, fuzzy
|
2575 |
+
msgid "The photos in the authors album(s), thumbnails"
|
2576 |
+
msgstr "Les photos dans l’album (s) auteurs, miniatures"
|
2577 |
|
2578 |
#: wppa-bestof-widget.php:201
|
2579 |
+
#, fuzzy
|
2580 |
+
msgid "The photos in the authors album(s), slideshow"
|
2581 |
+
msgstr "Les photos dans l’album (s) auteurs, diaporama"
|
2582 |
+
|
2583 |
+
#: wppa-bestof-widget.php:202
|
2584 |
+
#, fuzzy
|
2585 |
+
msgid "All the authors photos, thumbnails"
|
2586 |
+
msgstr "Toutes les photos d’auteurs, miniatures"
|
2587 |
+
|
2588 |
+
#: wppa-bestof-widget.php:203
|
2589 |
+
#, fuzzy
|
2590 |
+
msgid "All the authors photos, slideshow"
|
2591 |
+
msgstr "Toutes les photos d’auteurs, diaporama"
|
2592 |
|
2593 |
#: wppa-boxes-html.php:139 wppa-boxes-html.php:251
|
2594 |
msgid "Photo search results"
|
2607 |
msgstr "Catégorie"
|
2608 |
|
2609 |
#: wppa-boxes-html.php:421 wppa-boxes-html.php:554
|
2610 |
+
#: wppa-settings-autosave.php:7873 wppa-settings-autosave.php:7884
|
2611 |
msgid "Text"
|
2612 |
msgstr "Texte"
|
2613 |
|
2621 |
msgid "Items must meet all selected options."
|
2622 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2623 |
|
2624 |
+
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:9157
|
2625 |
+
#: wppa-settings-autosave.php:9197 wppa-settings-autosave.php:9219
|
2626 |
+
#: wppa-settings-autosave.php:9265
|
2627 |
msgid "Tag"
|
2628 |
msgstr "Tag"
|
2629 |
|
2645 |
msgstr "Photos en Super View"
|
2646 |
|
2647 |
#: wppa-boxes-html.php:836 wppa-settings-autosave.php:425
|
2648 |
+
#: wppa-settings-autosave.php:4858
|
2649 |
msgid "Thumbnails"
|
2650 |
msgstr "Vignettes"
|
2651 |
|
2697 |
msgid "Social media landing page"
|
2698 |
msgstr "Social media landing page"
|
2699 |
|
2700 |
+
#: wppa-boxes-html.php:1279 wppa-utils.php:1727
|
2701 |
#, php-format
|
2702 |
msgid "See this image on %s"
|
2703 |
msgstr "Voir cette image sur %s"
|
2765 |
msgid "Create album"
|
2766 |
msgstr "Créer un album"
|
2767 |
|
2768 |
+
#: wppa-boxes-html.php:1900 wppa-boxes-html.php:1913 wppa-functions.php:4342
|
2769 |
msgid "Max uploads reached"
|
2770 |
msgstr "Ajout maximum ateind"
|
2771 |
|
2896 |
msgid "Album description:"
|
2897 |
msgstr "Description de l'album:"
|
2898 |
|
2899 |
+
#: wppa-boxes-html.php:2612
|
2900 |
msgid "Update album"
|
2901 |
msgstr "Update album"
|
2902 |
|
2903 |
+
#: wppa-boxes-html.php:2684
|
2904 |
msgid "wrote:"
|
2905 |
msgstr "a écrit:"
|
2906 |
|
2907 |
+
#: wppa-boxes-html.php:2746
|
2908 |
msgid "Avatar"
|
2909 |
msgstr "Avatar"
|
2910 |
|
2911 |
+
#: wppa-boxes-html.php:2789 wppa-links.php:826
|
2912 |
msgid "Awaiting moderation"
|
2913 |
msgstr "En attente de modération"
|
2914 |
|
2915 |
+
#: wppa-boxes-html.php:2792
|
2916 |
msgid "Marked as spam"
|
2917 |
msgstr "Marqué comme indésirable"
|
2918 |
|
2919 |
+
#: wppa-boxes-html.php:2816
|
2920 |
msgid "Edit!"
|
2921 |
msgstr "Éditer !"
|
2922 |
|
2923 |
+
#: wppa-boxes-html.php:2820
|
2924 |
msgid "Send!"
|
2925 |
msgstr "Transmettre !"
|
2926 |
|
2927 |
+
#: wppa-boxes-html.php:2881
|
2928 |
msgid "Your name:"
|
2929 |
msgstr "Votre nom:"
|
2930 |
|
2931 |
+
#: wppa-boxes-html.php:2896
|
2932 |
msgid "Your email:"
|
2933 |
msgstr "Votre email:"
|
2934 |
|
2935 |
+
#: wppa-boxes-html.php:2912
|
2936 |
msgid "Your comment:"
|
2937 |
msgstr "Votre commentaire:"
|
2938 |
|
2939 |
+
#: wppa-boxes-html.php:2956
|
2940 |
#, php-format
|
2941 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
2942 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
2943 |
|
2944 |
+
#: wppa-boxes-html.php:2959
|
2945 |
msgid "You must login to enter a comment"
|
2946 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
2947 |
|
2948 |
+
#: wppa-boxes-html.php:2971 wppa-functions.php:2535 wppa-thumbnails.php:680
|
2949 |
#, php-format
|
2950 |
msgid "%d comment"
|
2951 |
msgid_plural "%d comments"
|
2952 |
msgstr[0] "%d commentaire"
|
2953 |
msgstr[1] "%d commentaires"
|
2954 |
|
2955 |
+
#: wppa-boxes-html.php:2975
|
2956 |
msgid "Leave a comment"
|
2957 |
msgstr "Laisser un commentaire"
|
2958 |
|
2959 |
+
#: wppa-boxes-html.php:3072
|
2960 |
msgid "Show IPTC data"
|
2961 |
msgstr "Afficher les données IPTC"
|
2962 |
|
2963 |
+
#: wppa-boxes-html.php:3083
|
2964 |
msgid "Hide IPTC data"
|
2965 |
msgstr "Cacher les données IPTC"
|
2966 |
|
2967 |
+
#: wppa-boxes-html.php:3131
|
2968 |
msgid "No IPTC data"
|
2969 |
msgstr "Pas de données IPTC"
|
2970 |
|
2971 |
+
#: wppa-boxes-html.php:3183
|
2972 |
msgid "Show EXIF data"
|
2973 |
msgstr "Afficher les données EXIF"
|
2974 |
|
2975 |
+
#: wppa-boxes-html.php:3194
|
2976 |
msgid "Hide EXIF data"
|
2977 |
msgstr "Cacher les données EXIF"
|
2978 |
|
2979 |
+
#: wppa-boxes-html.php:3246
|
2980 |
msgid "No EXIF data"
|
2981 |
msgstr "Pas de données EXIF"
|
2982 |
|
2983 |
+
#: wppa-boxes-html.php:3360 wppa-boxes-html.php:3365
|
2984 |
msgid "< Previous"
|
2985 |
msgstr "< Préc."
|
2986 |
|
2987 |
+
#: wppa-boxes-html.php:3371 wppa-boxes-html.php:3376
|
2988 |
msgid "Next >"
|
2989 |
msgstr "Suiv. >"
|
2990 |
|
2991 |
+
#: wppa-boxes-html.php:3478 wppa-boxes-html.php:3557
|
2992 |
msgid "See the authors albums"
|
2993 |
msgstr "Voir les albums des auteurs"
|
2994 |
|
2995 |
+
#: wppa-boxes-html.php:3482 wppa-boxes-html.php:3490 wppa-boxes-html.php:3561
|
2996 |
msgid "See the authors photos"
|
2997 |
msgstr "Voir les photos des auteurs"
|
2998 |
|
2999 |
+
#: wppa-boxes-html.php:3486 wppa-boxes-html.php:3494 wppa-boxes-html.php:3565
|
3000 |
msgid "See all the authors photos"
|
3001 |
msgstr "Voir toutes les photos des auteurs"
|
3002 |
|
3003 |
+
#: wppa-boxes-html.php:3520
|
3004 |
#, php-format
|
3005 |
msgid "Photo by: %s"
|
3006 |
msgstr "Photo par: %s"
|
3007 |
|
3008 |
+
#: wppa-boxes-html.php:3523 wppa-boxes-html.php:3586
|
3009 |
#, php-format
|
3010 |
msgid "%d max rating"
|
3011 |
msgid_plural "%d max ratings"
|
3012 |
msgstr[0] "%d max note"
|
3013 |
msgstr[1] "%d max notes"
|
3014 |
|
3015 |
+
#: wppa-boxes-html.php:3527 wppa-boxes-html.php:3590 wppa-non-admin.php:903
|
3016 |
#: wppa-topten-widget.php:196 wppa-topten-widget.php:213
|
3017 |
#: wppa-topten-widget.php:249
|
3018 |
#, php-format
|
3021 |
msgstr[0] "%d vote"
|
3022 |
msgstr[1] "%d votes"
|
3023 |
|
3024 |
+
#: wppa-boxes-html.php:3531
|
3025 |
#, php-format
|
3026 |
msgid "Rating: %4.2f."
|
3027 |
msgstr "Vote: %4.2f."
|
3028 |
|
3029 |
+
#: wppa-boxes-html.php:3539
|
3030 |
#, php-format
|
3031 |
msgid "Photo %s not found."
|
3032 |
msgstr "Photo %s non trouvée."
|
3033 |
|
3034 |
+
#: wppa-boxes-html.php:3594
|
3035 |
#, php-format
|
3036 |
msgid "Mean value: %4.2f."
|
3037 |
msgstr "Valeur moyenne: %4.2f."
|
3038 |
|
3039 |
+
#: wppa-boxes-html.php:3941 wppa-photo-admin-autosave.php:196
|
3040 |
msgid "Refresh"
|
3041 |
msgstr "Rafraichir"
|
3042 |
|
3204 |
msgid "OR"
|
3205 |
msgstr "OU"
|
3206 |
|
3207 |
+
#: wppa-cart.php:30
|
3208 |
msgid "Buy now"
|
3209 |
msgstr "Acheter maintenant"
|
3210 |
|
3211 |
+
#: wppa-cart.php:94
|
3212 |
#, php-format
|
3213 |
msgid "Unit Price: %s each"
|
3214 |
msgstr "Prix à l'unité: %s chaque"
|
3215 |
|
3216 |
+
#: wppa-cart.php:98
|
3217 |
msgid "Qty:"
|
3218 |
msgstr "Qté:"
|
3219 |
|
3233 |
msgid "Email:"
|
3234 |
msgstr "Email:"
|
3235 |
|
3236 |
+
#: wppa-comment-admin.php:80 wppa-utils.php:1032
|
3237 |
msgid "Comment:"
|
3238 |
msgstr "Commentaire:"
|
3239 |
|
3240 |
+
#: wppa-comment-admin.php:86 wppa-widget-admin.php:288 wppa-widget-admin.php:375
|
3241 |
msgid "Save Changes"
|
3242 |
msgstr "Enregistrer les modifications"
|
3243 |
|
3300 |
msgstr "Page lien:"
|
3301 |
|
3302 |
#: wppa-comment-admin.php:231 wppa-settings-autosave.php:503
|
3303 |
+
#: wppa-settings-autosave.php:8151
|
3304 |
msgid "--- Please select a page ---"
|
3305 |
msgstr "--- Choisir une page ---"
|
3306 |
|
3375 |
#: wppa-comment-admin.php:311 wppa-comment-admin.php:398
|
3376 |
#: wppa-settings-autosave.php:552 wppa-settings-autosave.php:714
|
3377 |
#: wppa-settings-autosave.php:736 wppa-settings-autosave.php:1484
|
3378 |
+
#: wppa-settings-autosave.php:1505 wppa-settings-autosave.php:3093
|
3379 |
+
#: wppa-settings-autosave.php:3114 wppa-settings-autosave.php:3438
|
3380 |
+
#: wppa-settings-autosave.php:3462 wppa-settings-autosave.php:4750
|
3381 |
+
#: wppa-settings-autosave.php:4771 wppa-settings-autosave.php:4947
|
3382 |
+
#: wppa-settings-autosave.php:4971 wppa-settings-autosave.php:5977
|
3383 |
+
#: wppa-settings-autosave.php:6637 wppa-settings-autosave.php:6659
|
3384 |
+
#: wppa-settings-autosave.php:7389 wppa-settings-autosave.php:7413
|
3385 |
+
#: wppa-settings-autosave.php:9135 wppa-settings-autosave.php:9156
|
3386 |
+
#: wppa-settings-autosave.php:9196 wppa-settings-autosave.php:9218
|
3387 |
+
#: wppa-settings-autosave.php:9264
|
3388 |
msgid "#"
|
3389 |
msgstr "#"
|
3390 |
|
3417 |
msgid "Reply to your comment on photo: %s on %s"
|
3418 |
msgstr "Répondre à votre commentaire sur la photo: %s de %s"
|
3419 |
|
3420 |
+
#: wppa-comment-admin.php:366 wppa-functions.php:2328
|
3421 |
msgid "Reply"
|
3422 |
msgstr "Répondre"
|
3423 |
|
3461 |
#: wppa-comment-widget.php:87 wppa-featen-widget.php:137
|
3462 |
#: wppa-lasten-widget.php:148 wppa-non-admin.php:874 wppa-non-admin.php:879
|
3463 |
#: wppa-non-admin.php:884 wppa-non-admin.php:888 wppa-non-admin.php:895
|
3464 |
+
#: wppa-non-admin.php:905 wppa-potd-widget.php:151 wppa-thumbnail-widget.php:114
|
3465 |
#: wppa-topten-widget.php:257
|
3466 |
msgid "Photo not found"
|
3467 |
msgstr "Photo non trouvée"
|
3474 |
msgid "Default photo album for"
|
3475 |
msgstr "Album par défaut pour"
|
3476 |
|
3477 |
+
#: wppa-common-functions.php:656 wppa-functions.php:4753
|
3478 |
#, php-format
|
3479 |
msgid "%d second"
|
3480 |
msgid_plural "%d seconds"
|
3481 |
msgstr[0] "%d seconde"
|
3482 |
msgstr[1] "%d secondes"
|
3483 |
|
3484 |
+
#: wppa-common-functions.php:660 wppa-functions.php:4749
|
3485 |
+
#: wppa-settings-autosave.php:6482 wppa-settings-autosave.php:6483
|
3486 |
#, php-format
|
3487 |
msgid "%d minute"
|
3488 |
msgid_plural "%d minutes"
|
3489 |
msgstr[0] "%d minute"
|
3490 |
msgstr[1] "%d minutes"
|
3491 |
|
3492 |
+
#: wppa-common-functions.php:664 wppa-functions.php:4745
|
3493 |
+
#: wppa-settings-autosave.php:6484 wppa-settings-autosave.php:7768
|
3494 |
#, php-format
|
3495 |
msgid "%d hour"
|
3496 |
msgid_plural "%d hours"
|
3497 |
msgstr[0] "%d heure"
|
3498 |
msgstr[1] "%d heures"
|
3499 |
|
3500 |
+
#: wppa-common-functions.php:668 wppa-functions.php:4741
|
3501 |
+
#: wppa-settings-autosave.php:6485 wppa-settings-autosave.php:7769
|
3502 |
+
#: wppa-settings-autosave.php:7770 wppa-settings-autosave.php:7771
|
3503 |
+
#: wppa-settings-autosave.php:7772 wppa-settings-autosave.php:7773
|
3504 |
+
#: wppa-settings-autosave.php:7774 wppa-settings-autosave.php:7776
|
3505 |
+
#: wppa-settings-autosave.php:7777 wppa-settings-autosave.php:7778
|
3506 |
+
#: wppa-settings-autosave.php:8956
|
3507 |
#, php-format
|
3508 |
msgid "%d day"
|
3509 |
msgid_plural "%d days"
|
3510 |
msgstr[0] "%d jour"
|
3511 |
msgstr[1] "%d jours"
|
3512 |
|
3513 |
+
#: wppa-common-functions.php:672 wppa-functions.php:4737
|
3514 |
+
#: wppa-settings-autosave.php:6486 wppa-settings-autosave.php:7775
|
3515 |
+
#: wppa-settings-autosave.php:7779 wppa-settings-autosave.php:7780
|
3516 |
+
#: wppa-settings-autosave.php:7781 wppa-settings-autosave.php:8957
|
3517 |
#, php-format
|
3518 |
msgid "%d week"
|
3519 |
msgid_plural "%d weeks"
|
3520 |
msgstr[0] "%d semaine"
|
3521 |
msgstr[1] "%d semaines"
|
3522 |
|
3523 |
+
#: wppa-common-functions.php:676 wppa-settings-autosave.php:7782
|
3524 |
+
#: wppa-settings-autosave.php:8958 wppa-settings-autosave.php:8959
|
3525 |
+
#: wppa-settings-autosave.php:8960 wppa-settings-autosave.php:8961
|
3526 |
+
#: wppa-settings-autosave.php:8962 wppa-settings-autosave.php:8964
|
3527 |
#, php-format
|
3528 |
msgid "%d month"
|
3529 |
msgid_plural "%d months"
|
3530 |
msgstr[0] "%d mois"
|
3531 |
msgstr[1] "%d mois"
|
3532 |
|
3533 |
+
#: wppa-common-functions.php:679 wppa-settings-autosave.php:8963
|
3534 |
+
#: wppa-settings-autosave.php:8965
|
3535 |
#, php-format
|
3536 |
msgid "%d year"
|
3537 |
msgid_plural "%d years"
|
3538 |
msgstr[0] "%d an"
|
3539 |
msgstr[1] "%d ans"
|
3540 |
|
3541 |
+
#: wppa-common-functions.php:1402
|
3542 |
#, php-format
|
3543 |
msgid ""
|
3544 |
"Based on your server memory limit you should not upload images larger then "
|
3548 |
"devriez pas charger des images plus grandes que : <strong>%d x %d (%2.1f MP)</"
|
3549 |
"strong>"
|
3550 |
|
3551 |
+
#: wppa-common-functions.php:1679
|
3552 |
msgid "- select an album -"
|
3553 |
msgstr "- Choisir un album -"
|
3554 |
|
3555 |
+
#: wppa-common-functions.php:1691 wppa-items.php:432 wppa-multitag-widget.php:76
|
3556 |
#: wppa-multitag-widget.php:84 wppa-slideshow-widget.php:199
|
3557 |
#: wppa-tagcloud-widget.php:71 wppa-tagcloud-widget.php:79
|
3558 |
msgid "--- all ---"
|
3559 |
msgstr "--- tout ---"
|
3560 |
|
3561 |
+
#: wppa-common-functions.php:1697
|
3562 |
msgid "--- generic ---"
|
3563 |
msgstr "--- générique ---"
|
3564 |
|
3565 |
+
#: wppa-common-functions.php:1714
|
3566 |
msgid "--- multiple see below ---"
|
3567 |
msgstr "--- multiples voir ci-dessous ---"
|
3568 |
|
3569 |
+
#: wppa-common-functions.php:1720
|
3570 |
msgid "--- a selection box ---"
|
3571 |
msgstr "--- une sélection ---"
|
3572 |
|
3573 |
+
#: wppa-common-functions.php:1759 wppa-items.php:428
|
3574 |
+
#: wppa-settings-autosave.php:7977 wppa-settings-autosave.php:8033
|
3575 |
#: wppa-upload.php:1529
|
3576 |
msgid "--- separate ---"
|
3577 |
msgstr "--- séparé ---"
|
3578 |
|
3579 |
+
#: wppa-common-functions.php:1865
|
3580 |
msgid "Photo id ="
|
3581 |
msgstr "ID photo ="
|
3582 |
|
3583 |
+
#: wppa-common-functions.php:1865
|
3584 |
msgid "Value ="
|
3585 |
msgstr "Valeur ="
|
3586 |
|
3644 |
msgid "n.a."
|
3645 |
msgstr "Non applicable"
|
3646 |
|
3647 |
+
#: wppa-exif-iptc-common.php:239 wppa-utils.php:2607
|
3648 |
msgid "Not Defined"
|
3649 |
msgstr "Non défini"
|
3650 |
|
3651 |
+
#: wppa-exif-iptc-common.php:240 wppa-utils.php:2608
|
3652 |
msgid "Manual"
|
3653 |
msgstr "Manuel"
|
3654 |
|
3655 |
+
#: wppa-exif-iptc-common.php:241 wppa-utils.php:2609
|
3656 |
msgid "Program AE"
|
3657 |
msgstr "Programme AE"
|
3658 |
|
3659 |
+
#: wppa-exif-iptc-common.php:242 wppa-utils.php:2610
|
3660 |
msgid "Aperture-priority AE"
|
3661 |
msgstr "Priorité ouverture AE"
|
3662 |
|
3663 |
+
#: wppa-exif-iptc-common.php:243 wppa-utils.php:2611
|
3664 |
msgid "Shutter speed priority AE"
|
3665 |
msgstr "Priorité vitesse d'obturation AE"
|
3666 |
|
3667 |
+
#: wppa-exif-iptc-common.php:244 wppa-utils.php:2612
|
3668 |
msgid "Creative (Slow speed)"
|
3669 |
msgstr "Créatif (vitesse lente)"
|
3670 |
|
3671 |
+
#: wppa-exif-iptc-common.php:245 wppa-utils.php:2613
|
3672 |
msgid "Action (High speed)"
|
3673 |
msgstr "Action (vitesse haute)"
|
3674 |
|
3675 |
+
#: wppa-exif-iptc-common.php:246 wppa-utils.php:2614
|
3676 |
msgid "Portrait"
|
3677 |
msgstr "Portrait"
|
3678 |
|
3679 |
+
#: wppa-exif-iptc-common.php:247 wppa-utils.php:2615
|
3680 |
msgid "Landscape"
|
3681 |
msgstr "Paysage"
|
3682 |
|
3683 |
+
#: wppa-exif-iptc-common.php:248 wppa-utils.php:2616
|
3684 |
msgid "Bulb"
|
3685 |
msgstr "Ampoule électrique"
|
3686 |
|
3687 |
+
#: wppa-exif-iptc-common.php:270 wppa-utils.php:2617
|
3688 |
msgid "Average"
|
3689 |
msgstr "Moyen"
|
3690 |
|
3691 |
+
#: wppa-exif-iptc-common.php:271 wppa-utils.php:2618
|
3692 |
msgid "Center-weighted average"
|
3693 |
msgstr "Mesure centrale pondérée"
|
3694 |
|
3695 |
+
#: wppa-exif-iptc-common.php:272 wppa-utils.php:2619
|
3696 |
msgid "Spot"
|
3697 |
msgstr "Spot"
|
3698 |
|
3699 |
+
#: wppa-exif-iptc-common.php:273 wppa-utils.php:2620
|
3700 |
msgid "Multi-spot"
|
3701 |
msgstr "Multi-spot"
|
3702 |
|
3703 |
+
#: wppa-exif-iptc-common.php:274 wppa-utils.php:2621
|
3704 |
msgid "Multi-segment"
|
3705 |
msgstr "Multi-segments"
|
3706 |
|
3707 |
+
#: wppa-exif-iptc-common.php:275 wppa-utils.php:2622
|
3708 |
msgid "Partial"
|
3709 |
msgstr "Partiel"
|
3710 |
|
3711 |
+
#: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4875
|
3712 |
+
#: wppa-utils.php:2623
|
3713 |
msgid "Other"
|
3714 |
msgstr "Autre"
|
3715 |
|
3716 |
+
#: wppa-exif-iptc-common.php:312 wppa-utils.php:2624
|
3717 |
msgid "No Flash"
|
3718 |
msgstr "Pas de flash"
|
3719 |
|
3720 |
+
#: wppa-exif-iptc-common.php:314 wppa-utils.php:2625
|
3721 |
msgid "Fired"
|
3722 |
msgstr "Fired"
|
3723 |
|
3724 |
+
#: wppa-exif-iptc-common.php:316 wppa-utils.php:2626
|
3725 |
msgid "Fired, Return not detected"
|
3726 |
msgstr "Fired, Retour non détecté"
|
3727 |
|
3728 |
+
#: wppa-exif-iptc-common.php:318 wppa-utils.php:2627
|
3729 |
msgid "Fired, Return detected"
|
3730 |
msgstr "Fired, Retour détecté"
|
3731 |
|
3732 |
+
#: wppa-exif-iptc-common.php:320 wppa-utils.php:2628
|
3733 |
msgid "On, Did not fire"
|
3734 |
msgstr "Activé, Did not fire"
|
3735 |
|
3736 |
+
#: wppa-exif-iptc-common.php:322 wppa-utils.php:2629
|
3737 |
msgid "On, Fired"
|
3738 |
msgstr "Activé, Fired"
|
3739 |
|
3740 |
+
#: wppa-exif-iptc-common.php:324 wppa-utils.php:2630
|
3741 |
msgid "On, Return not detected"
|
3742 |
msgstr "Activé, Retour non détecté"
|
3743 |
|
3744 |
+
#: wppa-exif-iptc-common.php:326 wppa-utils.php:2631
|
3745 |
msgid "On, Return detected"
|
3746 |
msgstr "Activé, Retour détecté"
|
3747 |
|
3748 |
+
#: wppa-exif-iptc-common.php:328 wppa-utils.php:2632
|
3749 |
msgid "Off, Did not fire"
|
3750 |
msgstr "Désactivé, Did not fire"
|
3751 |
|
3752 |
+
#: wppa-exif-iptc-common.php:330 wppa-utils.php:2633
|
3753 |
msgid "Off, Did not fire, Return not detected"
|
3754 |
msgstr "Désactivé, Did not fire, Retour non détecté"
|
3755 |
|
3756 |
+
#: wppa-exif-iptc-common.php:332 wppa-utils.php:2634
|
3757 |
msgid "Auto, Did not fire"
|
3758 |
msgstr "Auto, Did not fire"
|
3759 |
|
3760 |
+
#: wppa-exif-iptc-common.php:334 wppa-utils.php:2635
|
3761 |
msgid "Auto, Fired"
|
3762 |
msgstr "Auto, Fired"
|
3763 |
|
3764 |
+
#: wppa-exif-iptc-common.php:336 wppa-utils.php:2636
|
3765 |
msgid "Auto, Fired, Return not detected"
|
3766 |
msgstr "Auto, Fired, Retour non détecté"
|
3767 |
|
3768 |
+
#: wppa-exif-iptc-common.php:338 wppa-utils.php:2637
|
3769 |
msgid "Auto, Fired, Return detected"
|
3770 |
msgstr "Auto, Fired, Retour détecté"
|
3771 |
|
3772 |
+
#: wppa-exif-iptc-common.php:340 wppa-utils.php:2638
|
3773 |
msgid "No flash function"
|
3774 |
msgstr "Pas de fonction flash"
|
3775 |
|
3776 |
+
#: wppa-exif-iptc-common.php:342 wppa-utils.php:2639
|
3777 |
msgid "Off, No flash function"
|
3778 |
msgstr "Désactivé, Pas de fonction flash"
|
3779 |
|
3780 |
+
#: wppa-exif-iptc-common.php:344 wppa-utils.php:2640
|
3781 |
msgid "Fired, Red-eye reduction"
|
3782 |
msgstr "Fired, Réduction yeux rouges"
|
3783 |
|
3784 |
+
#: wppa-exif-iptc-common.php:346 wppa-utils.php:2641
|
3785 |
msgid "Fired, Red-eye reduction, Return not detected"
|
3786 |
msgstr "Fired, Réduction yeux rouges, Retour non détecté"
|
3787 |
|
3788 |
+
#: wppa-exif-iptc-common.php:348 wppa-utils.php:2642
|
3789 |
msgid "Fired, Red-eye reduction, Return detected"
|
3790 |
msgstr "Fired, Réduction yeux rouges, Retour détecté"
|
3791 |
|
3792 |
+
#: wppa-exif-iptc-common.php:350 wppa-utils.php:2643
|
3793 |
msgid "On, Red-eye reduction"
|
3794 |
msgstr "Activé, Réduction yeux rouges"
|
3795 |
|
3796 |
+
#: wppa-exif-iptc-common.php:352 wppa-utils.php:2644
|
3797 |
msgid "Red-eye reduction, Return not detected"
|
3798 |
msgstr "Réduction yeux rouges, Retour non détecté"
|
3799 |
|
3800 |
+
#: wppa-exif-iptc-common.php:354 wppa-utils.php:2645
|
3801 |
msgid "On, Red-eye reduction, Return detected"
|
3802 |
msgstr "Activé, Réduction yeux rouges, Retour détecté"
|
3803 |
|
3804 |
+
#: wppa-exif-iptc-common.php:356 wppa-utils.php:2646
|
3805 |
msgid "Off, Red-eye reduction"
|
3806 |
msgstr "Désactivé, Réduction yeux rouges"
|
3807 |
|
3808 |
+
#: wppa-exif-iptc-common.php:358 wppa-utils.php:2647
|
3809 |
msgid "Auto, Did not fire, Red-eye reduction"
|
3810 |
msgstr "Auto, Did not fire, Réduction yeux rouges"
|
3811 |
|
3812 |
+
#: wppa-exif-iptc-common.php:360 wppa-utils.php:2648
|
3813 |
msgid "Auto, Fired, Red-eye reduction"
|
3814 |
msgstr "Auto, Fired, Réduction yeux rouges"
|
3815 |
|
3816 |
+
#: wppa-exif-iptc-common.php:362 wppa-utils.php:2649
|
3817 |
msgid "Auto, Fired, Red-eye reduction, Return not detected"
|
3818 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour non détecté"
|
3819 |
|
3820 |
+
#: wppa-exif-iptc-common.php:364 wppa-utils.php:2650
|
3821 |
msgid "Auto, Fired, Red-eye reduction, Return detected"
|
3822 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour détecté"
|
3823 |
|
3935 |
msgid "There are no featured photos (yet)"
|
3936 |
msgstr "Il n'y pas (encore) de photos recommandées"
|
3937 |
|
3938 |
+
#: wppa-functions.php:676
|
3939 |
msgid "No related photos found."
|
3940 |
msgstr "Aucune photo apparentée trouvée."
|
3941 |
|
3942 |
+
#: wppa-functions.php:1044
|
3943 |
#, php-format
|
3944 |
msgid ""
|
3945 |
"There are %s albums found. Only the first %s will be shown. Please refine your "
|
3948 |
"Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. Veuillez "
|
3949 |
"redéfinir vos critères de recherche."
|
3950 |
|
3951 |
+
#: wppa-functions.php:2092 wppa-links.php:775 wppa-links.php:792
|
3952 |
+
#: wppa-thumbnails.php:625
|
3953 |
msgid "Are you sure you want to remove this photo?"
|
3954 |
msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
|
3955 |
|
3956 |
+
#: wppa-functions.php:2110 wppa-thumbnails.php:607
|
3957 |
msgid "Are you sure you want to add this photo to your zip?"
|
3958 |
msgstr "Etes-vous sûr que vous voulez ajouter cette photo à votre zip?"
|
3959 |
|
3960 |
+
#: wppa-functions.php:2113 wppa-thumbnails.php:610
|
3961 |
msgid "MyChoice"
|
3962 |
msgstr "MonChoix"
|
3963 |
|
3964 |
+
#: wppa-functions.php:2192
|
3965 |
#, php-format
|
3966 |
msgid "%d dislike"
|
3967 |
msgid_plural "%d dislikes"
|
3968 |
msgstr[0] "%d avis négatif"
|
3969 |
msgstr[1] "%d avis négatifs"
|
3970 |
|
3971 |
+
#: wppa-functions.php:2194
|
3972 |
msgid "including mine"
|
3973 |
msgstr "en comptant le mien"
|
3974 |
|
3975 |
+
#: wppa-functions.php:2294
|
3976 |
msgid "Comment edited"
|
3977 |
msgstr "Commentaire modifié"
|
3978 |
|
3979 |
+
#: wppa-functions.php:2300
|
3980 |
msgid "Photo comment"
|
3981 |
msgstr "Commentaire photo"
|
3982 |
|
3983 |
+
#: wppa-functions.php:2315
|
3984 |
msgid "Comment on photo:"
|
3985 |
msgstr "Commentaire sur la photo:"
|
3986 |
|
3987 |
+
#: wppa-functions.php:2326
|
3988 |
msgid "wrote on photo"
|
3989 |
msgstr "écrit sur les photos"
|
3990 |
|
3991 |
+
#: wppa-functions.php:2330
|
3992 |
msgid "Moderate comment admin"
|
3993 |
msgstr "Moderate comment admin"
|
3994 |
|
3995 |
+
#: wppa-functions.php:2333 wppa-functions.php:4550 wppa-upload.php:1428
|
3996 |
msgid "Moderate manage photo"
|
3997 |
msgstr "Moderate manage photo"
|
3998 |
|
3999 |
+
#: wppa-functions.php:2347
|
4000 |
msgid "You receive this email as you are assigned to moderate"
|
4001 |
msgstr "Vous avez reçu cet email car vous êtes modérateur"
|
4002 |
|
4003 |
+
#: wppa-functions.php:2359
|
4004 |
msgid "You receive this email as administrator of the site"
|
4005 |
msgstr "Vous avez reçu cet email en tant qu'administrateur du site"
|
4006 |
|
4007 |
+
#: wppa-functions.php:2376
|
4008 |
msgid "You receive this email as uploader of the photo"
|
4009 |
msgstr "Vous avez reçu cet email en tant qu'uploadeur de la photo"
|
4010 |
|
4011 |
+
#: wppa-functions.php:2393
|
4012 |
msgid "You receive this email as owner of the album"
|
4013 |
msgstr "Vous avez reçu cet email en tant propriétaire de l'album"
|
4014 |
|
4015 |
+
#: wppa-functions.php:2410
|
4016 |
msgid "You receive this email because you commented this photo earlier."
|
4017 |
msgstr "Vous recevez cet e-mail parce que vous commenté cette photo plus tôt."
|
4018 |
|
4019 |
+
#: wppa-functions.php:2436
|
4020 |
msgid "Comment added"
|
4021 |
msgstr "Commentaire ajouté"
|
4022 |
|
4023 |
+
#: wppa-functions.php:2442
|
4024 |
msgid ""
|
4025 |
"Sorry, you gave a wrong answer.\\n\\nPlease try again to solve the computation."
|
4026 |
msgstr ""
|
4027 |
"Désolé, vous avez donné une mauvaise réponse.\\n\\nVeuillez ré-essayer de "
|
4028 |
"résoudre l'équation."
|
4029 |
|
4030 |
+
#: wppa-functions.php:2453
|
4031 |
msgid "Could not process comment.\\nProbably timed out."
|
4032 |
msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
|
4033 |
|
4034 |
+
#: wppa-functions.php:2571 wppa-links.php:1497
|
4035 |
msgid "A video can not be printed or downloaded"
|
4036 |
msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
|
4037 |
|
4038 |
+
#: wppa-functions.php:3018
|
4039 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4040 |
msgstr "<b>ERREUR: Tentative illicite d'entrer une note.</b>"
|
4041 |
|
4042 |
+
#: wppa-functions.php:3031
|
4043 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4044 |
msgstr "<b>ERREUR: Tentative illicite d'entrer un commentaire.</b>"
|
4045 |
|
4046 |
+
#: wppa-functions.php:4177
|
4047 |
msgid "ERROR: Illegal attempt to create an album."
|
4048 |
msgstr "<b>ERREUR: Tentative incorrecte de créer un album.</b>"
|
4049 |
|
4050 |
+
#: wppa-functions.php:4181
|
4051 |
msgid "Wrong captcha, please try again"
|
4052 |
msgstr "Captcha faux, veuillez recommencer"
|
4053 |
|
4054 |
+
#: wppa-functions.php:4195
|
4055 |
#, php-format
|
4056 |
msgid "Album #%s created"
|
4057 |
msgstr "Album #%s créé"
|
4058 |
|
4059 |
+
#: wppa-functions.php:4201
|
4060 |
msgid "Could not create album"
|
4061 |
msgstr "Impossible de créer un album"
|
4062 |
|
4063 |
+
#: wppa-functions.php:4212
|
4064 |
msgid "ERROR: Illegal attempt to upload a file."
|
4065 |
msgstr "<b>ERREUR: tentative illicite de télécharger un fichier.</b>"
|
4066 |
|
4067 |
+
#: wppa-functions.php:4252
|
4068 |
msgid "Photo upload"
|
4069 |
msgstr "Chargement photo"
|
4070 |
|
4071 |
+
#: wppa-functions.php:4253
|
4072 |
#, php-format
|
4073 |
msgid "%d photo successfully uploaded"
|
4074 |
msgid_plural "%d photos successfully uploaded"
|
4075 |
msgstr[0] "%d photo chargées avec succès"
|
4076 |
msgstr[1] "%d photos chargées avec succès"
|
4077 |
|
4078 |
+
#: wppa-functions.php:4254
|
4079 |
#, php-format
|
4080 |
msgid "%s points added"
|
4081 |
msgstr "%s points ajoutés"
|
4082 |
|
4083 |
+
#: wppa-functions.php:4264
|
4084 |
msgid "Upload failed"
|
4085 |
msgstr "chargement échoué"
|
4086 |
|
4087 |
+
#: wppa-functions.php:4267
|
4088 |
#, php-format
|
4089 |
msgid "%d upload failed"
|
4090 |
msgid_plural "%d uploads failed"
|
4091 |
msgstr[0] "%d chargement échoué"
|
4092 |
msgstr[1] "%d chargements échoués"
|
4093 |
|
4094 |
+
#: wppa-functions.php:4348
|
4095 |
msgid "Error during upload"
|
4096 |
msgstr "Erreur durant le chargement"
|
4097 |
|
4098 |
+
#: wppa-functions.php:4404
|
4099 |
msgid "Could not insert media into db."
|
4100 |
msgstr "Impossible d'insérer dans les médias db."
|
4101 |
|
4102 |
+
#: wppa-functions.php:4444
|
4103 |
msgid "Uploaded file is not an image"
|
4104 |
msgstr "Le fichier chargé n'est pas une image"
|
4105 |
|
4106 |
+
#: wppa-functions.php:4450
|
4107 |
#, php-format
|
4108 |
msgid "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4109 |
msgstr ""
|
4110 |
"Seulement les formats .GIF, .JPG et .PNG sont supportés. Type de fichier "
|
4111 |
"retourné= %d."
|
4112 |
|
4113 |
+
#: wppa-functions.php:4458
|
4114 |
#, php-format
|
4115 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4116 |
msgstr ""
|
4117 |
"Le fichier chargé est plus grand que la taille maximum autorisée %d x %d "
|
4118 |
"pixels."
|
4119 |
|
4120 |
+
#: wppa-functions.php:4466
|
4121 |
#, php-format
|
4122 |
msgid "Uploaded file %s already exists in this album."
|
4123 |
msgstr "Le fichier chargé %s existe déjà dans cet album."
|
4124 |
|
4125 |
+
#: wppa-functions.php:4476
|
4126 |
#, php-format
|
4127 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4128 |
msgstr "L'image est trop grande. Taille max photo: %d x %d (%2.1f MegaPixel)"
|
4129 |
|
4130 |
+
#: wppa-functions.php:4509
|
4131 |
msgid "Could not insert photo into db."
|
4132 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4133 |
|
4134 |
+
#: wppa-functions.php:4546 wppa-upload.php:1424
|
4135 |
#, php-format
|
4136 |
msgid "New photo uploaded: %s"
|
4137 |
msgstr "Nouvelle photo chargée: %s"
|
4138 |
|
4139 |
+
#: wppa-functions.php:4547 wppa-upload.php:1425
|
4140 |
#, php-format
|
4141 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4142 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4143 |
|
4144 |
+
#: wppa-functions.php:4549 wppa-upload.php:1427
|
4145 |
msgid "This upload requires moderation"
|
4146 |
msgstr "Cet upload nécessite une modération"
|
4147 |
|
4148 |
+
#: wppa-functions.php:4553 wppa-upload.php:1431
|
4149 |
msgid "Details:"
|
4150 |
msgstr "Détails:"
|
4151 |
|
4152 |
+
#: wppa-functions.php:4554 wppa-upload.php:1432 wppa-utils.php:937
|
4153 |
+
#: wppa-utils.php:949
|
4154 |
msgid "Manage photo"
|
4155 |
msgstr "Gérer photo"
|
4156 |
|
4157 |
+
#: wppa-functions.php:4734
|
4158 |
msgid "You can upload after"
|
4159 |
msgstr "Vous pouvez charger après"
|
4160 |
|
4161 |
+
#: wppa-functions.php:4777 wppa-functions.php:4781 wppa-functions.php:4788
|
4162 |
+
#: wppa-functions.php:4792 wppa-links.php:1101 wppa-non-admin.php:798
|
4163 |
+
#: wppa-settings-autosave.php:9304 wppa-settings-autosave.php:9316
|
4164 |
+
#: wppa-settings-autosave.php:9328 wppa-settings-autosave.php:9340
|
4165 |
+
#: wppa-settings-autosave.php:9352 wppa-settings-autosave.php:9364
|
4166 |
+
#: wppa-settings-autosave.php:9376 wppa-settings-autosave.php:9388
|
4167 |
msgid "Download"
|
4168 |
msgstr "Télécharger"
|
4169 |
|
4170 |
+
#: wppa-functions.php:4836
|
4171 |
msgid "Zoom in"
|
4172 |
msgstr "Zoom in"
|
4173 |
|
4174 |
+
#: wppa-functions.php:4867
|
4175 |
#, fuzzy, php-format
|
4176 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4177 |
msgstr ""
|
4178 |
"Vous pouvez voter à nouveau après%s jours,%s heures,%s minutes et%s secondes"
|
4179 |
|
4180 |
+
#: wppa-functions.php:4870
|
4181 |
#, fuzzy, php-format
|
4182 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4183 |
msgstr "Vous pouvez voter à nouveau après%s heures,%s minutes et%s secondes"
|
4184 |
|
4185 |
+
#: wppa-functions.php:4873
|
4186 |
#, fuzzy, php-format
|
4187 |
msgid "You can vote again after %s minutes and %s seconds"
|
4188 |
msgstr "Vous pouvez voter à nouveau après%s minutes et%s secondes"
|
4375 |
"<b>Albums photo -> Réglages</b> page d'administration <b>Table VIII-B17</"
|
4376 |
"b><strong>"
|
4377 |
|
4378 |
+
#: wppa-items.php:259 wppa-thumbnails.php:1899
|
4379 |
msgid "Gold medal"
|
4380 |
msgstr "Médaille d'or"
|
4381 |
|
4382 |
#: wppa-items.php:259 wppa-photo-admin-autosave.php:866
|
4383 |
#: wppa-photo-admin-autosave.php:888 wppa-photo-admin-autosave.php:1331
|
4384 |
#: wppa-photo-admin-autosave.php:1448 wppa-photo-admin-autosave.php:1459
|
4385 |
+
#: wppa-widget-admin.php:140
|
4386 |
msgid "Gold"
|
4387 |
msgstr "Or"
|
4388 |
|
4389 |
+
#: wppa-items.php:260 wppa-thumbnails.php:1900
|
4390 |
msgid "Silver medal"
|
4391 |
msgstr "Médaille d'argent"
|
4392 |
|
4393 |
#: wppa-items.php:260 wppa-photo-admin-autosave.php:867
|
4394 |
#: wppa-photo-admin-autosave.php:889 wppa-photo-admin-autosave.php:1332
|
4395 |
#: wppa-photo-admin-autosave.php:1449 wppa-photo-admin-autosave.php:1460
|
4396 |
+
#: wppa-widget-admin.php:141
|
4397 |
msgid "Silver"
|
4398 |
msgstr "Argent"
|
4399 |
|
4400 |
+
#: wppa-items.php:261 wppa-thumbnails.php:1901
|
4401 |
msgid "Bronze medal"
|
4402 |
msgstr "Médaille de bronze"
|
4403 |
|
4404 |
#: wppa-items.php:261 wppa-photo-admin-autosave.php:868
|
4405 |
#: wppa-photo-admin-autosave.php:890 wppa-photo-admin-autosave.php:1333
|
4406 |
#: wppa-photo-admin-autosave.php:1450 wppa-photo-admin-autosave.php:1461
|
4407 |
+
#: wppa-widget-admin.php:142
|
4408 |
msgid "Bronze"
|
4409 |
msgstr "Bronze"
|
4410 |
|
4411 |
+
#: wppa-items.php:336 wppa-items.php:535 wppa-settings-autosave.php:3614
|
4412 |
msgid "none"
|
4413 |
msgstr "aucun"
|
4414 |
|
4415 |
+
#: wppa-items.php:352
|
4416 |
+
#, fuzzy
|
4417 |
+
msgid "Nomen Nescio"
|
4418 |
+
msgstr "Nomen nescio"
|
4419 |
+
|
4420 |
+
#: wppa-items.php:355
|
4421 |
+
#, fuzzy
|
4422 |
+
msgid "Anonymus"
|
4423 |
+
msgstr "Anonymus"
|
4424 |
+
|
4425 |
+
#: wppa-items.php:381 wppa-items.php:546 wppa-upload.php:99 wppa-upload.php:104
|
4426 |
msgid "unknown"
|
4427 |
msgstr "inconnu"
|
4428 |
|
4429 |
+
#: wppa-items.php:440 wppa-items.php:468
|
4430 |
msgid "--- deleted ---"
|
4431 |
msgstr "--- supprimé ---"
|
4432 |
|
4433 |
+
#: wppa-items.php:450
|
4434 |
msgid "All Albums"
|
4435 |
msgstr "Tous les albums"
|
4436 |
|
4437 |
+
#: wppa-items.php:454
|
4438 |
msgid "My and public albums"
|
4439 |
msgstr "Mon et albums publics"
|
4440 |
|
4490 |
msgid "Show time since:"
|
4491 |
msgstr "Montrer la durée depuis:"
|
4492 |
|
4493 |
+
#: wppa-links.php:763
|
4494 |
msgid "App"
|
4495 |
msgstr "App"
|
4496 |
|
4497 |
+
#: wppa-links.php:764
|
4498 |
msgid "Mod"
|
4499 |
msgstr "Mod"
|
4500 |
|
4501 |
+
#: wppa-links.php:765
|
4502 |
msgid "Del"
|
4503 |
msgstr "Del"
|
4504 |
|
4505 |
+
#: wppa-links.php:769 wppa-links.php:786
|
4506 |
msgid "Are you sure you want to publish this photo?"
|
4507 |
msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
|
4508 |
|
4509 |
+
#: wppa-links.php:780 wppa-links.php:797
|
4510 |
msgid "Approve"
|
4511 |
msgstr "Approuver"
|
4512 |
|
4513 |
+
#: wppa-links.php:781
|
4514 |
msgid "Moderate"
|
4515 |
msgstr "Modérer"
|
4516 |
|
4517 |
+
#: wppa-links.php:798
|
4518 |
msgid "PhotoAdmin"
|
4519 |
msgstr "Admin Photo"
|
4520 |
|
4521 |
+
#: wppa-links.php:799
|
4522 |
msgid "CommentAdmin"
|
4523 |
msgstr "Admin Commentaires"
|
4524 |
|
4525 |
+
#: wppa-links.php:803
|
4526 |
msgid "Are you sure you want to publish this comment?"
|
4527 |
msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
|
4528 |
|
4529 |
+
#: wppa-links.php:815
|
4530 |
msgid "Are you sure you want to remove this comment?"
|
4531 |
msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
|
4532 |
|
4533 |
+
#: wppa-links.php:829
|
4534 |
#, php-format
|
4535 |
msgid "Scheduled for %s"
|
4536 |
msgstr "Planifié pour %s"
|
4537 |
|
4538 |
+
#: wppa-links.php:1042 wppa-links.php:1045 wppa-slideshow.php:1057
|
4539 |
msgid "Previous"
|
4540 |
msgstr "Préc."
|
4541 |
|
4542 |
+
#: wppa-links.php:1052 wppa-links.php:1055 wppa-non-admin.php:749
|
4543 |
+
#: wppa-slideshow.php:1071
|
4544 |
msgid "Next"
|
4545 |
msgstr "Suiv."
|
4546 |
|
4547 |
+
#: wppa-links.php:1101
|
4548 |
msgid "Download album"
|
4549 |
msgstr "Télécharger l'album"
|
4550 |
|
4551 |
+
#: wppa-links.php:1237
|
4552 |
msgid "View thumbnails"
|
4553 |
msgstr "Visualiser les vignettes"
|
4554 |
|
4555 |
+
#: wppa-links.php:1250
|
4556 |
msgid "View fullsize slideshow"
|
4557 |
msgstr "Voir le diaporama fullsize"
|
4558 |
|
4593 |
|
4594 |
#: wppa-maintenance.php:756 wppa-maintenance.php:772
|
4595 |
#: wppa-photo-admin-autosave.php:1742 wppa-photo-admin-autosave.php:1763
|
4596 |
+
#: wppa-settings-autosave.php:4497 wppa-setup.php:351
|
4597 |
msgid "Required"
|
4598 |
msgstr "requis"
|
4599 |
|
4653 |
msgid "Keys: f = next mode; q,x = exit; d = dismiss this notice."
|
4654 |
msgstr "Touches: f = mode suiv.; q,x = sortir; d = abandonner cette note."
|
4655 |
|
4656 |
+
#: wppa-non-admin.php:740 wppa-settings-autosave.php:3805 wppa-slideshow.php:241
|
4657 |
msgid "Start"
|
4658 |
msgstr "Démarrer"
|
4659 |
|
4685 |
msgid "Prev."
|
4686 |
msgstr "Préc."
|
4687 |
|
4688 |
+
#: wppa-non-admin.php:750 wppa-slideshow.php:784 wppa-slideshow.php:798
|
4689 |
+
#: wppa-slideshow.php:909
|
4690 |
msgid "Average rating"
|
4691 |
msgstr "Note moyenne"
|
4692 |
|
4693 |
+
#: wppa-non-admin.php:751 wppa-slideshow.php:847 wppa-slideshow.php:880
|
4694 |
+
#: wppa-slideshow.php:891
|
4695 |
msgid "My rating"
|
4696 |
msgstr "Ma note"
|
4697 |
|
4724 |
msgstr "Double-cliquez pour lancer/arrêter le diaporama"
|
4725 |
|
4726 |
#: wppa-non-admin.php:889 wppa-photo-admin-autosave.php:265
|
4727 |
+
#: wppa-potd-widget.php:174
|
4728 |
msgid "By:"
|
4729 |
msgstr "Par:"
|
4730 |
|
4744 |
msgid "Photos uploaded by"
|
4745 |
msgstr "Photos chargées par"
|
4746 |
|
4747 |
+
#: wppa-non-admin.php:904 wppa-thumbnails.php:690 wppa-thumbnails.php:1475
|
4748 |
#: wppa-topten-widget.php:203 wppa-topten-widget.php:226
|
4749 |
#: wppa-topten-widget.php:236
|
4750 |
#, php-format
|
4791 |
msgstr "Aucune photo correspondant à vos critères de recherche n'a été trouvée."
|
4792 |
|
4793 |
#: wppa-photo-admin-autosave.php:146 wppa-photo-admin-autosave.php:1499
|
4794 |
+
#: wppa-widget-admin.php:296
|
4795 |
msgid "No photos yet in this album."
|
4796 |
msgstr "Pas encore de photo dans cet album"
|
4797 |
|
4979 |
msgid "Same tab"
|
4980 |
msgstr "Même onglet"
|
4981 |
|
4982 |
+
#: wppa-photo-admin-autosave.php:436 wppa-settings-autosave.php:4976
|
4983 |
+
#: wppa-settings-autosave.php:5982
|
4984 |
msgid "New tab"
|
4985 |
msgstr "Nouvel onglet"
|
4986 |
|
5005 |
msgid "Update file"
|
5006 |
msgstr "Mettre à jour le fichier"
|
5007 |
|
5008 |
+
#: wppa-photo-admin-autosave.php:501 wppa-settings-autosave.php:3316
|
5009 |
msgid "Upload"
|
5010 |
msgstr "Charger"
|
5011 |
|
5071 |
msgid "Remake thumbnail file"
|
5072 |
msgstr "Refaire la vignette"
|
5073 |
|
5074 |
+
#: wppa-photo-admin-autosave.php:658 wppa-settings-autosave.php:6852
|
5075 |
msgid "Remake"
|
5076 |
msgstr "Refaire"
|
5077 |
|
5143 |
|
5144 |
#: wppa-photo-admin-autosave.php:863 wppa-photo-admin-autosave.php:886
|
5145 |
#: wppa-photo-admin-autosave.php:1328 wppa-photo-admin-autosave.php:1445
|
5146 |
+
#: wppa-photo-admin-autosave.php:1457 wppa-widget-admin.php:138
|
5147 |
msgid "Publish"
|
5148 |
msgstr "Publier"
|
5149 |
|
5150 |
#: wppa-photo-admin-autosave.php:865 wppa-photo-admin-autosave.php:887
|
5151 |
#: wppa-photo-admin-autosave.php:1330 wppa-photo-admin-autosave.php:1447
|
5152 |
+
#: wppa-widget-admin.php:139
|
5153 |
msgid "Featured"
|
5154 |
msgstr "Recommandé"
|
5155 |
|
5304 |
msgstr "Cliquer sur ce bouton rechargera la page après l'action demandée"
|
5305 |
|
5306 |
#: wppa-photo-admin-autosave.php:1362 wppa-photo-admin-autosave.php:1481
|
5307 |
+
#: wppa-settings-autosave.php:8466
|
5308 |
msgid "Preview"
|
5309 |
msgstr "Prévisualiser"
|
5310 |
|
5357 |
msgid "Count"
|
5358 |
msgstr "Compteur"
|
5359 |
|
5360 |
+
#: wppa-photo-admin-autosave.php:1881 wppa-settings-autosave.php:6390
|
5361 |
msgid "Tags"
|
5362 |
msgstr "Tags"
|
5363 |
|
5382 |
msgid "Photo Of The Day"
|
5383 |
msgstr "Photo du jour"
|
5384 |
|
5385 |
+
#: wppa-potd-widget.php:205
|
5386 |
+
#, fuzzy
|
5387 |
msgid ""
|
5388 |
"You can set the content and the sizes in this widget in the <b>Photo Albums -> "
|
5389 |
+
"Photo of the day</b> admin page."
|
5390 |
msgstr ""
|
5391 |
+
"Vous pouvez définir le contenu et les tailles dans ce widget sur la page "
|
5392 |
+
"d’admin <b>Albums Photo-> Photo du jour</b> ."
|
5393 |
|
5394 |
#: wppa-qr-widget.php:13
|
5395 |
msgid "WPPA+ QR Widget"
|
5451 |
msgid "Enable subsearch"
|
5452 |
msgstr "Activer subsearch"
|
5453 |
|
5454 |
+
#: wppa-search-widget.php:134 wppa-settings-autosave.php:5910
|
5455 |
msgid "Landing page"
|
5456 |
msgstr "Page de destination"
|
5457 |
|
5649 |
msgstr "Légende:"
|
5650 |
|
5651 |
#: wppa-settings-autosave.php:388 wppa-settings-autosave.php:390
|
5652 |
+
#: wppa-settings-autosave.php:2069 wppa-settings-autosave.php:5657
|
5653 |
msgid "Button"
|
5654 |
msgstr "Bouton"
|
5655 |
|
5657 |
msgid "action that causes page reload."
|
5658 |
msgstr "action qui provoque le rechargement de la page."
|
5659 |
|
5660 |
+
#: wppa-settings-autosave.php:390 wppa-settings-autosave.php:9970
|
5661 |
+
#: wppa-settings-autosave.php:9989
|
5662 |
msgid "Are you sure?"
|
5663 |
msgstr "Êtes-vous sûr ?"
|
5664 |
|
5666 |
msgid "action that does not cause page reload."
|
5667 |
msgstr "action qui ne provoque pas le rechargement de la page."
|
5668 |
|
5669 |
+
#: wppa-settings-autosave.php:393 wppa-settings-autosave.php:7260
|
5670 |
+
#: wppa-settings-autosave.php:7287 wppa-settings-autosave.php:8355
|
5671 |
+
#: wppa-settings-autosave.php:8357 wppa-settings-autosave.php:9646
|
5672 |
+
#: wppa-settings-autosave.php:9663 wppa-settings-autosave.php:9692
|
5673 |
+
#: wppa-settings-autosave.php:9710 wppa-settings-autosave.php:9734
|
5674 |
+
#: wppa-settings-autosave.php:9755 wppa-settings-autosave.php:9775
|
5675 |
+
#: wppa-settings-autosave.php:9792 wppa-settings-autosave.php:9836
|
5676 |
+
#: wppa-settings-autosave.php:9889 wppa-settings-autosave.php:9921
|
5677 |
msgid "Setting unmodified"
|
5678 |
msgstr "Configuration inchangée"
|
5679 |
|
5713 |
msgid "Layout"
|
5714 |
msgstr "Disposition"
|
5715 |
|
5716 |
+
#: wppa-settings-autosave.php:415 wppa-settings-autosave.php:4926
|
5717 |
msgid "Lightbox"
|
5718 |
msgstr "Lightbox"
|
5719 |
|
5729 |
msgid "Navigation"
|
5730 |
msgstr "Navigation"
|
5731 |
|
5732 |
+
#: wppa-settings-autosave.php:420 wppa-settings-autosave.php:8498
|
5733 |
+
#: wppa-settings-autosave.php:8543
|
|
|
|
|
|
|
|
|
|
|
5734 |
msgid "Rating"
|
5735 |
msgstr "Note"
|
5736 |
|
5754 |
msgid "Widgets"
|
5755 |
msgstr "Widgets"
|
5756 |
|
5757 |
+
#: wppa-settings-autosave.php:428 wppa-settings-autosave.php:8336
|
5758 |
msgid "Watermark"
|
5759 |
msgstr "Filigrane"
|
5760 |
|
5808 |
|
5809 |
#: wppa-settings-autosave.php:555 wppa-settings-autosave.php:717
|
5810 |
#: wppa-settings-autosave.php:739 wppa-settings-autosave.php:1487
|
5811 |
+
#: wppa-settings-autosave.php:1508 wppa-settings-autosave.php:3096
|
5812 |
+
#: wppa-settings-autosave.php:3465 wppa-settings-autosave.php:4753
|
5813 |
+
#: wppa-settings-autosave.php:6640 wppa-settings-autosave.php:7416
|
5814 |
+
#: wppa-settings-autosave.php:9138
|
5815 |
msgid "Setting"
|
5816 |
msgstr "Réglages"
|
5817 |
|
5818 |
#: wppa-settings-autosave.php:556 wppa-settings-autosave.php:718
|
5819 |
#: wppa-settings-autosave.php:740 wppa-settings-autosave.php:1488
|
5820 |
+
#: wppa-settings-autosave.php:1509 wppa-settings-autosave.php:3097
|
5821 |
+
#: wppa-settings-autosave.php:3121 wppa-settings-autosave.php:3445
|
5822 |
+
#: wppa-settings-autosave.php:3466 wppa-settings-autosave.php:4754
|
5823 |
+
#: wppa-settings-autosave.php:4778 wppa-settings-autosave.php:4954
|
5824 |
+
#: wppa-settings-autosave.php:4978 wppa-settings-autosave.php:5984
|
5825 |
+
#: wppa-settings-autosave.php:6642 wppa-settings-autosave.php:6666
|
5826 |
+
#: wppa-settings-autosave.php:7396 wppa-settings-autosave.php:7417
|
5827 |
+
#: wppa-settings-autosave.php:9139 wppa-settings-autosave.php:9161
|
5828 |
+
#: wppa-settings-autosave.php:9201 wppa-settings-autosave.php:9223
|
5829 |
+
#: wppa-settings-autosave.php:9269
|
5830 |
msgid "Help"
|
5831 |
msgstr "Aide"
|
5832 |
|
6230 |
#: wppa-settings-autosave.php:1402 wppa-settings-autosave.php:1411
|
6231 |
#: wppa-settings-autosave.php:1444 wppa-settings-autosave.php:1453
|
6232 |
#: wppa-settings-autosave.php:1465 wppa-settings-autosave.php:1474
|
6233 |
+
#: wppa-settings-autosave.php:2911 wppa-settings-autosave.php:4799
|
6234 |
+
#: wppa-settings-autosave.php:4816 wppa-settings-autosave.php:4833
|
6235 |
+
#: wppa-settings-autosave.php:4850 wppa-settings-autosave.php:4867
|
6236 |
+
#: wppa-settings-autosave.php:4884 wppa-settings-autosave.php:4901
|
6237 |
+
#: wppa-settings-autosave.php:4918 wppa-settings-autosave.php:4935
|
6238 |
+
#: wppa-settings-autosave.php:6201 wppa-settings-autosave.php:8869
|
6239 |
+
#: wppa-settings-autosave.php:9065 wppa-settings-autosave.php:9107
|
6240 |
+
#: wppa-settings-autosave.php:9125
|
6241 |
msgid "pixels"
|
6242 |
msgstr "pixels"
|
6243 |
|
6269 |
#: wppa-settings-autosave.php:799 wppa-settings-autosave.php:838
|
6270 |
#: wppa-settings-autosave.php:1282 wppa-settings-autosave.php:1322
|
6271 |
#: wppa-settings-autosave.php:1342 wppa-settings-autosave.php:1382
|
6272 |
+
#: wppa-settings-autosave.php:4195 wppa-settings-autosave.php:6126
|
6273 |
+
#: wppa-settings-autosave.php:7959
|
6274 |
msgid "photos"
|
6275 |
msgstr "photos"
|
6276 |
|
6760 |
"Entrer le nombre maximum de vignettes par page. Une valeur de 0 indique pas de "
|
6761 |
"pagination."
|
6762 |
|
6763 |
+
#: wppa-settings-autosave.php:1113 wppa-settings-autosave.php:5728
|
6764 |
+
#: wppa-settings-autosave.php:5761 wppa-settings-autosave.php:5858
|
6765 |
+
#: wppa-widget-admin.php:279
|
6766 |
msgid "thumbnails"
|
6767 |
msgstr "vignettes"
|
6768 |
|
7201 |
msgstr ""
|
7202 |
"Entrer le nombre maximum de vignettes photo d'albums dans le widget Albums."
|
7203 |
|
7204 |
+
#: wppa-settings-autosave.php:1362 wppa-settings-autosave.php:6142
|
7205 |
msgid "albums"
|
7206 |
msgstr "albums"
|
7207 |
|
7473 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
7474 |
"affichages Related Photos."
|
7475 |
|
7476 |
+
#: wppa-settings-autosave.php:1601 wppa-setup.php:721
|
7477 |
msgid "Home"
|
7478 |
msgstr "Accueil"
|
7479 |
|
7577 |
msgid "The location for the pagelinks bar."
|
7578 |
msgstr "L'emplacement pour la barre des liens de page."
|
7579 |
|
7580 |
+
#: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:4140
|
7581 |
msgid "Top"
|
7582 |
msgstr "Haut"
|
7583 |
|
7584 |
+
#: wppa-settings-autosave.php:1665 wppa-settings-autosave.php:4140
|
7585 |
msgid "Bottom"
|
7586 |
msgstr "Bas"
|
7587 |
|
7922 |
msgid "Display the share social media buttons box."
|
7923 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
7924 |
|
7925 |
+
#: wppa-settings-autosave.php:1929 wppa-settings-autosave.php:9112
|
7926 |
msgid "Hide when running"
|
7927 |
msgstr "Cacher lorsqu'en fonctionnement"
|
7928 |
|
8345 |
"Choisir si le nom de l'album est affiché sur la vignette ainsi que sa position."
|
8346 |
|
8347 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8348 |
+
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:4495
|
8349 |
msgid "None"
|
8350 |
msgstr "Aucun"
|
8351 |
|
8352 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8353 |
+
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:3614
|
8354 |
msgid "At the top"
|
8355 |
msgstr "En haut"
|
8356 |
|
8357 |
#: wppa-settings-autosave.php:2272 wppa-settings-autosave.php:2283
|
8358 |
+
#: wppa-settings-autosave.php:2312 wppa-settings-autosave.php:3614
|
8359 |
msgid "At the bottom"
|
8360 |
msgstr "En bas"
|
8361 |
|
8533 |
msgstr ""
|
8534 |
"Montrer la description de l'album en survolant la vignette dans le widget album"
|
8535 |
|
8536 |
+
#: wppa-settings-autosave.php:2418 wppa-settings-autosave.php:4626
|
8537 |
msgid ""
|
8538 |
"Lightbox related settings. These settings have effect only when Table IX-J3 is "
|
8539 |
"set to wppa"
|
8840 |
"coin haut droit"
|
8841 |
|
8842 |
#: wppa-settings-autosave.php:2619
|
8843 |
+
#, fuzzy
|
8844 |
+
msgid "Show rating"
|
8845 |
+
msgstr "Montrer le nombre de notes"
|
8846 |
+
|
8847 |
+
#: wppa-settings-autosave.php:2620
|
8848 |
+
#, fuzzy
|
8849 |
+
msgid "Shows and enables rating on lightbox."
|
8850 |
+
msgstr "Montre et permet la notation relative à la lightbox."
|
8851 |
+
|
8852 |
+
#: wppa-settings-autosave.php:2621
|
8853 |
+
#, fuzzy
|
8854 |
+
msgid ""
|
8855 |
+
"This works for 5 and 10 stars only, not for single votes or numerical display"
|
8856 |
+
msgstr ""
|
8857 |
+
"Cela fonctionne pour les 5 et 10 étoiles seulement, pas pour voix seule ou "
|
8858 |
+
"l’affichage numérique"
|
8859 |
+
|
8860 |
+
#: wppa-settings-autosave.php:2628
|
8861 |
msgid "Overlay show counter"
|
8862 |
msgstr "Montrer compteur overlay"
|
8863 |
|
8864 |
+
#: wppa-settings-autosave.php:2629
|
8865 |
msgid "Show the x/y counter below the image."
|
8866 |
msgstr "Montrer le compteur x/y au dessous de l'image."
|
8867 |
|
8868 |
+
#: wppa-settings-autosave.php:2637
|
8869 |
msgid "Show Zoom in"
|
8870 |
msgstr "Montrer Zoom in"
|
8871 |
|
8872 |
+
#: wppa-settings-autosave.php:2638
|
8873 |
msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
|
8874 |
msgstr "Afficher le tooltip \"Zoom in\" avec le curseur loupe."
|
8875 |
|
8876 |
+
#: wppa-settings-autosave.php:2639
|
8877 |
msgid ""
|
8878 |
"If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
|
8879 |
"contains the photo name."
|
8881 |
"Si vous choisissez --- Aucun --- dans table I-G2 pour la taille de la loupe, "
|
8882 |
"le tooltip contient le nom de la photo."
|
8883 |
|
8884 |
+
#: wppa-settings-autosave.php:2647
|
8885 |
msgid "Frontend upload configuration settings"
|
8886 |
msgstr "Réglages pour le chargement (upload) par le frontend"
|
8887 |
|
8888 |
+
#: wppa-settings-autosave.php:2649
|
8889 |
msgid "User upload Photos"
|
8890 |
msgstr "Photos chargées par l'utilisateur"
|
8891 |
|
8892 |
+
#: wppa-settings-autosave.php:2650
|
8893 |
msgid "Enable frontend upload."
|
8894 |
msgstr "Permettre chargement via le frontend."
|
8895 |
|
8896 |
+
#: wppa-settings-autosave.php:2651
|
8897 |
msgid ""
|
8898 |
"If you check this item, frontend upload will be enabled according to the rules "
|
8899 |
"set in the following items of this table."
|
8901 |
"Si vous cochez cet item, le chargement par le frontend sera activé en accord "
|
8902 |
"avec les règles définies dans les items suivants de cette table."
|
8903 |
|
8904 |
+
#: wppa-settings-autosave.php:2659
|
8905 |
msgid "User upload Video"
|
8906 |
msgstr "Envoyer une vidéo"
|
8907 |
|
8908 |
+
#: wppa-settings-autosave.php:2660
|
8909 |
msgid "Enable frontend upload of video."
|
8910 |
msgstr "Activez le frontend upload de la vidéo."
|
8911 |
|
8912 |
+
#: wppa-settings-autosave.php:2661 wppa-settings-autosave.php:2671
|
8913 |
msgid "Requires Table II-H1 to be ticked."
|
8914 |
msgstr "Nécessite le Table II-H1 être cochée."
|
8915 |
|
8916 |
+
#: wppa-settings-autosave.php:2669
|
8917 |
msgid "User upload Audio"
|
8918 |
msgstr "Télécharger un fichier Audio"
|
8919 |
|
8920 |
+
#: wppa-settings-autosave.php:2670
|
8921 |
msgid "Enable frontend upload of audio."
|
8922 |
msgstr "Activez le frontend Télécharger audio."
|
8923 |
|
8924 |
+
#: wppa-settings-autosave.php:2679
|
8925 |
msgid "User upload Photos login"
|
8926 |
msgstr "Login de chargement photos utilisateur"
|
8927 |
|
8928 |
+
#: wppa-settings-autosave.php:2680
|
8929 |
msgid "Frontend upload requires the user is logged in."
|
8930 |
msgstr "Le chargement via frontend nécessite que l'utilisateur soit connecté."
|
8931 |
|
8932 |
+
#: wppa-settings-autosave.php:2681
|
8933 |
msgid ""
|
8934 |
"If you uncheck this box, make sure you check the item Owners only in Table VII-"
|
8935 |
"D1."
|
8937 |
"Si vous décochez cette case, assurez vous de cocher l'item Propriétaires "
|
8938 |
"uniquement dans table VII-D1."
|
8939 |
|
8940 |
+
#: wppa-settings-autosave.php:2682
|
8941 |
msgid ""
|
8942 |
"Also: set the owner to ---public--- of the albums that are allowed to be "
|
8943 |
"uploaded to."
|
8945 |
"Aussi: régler propriétaire à --- public --- \" dans les albums pour lesquels "
|
8946 |
"il sera autorisé de charger des média."
|
8947 |
|
8948 |
+
#: wppa-settings-autosave.php:2689
|
8949 |
msgid "User upload Ajax"
|
8950 |
msgstr "Chargement AJAX utilisateur"
|
8951 |
|
8952 |
+
#: wppa-settings-autosave.php:2690
|
8953 |
msgid "Shows the upload progression bar."
|
8954 |
msgstr "Montrer la barre progression du chargement."
|
8955 |
|
8956 |
+
#: wppa-settings-autosave.php:2698
|
8957 |
msgid "Show Copyright"
|
8958 |
msgstr "Montrer Copyright"
|
8959 |
|
8960 |
+
#: wppa-settings-autosave.php:2699
|
8961 |
msgid "Show a copyright warning on frontend upload locations."
|
8962 |
msgstr ""
|
8963 |
"Montrer un avertissement de copyright à l'endroit du chargement via le "
|
8964 |
"frontend."
|
8965 |
|
8966 |
+
#: wppa-settings-autosave.php:2708
|
8967 |
msgid "Copyright notice"
|
8968 |
msgstr "Note Copyright"
|
8969 |
|
8970 |
+
#: wppa-settings-autosave.php:2709
|
8971 |
msgid "The message to be displayed."
|
8972 |
msgstr "Le message a afficher."
|
8973 |
|
8974 |
+
#: wppa-settings-autosave.php:2717
|
8975 |
msgid "User Watermark"
|
8976 |
msgstr "Filigrane utilisateur"
|
8977 |
|
8978 |
+
#: wppa-settings-autosave.php:2718
|
8979 |
msgid "Uploading users may select watermark settings"
|
8980 |
msgstr ""
|
8981 |
"Les utilisateurs autorisés à charger peuvent gérer les options de filigrane"
|
8982 |
|
8983 |
+
#: wppa-settings-autosave.php:2719
|
8984 |
msgid ""
|
8985 |
"If checked, anyone who can upload and/or import photos can overrule the "
|
8986 |
"default watermark settings."
|
8988 |
"Si coché, les utilisateurs autorisés à charger et/ou importer des photos "
|
8989 |
"peuvent passer outre les options par défaut du filigrane."
|
8990 |
|
8991 |
+
#: wppa-settings-autosave.php:2726
|
8992 |
msgid "User name"
|
8993 |
msgstr "Nom utilisateur"
|
8994 |
|
8995 |
+
#: wppa-settings-autosave.php:2727
|
8996 |
msgid "Uploading users may overrule the default name."
|
8997 |
msgstr "L'utilisateur autorisé à charger peut passer outre le nom par défaut."
|
8998 |
|
8999 |
+
#: wppa-settings-autosave.php:2728
|
9000 |
msgid ""
|
9001 |
"If checked, the default photo name as defined in Table IX-D13 may be overruled "
|
9002 |
"by the user."
|
9004 |
"Si coché, le nom par défaut de la photo comme défini dans table IX-D13 ne "
|
9005 |
"s'applique pas pour l'utilisateur."
|
9006 |
|
9007 |
+
#: wppa-settings-autosave.php:2735
|
9008 |
msgid "Apply Newphoto desc user"
|
9009 |
msgstr "Appliquer la description utilisateur pour la nouvelle photo"
|
9010 |
|
9011 |
+
#: wppa-settings-autosave.php:2736
|
9012 |
msgid "Give each new frontend uploaded photo a standard description."
|
9013 |
msgstr ""
|
9014 |
"Donne à chaque nouvelle photo chargée par le frontend une description standard."
|
9015 |
|
9016 |
+
#: wppa-settings-autosave.php:2737
|
9017 |
msgid ""
|
9018 |
"If checked, each new photo will get the description (template) as specified in "
|
9019 |
"Table IX-D5."
|
9021 |
"Si coché, chaque nouvelle photo recevra une description selon un modèle comme "
|
9022 |
"spécifié dans table IX-D5."
|
9023 |
|
9024 |
+
#: wppa-settings-autosave.php:2744
|
9025 |
msgid "User desc"
|
9026 |
msgstr "Description utilisateur"
|
9027 |
|
9028 |
+
#: wppa-settings-autosave.php:2745
|
9029 |
msgid "Uploading users may overrule the default description."
|
9030 |
msgstr ""
|
9031 |
"Les utilisateurs autoriser à charger des fichiers peuvent passer outre la "
|
9032 |
"description par défaut."
|
9033 |
|
9034 |
+
#: wppa-settings-autosave.php:2753
|
9035 |
msgid "User upload custom"
|
9036 |
msgstr "Personnalisation pour les utilisateurs autorisés à charger"
|
9037 |
|
9038 |
+
#: wppa-settings-autosave.php:2754
|
9039 |
msgid "Frontend upload can fill in custom data fields."
|
9040 |
msgstr ""
|
9041 |
"Possibilité de remplir des champ de donnée personnalisés lors du chargement "
|
9042 |
"frontend."
|
9043 |
|
9044 |
+
#: wppa-settings-autosave.php:2762
|
9045 |
msgid "User upload tags"
|
9046 |
msgstr "Tags chargement utilisateur"
|
9047 |
|
9048 |
+
#: wppa-settings-autosave.php:2763
|
9049 |
msgid "Frontend upload can add tags."
|
9050 |
msgstr "Possibilité d'ajouter des tag lors du chargement frontend."
|
9051 |
|
9052 |
+
#: wppa-settings-autosave.php:2764
|
9053 |
msgid "You can configure the details of tag addition in Table IX-D18.x"
|
9054 |
msgstr ""
|
9055 |
"Vous pouvez configurer les détails pour l'ajout de tag dans table IX-D18.x"
|
9056 |
|
9057 |
+
#: wppa-settings-autosave.php:2772 wppa-settings-autosave.php:2800
|
9058 |
+
#: wppa-settings-autosave.php:2828
|
9059 |
msgid "Tag selection box"
|
9060 |
msgstr "Boîte de sélection de tag"
|
9061 |
|
9062 |
+
#: wppa-settings-autosave.php:2773 wppa-settings-autosave.php:2801
|
9063 |
+
#: wppa-settings-autosave.php:2829
|
9064 |
msgid "Front-end upload tags selecion box."
|
9065 |
msgstr "Boîte de sélection des tags de chargement par frontend."
|
9066 |
|
9067 |
+
#: wppa-settings-autosave.php:2777 wppa-settings-autosave.php:2805
|
9068 |
+
#: wppa-settings-autosave.php:2833
|
9069 |
msgid "On:"
|
9070 |
msgstr "Sur:"
|
9071 |
|
9072 |
+
#: wppa-settings-autosave.php:2777 wppa-settings-autosave.php:2805
|
9073 |
+
#: wppa-settings-autosave.php:2833
|
9074 |
msgid "Multi:"
|
9075 |
msgstr "Multi:"
|
9076 |
|
9077 |
+
#: wppa-settings-autosave.php:2782 wppa-settings-autosave.php:2810
|
9078 |
+
#: wppa-settings-autosave.php:2838
|
9079 |
msgid "Caption box"
|
9080 |
msgstr "Boîte de légende"
|
9081 |
|
9082 |
+
#: wppa-settings-autosave.php:2783 wppa-settings-autosave.php:2811
|
9083 |
+
#: wppa-settings-autosave.php:2839
|
9084 |
msgid "The title of the tag selection box."
|
9085 |
msgstr "Le titre de la boîte de sélection de tag."
|
9086 |
|
9087 |
+
#: wppa-settings-autosave.php:2791 wppa-settings-autosave.php:2819
|
9088 |
+
#: wppa-settings-autosave.php:2847
|
9089 |
msgid "Tags box"
|
9090 |
msgstr "Boîte de tags"
|
9091 |
|
9092 |
+
#: wppa-settings-autosave.php:2792 wppa-settings-autosave.php:2820
|
9093 |
+
#: wppa-settings-autosave.php:2848
|
9094 |
msgid "The tags in the selection box."
|
9095 |
msgstr "Les tags dans la boîte de sélection."
|
9096 |
|
9097 |
+
#: wppa-settings-autosave.php:2793 wppa-settings-autosave.php:2821
|
9098 |
+
#: wppa-settings-autosave.php:2849
|
9099 |
msgid ""
|
9100 |
"Enter the tags you want to appear in the selection box. Empty means: all "
|
9101 |
"existing tags"
|
9103 |
"Entrez les tags que vous désirez voir apparaître dans la boîte de sélection. "
|
9104 |
"Laisser vide signifie: tous les tags existants"
|
9105 |
|
9106 |
+
#: wppa-settings-autosave.php:2856
|
9107 |
msgid "New tags"
|
9108 |
msgstr "Nouveaux tags:"
|
9109 |
|
9110 |
+
#: wppa-settings-autosave.php:2857
|
9111 |
msgid "Input field for any user defined tags."
|
9112 |
msgstr "Champ de saisie pour les tags définis par l'utilisateur."
|
9113 |
|
9114 |
+
#: wppa-settings-autosave.php:2865
|
9115 |
msgid "New tags caption"
|
9116 |
msgstr "Nouvelle légende pour les tags"
|
9117 |
|
9118 |
+
#: wppa-settings-autosave.php:2866
|
9119 |
msgid "The caption above the tags input field."
|
9120 |
msgstr "La légende au dessus du champ de saisie des tags."
|
9121 |
|
9122 |
+
#: wppa-settings-autosave.php:2874
|
9123 |
msgid "Preview tags"
|
9124 |
msgstr "Aperçu tags"
|
9125 |
|
9126 |
+
#: wppa-settings-autosave.php:2875
|
9127 |
msgid "Show a preview of all tags that will be added to the photo info."
|
9128 |
msgstr ""
|
9129 |
"Montre une prévisualisation de tous les tags qui seront ajoutés aux "
|
9130 |
"informations de la photo."
|
9131 |
|
9132 |
+
#: wppa-settings-autosave.php:2883
|
9133 |
msgid "Camera connect"
|
9134 |
msgstr "Caméra connecter"
|
9135 |
|
9136 |
+
#: wppa-settings-autosave.php:2884
|
9137 |
msgid "Connect frontend upload to camara on mobile devices with camera"
|
9138 |
msgstr ""
|
9139 |
"Se connecter frontend télécharger à camara sur les appareils mobiles avec "
|
9140 |
"appareil photo"
|
9141 |
|
9142 |
+
#: wppa-settings-autosave.php:2893
|
9143 |
msgid "Miscellaneous visibility settings"
|
9144 |
msgstr "Réglages divers pour l'apparence"
|
9145 |
|
9146 |
+
#: wppa-settings-autosave.php:2895
|
9147 |
msgid "Frontend ending label"
|
9148 |
msgstr "Texte de fin du frontend"
|
9149 |
|
9150 |
+
#: wppa-settings-autosave.php:2896
|
9151 |
msgid "Frontend upload / create / edit dialog closing label text."
|
9152 |
msgstr ""
|
9153 |
"Texte de fermeture de la boîte de dialogue Charger / Créer / Modifier du "
|
9154 |
"frontend."
|
9155 |
|
9156 |
+
#: wppa-settings-autosave.php:2899
|
9157 |
msgid "Abort"
|
9158 |
msgstr "Abandonner"
|
9159 |
|
9160 |
+
#: wppa-settings-autosave.php:2899
|
9161 |
msgid "Close"
|
9162 |
msgstr "Fermer"
|
9163 |
|
9164 |
+
#: wppa-settings-autosave.php:2899
|
9165 |
msgid "Exit"
|
9166 |
msgstr "Sortir"
|
9167 |
|
9168 |
+
#: wppa-settings-autosave.php:2899
|
9169 |
msgid "Quit"
|
9170 |
msgstr "Quitter"
|
9171 |
|
9172 |
+
#: wppa-settings-autosave.php:2907
|
9173 |
msgid "Widget thumbs fontsize"
|
9174 |
msgstr "Taille de police de caractère pour les vignettes des widgets"
|
9175 |
|
9176 |
+
#: wppa-settings-autosave.php:2908
|
9177 |
msgid "Font size for thumbnail subtext in widgets."
|
9178 |
msgstr ""
|
9179 |
"Taille de la police de caractère du sous texte des vignettes dans les widgets."
|
9180 |
|
9181 |
+
#: wppa-settings-autosave.php:2916
|
9182 |
msgid "Arrow color"
|
9183 |
msgstr "Couleur de la flèche"
|
9184 |
|
9185 |
+
#: wppa-settings-autosave.php:2917
|
9186 |
msgid "Left/right browsing arrow color."
|
9187 |
msgstr "Couleur de la flèche de navigation gauche/droite."
|
9188 |
|
9189 |
+
#: wppa-settings-autosave.php:2918
|
9190 |
msgid "Enter the color of the filmstrip navigation arrows."
|
9191 |
msgstr "Entrer la couleur des flèches de navigation filmstrip."
|
9192 |
|
9193 |
+
#: wppa-settings-autosave.php:2925
|
9194 |
msgid "Owner on new line"
|
9195 |
msgstr "Propriétaire sur nouvelle ligne"
|
9196 |
|
9197 |
+
#: wppa-settings-autosave.php:2926
|
9198 |
msgid "Place the (owner) text on a new line."
|
9199 |
msgstr "Place le texte (du propriétaire) sur une nouvelle ligne."
|
9200 |
|
9201 |
+
#: wppa-settings-autosave.php:2934
|
9202 |
+
#, fuzzy
|
9203 |
+
msgid "Custom datafields albums"
|
9204 |
+
msgstr "Albums personnalisés datafields"
|
9205 |
|
9206 |
+
#: wppa-settings-autosave.php:2935
|
9207 |
+
#, fuzzy
|
9208 |
+
msgid "Define up to 10 custom data fields for albums."
|
9209 |
+
msgstr "Définir jusqu'à 10 champs de données personnalisés pour les albums."
|
9210 |
|
9211 |
+
#: wppa-settings-autosave.php:2945 wppa-settings-autosave.php:2971
|
9212 |
#, php-format
|
9213 |
msgid "Name, vis, edit %s"
|
9214 |
msgstr "Nom, vis, mod. %s"
|
9215 |
|
9216 |
+
#: wppa-settings-autosave.php:2946 wppa-settings-autosave.php:2972
|
9217 |
#, php-format
|
9218 |
msgid "The caption for field %s, visibility and editability at frontend."
|
9219 |
msgstr ""
|
9220 |
"La légende de champ %s, de visibilité et de caractère modifiable à frontend."
|
9221 |
|
9222 |
+
#: wppa-settings-autosave.php:2947 wppa-settings-autosave.php:2973
|
9223 |
#, php-format
|
9224 |
msgid ""
|
9225 |
"If you check the first box, the value of this field is displayable in photo "
|
9228 |
"Si vous cochez la première case, la valeur de ce champ est affichable dans les "
|
9229 |
"descriptions de photo à l’interface avec le mot clé w#c%s"
|
9230 |
|
9231 |
+
#: wppa-settings-autosave.php:2948 wppa-settings-autosave.php:2974
|
9232 |
msgid ""
|
9233 |
"If you check the second box, the value of this field is editable at the "
|
9234 |
"frontend new style dialog."
|
9236 |
"Si vous cochez la deuxième case, la valeur de ce champ est modifiable dans la "
|
9237 |
"boîte de dialogue style nouveau frontend."
|
9238 |
|
9239 |
+
#: wppa-settings-autosave.php:2960
|
9240 |
+
#, fuzzy
|
9241 |
+
msgid "Custom datafields photos"
|
9242 |
+
msgstr "Datafields personnalisé photos"
|
9243 |
+
|
9244 |
+
#: wppa-settings-autosave.php:2961
|
9245 |
+
msgid "Define up to 10 custom data fields for photos."
|
9246 |
+
msgstr "Définir jusqu'à 10 champs personnalisés pour les photos."
|
9247 |
+
|
9248 |
+
#: wppa-settings-autosave.php:2986
|
9249 |
msgid "Navigation symbols for slideshows and lighbox"
|
9250 |
msgstr "Symboles de navigation pour diaporamas et Lightbox"
|
9251 |
|
9252 |
+
#: wppa-settings-autosave.php:2988
|
9253 |
msgid "Start symbol url"
|
9254 |
msgstr "URL pour le symbole Démarrer"
|
9255 |
|
9256 |
+
#: wppa-settings-autosave.php:2989
|
9257 |
msgid "Supply the url of an image for the start symbol"
|
9258 |
msgstr "Fournir l'URL d'une image pour le symbole Démarrer"
|
9259 |
|
9260 |
+
#: wppa-settings-autosave.php:2997
|
9261 |
msgid "Pause symbol url"
|
9262 |
msgstr "URL pour le symbole Pause"
|
9263 |
|
9264 |
+
#: wppa-settings-autosave.php:2998
|
9265 |
msgid "Supply the url of an image for the pause symbol"
|
9266 |
msgstr "Fournir l'URL d'une image pour le symbole Pause"
|
9267 |
|
9268 |
+
#: wppa-settings-autosave.php:3006
|
9269 |
msgid "Stop symbol url"
|
9270 |
msgstr "URL pour le symbole Arrêter"
|
9271 |
|
9272 |
+
#: wppa-settings-autosave.php:3007
|
9273 |
msgid "Supply the url of an image for the stop symbol"
|
9274 |
msgstr "Fournir l'URL d'une image pour le symbole Arrêter"
|
9275 |
|
9276 |
+
#: wppa-settings-autosave.php:3015
|
9277 |
msgid "Left (prev) symbol url"
|
9278 |
msgstr "URL pour le symbole Gauche (Préc.)"
|
9279 |
|
9280 |
+
#: wppa-settings-autosave.php:3016
|
9281 |
msgid "Supply the url of an image for the left symbol, if not default"
|
9282 |
msgstr "Fournir l'URL d'une image pour le symbole Gauche, si pas de défaut"
|
9283 |
|
9284 |
+
#: wppa-settings-autosave.php:3024
|
9285 |
msgid "Right (next) symbol url"
|
9286 |
msgstr "URL pour le symbole Droit (Suiv.)"
|
9287 |
|
9288 |
+
#: wppa-settings-autosave.php:3025
|
9289 |
msgid "Supply the url of an image for the right symbol, if not default"
|
9290 |
msgstr "Fournir l'URL d'une image pour le symbole Droite, si pas de défaut"
|
9291 |
|
9292 |
+
#: wppa-settings-autosave.php:3034
|
9293 |
msgid "The size of the start/pause symbols."
|
9294 |
msgstr "La taille des symboles Démarrer/Pause."
|
9295 |
|
9296 |
+
#: wppa-settings-autosave.php:3043 wppa-settings-autosave.php:3061
|
9297 |
msgid "The border radius if the symbol is round"
|
9298 |
msgstr "Le rayon de bordure si le symbole est rond"
|
9299 |
|
9300 |
+
#: wppa-settings-autosave.php:3052 wppa-settings-autosave.php:3070
|
9301 |
msgid "The size of the stop symbols."
|
9302 |
msgstr "La taille des symboles Arrêter."
|
9303 |
|
9304 |
+
#: wppa-settings-autosave.php:3069
|
9305 |
msgid "Left/right symbol size"
|
9306 |
msgstr "Taille du symbole Gauche/Droite"
|
9307 |
|
9308 |
+
#: wppa-settings-autosave.php:3078
|
9309 |
msgid "Left/right symbol border radius"
|
9310 |
msgstr "Rayon de bordure du symbole Gauche/Droite"
|
9311 |
|
9312 |
+
#: wppa-settings-autosave.php:3079
|
9313 |
msgid "The border radius"
|
9314 |
msgstr "Le rayon de bordure"
|
9315 |
|
9316 |
+
#: wppa-settings-autosave.php:3106
|
9317 |
msgid "Table III:"
|
9318 |
msgstr "Table III:"
|
9319 |
|
9320 |
+
#: wppa-settings-autosave.php:3106
|
9321 |
msgid "Backgrounds:"
|
9322 |
msgstr "Arrière plans:"
|
9323 |
|
9324 |
+
#: wppa-settings-autosave.php:3107
|
9325 |
msgid "This table describes the backgrounds of wppa+ elements."
|
9326 |
msgstr "Cette table décrit l'arrière plan des éléments de WPPA+."
|
9327 |
|
9328 |
+
#: wppa-settings-autosave.php:3117 wppa-settings-autosave.php:3441
|
9329 |
msgid "Background color"
|
9330 |
msgstr "Couleur d'arrière plan"
|
9331 |
|
9332 |
+
#: wppa-settings-autosave.php:3118 wppa-settings-autosave.php:3120
|
9333 |
+
#: wppa-settings-autosave.php:3442 wppa-settings-autosave.php:3444
|
9334 |
msgid "Sample"
|
9335 |
msgstr "Echantillon"
|
9336 |
|
9337 |
+
#: wppa-settings-autosave.php:3119 wppa-settings-autosave.php:3443
|
9338 |
msgid "Border color"
|
9339 |
msgstr "Couleur de bordure"
|
9340 |
|
9341 |
+
#: wppa-settings-autosave.php:3128
|
9342 |
msgid "Slideshow elements backgrounds"
|
9343 |
msgstr "Arrière plan des éléments du diaporama"
|
9344 |
|
9345 |
+
#: wppa-settings-autosave.php:3130
|
9346 |
msgid "Nav"
|
9347 |
msgstr "Nav"
|
9348 |
|
9349 |
+
#: wppa-settings-autosave.php:3131
|
9350 |
msgid "Navigation bars."
|
9351 |
msgstr "Barres de navigation."
|
9352 |
|
9353 |
+
#: wppa-settings-autosave.php:3132
|
9354 |
msgid "Enter valid CSS colors for navigation backgrounds and borders."
|
9355 |
msgstr ""
|
9356 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9357 |
"et des bordures de navigation."
|
9358 |
|
9359 |
+
#: wppa-settings-autosave.php:3143
|
9360 |
msgid "SlideImg"
|
9361 |
msgstr "SlideImg"
|
9362 |
|
9363 |
+
#: wppa-settings-autosave.php:3144
|
9364 |
msgid "Fullsize Slideshow Photos."
|
9365 |
msgstr "Photos diaporama en taille max."
|
9366 |
|
9367 |
+
#: wppa-settings-autosave.php:3145
|
9368 |
msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
|
9369 |
msgstr ""
|
9370 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9371 |
"et des bordures des photos pleine taille."
|
9372 |
|
9373 |
+
#: wppa-settings-autosave.php:3146
|
9374 |
msgid "The colors may be equal or \"transparent\""
|
9375 |
msgstr "Les couleurs peuvent être égales ou \"transparentes\""
|
9376 |
|
9377 |
+
#: wppa-settings-autosave.php:3147
|
9378 |
msgid ""
|
9379 |
"For more information about slideshow image borders see the help on Table I-B4"
|
9380 |
msgstr ""
|
9381 |
"Pour plus d'informations sur les bordures d'images du diaporama, voir l'aide: "
|
9382 |
"table I-B4\""
|
9383 |
|
9384 |
+
#: wppa-settings-autosave.php:3158 wppa-settings-autosave.php:4892
|
9385 |
msgid "Numbar"
|
9386 |
msgstr "Numbar"
|
9387 |
|
9388 |
+
#: wppa-settings-autosave.php:3159
|
9389 |
msgid "Number bar box background."
|
9390 |
msgstr "Arrière plan de Numbar"
|
9391 |
|
9392 |
+
#: wppa-settings-autosave.php:3160
|
9393 |
msgid "Enter valid CSS colors for numbar box backgrounds and borders."
|
9394 |
msgstr ""
|
9395 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9396 |
"et des bordures de Numbar."
|
9397 |
|
9398 |
+
#: wppa-settings-autosave.php:3171
|
9399 |
msgid "Numbar active"
|
9400 |
msgstr "Numbar activée"
|
9401 |
|
9402 |
+
#: wppa-settings-autosave.php:3172
|
9403 |
msgid "Number bar active box background."
|
9404 |
msgstr "Arrière plan de la boîte Numbar active."
|
9405 |
|
9406 |
+
#: wppa-settings-autosave.php:3173
|
9407 |
msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
|
9408 |
msgstr ""
|
9409 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9410 |
"et des bordures de la boîte Numbar active."
|
9411 |
|
9412 |
+
#: wppa-settings-autosave.php:3184
|
9413 |
msgid "Name/desc"
|
9414 |
msgstr "Nom/desc"
|
9415 |
|
9416 |
+
#: wppa-settings-autosave.php:3185
|
9417 |
msgid "Name and Description bars."
|
9418 |
msgstr "Barres nom et decription."
|
9419 |
|
9420 |
+
#: wppa-settings-autosave.php:3186
|
9421 |
msgid ""
|
9422 |
"Enter valid CSS colors for name and description box backgrounds and borders."
|
9423 |
msgstr ""
|
9424 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9425 |
"et des bordures des boîtes nom et description."
|
9426 |
|
9427 |
+
#: wppa-settings-autosave.php:3198
|
9428 |
msgid "Comment input and display areas."
|
9429 |
msgstr "Zones d'entrée et d'affichage de commentaires"
|
9430 |
|
9431 |
+
#: wppa-settings-autosave.php:3199
|
9432 |
msgid "Enter valid CSS colors for comment box backgrounds and borders."
|
9433 |
msgstr ""
|
9434 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9435 |
"et des bordures de la boîte commentaires."
|
9436 |
|
9437 |
+
#: wppa-settings-autosave.php:3210 wppa-settings-autosave.php:8497
|
9438 |
+
#: wppa-settings-autosave.php:8542
|
9439 |
msgid "Custom"
|
9440 |
msgstr "Personalisé"
|
9441 |
|
9442 |
+
#: wppa-settings-autosave.php:3211
|
9443 |
msgid "Custom box background."
|
9444 |
msgstr "Arrière plan de la boîte personnalisée."
|
9445 |
|
9446 |
+
#: wppa-settings-autosave.php:3212
|
9447 |
msgid "Enter valid CSS colors for custom box backgrounds and borders."
|
9448 |
msgstr ""
|
9449 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9450 |
"et des bordures de la boîte pesonnalisée."
|
9451 |
|
9452 |
+
#: wppa-settings-autosave.php:3223
|
9453 |
msgid "IPTC"
|
9454 |
msgstr "IPTC"
|
9455 |
|
9456 |
+
#: wppa-settings-autosave.php:3224
|
9457 |
msgid "IPTC display box background."
|
9458 |
msgstr "Arrière plan de la boîte IPTC."
|
9459 |
|
9460 |
+
#: wppa-settings-autosave.php:3225
|
9461 |
msgid "Enter valid CSS colors for iptc box backgrounds and borders."
|
9462 |
msgstr ""
|
9463 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9464 |
"et des bordures de la boîte IPTC."
|
9465 |
|
9466 |
+
#: wppa-settings-autosave.php:3236
|
9467 |
msgid "EXIF"
|
9468 |
msgstr "EXIF"
|
9469 |
|
9470 |
+
#: wppa-settings-autosave.php:3237
|
9471 |
msgid "EXIF display box background."
|
9472 |
msgstr "Arrière plan de la boîte EXIF."
|
9473 |
|
9474 |
+
#: wppa-settings-autosave.php:3238
|
9475 |
msgid "Enter valid CSS colors for exif box backgrounds and borders."
|
9476 |
msgstr ""
|
9477 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9478 |
"et des bordures de la boîte EXIF."
|
9479 |
|
9480 |
+
#: wppa-settings-autosave.php:3249
|
9481 |
msgid "Share"
|
9482 |
msgstr "Partager"
|
9483 |
|
9484 |
+
#: wppa-settings-autosave.php:3250
|
9485 |
msgid "Share box display background."
|
9486 |
msgstr "Arrière plan de la boîte de partage."
|
9487 |
|
9488 |
+
#: wppa-settings-autosave.php:3251
|
9489 |
msgid "Enter valid CSS colors for share box backgrounds and borders."
|
9490 |
msgstr ""
|
9491 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9492 |
"et des bordures de la boîte de partage."
|
9493 |
|
9494 |
+
#: wppa-settings-autosave.php:3262
|
9495 |
msgid "Other backgrounds"
|
9496 |
msgstr "Autres arrière plans"
|
9497 |
|
9498 |
+
#: wppa-settings-autosave.php:3264
|
9499 |
msgid "Even"
|
9500 |
msgstr "Pair"
|
9501 |
|
9502 |
+
#: wppa-settings-autosave.php:3265
|
9503 |
msgid "Even background."
|
9504 |
msgstr "Arrière plan identique."
|
9505 |
|
9506 |
+
#: wppa-settings-autosave.php:3266
|
9507 |
msgid ""
|
9508 |
"Enter valid CSS colors for even numbered backgrounds and borders of album "
|
9509 |
"covers and thumbnail displays 'As covers'."
|
9512 |
"et des bordures des couvertures d'album (et des vignettes affichées 'comme "
|
9513 |
"couverture') paires."
|
9514 |
|
9515 |
+
#: wppa-settings-autosave.php:3277
|
9516 |
msgid "Odd"
|
9517 |
msgstr "Impair"
|
9518 |
|
9519 |
+
#: wppa-settings-autosave.php:3278
|
9520 |
msgid "Odd background."
|
9521 |
msgstr "Arrière plan impair."
|
9522 |
|
9523 |
+
#: wppa-settings-autosave.php:3279
|
9524 |
msgid ""
|
9525 |
"Enter valid CSS colors for odd numbered backgrounds and borders of album "
|
9526 |
"covers and thumbnail displays 'As covers'."
|
9529 |
"et des bordures des couvertures d'album (et des vignettes affichées 'comme "
|
9530 |
"couverture') impaires."
|
9531 |
|
9532 |
+
#: wppa-settings-autosave.php:3290
|
9533 |
msgid "Thumbnail padding"
|
9534 |
msgstr "Remplissage vignettes"
|
9535 |
|
9536 |
+
#: wppa-settings-autosave.php:3291
|
9537 |
msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
|
9538 |
msgstr ""
|
9539 |
"Couleur de remplissage vignettes si l'aspect de la vignette est réglé sur "
|
9540 |
"remplit (padded)."
|
9541 |
|
9542 |
+
#: wppa-settings-autosave.php:3292
|
9543 |
msgid ""
|
9544 |
"Enter valid CSS color hexadecimal like #000000 for black or #ffffff for white "
|
9545 |
"for the padded thumbnails."
|
9547 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs comme #000000 "
|
9548 |
"pour le noir ou #ffffff pour le blanc pour le remplissage des vignettes."
|
9549 |
|
9550 |
+
#: wppa-settings-autosave.php:3303
|
9551 |
msgid "Img"
|
9552 |
msgstr "IMG"
|
9553 |
|
9554 |
+
#: wppa-settings-autosave.php:3304
|
9555 |
msgid "Cover Photos and popups."
|
9556 |
msgstr "Photos de couverture et popups."
|
9557 |
|
9558 |
+
#: wppa-settings-autosave.php:3305
|
9559 |
msgid "Enter valid CSS colors for Cover photo and popup backgrounds and borders."
|
9560 |
msgstr ""
|
9561 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9562 |
"et des bordures pour les photos de couvertures et popups."
|
9563 |
|
9564 |
+
#: wppa-settings-autosave.php:3317
|
9565 |
msgid "Upload box background."
|
9566 |
msgstr "Arrière plan de la boîte de chargement."
|
9567 |
|
9568 |
+
#: wppa-settings-autosave.php:3318
|
9569 |
msgid "Enter valid CSS colors for upload box backgrounds and borders."
|
9570 |
msgstr ""
|
9571 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9572 |
"et des bordures pour la boîte de chargement."
|
9573 |
|
9574 |
+
#: wppa-settings-autosave.php:3329
|
9575 |
msgid "Multitag"
|
9576 |
msgstr "Multitag"
|
9577 |
|
9578 |
+
#: wppa-settings-autosave.php:3330
|
9579 |
msgid "Multitag box background."
|
9580 |
msgstr "Arrière plan de la boîte Multitag."
|
9581 |
|
9582 |
+
#: wppa-settings-autosave.php:3331
|
9583 |
msgid "Enter valid CSS colors for multitag box backgrounds and borders."
|
9584 |
msgstr ""
|
9585 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9586 |
"et des bordures pour la boîte Multitag."
|
9587 |
|
9588 |
+
#: wppa-settings-autosave.php:3342
|
9589 |
msgid "Tagcloud"
|
9590 |
msgstr "TagCloud"
|
9591 |
|
9592 |
+
#: wppa-settings-autosave.php:3343
|
9593 |
msgid "Tagcloud box background."
|
9594 |
msgstr "Arrière plan de la boîte TagCloud."
|
9595 |
|
9596 |
+
#: wppa-settings-autosave.php:3344
|
9597 |
msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
|
9598 |
msgstr ""
|
9599 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9600 |
"et des bordures pour la boîte TagCloud."
|
9601 |
|
9602 |
+
#: wppa-settings-autosave.php:3355
|
9603 |
msgid "Superview"
|
9604 |
msgstr "SuperView"
|
9605 |
|
9606 |
+
#: wppa-settings-autosave.php:3356
|
9607 |
msgid "Superview box background."
|
9608 |
msgstr "Arrière plan de la boîte SuperView."
|
9609 |
|
9610 |
+
#: wppa-settings-autosave.php:3357
|
9611 |
msgid "Enter valid CSS colors for superview box backgrounds and borders."
|
9612 |
msgstr ""
|
9613 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9614 |
"et des bordures pour la boîte SuperView."
|
9615 |
|
9616 |
+
#: wppa-settings-autosave.php:3369
|
9617 |
msgid "Search box background."
|
9618 |
msgstr "Arrière plan de la boîte de recherche."
|
9619 |
|
9620 |
+
#: wppa-settings-autosave.php:3370
|
9621 |
msgid "Enter valid CSS colors for search box backgrounds and borders."
|
9622 |
msgstr ""
|
9623 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9624 |
"et des bordures pour la boîte de recherche."
|
9625 |
|
9626 |
+
#: wppa-settings-autosave.php:3381
|
9627 |
msgid "BestOf"
|
9628 |
msgstr "BestOf"
|
9629 |
|
9630 |
+
#: wppa-settings-autosave.php:3382
|
9631 |
msgid "BestOf box background."
|
9632 |
msgstr "Arrière plan de la boîte BestOf."
|
9633 |
|
9634 |
+
#: wppa-settings-autosave.php:3383
|
9635 |
msgid "Enter valid CSS colors for bestof box backgrounds and borders."
|
9636 |
msgstr ""
|
9637 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9638 |
"et des bordures pour la boîte BestOf."
|
9639 |
|
9640 |
+
#: wppa-settings-autosave.php:3394
|
9641 |
msgid "Calendar"
|
9642 |
msgstr "Calendrier"
|
9643 |
|
9644 |
+
#: wppa-settings-autosave.php:3395
|
9645 |
msgid "Calendar box background."
|
9646 |
msgstr "Arrière plan de la boîte calendrier."
|
9647 |
|
9648 |
+
#: wppa-settings-autosave.php:3396
|
9649 |
msgid "Enter valid CSS colors for calendar box backgrounds and borders."
|
9650 |
msgstr ""
|
9651 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9652 |
"et des bordures pour la boîte calendrier."
|
9653 |
|
9654 |
+
#: wppa-settings-autosave.php:3407
|
9655 |
msgid "Stereo"
|
9656 |
msgstr "Stéréo"
|
9657 |
|
9658 |
+
#: wppa-settings-autosave.php:3408
|
9659 |
msgid "Stereo mode selection box background."
|
9660 |
msgstr "Arrière plan de la boîte de sélection du mode stéréo."
|
9661 |
|
9662 |
+
#: wppa-settings-autosave.php:3409
|
9663 |
msgid ""
|
9664 |
"Enter valid CSS colors for stereo mode selection box backgrounds and borders."
|
9665 |
msgstr ""
|
9666 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière plan "
|
9667 |
"et des bordures pour la boîte de sélection du mode stéréo."
|
9668 |
|
9669 |
+
#: wppa-settings-autosave.php:3420
|
9670 |
msgid "Admins choice"
|
9671 |
msgstr "Choix des admins"
|
9672 |
|
9673 |
+
#: wppa-settings-autosave.php:3421
|
9674 |
msgid "Admins choice box background."
|
9675 |
msgstr "Fond de boîte admins choix."
|
9676 |
|
9677 |
+
#: wppa-settings-autosave.php:3422
|
9678 |
msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
|
9679 |
msgstr ""
|
9680 |
"Entrez valides couleurs CSS pour les bordures et les arrière-plans de boîte "
|
9681 |
"choix admins."
|
9682 |
|
9683 |
+
#: wppa-settings-autosave.php:3454
|
9684 |
msgid "Table IV:"
|
9685 |
msgstr "Table IV:"
|
9686 |
|
9687 |
+
#: wppa-settings-autosave.php:3454
|
9688 |
msgid "Behaviour:"
|
9689 |
msgstr "Comportement:"
|
9690 |
|
9691 |
+
#: wppa-settings-autosave.php:3455
|
9692 |
msgid "This table describes the dynamic behaviour of certain wppa+ elements."
|
9693 |
msgstr ""
|
9694 |
"Cette table décrit le comportement dynamique de certains éléments de WPPA+."
|
9695 |
|
9696 |
+
#: wppa-settings-autosave.php:3473
|
9697 |
msgid "System related settings"
|
9698 |
msgstr "Réglages liés au système"
|
9699 |
|
9700 |
+
#: wppa-settings-autosave.php:3475
|
9701 |
msgid "Use Ajax"
|
9702 |
msgstr "Utiliser AJAX"
|
9703 |
|
9704 |
+
#: wppa-settings-autosave.php:3476
|
9705 |
msgid "Use Ajax as much as is possible and implemented."
|
9706 |
msgstr "Utiliser Ajax autant que possible lorsqu'il est implémenté."
|
9707 |
|
9708 |
+
#: wppa-settings-autosave.php:3477
|
9709 |
msgid ""
|
9710 |
"If this box is ticked, page content updates from within wppa+ displays will be "
|
9711 |
"Ajax based as much as possible."
|
9713 |
"Si cette case est cochée, le rafraîchissement du contenu des pages de "
|
9714 |
"l'affichage WPPA+ sera autant que possible basé sur Ajax."
|
9715 |
|
9716 |
+
#: wppa-settings-autosave.php:3485
|
9717 |
msgid "Ajax NON Admin"
|
9718 |
msgstr "Ajax NON admin"
|
9719 |
|
9720 |
+
#: wppa-settings-autosave.php:3486
|
9721 |
msgid "Frontend ajax use no admin files."
|
9722 |
msgstr "Le frontend Ajax n'utilise pas de fichiers admin."
|
9723 |
|
9724 |
+
#: wppa-settings-autosave.php:3487
|
9725 |
msgid "If you want to password protect wp-admin, check this box."
|
9726 |
msgstr "Si vous voulez protéger wp-admin par mot de passe, cochez cette case."
|
9727 |
|
9728 |
+
#: wppa-settings-autosave.php:3488
|
9729 |
msgid ""
|
9730 |
"In rare cases changing page content does not work when this box is checked. "
|
9731 |
"Verify the functionality!"
|
9733 |
"Dans de rares cas, changer le contenu de la page ne fonctionne pas quand cette "
|
9734 |
"case est cochée. Vérifier la fonctionnalité!"
|
9735 |
|
9736 |
+
#: wppa-settings-autosave.php:3495
|
9737 |
msgid "Photo names in urls"
|
9738 |
msgstr "Nom des photos dans les URLs"
|
9739 |
|
9740 |
+
#: wppa-settings-autosave.php:3496
|
9741 |
msgid "Display photo names in urls."
|
9742 |
msgstr "Afficher le nom des photos dans les URLs."
|
9743 |
|
9744 |
+
#: wppa-settings-autosave.php:3497
|
9745 |
msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
|
9746 |
msgstr ""
|
9747 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms de photo au "
|
9748 |
"lieu de nombres."
|
9749 |
|
9750 |
+
#: wppa-settings-autosave.php:3498
|
9751 |
msgid ""
|
9752 |
"It is your responsability to avoid duplicate names of photos in the same album."
|
9753 |
msgstr "C'est à vous d'éviter les doublons de nom de photos dans le même album."
|
9754 |
|
9755 |
+
#: wppa-settings-autosave.php:3505
|
9756 |
msgid "Album names in urls"
|
9757 |
msgstr "Nom des albums dans les URLs"
|
9758 |
|
9759 |
+
#: wppa-settings-autosave.php:3506
|
9760 |
msgid "Display album names in urls."
|
9761 |
msgstr "Afficher le nom des albums dans les URLs."
|
9762 |
|
9763 |
+
#: wppa-settings-autosave.php:3507
|
9764 |
msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
|
9765 |
msgstr ""
|
9766 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms d'album au "
|
9767 |
"lieu de nombres."
|
9768 |
|
9769 |
+
#: wppa-settings-autosave.php:3508
|
9770 |
msgid ""
|
9771 |
"It is your responsability to avoid duplicate names of albums in the system."
|
9772 |
msgstr "C'est à vous d'éviter les doublons de nom d'albums dans le système."
|
9773 |
|
9774 |
+
#: wppa-settings-autosave.php:3515
|
9775 |
msgid "Use short query args"
|
9776 |
msgstr "Utiliser des arguments de requête courts"
|
9777 |
|
9778 |
+
#: wppa-settings-autosave.php:3516
|
9779 |
msgid "Use &album=... &photo=..."
|
9780 |
msgstr "Utiliser &album=... &photo=..."
|
9781 |
|
9782 |
+
#: wppa-settings-autosave.php:3517
|
9783 |
msgid ""
|
9784 |
"Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
|
9785 |
"album=... &wppa-photo=..."
|
9787 |
"Les URLs vers les contenus WPPA+ contiendront &album=... &photo=... à la place "
|
9788 |
"de &wppa-album=... &wppa-photo=..."
|
9789 |
|
9790 |
+
#: wppa-settings-autosave.php:3518
|
9791 |
msgid ""
|
9792 |
"Use this setting only when there are no conflicts with other plugins that may "
|
9793 |
"interprete arguments like &album= etc."
|
9796 |
"greffons (plugins) qui pourraient interpréter des arguments tels que &album= "
|
9797 |
"etc."
|
9798 |
|
9799 |
+
#: wppa-settings-autosave.php:3525
|
9800 |
msgid "Enable pretty links"
|
9801 |
msgstr "Activer Pretty Links"
|
9802 |
|
9803 |
+
#: wppa-settings-autosave.php:3526
|
9804 |
msgid "Enable the generation and understanding of pretty links."
|
9805 |
msgstr "Active la génération et l'interprêtation des Pretty Links."
|
9806 |
|
9807 |
+
#: wppa-settings-autosave.php:3527
|
9808 |
msgid ""
|
9809 |
"If checked, links to social media and the qr code will have \"/token1/token2/"
|
9810 |
"\" etc in stead of \"&arg1=..&arg2=..\" etc."
|
9812 |
"Si coché, les liens vers les média sociaux et le QR Code aura \"/token1/token2/"
|
9813 |
"\" etc à la place de \"&arg1=..&arg2=..\" etc."
|
9814 |
|
9815 |
+
#: wppa-settings-autosave.php:3528
|
9816 |
msgid ""
|
9817 |
"These types of links will be interpreted and cause a redirection on entering."
|
9818 |
msgstr ""
|
9819 |
"Ces types de liens seront interprétés et fonctionnent avec une redirection à "
|
9820 |
"l'entrée."
|
9821 |
|
9822 |
+
#: wppa-settings-autosave.php:3529
|
9823 |
msgid ""
|
9824 |
"It is recommended to check this box. It shortens links dramatically and "
|
9825 |
"simplifies qr codes."
|
9827 |
"Il est recommandé de cocher cette case. Cela rend les liens plus courts et "
|
9828 |
"simplifie les QR Codes."
|
9829 |
|
9830 |
+
#: wppa-settings-autosave.php:3530
|
9831 |
msgid ""
|
9832 |
"However, you may encounter conflicts with themes and/or other plugins, so test "
|
9833 |
"it troughly!"
|
9835 |
"Cependant, il peut se produire des conflits avec certains thèmes et/ou "
|
9836 |
"greffons (plugins), testez le bien avant de l'utiliser!"
|
9837 |
|
9838 |
+
#: wppa-settings-autosave.php:3531
|
9839 |
msgid ""
|
9840 |
"Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
|
9841 |
msgstr ""
|
9842 |
"Table IV-A2 (Nom des photos dans les URLs) doit être DÉcoché pour que ce "
|
9843 |
"réglage fonctionne!"
|
9844 |
|
9845 |
+
#: wppa-settings-autosave.php:3538
|
9846 |
msgid "Enable encrypted links"
|
9847 |
msgstr "Activer les liens cryptés"
|
9848 |
|
9849 |
+
#: wppa-settings-autosave.php:3539
|
9850 |
msgid "Encrypt album and photo ids in links."
|
9851 |
msgstr "Crypter les album et photo ID dans les liens."
|
9852 |
|
9853 |
+
#: wppa-settings-autosave.php:3542
|
9854 |
msgid "The page will be reloaded."
|
9855 |
msgstr "La page sera rechargée."
|
9856 |
|
9857 |
+
#: wppa-settings-autosave.php:3548
|
9858 |
msgid "Refuse unencrypted"
|
9859 |
msgstr "Refuser non cryptés"
|
9860 |
|
9861 |
+
#: wppa-settings-autosave.php:3549
|
9862 |
msgid "When encrypted is enabled, refuse unencrypted urls."
|
9863 |
msgstr "Lorsque chiffré est activé, refuser les urls non chiffrées."
|
9864 |
|
9865 |
+
#: wppa-settings-autosave.php:3557
|
9866 |
msgid "Update addressline"
|
9867 |
msgstr "Mettre à jour la ligne d'adresse"
|
9868 |
|
9869 |
+
#: wppa-settings-autosave.php:3558
|
9870 |
msgid "Update the addressline after an ajax action or next slide."
|
9871 |
msgstr "Met à jour la ligne d'adresse après une action Ajax ou diapo suivante."
|
9872 |
|
9873 |
+
#: wppa-settings-autosave.php:3559
|
9874 |
msgid ""
|
9875 |
"If checked, refreshing the page will show the current content and the browsers "
|
9876 |
"back and forth arrows will browse the history on the page."
|
9878 |
"Si coché, rafraîchir la page affichera le contenu courant et les boutons "
|
9879 |
"Précédent et Suivant du navigateur parcoureront l'historique sur la page."
|
9880 |
|
9881 |
+
#: wppa-settings-autosave.php:3560
|
9882 |
msgid ""
|
9883 |
"If unchecked, refreshing the page will re-display the content of the original "
|
9884 |
"page."
|
9885 |
msgstr ""
|
9886 |
"Si décoché, rafraîchir la page ré-affichera le contenu de la page originale."
|
9887 |
|
9888 |
+
#: wppa-settings-autosave.php:3561
|
9889 |
msgid ""
|
9890 |
"This will only work on browsers that support history.pushState() and therefor "
|
9891 |
"NOT in IE"
|
9893 |
"Cela ne marchera que sur les navigateurs qui supportent la fonction history."
|
9894 |
"pushState() et donc PAS dans IE"
|
9895 |
|
9896 |
+
#: wppa-settings-autosave.php:3562
|
9897 |
msgid "Switching this off will affect the browsers behaviour."
|
9898 |
msgstr "Désactiver ceci modifiera le comportement du navigateur."
|
9899 |
|
9900 |
+
#: wppa-settings-autosave.php:3569
|
9901 |
msgid "Render shortcode always"
|
9902 |
msgstr "Toujours tenir compte du shortcode"
|
9903 |
|
9904 |
+
#: wppa-settings-autosave.php:3570
|
9905 |
msgid "This will skip the check on proper initialisation."
|
9906 |
msgstr "Ceci désactive la vérification d'un démarrage correct."
|
9907 |
|
9908 |
+
#: wppa-settings-autosave.php:3571
|
9909 |
msgid ""
|
9910 |
"This setting is required for certain themes like Gantry to prevent the display "
|
9911 |
"of wppa placeholders like [WPPA+ Photo display]."
|
9913 |
"Ce réglage est requis pour certains thèmes comme Gantry pour empêcher "
|
9914 |
"l’affichage d'éléments de WPPA comme [WPPA+ Photo display]."
|
9915 |
|
9916 |
+
#: wppa-settings-autosave.php:3572
|
9917 |
#, php-format
|
9918 |
msgid ""
|
9919 |
"If this check is needed, you can use shortcodes like [wppa ...] only, not "
|
9922 |
"Si cette option est requise, vous ne pouvez utiliser que les shortcodes comme "
|
9923 |
"[wppa ...], pas les scripts comme %%wppa%%.\""
|
9924 |
|
9925 |
+
#: wppa-settings-autosave.php:3579
|
9926 |
msgid "Track viewcounts"
|
9927 |
msgstr "Tracer le nombre de vues"
|
9928 |
|
9929 |
+
#: wppa-settings-autosave.php:3580
|
9930 |
msgid "Register number of views of albums and photos."
|
9931 |
msgstr "Enregistrer le nombre de vues des albums et photos."
|
9932 |
|
9933 |
+
#: wppa-settings-autosave.php:3588
|
9934 |
msgid "Auto page"
|
9935 |
msgstr "Page auto"
|
9936 |
|
9937 |
+
#: wppa-settings-autosave.php:3589
|
9938 |
msgid "Create a wp page for every fullsize image."
|
9939 |
msgstr "Créer une page WP pour chaque image pleine taille."
|
9940 |
|
9941 |
+
#: wppa-settings-autosave.php:3593
|
9942 |
msgid "Please reload this page after changing!"
|
9943 |
msgstr "Veuillez recharger cette page après la modification!"
|
9944 |
|
9945 |
+
#: wppa-settings-autosave.php:3599
|
9946 |
msgid "Auto page display"
|
9947 |
msgstr "Affichage page auto"
|
9948 |
|
9949 |
+
#: wppa-settings-autosave.php:3600
|
9950 |
msgid "The type of display on the autopage pages."
|
9951 |
msgstr "Le type d'affichage des pages automatiques."
|
9952 |
|
9953 |
+
#: wppa-settings-autosave.php:3603
|
9954 |
msgid "Single photo"
|
9955 |
msgstr "Photo seule"
|
9956 |
|
9957 |
+
#: wppa-settings-autosave.php:3603
|
9958 |
msgid "Media type photo"
|
9959 |
msgstr "Media type photo"
|
9960 |
|
9961 |
+
#: wppa-settings-autosave.php:3603
|
9962 |
msgid "In the style of a slideshow"
|
9963 |
msgstr "Dans le style du diaporama"
|
9964 |
|
9965 |
+
#: wppa-settings-autosave.php:3610
|
9966 |
msgid "Auto page links"
|
9967 |
msgstr "Liens page auto"
|
9968 |
|
9969 |
+
#: wppa-settings-autosave.php:3611
|
9970 |
msgid "The location for the pagelinks."
|
9971 |
msgstr "Le positionnement des liens page."
|
9972 |
|
9973 |
+
#: wppa-settings-autosave.php:3614
|
9974 |
msgid "At top and bottom"
|
9975 |
msgstr "En haut et en bas"
|
9976 |
|
9977 |
+
#: wppa-settings-autosave.php:3621
|
9978 |
msgid "Defer javascript"
|
9979 |
msgstr "Report Javascript"
|
9980 |
|
9981 |
+
#: wppa-settings-autosave.php:3622
|
9982 |
msgid "Put javascript near the end of the page."
|
9983 |
msgstr "Met le Javascript vers la fin de la page."
|
9984 |
|
9985 |
+
#: wppa-settings-autosave.php:3623
|
9986 |
msgid ""
|
9987 |
"If checkd: May fix layout problems and broken slideshows. May speed up or slow "
|
9988 |
"down page appearing."
|
9990 |
"Si coché: peut régler des problèmes de disposition et diaporama mal rendus. "
|
9991 |
"Peut accélérer ou ralentir l'affichage de la page."
|
9992 |
|
9993 |
+
#: wppa-settings-autosave.php:3630
|
9994 |
msgid "Inline styles"
|
9995 |
msgstr "Styles inline"
|
9996 |
|
9997 |
+
#: wppa-settings-autosave.php:3631
|
9998 |
msgid "Set style specifications inline."
|
9999 |
msgstr "Régle les spécifications de style inline."
|
10000 |
|
10001 |
+
#: wppa-settings-autosave.php:3632
|
10002 |
msgid "If checked: May fix layout problems, but slows down page appearing."
|
10003 |
msgstr ""
|
10004 |
"Si coché: peut régler des problèmes de disposition, mais ralentit l'affichage "
|
10005 |
"de la page."
|
10006 |
|
10007 |
+
#: wppa-settings-autosave.php:3639
|
10008 |
msgid "Custom style"
|
10009 |
msgstr "Style personalisé"
|
10010 |
|
10011 |
+
#: wppa-settings-autosave.php:3640
|
10012 |
msgid "Enter custom style specs here."
|
10013 |
msgstr "Entrer les spécifications du style personnalisé ici."
|
10014 |
|
10015 |
+
#: wppa-settings-autosave.php:3648
|
10016 |
msgid "Use customized style file"
|
10017 |
msgstr "Utiliser fichier de style personnalisé"
|
10018 |
|
10019 |
+
#: wppa-settings-autosave.php:3649 wppa-settings-autosave.php:3658
|
10020 |
msgid "This feature is highly discouraged."
|
10021 |
msgstr "User de cette fonctionnalité est hautement déconseillé."
|
10022 |
|
10023 |
+
#: wppa-settings-autosave.php:3657
|
10024 |
msgid "Use customized theme file"
|
10025 |
msgstr "Utiliser fichier de thème personnalisé"
|
10026 |
|
10027 |
+
#: wppa-settings-autosave.php:3666
|
10028 |
msgid "Enable photo html access"
|
10029 |
msgstr "Autoriser l'accès HTML photo"
|
10030 |
|
10031 |
+
#: wppa-settings-autosave.php:3667
|
10032 |
msgid "Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
|
10033 |
msgstr ""
|
10034 |
"Crée des fichiers .htaccess dans ... /uploads/wppa/ et ... /uploads/wppa/"
|
10035 |
"thumbs/"
|
10036 |
|
10037 |
+
#: wppa-settings-autosave.php:3670
|
10038 |
msgid "create 'all access' .htaccess files"
|
10039 |
msgstr "créer des fichiers .htaccess « all access »"
|
10040 |
|
10041 |
+
#: wppa-settings-autosave.php:3671
|
10042 |
msgid "remove .htaccess files"
|
10043 |
msgstr "supprimer les fichiers .htaccess"
|
10044 |
|
10045 |
+
#: wppa-settings-autosave.php:3672
|
10046 |
msgid "create 'no hotlinking' .htaccess files"
|
10047 |
msgstr "ne créer des fichiers .htaccess « aucun hotlinking »"
|
10048 |
|
10049 |
+
#: wppa-settings-autosave.php:3673
|
10050 |
msgid "do not change existing .htaccess file(s)"
|
10051 |
msgstr "ne modifiez pas les fichiers .htaccess existant"
|
10052 |
|
10053 |
+
#: wppa-settings-autosave.php:3685
|
10054 |
msgid "Lazy or HTML comp"
|
10055 |
msgstr "HTML lazy ou avec compression"
|
10056 |
|
10057 |
+
#: wppa-settings-autosave.php:3686
|
10058 |
msgid "Tick this box when you use lazy load or html compression."
|
10059 |
msgstr "Cocher cette case quand vous utilisez lazy load ou la compression HTML."
|
10060 |
|
10061 |
+
#: wppa-settings-autosave.php:3687
|
10062 |
msgid ""
|
10063 |
"If the filmstrip images do not show up and you have a lazy load or html "
|
10064 |
"optimizing plugin active: Check this box"
|
10066 |
"Si les images filmstrip ne s'affichent pas et que vous utilisez lazy load ou "
|
10067 |
"un greffon d'optimisation HTML actif: cochez cette case"
|
10068 |
|
10069 |
+
#: wppa-settings-autosave.php:3694
|
10070 |
msgid "Thumbs first"
|
10071 |
msgstr "Vignettes en premier"
|
10072 |
|
10073 |
+
#: wppa-settings-autosave.php:3695
|
10074 |
msgid "When displaying album content: thumbnails before subalbums."
|
10075 |
msgstr ""
|
10076 |
"Lors de l'affichage du contenu de l'album: vignettes avant les albums fils."
|
10077 |
|
10078 |
+
#: wppa-settings-autosave.php:3703
|
10079 |
msgid "Login links"
|
10080 |
msgstr "Liens de connexion"
|
10081 |
|
10082 |
+
#: wppa-settings-autosave.php:3704
|
10083 |
msgid "You must login to... links to login page."
|
10084 |
msgstr "Vous devez vous connectez à... liens vers la page de connexion."
|
10085 |
|
10086 |
+
#: wppa-settings-autosave.php:3712
|
10087 |
msgid "Enable Video"
|
10088 |
msgstr "Activer vidéo"
|
10089 |
|
10090 |
+
#: wppa-settings-autosave.php:3713
|
10091 |
msgid "Enables video support."
|
10092 |
msgstr "Active le support de la vidéo."
|
10093 |
|
10094 |
+
#: wppa-settings-autosave.php:3722
|
10095 |
msgid "Enable Audio"
|
10096 |
msgstr "Activer audio"
|
10097 |
|
10098 |
+
#: wppa-settings-autosave.php:3723
|
10099 |
msgid "Enables audio support."
|
10100 |
msgstr "Active le support de l'audio."
|
10101 |
|
10102 |
+
#: wppa-settings-autosave.php:3731
|
10103 |
msgid "Enable 3D Stereo"
|
10104 |
msgstr "Activer 3D stéréo"
|
10105 |
|
10106 |
+
#: wppa-settings-autosave.php:3732
|
10107 |
msgid "Enables 3D stereo photo support."
|
10108 |
msgstr "Active le support de la photo stéréo 3D."
|
10109 |
|
10110 |
+
#: wppa-settings-autosave.php:3740
|
10111 |
msgid "Relative urls"
|
10112 |
msgstr "URLs ralatives"
|
10113 |
|
10114 |
+
#: wppa-settings-autosave.php:3741
|
10115 |
msgid "Use relative urls only."
|
10116 |
msgstr "Utiliser les URLs relatives uniquement."
|
10117 |
|
10118 |
+
#: wppa-settings-autosave.php:3749
|
10119 |
msgid "Capitalize tags and cats"
|
10120 |
msgstr "Capitaliser les tags et les cats"
|
10121 |
|
10122 |
+
#: wppa-settings-autosave.php:3750
|
10123 |
msgid "Format tags and cats to start with one capital character"
|
10124 |
msgstr "Balises de format tags et cats de commencer par un caractère de capital"
|
10125 |
|
10126 |
+
#: wppa-settings-autosave.php:3758
|
10127 |
msgid "Enable Admins Choice"
|
10128 |
msgstr "Activer Admins Choice"
|
10129 |
|
10130 |
+
#: wppa-settings-autosave.php:3759
|
10131 |
msgid "Enable the creation of zipfiles with selected photos."
|
10132 |
msgstr "Permettent de créer des zipfiles avec les photos sélectionnées."
|
10133 |
|
10134 |
+
#: wppa-settings-autosave.php:3760
|
10135 |
msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
|
10136 |
msgstr ""
|
10137 |
"Activer le widget de choix des Admins pour faire le zipfiles téléchargeable."
|
10138 |
|
10139 |
+
#: wppa-settings-autosave.php:3767
|
10140 |
msgid "Make owner like photoname"
|
10141 |
msgstr "Faire le propriétaire comme nom de photo"
|
10142 |
|
10143 |
+
#: wppa-settings-autosave.php:3768
|
10144 |
msgid "Change the owner to the user who's display name equals photoname."
|
10145 |
msgstr ""
|
10146 |
"Changer le propriétaire à l’utilisateur qui a afficher nom équivaut à nom de "
|
10147 |
"photo."
|
10148 |
|
10149 |
+
#: wppa-settings-autosave.php:3777
|
10150 |
msgid "Slideshow related settings"
|
10151 |
msgstr "Réglages pour le diaporama"
|
10152 |
|
10153 |
+
#: wppa-settings-autosave.php:3779
|
10154 |
msgid "V align"
|
10155 |
msgstr "Alignement vertical"
|
10156 |
|
10157 |
+
#: wppa-settings-autosave.php:3780
|
10158 |
msgid "Vertical alignment of slideshow images."
|
10159 |
msgstr "Alignement vertical des images du diaporama."
|
10160 |
|
10161 |
+
#: wppa-settings-autosave.php:3781
|
10162 |
msgid "Specify the vertical alignment of slideshow images."
|
10163 |
msgstr "Définit l'alignement vertical des images du diaporama."
|
10164 |
|
10165 |
+
#: wppa-settings-autosave.php:3782
|
10166 |
msgid ""
|
10167 |
"If you select --- none ---, the photos will not be centered horizontally "
|
10168 |
"either."
|
10170 |
"Si vous choisissez --- aucun ---, les photos ne seront pas non plus centrées "
|
10171 |
"horizontalement."
|
10172 |
|
10173 |
+
#: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:4049
|
10174 |
#: wppa-slideshow-widget.php:214
|
10175 |
msgid "top"
|
10176 |
msgstr "haut"
|
10177 |
|
10178 |
+
#: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:3798
|
10179 |
+
#: wppa-settings-autosave.php:4049 wppa-slideshow-widget.php:215
|
10180 |
#: wppa-tinymce-scripts.php:289 wppa-tinymce-shortcodes.php:615
|
10181 |
+
#: wppa-widget-admin.php:92
|
10182 |
msgid "center"
|
10183 |
msgstr "Centre"
|
10184 |
|
10185 |
+
#: wppa-settings-autosave.php:3784 wppa-settings-autosave.php:4049
|
10186 |
#: wppa-slideshow-widget.php:216
|
10187 |
msgid "bottom"
|
10188 |
msgstr "Bas"
|
10189 |
|
10190 |
+
#: wppa-settings-autosave.php:3784 wppa-slideshow-widget.php:217
|
10191 |
msgid "fit"
|
10192 |
msgstr "auto adaptation"
|
10193 |
|
10194 |
+
#: wppa-settings-autosave.php:3792
|
10195 |
msgid "H align"
|
10196 |
msgstr "Alignement horizontal"
|
10197 |
|
10198 |
+
#: wppa-settings-autosave.php:3793
|
10199 |
msgid "Horizontal alignment of slideshow images."
|
10200 |
msgstr "Alignement horizontal des images du diaporama."
|
10201 |
|
10202 |
+
#: wppa-settings-autosave.php:3794
|
10203 |
msgid ""
|
10204 |
"Specify the horizontal alignment of slideshow images. If you specify --- none "
|
10205 |
"--- , no horizontal alignment will take place."
|
10207 |
"Définit l'alignement horizontal des images du diaporama. Si vous choisissez "
|
10208 |
"--- aucun ---, il n'y aura pas d'alignement horizontal."
|
10209 |
|
10210 |
+
#: wppa-settings-autosave.php:3795
|
10211 |
msgid ""
|
10212 |
"This setting is only usefull when the Column Width differs from the Maximum "
|
10213 |
"Width."
|
10215 |
"Ce réglage n'est utile que lorsque la largeur de colonne diffère de la largeur "
|
10216 |
"maximum."
|
10217 |
|
10218 |
+
#: wppa-settings-autosave.php:3796
|
10219 |
msgid "(Settings I-A1 and I-B1)"
|
10220 |
msgstr "(Réglages I-A1 et I-B1)"
|
10221 |
|
10222 |
+
#: wppa-settings-autosave.php:3806
|
10223 |
msgid "Start slideshow running."
|
10224 |
msgstr "Démarrage du diaporama."
|
10225 |
|
10226 |
+
#: wppa-settings-autosave.php:3807
|
10227 |
msgid ""
|
10228 |
"If you select \"running\", the slideshow will start running immediately, if "
|
10229 |
"you select \"still at first photo\", the first photo will be displayed in "
|
10233 |
"choisissez \"fixe: première photo\", la première photo sera affichée en mode "
|
10234 |
"navigation."
|
10235 |
|
10236 |
+
#: wppa-settings-autosave.php:3808
|
10237 |
msgid ""
|
10238 |
"If you select \"still at first norated\", the first photo that the visitor did "
|
10239 |
"not gave a rating will be displayed in browse mode."
|
10241 |
"Si vous choisissez \"fixe: première photo non notée\", la première photo que "
|
10242 |
"le visiteur n'a pas notée sera affichée en mode navigation."
|
10243 |
|
10244 |
+
#: wppa-settings-autosave.php:3810
|
10245 |
msgid "running"
|
10246 |
msgstr "immédiat"
|
10247 |
|
10248 |
+
#: wppa-settings-autosave.php:3811
|
10249 |
msgid "still at first photo"
|
10250 |
msgstr "fixe: première photo"
|
10251 |
|
10252 |
+
#: wppa-settings-autosave.php:3812
|
10253 |
msgid "still at first norated"
|
10254 |
msgstr "fixe: première photo non notée"
|
10255 |
|
10256 |
+
#: wppa-settings-autosave.php:3823
|
10257 |
msgid "Start slideonly"
|
10258 |
msgstr "Démarrer diapo seulement"
|
10259 |
|
10260 |
+
#: wppa-settings-autosave.php:3824
|
10261 |
msgid "Start slideonly slideshow running."
|
10262 |
msgstr "Démarrage du diaporama en mode diapo seulement."
|
10263 |
|
10264 |
+
#: wppa-settings-autosave.php:3832 wppa-settings-autosave.php:4706
|
10265 |
msgid "Video autostart"
|
10266 |
msgstr "Démarrage auto des vidéos"
|
10267 |
|
10268 |
+
#: wppa-settings-autosave.php:3833
|
10269 |
msgid "Autoplay videos in slideshows."
|
10270 |
msgstr "Joue les vidéos automatiquement dans les diaporamas."
|
10271 |
|
10272 |
+
#: wppa-settings-autosave.php:3842 wppa-settings-autosave.php:4715
|
10273 |
msgid "Audio autostart"
|
10274 |
msgstr "Démarrage auto des fichiers audio"
|
10275 |
|
10276 |
+
#: wppa-settings-autosave.php:3843
|
10277 |
msgid "Autoplay audios in slideshows."
|
10278 |
msgstr "Joue les fichiers audio automatiquement dans les diaporamas."
|
10279 |
|
10280 |
+
#: wppa-settings-autosave.php:3851
|
10281 |
msgid "Animation type"
|
10282 |
msgstr "Type d'animation"
|
10283 |
|
10284 |
+
#: wppa-settings-autosave.php:3852
|
10285 |
msgid "The way successive slides appear."
|
10286 |
msgstr "La façon dont les diapo successives s’enchaînent."
|
10287 |
|
10288 |
+
#: wppa-settings-autosave.php:3853
|
10289 |
msgid ""
|
10290 |
"Select the way the old slide is to be replaced by the new one in the slideshow/"
|
10291 |
"browse fullsize display."
|
10293 |
"Choisir la façon dont la nouvelle diapo remplace l'ancienne dans l’affichage "
|
10294 |
"pleine taille du diaporama/navigation."
|
10295 |
|
10296 |
+
#: wppa-settings-autosave.php:3855
|
10297 |
msgid "Fade out and in simultaneous"
|
10298 |
msgstr "Fondu simultané"
|
10299 |
|
10300 |
+
#: wppa-settings-autosave.php:3856
|
10301 |
msgid "Fade in after fade out"
|
10302 |
msgstr "Fondu enchaîné"
|
10303 |
|
10304 |
+
#: wppa-settings-autosave.php:3857
|
10305 |
msgid "Shift adjacent"
|
10306 |
msgstr "Translation adjacente"
|
10307 |
|
10308 |
+
#: wppa-settings-autosave.php:3858
|
10309 |
msgid "Stack on"
|
10310 |
msgstr "Empilage"
|
10311 |
|
10312 |
+
#: wppa-settings-autosave.php:3859
|
10313 |
msgid "Stack off"
|
10314 |
msgstr "Dés-empilage"
|
10315 |
|
10316 |
+
#: wppa-settings-autosave.php:3860
|
10317 |
msgid "Turn over"
|
10318 |
msgstr "Roulement"
|
10319 |
|
10320 |
+
#: wppa-settings-autosave.php:3874
|
10321 |
msgid "Timeout"
|
10322 |
msgstr "Timeout"
|
10323 |
|
10324 |
+
#: wppa-settings-autosave.php:3875
|
10325 |
msgid "Slideshow timeout."
|
10326 |
msgstr "Timeout du diaporama."
|
10327 |
|
10328 |
+
#: wppa-settings-autosave.php:3876
|
10329 |
msgid ""
|
10330 |
"Select the time a single slide will be visible when the slideshow is started."
|
10331 |
msgstr ""
|
10332 |
"Choisir le temps pendant lequel une diapo sera visible quand le diaporama est "
|
10333 |
"démarré."
|
10334 |
|
10335 |
+
#: wppa-settings-autosave.php:3885
|
10336 |
msgid "Speed"
|
10337 |
msgstr "Vitesse"
|
10338 |
|
10339 |
+
#: wppa-settings-autosave.php:3886
|
10340 |
msgid "Slideshow animation speed."
|
10341 |
msgstr "Vitesse d'animation du diaporama."
|
10342 |
|
10343 |
+
#: wppa-settings-autosave.php:3887
|
10344 |
msgid "Specify the animation speed to be used in slideshows."
|
10345 |
msgstr "Définir la vitesse d'animation à utiliser dans les diaporamas."
|
10346 |
|
10347 |
+
#: wppa-settings-autosave.php:3888
|
10348 |
msgid "This is the time it takes a photo to fade in or out."
|
10349 |
msgstr "C'est le temps que met une photo à apparaître ou à s'estomper."
|
10350 |
|
10351 |
+
#: wppa-settings-autosave.php:3890 wppa-settings-autosave.php:4244
|
10352 |
+
#: wppa-settings-autosave.php:4652 wppa-settings-autosave.php:6481
|
10353 |
+
#: wppa-settings-autosave.php:7594 wppa-settings-autosave.php:7605
|
10354 |
+
#: wppa-settings-autosave.php:7767
|
10355 |
msgid "--- off ---"
|
10356 |
msgstr "--- désactivé ---"
|
10357 |
|
10358 |
+
#: wppa-settings-autosave.php:3890
|
10359 |
msgid "very fast (200 ms.)"
|
10360 |
msgstr "très rapide (200 ms.)"
|
10361 |
|
10362 |
+
#: wppa-settings-autosave.php:3890
|
10363 |
msgid "fast (400 ms.)"
|
10364 |
msgstr "rapide (400 ms.)"
|
10365 |
|
10366 |
+
#: wppa-settings-autosave.php:3890
|
10367 |
msgid "normal (800 ms.)"
|
10368 |
msgstr "normal (800 ms.)"
|
10369 |
|
10370 |
+
#: wppa-settings-autosave.php:3890
|
10371 |
msgid "slow (1.2 s.)"
|
10372 |
msgstr "lent (1.2 s.)"
|
10373 |
|
10374 |
+
#: wppa-settings-autosave.php:3890
|
10375 |
msgid "very slow (2 s.)"
|
10376 |
msgstr "très lent (2 s.)"
|
10377 |
|
10378 |
+
#: wppa-settings-autosave.php:3890
|
10379 |
msgid "extremely slow (4 s.)"
|
10380 |
msgstr "extrèmement lent (4 s.)"
|
10381 |
|
10382 |
+
#: wppa-settings-autosave.php:3897
|
10383 |
msgid "Slide hover pause"
|
10384 |
msgstr "Pause lors du survol"
|
10385 |
|
10386 |
+
#: wppa-settings-autosave.php:3898
|
10387 |
msgid "Running Slideshow suspends during mouse hover."
|
10388 |
msgstr "Le diaporama s'arrête lorsque le curseur de la souris le survole."
|
10389 |
|
10390 |
+
#: wppa-settings-autosave.php:3906
|
10391 |
msgid "Slideshow wrap around"
|
10392 |
msgstr "Bouclage du diaporama"
|
10393 |
|
10394 |
+
#: wppa-settings-autosave.php:3907
|
10395 |
msgid "The slideshow wraps around the start and end"
|
10396 |
msgstr "Le diaporama passe en boucle"
|
10397 |
|
10398 |
+
#: wppa-settings-autosave.php:3915
|
10399 |
msgid "Full desc align"
|
10400 |
msgstr "Alignement desc. pleine taille"
|
10401 |
|
10402 |
+
#: wppa-settings-autosave.php:3916
|
10403 |
msgid "The alignment of the descriptions under fullsize images and slideshows."
|
10404 |
msgstr ""
|
10405 |
"L'alignement des descriptions sous les images pleine taille et diaporamas."
|
10406 |
|
10407 |
+
#: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4037
|
10408 |
+
#: wppa-settings-autosave.php:4140
|
10409 |
msgid "Left"
|
10410 |
msgstr "Gauche"
|
10411 |
|
10412 |
+
#: wppa-settings-autosave.php:3919
|
10413 |
msgid "Center"
|
10414 |
msgstr "Centre"
|
10415 |
|
10416 |
+
#: wppa-settings-autosave.php:3919 wppa-settings-autosave.php:4037
|
10417 |
+
#: wppa-settings-autosave.php:4140
|
10418 |
msgid "Right"
|
10419 |
msgstr "Droite"
|
10420 |
|
10421 |
+
#: wppa-settings-autosave.php:3926
|
10422 |
msgid "Remove redundant space"
|
10423 |
msgstr "Enlever les espaces répétés"
|
10424 |
|
10425 |
+
#: wppa-settings-autosave.php:3927
|
10426 |
msgid "Removes unwanted <p> and <br> tags in fullsize descriptions."
|
10427 |
msgstr ""
|
10428 |
"Enlève les balises <p> et <br> dans les descriptions pleine taille."
|
10429 |
|
10430 |
+
#: wppa-settings-autosave.php:3928
|
10431 |
msgid ""
|
10432 |
"This setting has only effect when Table IX-A7 (foreign shortcodes) is checked."
|
10433 |
msgstr ""
|
10434 |
"Ce réglage n'a d'effet que lorsque table IX-A7 (shortcodes étrangers) est "
|
10435 |
"coché."
|
10436 |
|
10437 |
+
#: wppa-settings-autosave.php:3935
|
10438 |
msgid "Run wpautop on description"
|
10439 |
msgstr "Exécuter WPautop sur les descriptions"
|
10440 |
|
10441 |
+
#: wppa-settings-autosave.php:3936
|
10442 |
msgid "Adds <p> and <br> tags in fullsize descriptions."
|
10443 |
msgstr ""
|
10444 |
"Ajoute les balises <p> et <br> dans les descriptions pleine taille."
|
10445 |
|
10446 |
+
#: wppa-settings-autosave.php:3944
|
10447 |
msgid "Auto open comments"
|
10448 |
msgstr "Ouverture auto des commentaires"
|
10449 |
|
10450 |
+
#: wppa-settings-autosave.php:3945
|
10451 |
msgid "Automatic opens comments box when slideshow does not run."
|
10452 |
msgstr ""
|
10453 |
"Ouverture automatique de la boîte de commentaires lorsque le diaporama ne "
|
10454 |
"tourne pas."
|
10455 |
|
10456 |
+
#: wppa-settings-autosave.php:3953
|
10457 |
msgid "Film hover goto"
|
10458 |
msgstr "Aller à lors du survol du filmstrip"
|
10459 |
|
10460 |
+
#: wppa-settings-autosave.php:3954
|
10461 |
msgid "Go to slide when hovering filmstrip thumbnail."
|
10462 |
msgstr "Va à la diapo lors du survol de la vignette filmstrip."
|
10463 |
|
10464 |
+
#: wppa-settings-autosave.php:3955
|
10465 |
msgid "Do not use this setting when slides have different aspect ratios!"
|
10466 |
msgstr "Ne pas utiliser ce réglage quand les diapo ont des ratios différents!"
|
10467 |
|
10468 |
+
#: wppa-settings-autosave.php:3962
|
10469 |
msgid "Slide swipe"
|
10470 |
msgstr "Swipe sur les diapos"
|
10471 |
|
10472 |
+
#: wppa-settings-autosave.php:3963
|
10473 |
msgid "Enable touch events swipe left-right on slides on touch screens."
|
10474 |
msgstr ""
|
10475 |
"Active les fonctionnalités Swipe gauche-droite pour les diapos sur les écrans "
|
10476 |
"tactiles."
|
10477 |
|
10478 |
+
#: wppa-settings-autosave.php:3971
|
10479 |
msgid "Slide page Ajax"
|
10480 |
msgstr "Ajax page diapo"
|
10481 |
|
10482 |
+
#: wppa-settings-autosave.php:3972
|
10483 |
msgid "Pagelinks slideshow use Ajax"
|
10484 |
msgstr "Les diaporamas des pages de liens utilisent Ajax"
|
10485 |
|
10486 |
+
#: wppa-settings-autosave.php:3973
|
10487 |
msgid "On some systems you need to disable ajax here."
|
10488 |
msgstr "Sur certains systèmes, vous devrez désactiver Ajax ici."
|
10489 |
|
10490 |
+
#: wppa-settings-autosave.php:3980
|
10491 |
msgid "Thumbnail related settings"
|
10492 |
msgstr "Réglages pour les vignettes"
|
10493 |
|
10494 |
+
#: wppa-settings-autosave.php:3983
|
10495 |
msgid "Photo ordering sequence method."
|
10496 |
msgstr "Méthode utilisée pour le tri des photos."
|
10497 |
|
10498 |
+
#: wppa-settings-autosave.php:3984
|
10499 |
msgid ""
|
10500 |
"Specify the way the photos should be ordered. This is the default setting. You "
|
10501 |
"can overrule the default sorting order on a per album basis."
|
10504 |
"défaut. Vous avez la possibilité de régler la méthode de tri séparément pour "
|
10505 |
"chaque album."
|
10506 |
|
10507 |
+
#: wppa-settings-autosave.php:4021
|
10508 |
msgid "Thumbnail type"
|
10509 |
msgstr "Type de vignette"
|
10510 |
|
10511 |
+
#: wppa-settings-autosave.php:4022
|
10512 |
msgid "The way the thumbnail images are displayed."
|
10513 |
msgstr "La façon dont les vignettes sont affichées."
|
10514 |
|
10515 |
+
#: wppa-settings-autosave.php:4023
|
10516 |
msgid ""
|
10517 |
"You may select an altenative display method for thumbnails. Note that some of "
|
10518 |
"the thumbnail settings do not apply to all available display methods."
|
10521 |
"certains réglages pour les vignettes ne s'appliquent pas à toutes les méthodes "
|
10522 |
"d'affichage."
|
10523 |
|
10524 |
+
#: wppa-settings-autosave.php:4025
|
10525 |
msgid "like album covers"
|
10526 |
msgstr "comme les couvertures d'album"
|
10527 |
|
10528 |
+
#: wppa-settings-autosave.php:4025
|
10529 |
msgid "like album covers mcr"
|
10530 |
msgstr "comme mcr des couvertures d'album"
|
10531 |
|
10532 |
+
#: wppa-settings-autosave.php:4025
|
10533 |
msgid "masonry style columns"
|
10534 |
msgstr "colonnes style maçonnerie"
|
10535 |
|
10536 |
+
#: wppa-settings-autosave.php:4025
|
10537 |
msgid "masonry style rows"
|
10538 |
msgstr "lignes style maçonnerie"
|
10539 |
|
10540 |
+
#: wppa-settings-autosave.php:4033 wppa-settings-autosave.php:4134
|
10541 |
msgid "Placement"
|
10542 |
msgstr "Placement"
|
10543 |
|
10544 |
+
#: wppa-settings-autosave.php:4034
|
10545 |
msgid "Thumbnail image left or right."
|
10546 |
msgstr "vignette à gauche ou a droite."
|
10547 |
|
10548 |
+
#: wppa-settings-autosave.php:4035
|
10549 |
msgid "Indicate the placement position of the thumbnailphoto you wish."
|
10550 |
msgstr "Indique l'emplacement voulu de la vignette photo."
|
10551 |
|
10552 |
+
#: wppa-settings-autosave.php:4044
|
10553 |
msgid "Vertical alignment"
|
10554 |
msgstr "Alignement vertical"
|
10555 |
|
10556 |
+
#: wppa-settings-autosave.php:4045
|
10557 |
msgid "Vertical alignment of thumbnails."
|
10558 |
msgstr "Alignement vertical des vignettes."
|
10559 |
|
10560 |
+
#: wppa-settings-autosave.php:4046
|
10561 |
msgid ""
|
10562 |
"Specify the vertical alignment of thumbnail images. Use this setting when "
|
10563 |
"albums contain both portrait and landscape photos."
|
10565 |
"Spécifie l’alignement vertical des vignettes. Utiliser ce réglage quand les "
|
10566 |
"couvertures d'album contiennent des photos en mode portrait et paysage."
|
10567 |
|
10568 |
+
#: wppa-settings-autosave.php:4047
|
10569 |
msgid ""
|
10570 |
"It is NOT recommended to use the value --- default ---; it will affect the "
|
10571 |
"horizontal alignment also and is meant to be used with custom css."
|
10574 |
"l'alignement horizontal aussi et il est prévu pour être utilisé avec le CSS "
|
10575 |
"personnalisé."
|
10576 |
|
10577 |
+
#: wppa-settings-autosave.php:4056
|
10578 |
msgid "Thumb mouseover"
|
10579 |
msgstr "Survol vignette"
|
10580 |
|
10581 |
+
#: wppa-settings-autosave.php:4057
|
10582 |
msgid "Apply thumbnail mouseover effect."
|
10583 |
msgstr "Appliquer l'effet de survol des vignettes."
|
10584 |
|
10585 |
+
#: wppa-settings-autosave.php:4058
|
10586 |
msgid "Check this box to use mouseover effect on thumbnail images."
|
10587 |
msgstr "Cochez cette case pour utiliser l'effet de survol sur les vignettes."
|
10588 |
|
10589 |
+
#: wppa-settings-autosave.php:4066
|
10590 |
msgid "Thumb opacity"
|
10591 |
msgstr "Opacité des vignettes"
|
10592 |
|
10593 |
+
#: wppa-settings-autosave.php:4067 wppa-settings-autosave.php:4159
|
10594 |
msgid "Initial opacity value."
|
10595 |
msgstr "Valeur d'opacité initiale."
|
10596 |
|
10597 |
+
#: wppa-settings-autosave.php:4068 wppa-settings-autosave.php:4160
|
10598 |
+
#: wppa-settings-autosave.php:4290
|
10599 |
msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
|
10600 |
msgstr "Entrer le pourcentage d'opacité. 100% : opaque, 0% : transparent"
|
10601 |
|
10602 |
+
#: wppa-settings-autosave.php:4070 wppa-settings-autosave.php:4162
|
10603 |
+
#: wppa-settings-autosave.php:4293 wppa-settings-autosave.php:4632
|
10604 |
msgid "%"
|
10605 |
msgstr "%"
|
10606 |
|
10607 |
+
#: wppa-settings-autosave.php:4075
|
10608 |
msgid "Thumb popup"
|
10609 |
msgstr "Popup vignette"
|
10610 |
|
10611 |
+
#: wppa-settings-autosave.php:4076
|
10612 |
msgid "Use popup effect on thumbnail images."
|
10613 |
msgstr "Utiliser l'effet popup sur les vignettes."
|
10614 |
|
10615 |
+
#: wppa-settings-autosave.php:4077
|
10616 |
msgid "Thumbnails pop-up to a larger image when hovered."
|
10617 |
msgstr ""
|
10618 |
"Une vue plus grande de l'image s'affiche dans un popup lorsqu'on survole la "
|
10619 |
"vignette."
|
10620 |
|
10621 |
+
#: wppa-settings-autosave.php:4085
|
10622 |
msgid "Align subtext"
|
10623 |
msgstr "aligner le sous texte"
|
10624 |
|
10625 |
+
#: wppa-settings-autosave.php:4086
|
10626 |
msgid "Set thumbnail subtext on equal height."
|
10627 |
msgstr "Régler le sous texte des vignettes à hauteur égale."
|
10628 |
|
10629 |
+
#: wppa-settings-autosave.php:4094
|
10630 |
msgid "Album and covers related settings"
|
10631 |
msgstr "Réglages pour les albums et les couvertures"
|
10632 |
|
10633 |
+
#: wppa-settings-autosave.php:4096
|
10634 |
msgid "Album order"
|
10635 |
msgstr "Tri des albums"
|
10636 |
|
10637 |
+
#: wppa-settings-autosave.php:4097
|
10638 |
msgid "Album ordering sequence method."
|
10639 |
msgstr "Méthode de tri des albums."
|
10640 |
|
10641 |
+
#: wppa-settings-autosave.php:4098
|
10642 |
msgid "Specify the way the albums should be ordered."
|
10643 |
msgstr "Spécifier la façon dont les albums doivent être triés."
|
10644 |
|
10645 |
+
#: wppa-settings-autosave.php:4123
|
10646 |
msgid "Default coverphoto selection"
|
10647 |
msgstr "Sélection de la photo de couverture par défaut"
|
10648 |
|
10649 |
+
#: wppa-settings-autosave.php:4124
|
10650 |
msgid "Default select cover photo method."
|
10651 |
msgstr "Réglage par défaut de la sélection de la photo de couverture."
|
10652 |
|
10653 |
+
#: wppa-settings-autosave.php:4125
|
10654 |
msgid ""
|
10655 |
"This is the initial value on album creation only. It can be overruled on the "
|
10656 |
"edit album page."
|
10658 |
"C'est la valeur initiale à la création de l'album. Cela peut être modifié dans "
|
10659 |
"la page de modification de l'album."
|
10660 |
|
10661 |
+
#: wppa-settings-autosave.php:4126
|
10662 |
msgid "Random from album"
|
10663 |
msgstr "Aléatoire à partir de l'album"
|
10664 |
|
10665 |
+
#: wppa-settings-autosave.php:4126
|
10666 |
msgid "Random featured from album"
|
10667 |
msgstr "Aléatoire recommandé de l'album"
|
10668 |
|
10669 |
+
#: wppa-settings-autosave.php:4126
|
10670 |
msgid "Most recently added to album"
|
10671 |
msgstr "Dernières photos mises à jour"
|
10672 |
|
10673 |
+
#: wppa-settings-autosave.php:4126
|
10674 |
msgid "Random from album or any sub album"
|
10675 |
msgstr "Aléatoire depuis un album ou (fils)"
|
10676 |
|
10677 |
+
#: wppa-settings-autosave.php:4135
|
10678 |
msgid "Cover image position."
|
10679 |
msgstr "Position de l'image de couverture."
|
10680 |
|
10681 |
+
#: wppa-settings-autosave.php:4136
|
10682 |
msgid ""
|
10683 |
"Enter the position that you want to be used for the default album cover "
|
10684 |
"selected in Table IV-D6."
|
10686 |
"Entrer le placement que vous voulez utiliser par défaut pour la couverture "
|
10687 |
"d'album par défaut choisie dans table IV-D6."
|
10688 |
|
10689 |
+
#: wppa-settings-autosave.php:4137
|
10690 |
msgid ""
|
10691 |
"For covertype Image Factory: left will be treated as top and right will be "
|
10692 |
"treted as bottom."
|
10694 |
"Pour covertype Image Factory: gauche sera considéré comme haut et droite comme "
|
10695 |
"bas."
|
10696 |
|
10697 |
+
#: wppa-settings-autosave.php:4138
|
10698 |
msgid ""
|
10699 |
"For covertype Long Descriptions: top will be treated as left and bottom will "
|
10700 |
"be treted as right."
|
10702 |
"Pour covertype Long Descriptions: haut sera considéré comme gauche et bas "
|
10703 |
"comme droite."
|
10704 |
|
10705 |
+
#: wppa-settings-autosave.php:4148
|
10706 |
msgid "Cover mouseover"
|
10707 |
msgstr "Survol couverture"
|
10708 |
|
10709 |
+
#: wppa-settings-autosave.php:4149
|
10710 |
msgid "Apply coverphoto mouseover effect."
|
10711 |
msgstr "Appliquer l'effet de survol de la photo de couverture."
|
10712 |
|
10713 |
+
#: wppa-settings-autosave.php:4150
|
10714 |
msgid "Check this box to use mouseover effect on cover images."
|
10715 |
msgstr ""
|
10716 |
"Cochez cette case pour utiliser l'effet de survol sur les photos de couverture."
|
10717 |
|
10718 |
+
#: wppa-settings-autosave.php:4158
|
10719 |
msgid "Cover opacity"
|
10720 |
msgstr "Opacité de la couverture"
|
10721 |
|
10722 |
+
#: wppa-settings-autosave.php:4167
|
10723 |
msgid "Cover type"
|
10724 |
msgstr "Type de couverture"
|
10725 |
|
10726 |
+
#: wppa-settings-autosave.php:4168
|
10727 |
msgid "Select the default cover type."
|
10728 |
msgstr "Choisir le type de couverture par défaut."
|
10729 |
|
10730 |
+
#: wppa-settings-autosave.php:4169
|
10731 |
msgid ""
|
10732 |
"Types with the addition mcr are suitable for Multi Column in a Responsive theme"
|
10733 |
msgstr ""
|
10734 |
"Les types avec l'ajout de mcr sont appropriés pour le Multi Colonne dans un "
|
10735 |
"thème Responsive"
|
10736 |
|
10737 |
+
#: wppa-settings-autosave.php:4192
|
10738 |
msgid "The umber of coverphotos. Must be > 1 and < 25."
|
10739 |
msgstr "Le nombre de photos de couvertures. Doit être > 1 et < 25."
|
10740 |
|
10741 |
+
#: wppa-settings-autosave.php:4200
|
10742 |
msgid "Cats include subs"
|
10743 |
msgstr "Les cats comprennent les sous-albums"
|
10744 |
|
10745 |
+
#: wppa-settings-autosave.php:4201
|
10746 |
msgid "Child albums are included in Category based shortcodes."
|
10747 |
msgstr "Albums enfant sont inclus dans la catégorie basé shortcodes."
|
10748 |
|
10749 |
+
#: wppa-settings-autosave.php:4202
|
10750 |
msgid ""
|
10751 |
"When you use album=\"#cat,...\", in a shortcode, the child albums will be "
|
10752 |
"included."
|
10754 |
"Lorsque vous utilisez album=\"#cat,...\", dans un shortcode, les albums "
|
10755 |
"d’enfant seront incluses."
|
10756 |
|
10757 |
+
#: wppa-settings-autosave.php:4210
|
10758 |
msgid "Rating related settings"
|
10759 |
msgstr "Réglages pour la notation"
|
10760 |
|
10761 |
+
#: wppa-settings-autosave.php:4212
|
10762 |
msgid "Rating login"
|
10763 |
msgstr "Connexion pour la notation"
|
10764 |
|
10765 |
+
#: wppa-settings-autosave.php:4213
|
10766 |
msgid "Users must login to rate photos."
|
10767 |
msgstr "Les utilisateurs doivent se connecter pour voter."
|
10768 |
|
10769 |
+
#: wppa-settings-autosave.php:4214
|
10770 |
msgid ""
|
10771 |
"If users want to vote for a photo (rating 1..5 stars) the must login first. "
|
10772 |
"The avarage rating will always be displayed as long as the rating system is "
|
10776 |
"doivent se connecter avant. La note moyenne sera toujours affichée lorsque la "
|
10777 |
"notation est active."
|
10778 |
|
10779 |
+
#: wppa-settings-autosave.php:4221
|
10780 |
msgid "Rating change"
|
10781 |
msgstr "Changement de la notation"
|
10782 |
|
10783 |
+
#: wppa-settings-autosave.php:4222 wppa-settings-autosave.php:4223
|
10784 |
msgid "Users may change their ratings."
|
10785 |
msgstr "Les utilisateurs peuvent changer leurs notations."
|
10786 |
|
10787 |
+
#: wppa-settings-autosave.php:4224 wppa-settings-autosave.php:4272
|
10788 |
+
#: wppa-settings-autosave.php:4291 wppa-settings-autosave.php:4304
|
10789 |
+
#: wppa-settings-autosave.php:4314 wppa-settings-autosave.php:4324
|
10790 |
+
#: wppa-settings-autosave.php:4334 wppa-settings-autosave.php:4343
|
10791 |
msgid ""
|
10792 |
"If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
|
10793 |
msgstr ""
|
10794 |
"Si \"One button vote\" est choisi dans table I-E1, ce réglage n'a pas de sens"
|
10795 |
|
10796 |
+
#: wppa-settings-autosave.php:4231
|
10797 |
msgid "Rating multi"
|
10798 |
msgstr "Multi notation"
|
10799 |
|
10800 |
+
#: wppa-settings-autosave.php:4232
|
10801 |
msgid "Users may give multiple votes."
|
10802 |
msgstr "Les utilisateurs peuvent voter plusieurs fois."
|
10803 |
|
10804 |
+
#: wppa-settings-autosave.php:4233
|
10805 |
msgid ""
|
10806 |
"Users may give multiple votes. (This has no effect when users may change their "
|
10807 |
"votes.)"
|
10809 |
"Les utilisateurs peuvent voter plusieurs fois. (Cela n'a pas d'effet quand les "
|
10810 |
"utilisateurs peuvent changer leurs votes.)"
|
10811 |
|
10812 |
+
#: wppa-settings-autosave.php:4240
|
10813 |
#, fuzzy
|
10814 |
msgid "Rating daily"
|
10815 |
msgstr "Note quotidienne"
|
10816 |
|
10817 |
+
#: wppa-settings-autosave.php:4241
|
10818 |
#, fuzzy
|
10819 |
msgid "Users may rate only once per period"
|
10820 |
msgstr "Les utilisateurs peuvent évaluer une seule fois par période"
|
10821 |
|
10822 |
+
#: wppa-settings-autosave.php:4244
|
10823 |
#, fuzzy
|
10824 |
msgid "Week"
|
10825 |
msgstr "semaine."
|
10826 |
|
10827 |
+
#: wppa-settings-autosave.php:4244
|
10828 |
#, fuzzy
|
10829 |
msgid "Day"
|
10830 |
msgstr "jour."
|
10831 |
|
10832 |
+
#: wppa-settings-autosave.php:4244
|
10833 |
#, fuzzy
|
10834 |
msgid "Hour"
|
10835 |
msgstr "heure."
|
10836 |
|
10837 |
+
#: wppa-settings-autosave.php:4251
|
10838 |
msgid "Rate own photos"
|
10839 |
msgstr "Noter ses propres photos"
|
10840 |
|
10841 |
+
#: wppa-settings-autosave.php:4252
|
10842 |
msgid "It is allowed to rate photos by the uploader himself."
|
10843 |
msgstr "L'utilisateur qui a chargé une photo peut aussi la noter."
|
10844 |
|
10845 |
+
#: wppa-settings-autosave.php:4260
|
10846 |
msgid "Rating requires comment"
|
10847 |
msgstr "Commentaire requis pour notation"
|
10848 |
|
10849 |
+
#: wppa-settings-autosave.php:4261
|
10850 |
msgid "Users must clarify their vote in a comment."
|
10851 |
msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
|
10852 |
|
10853 |
+
#: wppa-settings-autosave.php:4270
|
10854 |
msgid "This value counts dislike rating."
|
10855 |
msgstr "Cette valeur compte les notes défavorables."
|
10856 |
|
10857 |
+
#: wppa-settings-autosave.php:4271
|
10858 |
msgid ""
|
10859 |
"This value will be used for a dislike rating on calculation of avarage ratings."
|
10860 |
msgstr ""
|
10861 |
"Cette valeur sera utilisée pour une note des avis défavorables dans le calcul "
|
10862 |
"des notes moyennes."
|
10863 |
|
10864 |
+
#: wppa-settings-autosave.php:4274
|
10865 |
msgid "points"
|
10866 |
msgstr "points"
|
10867 |
|
10868 |
+
#: wppa-settings-autosave.php:4279
|
10869 |
msgid "Next after vote"
|
10870 |
msgstr "Suivant après le vote"
|
10871 |
|
10872 |
+
#: wppa-settings-autosave.php:4280
|
10873 |
msgid "Goto next slide after voting"
|
10874 |
msgstr "Aller à la diapositive suivante après le vote"
|
10875 |
|
10876 |
+
#: wppa-settings-autosave.php:4281
|
10877 |
msgid ""
|
10878 |
"If checked, the visitor goes straight to the slide following the slide he "
|
10879 |
"voted. This will speed up mass voting."
|
10881 |
"Si coché, le visiteur va directement à la diapo suivant celle pour laquelle il "
|
10882 |
"a voté. Cela accélère le vote en masse."
|
10883 |
|
10884 |
+
#: wppa-settings-autosave.php:4288
|
10885 |
msgid "Star off opacity"
|
10886 |
msgstr "Opacité étoile éteinte"
|
10887 |
|
10888 |
+
#: wppa-settings-autosave.php:4289
|
10889 |
msgid "Rating star off state opacity value."
|
10890 |
msgstr "Valeur de l'opacité de l'étoile pour l'état éteint."
|
10891 |
|
10892 |
+
#: wppa-settings-autosave.php:4299
|
10893 |
msgid "Notify admin every x times."
|
10894 |
msgstr "Notifier l'administrateur toutes les x fois."
|
10895 |
|
10896 |
+
#: wppa-settings-autosave.php:4300
|
10897 |
msgid ""
|
10898 |
"If this number is positive, there will be a thumb down icon in the rating bar."
|
10899 |
msgstr ""
|
10900 |
"Si ce nombre est positif, il y aura une icône pouce bas dans la barre de "
|
10901 |
"notation."
|
10902 |
|
10903 |
+
#: wppa-settings-autosave.php:4301
|
10904 |
msgid ""
|
10905 |
"Cicking the icon indicates a user wants to report that an image is "
|
10906 |
"inappropiate."
|
10908 |
"Un utilisateur qui voudra signaler qu'une image est inappropriée n'aura qu'a "
|
10909 |
"cliquer sur cette icône."
|
10910 |
|
10911 |
+
#: wppa-settings-autosave.php:4302
|
10912 |
msgid "Admin will be notified by email after every x reports."
|
10913 |
msgstr "L'administrateur sera notifié par email tous les x signalements."
|
10914 |
|
10915 |
+
#: wppa-settings-autosave.php:4303 wppa-settings-autosave.php:4313
|
10916 |
+
#: wppa-settings-autosave.php:4323
|
10917 |
msgid "A value of 0 disables this feature."
|
10918 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
10919 |
|
10920 |
+
#: wppa-settings-autosave.php:4306 wppa-settings-autosave.php:4316
|
10921 |
+
#: wppa-settings-autosave.php:4326
|
10922 |
msgid "reports"
|
10923 |
msgstr "rapports"
|
10924 |
|
10925 |
+
#: wppa-settings-autosave.php:4311
|
10926 |
msgid "Pending after"
|
10927 |
msgstr "En attente après"
|
10928 |
|
10929 |
+
#: wppa-settings-autosave.php:4312
|
10930 |
msgid "Set status to pending after xx dislike votes."
|
10931 |
msgstr "Règle le statut à en attente après xx votes défavorables."
|
10932 |
|
10933 |
+
#: wppa-settings-autosave.php:4321
|
10934 |
msgid "Delete after"
|
10935 |
msgstr "Supprimer après"
|
10936 |
|
10937 |
+
#: wppa-settings-autosave.php:4322
|
10938 |
msgid "Deete photo after xx dislike votes."
|
10939 |
msgstr "Efface la photo après xx votes défavorables."
|
10940 |
|
10941 |
+
#: wppa-settings-autosave.php:4331
|
10942 |
msgid "Show dislike count"
|
10943 |
msgstr "Montrer comptage des avis négatifs"
|
10944 |
|
10945 |
+
#: wppa-settings-autosave.php:4332
|
10946 |
msgid "Show the number of dislikes in the rating bar."
|
10947 |
msgstr "Montrer le nombre d'avis défavorables dans la barre de notation."
|
10948 |
|
10949 |
+
#: wppa-settings-autosave.php:4333
|
10950 |
msgid "Displayes the total number of dislike votes for the current photo."
|
10951 |
msgstr "Affiche le nombre total d'avis défavorables pour la photo courante."
|
10952 |
|
10953 |
+
#: wppa-settings-autosave.php:4341
|
10954 |
msgid "Rating display type"
|
10955 |
msgstr "Type d’affichage des notes"
|
10956 |
|
10957 |
+
#: wppa-settings-autosave.php:4342
|
10958 |
msgid "Specify the type of the rating display."
|
10959 |
msgstr "Spécifier le type d'affichage des notes."
|
10960 |
|
10961 |
+
#: wppa-settings-autosave.php:4345
|
10962 |
msgid "Graphic"
|
10963 |
msgstr "Graphique"
|
10964 |
|
10965 |
+
#: wppa-settings-autosave.php:4345
|
10966 |
msgid "Numeric"
|
10967 |
msgstr "Numérique"
|
10968 |
|
10969 |
+
#: wppa-settings-autosave.php:4352
|
10970 |
msgid "Show average rating"
|
10971 |
msgstr "Montrer le vote moyen"
|
10972 |
|
10973 |
+
#: wppa-settings-autosave.php:4353
|
10974 |
msgid "Display the avarage rating and/or vote count on the rating bar"
|
10975 |
msgstr ""
|
10976 |
"Afficher la moyenne des notes et/ou compte des votes dans la barre de notation"
|
10977 |
|
10978 |
+
#: wppa-settings-autosave.php:4354
|
10979 |
msgid ""
|
10980 |
"If checked, the average rating as well as the current users rating is "
|
10981 |
"displayed in max 5 or 10 stars."
|
10983 |
"Si coché, la moyenne des notes ainsi que la note de l'utilisateur courant sont "
|
10984 |
"affichées avec une échelle de 5 ou 10 étoiles."
|
10985 |
|
10986 |
+
#: wppa-settings-autosave.php:4355
|
10987 |
msgid "If unchecked, only the current users rating is displayed (if any)."
|
10988 |
msgstr ""
|
10989 |
"Si décoché, seulement la note de l'utilisateur courant est affichée (si "
|
10990 |
"existe)."
|
10991 |
|
10992 |
+
#: wppa-settings-autosave.php:4356
|
10993 |
msgid ""
|
10994 |
"If \"One button vote\" is selected in Table I-E1, this box checked will "
|
10995 |
"display the vote count."
|
10997 |
"Si \"One button vote\" est sélectionné dans table I-E1, cette case cochée "
|
10998 |
"affichera le comptage des votes."
|
10999 |
|
11000 |
+
#: wppa-settings-autosave.php:4363
|
11001 |
msgid "Single vote button text"
|
11002 |
msgstr "Texte du bouton unique de vote"
|
11003 |
|
11004 |
+
#: wppa-settings-autosave.php:4364
|
11005 |
msgid "The text on the voting button."
|
11006 |
msgstr "Le texte sur le bouton de vote."
|
11007 |
|
11008 |
+
#: wppa-settings-autosave.php:4365 wppa-settings-autosave.php:4374
|
11009 |
msgid "This text may contain qTranslate compatible language tags."
|
11010 |
msgstr "Ce texte peut contenir des tags compatibles avec qTranslate."
|
11011 |
|
11012 |
+
#: wppa-settings-autosave.php:4372
|
11013 |
msgid "Single vote button text voted"
|
11014 |
msgstr "Texte voté sur le bouton unique de vote"
|
11015 |
|
11016 |
+
#: wppa-settings-autosave.php:4373
|
11017 |
msgid "The text on the voting button when voted."
|
11018 |
msgstr "Le texte sur le bouton de vote lorsque voté."
|
11019 |
|
11020 |
+
#: wppa-settings-autosave.php:4381
|
11021 |
msgid "Single vote button thumbnail"
|
11022 |
msgstr "Bouton unique de vote et vignette"
|
11023 |
|
11024 |
+
#: wppa-settings-autosave.php:4382
|
11025 |
msgid "Display single vote button below thumbnails."
|
11026 |
msgstr "Affiche le bouton unique de vote sous les vignettes."
|
11027 |
|
11028 |
+
#: wppa-settings-autosave.php:4383
|
11029 |
msgid ""
|
11030 |
"This works only in single vote mode: Table I-E1 set to \"one button vote\""
|
11031 |
msgstr ""
|
11032 |
"Cela fonctionne seulement en mode vote unique: table I-E1 réglé à \"one button "
|
11033 |
"vote\""
|
11034 |
|
11035 |
+
#: wppa-settings-autosave.php:4390
|
11036 |
msgid "Medal bronze when"
|
11037 |
msgstr "Médaille de bronze quand"
|
11038 |
|
11039 |
+
#: wppa-settings-autosave.php:4391 wppa-settings-autosave.php:4409
|
11040 |
msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
|
11041 |
msgstr ""
|
11042 |
"La photo reçoit la médaille de bronze quand le nombre de top-scores (5 or 10)."
|
11043 |
|
11044 |
+
#: wppa-settings-autosave.php:4392 wppa-settings-autosave.php:4410
|
11045 |
msgid ""
|
11046 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
11047 |
"bronze medal. A value of 0 indicates that you do not want this feature."
|
11050 |
"médaille de bronze. La valeur 0 signifie qu'on n'utilise pas cette "
|
11051 |
"fonctionnalité."
|
11052 |
|
11053 |
+
#: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4403
|
11054 |
+
#: wppa-settings-autosave.php:4412
|
11055 |
msgid "Topscores"
|
11056 |
msgstr "Meilleurs scores"
|
11057 |
|
11058 |
+
#: wppa-settings-autosave.php:4399
|
11059 |
msgid "Medal silver when"
|
11060 |
msgstr "Médaille d'argent quand"
|
11061 |
|
11062 |
+
#: wppa-settings-autosave.php:4400
|
11063 |
msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
|
11064 |
msgstr ""
|
11065 |
"La photo reçoit la médaille d'argent quand le nombre de top-scores (5 or 10)."
|
11066 |
|
11067 |
+
#: wppa-settings-autosave.php:4401
|
11068 |
msgid ""
|
11069 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
11070 |
"silver medal. A value of 0 indicates that you do not want this feature."
|
11073 |
"médaille d'argent. La valeur 0 signifie qu'on n'utilise pas cette "
|
11074 |
"fonctionnalité."
|
11075 |
|
11076 |
+
#: wppa-settings-autosave.php:4408
|
11077 |
msgid "Medal gold when"
|
11078 |
msgstr "Médaille d'or quand"
|
11079 |
|
11080 |
+
#: wppa-settings-autosave.php:4417
|
11081 |
msgid "Medal tag color"
|
11082 |
msgstr "Couleur du tag médaille"
|
11083 |
|
11084 |
+
#: wppa-settings-autosave.php:4418
|
11085 |
msgid "The color of the tag on the medal."
|
11086 |
msgstr "La couleur du tag sur la médaille."
|
11087 |
|
11088 |
+
#: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7850
|
11089 |
msgid "Red"
|
11090 |
msgstr "Rouge"
|
11091 |
|
11092 |
+
#: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7853
|
11093 |
msgid "Green"
|
11094 |
msgstr "Vert"
|
11095 |
|
11096 |
+
#: wppa-settings-autosave.php:4421 wppa-settings-autosave.php:7854
|
11097 |
msgid "Blue"
|
11098 |
msgstr "Bleu"
|
11099 |
|
11100 |
+
#: wppa-settings-autosave.php:4428
|
11101 |
msgid "Medal position"
|
11102 |
msgstr "Position médaille"
|
11103 |
|
11104 |
+
#: wppa-settings-autosave.php:4429
|
11105 |
msgid "The position of the medal on the image."
|
11106 |
msgstr "La position de la médaille sur l'image."
|
11107 |
|
11108 |
+
#: wppa-settings-autosave.php:4432
|
11109 |
msgid "Top left"
|
11110 |
msgstr "En haut à gauche"
|
11111 |
|
11112 |
+
#: wppa-settings-autosave.php:4432
|
11113 |
msgid "Top right"
|
11114 |
msgstr "En haut à droite"
|
11115 |
|
11116 |
+
#: wppa-settings-autosave.php:4432
|
11117 |
msgid "Bottom left"
|
11118 |
msgstr "En bas à gauche"
|
11119 |
|
11120 |
+
#: wppa-settings-autosave.php:4432
|
11121 |
msgid "Bottom right"
|
11122 |
msgstr "En bas à droite"
|
11123 |
|
11124 |
+
#: wppa-settings-autosave.php:4439
|
11125 |
msgid "Top criterium"
|
11126 |
msgstr "Critère supérieur"
|
11127 |
|
11128 |
+
#: wppa-settings-autosave.php:4440
|
11129 |
msgid "The top sort item used for topten results from shortcodes."
|
11130 |
msgstr "Le critère de tri prioritaire pour le classement TopTen (shortcodes)."
|
11131 |
|
11132 |
+
#: wppa-settings-autosave.php:4443
|
11133 |
msgid "Mean raiting"
|
11134 |
msgstr "Moyenne votes"
|
11135 |
|
11136 |
+
#: wppa-settings-autosave.php:4443
|
11137 |
msgid "Rating count"
|
11138 |
msgstr "Compteur votes"
|
11139 |
|
11140 |
+
#: wppa-settings-autosave.php:4443
|
11141 |
msgid "Viewcount"
|
11142 |
msgstr "Compteur vues"
|
11143 |
|
11144 |
+
#: wppa-settings-autosave.php:4450
|
11145 |
msgid "Comments related settings"
|
11146 |
msgstr "Comments related settings"
|
11147 |
|
11148 |
+
#: wppa-settings-autosave.php:4452
|
11149 |
msgid "Commenting login"
|
11150 |
msgstr "Commenting login"
|
11151 |
|
11152 |
+
#: wppa-settings-autosave.php:4453
|
11153 |
msgid "Users must be logged in to comment on photos."
|
11154 |
msgstr "Les utilisateurs doivent être connectés pour commenter les photos."
|
11155 |
|
11156 |
+
#: wppa-settings-autosave.php:4454
|
11157 |
msgid ""
|
11158 |
"Check this box if you want users to be logged in to be able to enter comments "
|
11159 |
"on individual photos."
|
11161 |
"Cochez cette case si vous voulez limiter la possibilité de commenter aux "
|
11162 |
"utilisateurs connectés."
|
11163 |
|
11164 |
+
#: wppa-settings-autosave.php:4461
|
11165 |
msgid "Comments view login"
|
11166 |
msgstr "Comments view login"
|
11167 |
|
11168 |
+
#: wppa-settings-autosave.php:4462
|
11169 |
msgid "Users must be logged in to see comments on photos."
|
11170 |
msgstr "L'utilisateur doit être connecté pour voir les commentaires."
|
11171 |
|
11172 |
+
#: wppa-settings-autosave.php:4463
|
11173 |
msgid ""
|
11174 |
"Check this box if you want users to be logged in to be able to see existing "
|
11175 |
"comments on individual photos."
|
11177 |
"Cochez cette case si vous voulez limiter la possibilité de voir les "
|
11178 |
"commentaires aux utilisateurs connectés."
|
11179 |
|
11180 |
+
#: wppa-settings-autosave.php:4470
|
11181 |
msgid "Last comment first"
|
11182 |
msgstr "Dernier commentaire en premier"
|
11183 |
|
11184 |
+
#: wppa-settings-autosave.php:4471
|
11185 |
msgid "Display the newest comment on top."
|
11186 |
msgstr "Affiche les commentaire le plus récent en premier."
|
11187 |
|
11188 |
+
#: wppa-settings-autosave.php:4472
|
11189 |
msgid "If checked: Display the newest comment on top."
|
11190 |
msgstr "Si coché: afficher le commentaire le plus récent en tête."
|
11191 |
|
11192 |
+
#: wppa-settings-autosave.php:4473
|
11193 |
msgid "If unchecked, the comments are listed in the ordere they were entered."
|
11194 |
msgstr "Si décoché, les commentaires sont listés dans l'ordre de la saisie."
|
11195 |
|
11196 |
+
#: wppa-settings-autosave.php:4480
|
11197 |
msgid "Comment moderation"
|
11198 |
msgstr "Modération de commentaire"
|
11199 |
|
11200 |
+
#: wppa-settings-autosave.php:4481
|
11201 |
msgid "Comments from what users need approval."
|
11202 |
msgstr "Les commentaires nécessitent une approbation."
|
11203 |
|
11204 |
+
#: wppa-settings-autosave.php:4482
|
11205 |
msgid "Select the desired users of which the comments need approval."
|
11206 |
msgstr ""
|
11207 |
"Choisir les utilisateurs dont les commentaires nécessitent une modération."
|
11208 |
|
11209 |
+
#: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
|
11210 |
msgid "All users"
|
11211 |
msgstr "Tous les utilisateurs"
|
11212 |
|
11213 |
+
#: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
|
11214 |
msgid "Logged out users"
|
11215 |
msgstr "Utilisateurs déconnectés"
|
11216 |
|
11217 |
+
#: wppa-settings-autosave.php:4484 wppa-settings-autosave.php:6467
|
11218 |
msgid "No users"
|
11219 |
msgstr "Pas d'utilisateurs"
|
11220 |
|
11221 |
+
#: wppa-settings-autosave.php:4491
|
11222 |
msgid "Comment email required"
|
11223 |
msgstr "Comment email required"
|
11224 |
|
11225 |
+
#: wppa-settings-autosave.php:4492
|
11226 |
msgid "Commenting users must enter their email addresses."
|
11227 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
11228 |
|
11229 |
+
#: wppa-settings-autosave.php:4496 wppa-settings-autosave.php:9180
|
11230 |
+
#: wppa-settings-autosave.php:9248
|
11231 |
msgid "Optional"
|
11232 |
msgstr "Optionnel"
|
11233 |
|
11234 |
+
#: wppa-settings-autosave.php:4508
|
11235 |
msgid "Comment notify"
|
11236 |
msgstr "Notification de commentaire"
|
11237 |
|
11238 |
+
#: wppa-settings-autosave.php:4509
|
11239 |
msgid "Select who must receive an e-mail notification of a new comment."
|
11240 |
msgstr ""
|
11241 |
"Choisir qui doit recevoir un email de notification de nouveau commentaire."
|
11242 |
|
11243 |
+
#: wppa-settings-autosave.php:4512
|
11244 |
msgid "--- None ---"
|
11245 |
msgstr "--- Aucun ---"
|
11246 |
|
11247 |
+
#: wppa-settings-autosave.php:4513
|
11248 |
msgid "--- Admin ---"
|
11249 |
msgstr "--- Admin ---"
|
11250 |
|
11251 |
+
#: wppa-settings-autosave.php:4514
|
11252 |
msgid "--- Album owner ---"
|
11253 |
msgstr "--- Propriétaire album ---"
|
11254 |
|
11255 |
+
#: wppa-settings-autosave.php:4515
|
11256 |
msgid "--- Admin & Owner ---"
|
11257 |
msgstr "--- Admin & Propriétaire ---"
|
11258 |
|
11259 |
+
#: wppa-settings-autosave.php:4516
|
11260 |
msgid "--- Uploader ---"
|
11261 |
msgstr "-- Celui(le) qui a déposé les fichiers --"
|
11262 |
|
11263 |
+
#: wppa-settings-autosave.php:4517
|
11264 |
msgid "--- Up & admin ---"
|
11265 |
msgstr "--- Up & Admin ---"
|
11266 |
|
11267 |
+
#: wppa-settings-autosave.php:4518
|
11268 |
msgid "--- Up & Owner ---"
|
11269 |
msgstr "--- Up & Propriétaire ---"
|
11270 |
|
11271 |
+
#: wppa-settings-autosave.php:4541
|
11272 |
msgid "Comment notify previous"
|
11273 |
msgstr "Notifier si déjà commenté"
|
11274 |
|
11275 |
+
#: wppa-settings-autosave.php:4542
|
11276 |
msgid "Notify users who has commented this photo earlier."
|
11277 |
msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
|
11278 |
|
11279 |
+
#: wppa-settings-autosave.php:4550
|
11280 |
msgid "Comment notify approved"
|
11281 |
msgstr "Commentaire Notifier approuvé"
|
11282 |
|
11283 |
+
#: wppa-settings-autosave.php:4551
|
11284 |
msgid "Notify photo owner of approved comment."
|
11285 |
msgstr "Aviser le propriétaire de la photo du commentaire approuvé."
|
11286 |
|
11287 |
+
#: wppa-settings-autosave.php:4559
|
11288 |
msgid "Com ntfy appr email content"
|
11289 |
msgstr "Contenu de l'e-mail com ntfy appr."
|
11290 |
|
11291 |
+
#: wppa-settings-autosave.php:4560
|
11292 |
msgid "The content of the email."
|
11293 |
msgstr "Le contenu de l’e-mail :"
|
11294 |
|
11295 |
+
#: wppa-settings-autosave.php:4561
|
11296 |
msgid "If you leave this blank, the default content will be used"
|
11297 |
msgstr "Si vous laissez ce champ vide, le contenu par défaut sera utilisé"
|
11298 |
|
11299 |
+
#: wppa-settings-autosave.php:4562
|
11300 |
msgid "The content may contain html."
|
11301 |
msgstr "Le contenu peut contenir html."
|
11302 |
|
11303 |
+
#: wppa-settings-autosave.php:4563
|
11304 |
msgid ""
|
11305 |
"You may use the following keywords: w#comment for the comment content, w#user "
|
11306 |
"for the commenters name and the standard photo description keywords w#name, "
|
11313 |
"w#timestamp, w#modified, w#views, w#amx, w#amy, w#amfs, w#url, w#hrurl, "
|
11314 |
"w#tnurl, w#cc0... w#cc9, w#cd0... w#cd9."
|
11315 |
|
11316 |
+
#: wppa-settings-autosave.php:4570
|
11317 |
msgid "Com ntfy appr email subject"
|
11318 |
msgstr "Objet com ntfy appr sujet"
|
11319 |
|
11320 |
+
#: wppa-settings-autosave.php:4571
|
11321 |
msgid "The subject of the email."
|
11322 |
msgstr "Le sujet de l’e-mail."
|
11323 |
|
11324 |
+
#: wppa-settings-autosave.php:4580
|
11325 |
msgid "Comment ntfy added"
|
11326 |
msgstr "Indiquer commentaire ajouté"
|
11327 |
|
11328 |
+
#: wppa-settings-autosave.php:4581
|
11329 |
msgid "Show \"Comment added\" after successfull adding a comment."
|
11330 |
msgstr "Montrer \"Commentaire ajouté\" après l'ajout réussi d'un commentaire."
|
11331 |
|
11332 |
+
#: wppa-settings-autosave.php:4589
|
11333 |
msgid "ComTen alt display"
|
11334 |
msgstr "Affichage alt de ComTen"
|
11335 |
|
11336 |
+
#: wppa-settings-autosave.php:4590
|
11337 |
msgid "Display comments at comten thumbnails."
|
11338 |
msgstr "Afficher les commentaires aux vignettes ComTen."
|
11339 |
|
11340 |
+
#: wppa-settings-autosave.php:4598
|
11341 |
msgid "Comten Thumbnail width"
|
11342 |
msgstr "Largeur du widget commentaire"
|
11343 |
|
11344 |
+
#: wppa-settings-autosave.php:4599
|
11345 |
msgid "The width of the thumbnail in the alt comment display."
|
11346 |
msgstr "La largeur de la vignette dans l’affichage alternatif des commentaires."
|
11347 |
|
11348 |
+
#: wppa-settings-autosave.php:4602
|
11349 |
msgid "Pixels"
|
11350 |
msgstr "Pixels"
|
11351 |
|
11352 |
+
#: wppa-settings-autosave.php:4607
|
11353 |
msgid "Show smiley picker"
|
11354 |
msgstr "Montrer la bibliothèque de smiley"
|
11355 |
|
11356 |
+
#: wppa-settings-autosave.php:4608
|
11357 |
msgid "Display a clickable row of smileys."
|
11358 |
msgstr "Afficher une rangée de smileys cliquables."
|
11359 |
|
11360 |
+
#: wppa-settings-autosave.php:4616
|
11361 |
msgid "Show commenter email"
|
11362 |
msgstr "Montrer l'email du commentateur"
|
11363 |
|
11364 |
+
#: wppa-settings-autosave.php:4617
|
11365 |
msgid "Show the commenter's email in the notify emails."
|
11366 |
msgstr "Montrer l'email du commentateur dans les emails de notification."
|
11367 |
|
11368 |
+
#: wppa-settings-autosave.php:4618
|
11369 |
msgid "Shows the email address of the commenter in all notify emails."
|
11370 |
msgstr ""
|
11371 |
"Montre l'adresse de celui qui a commenté dans tous les emails de notification."
|
11372 |
|
11373 |
+
#: wppa-settings-autosave.php:4619
|
11374 |
msgid ""
|
11375 |
"If switched off, admin will still receive the senders email in the "
|
11376 |
"notification mail"
|
11378 |
"Si désactivé, l'administrateur recevra quand même l'email des émetteurs dans "
|
11379 |
"la notification"
|
11380 |
|
11381 |
+
#: wppa-settings-autosave.php:4629
|
11382 |
msgid "The opacity of the lightbox overlay background."
|
11383 |
msgstr "L'opacité de l'arrière plan overlay de Lightbox."
|
11384 |
|
11385 |
+
#: wppa-settings-autosave.php:4637
|
11386 |
msgid "Click on background"
|
11387 |
msgstr "Clic sur l'arrière plan"
|
11388 |
|
11389 |
+
#: wppa-settings-autosave.php:4638
|
11390 |
msgid "Select the action to be taken on click on background."
|
11391 |
msgstr "Choisir l'action a effectuer lors d'un clic sur l'arrière plan."
|
11392 |
|
11393 |
+
#: wppa-settings-autosave.php:4641
|
11394 |
msgid "Nothing"
|
11395 |
msgstr "Rien"
|
11396 |
|
11397 |
+
#: wppa-settings-autosave.php:4641
|
11398 |
msgid "Exit (close)"
|
11399 |
msgstr "Sortir (fermer)"
|
11400 |
|
11401 |
+
#: wppa-settings-autosave.php:4641
|
11402 |
msgid "Browse (left/right)"
|
11403 |
msgstr "Naviguer (Gauche/Droite)"
|
11404 |
|
11405 |
+
#: wppa-settings-autosave.php:4648
|
11406 |
msgid "Overlay animation speed"
|
11407 |
msgstr "Vitesse de l'animation overlay"
|
11408 |
|
11409 |
+
#: wppa-settings-autosave.php:4649
|
11410 |
msgid "The fade-in time of the lightbox images"
|
11411 |
msgstr "La durée du fondu des images Lightbox"
|
11412 |
|
11413 |
+
#: wppa-settings-autosave.php:4652
|
11414 |
msgid "very fast (100 ms.)"
|
11415 |
msgstr "très rapide (100 ms.)"
|
11416 |
|
11417 |
+
#: wppa-settings-autosave.php:4652
|
11418 |
msgid "fast (200 ms.)"
|
11419 |
msgstr "rapide (200 ms.)"
|
11420 |
|
11421 |
+
#: wppa-settings-autosave.php:4652
|
11422 |
msgid "normal (300 ms.)"
|
11423 |
msgstr "normal (300 ms.)"
|
11424 |
|
11425 |
+
#: wppa-settings-autosave.php:4652
|
11426 |
msgid "slow (500 ms.)"
|
11427 |
msgstr "lent (500 ms.)"
|
11428 |
|
11429 |
+
#: wppa-settings-autosave.php:4652
|
11430 |
msgid "very slow (1 s.)"
|
11431 |
msgstr "Très lent (1 s.)"
|
11432 |
|
11433 |
+
#: wppa-settings-autosave.php:4652
|
11434 |
msgid "extremely slow (2 s.)"
|
11435 |
msgstr "extrêmement lent (2 s.)"
|
11436 |
|
11437 |
+
#: wppa-settings-autosave.php:4659
|
11438 |
msgid "Overlay slideshow speed"
|
11439 |
msgstr "Vitesse du diaporama overlay"
|
11440 |
|
11441 |
+
#: wppa-settings-autosave.php:4660
|
11442 |
msgid "The time the lightbox images stay"
|
11443 |
msgstr "La durée d’affichage des images"
|
11444 |
|
11445 |
+
#: wppa-settings-autosave.php:4663
|
11446 |
msgid "fast (3 s.)"
|
11447 |
msgstr "rapide (3 s.)"
|
11448 |
|
11449 |
+
#: wppa-settings-autosave.php:4663
|
11450 |
msgid "normal (5 s.)"
|
11451 |
msgstr "normal (5 s.)"
|
11452 |
|
11453 |
+
#: wppa-settings-autosave.php:4663
|
11454 |
msgid "slow (8 s.)"
|
11455 |
msgstr "lent (8 s.)"
|
11456 |
|
11457 |
+
#: wppa-settings-autosave.php:4663
|
11458 |
msgid "very slow (13 s.)"
|
11459 |
msgstr "Très lent (13 s.)"
|
11460 |
|
11461 |
+
#: wppa-settings-autosave.php:4663
|
11462 |
msgid "extremely slow (20 s.)"
|
11463 |
msgstr "extrêmement lent (20 s.)"
|
11464 |
|
11465 |
+
#: wppa-settings-autosave.php:4679
|
11466 |
msgid "WPPA+ Lightbox global"
|
11467 |
msgstr "WPPA+ LightBox étendu"
|
11468 |
|
11469 |
+
#: wppa-settings-autosave.php:4680
|
11470 |
msgid "Use the wppa+ lightbox also for non-wppa images."
|
11471 |
msgstr "Utiliser WPPA+ LightBox aussi pour les images non-WPPA."
|
11472 |
|
11473 |
+
#: wppa-settings-autosave.php:4688
|
11474 |
msgid "WPPA+ Lightbox global is a set"
|
11475 |
msgstr "WPPA+ LightBox étendu est une collection"
|
11476 |
|
11477 |
+
#: wppa-settings-autosave.php:4689
|
11478 |
msgid "Treat the other images as a set."
|
11479 |
msgstr "Traiter les images non-WPPA comme une collection."
|
11480 |
|
11481 |
+
#: wppa-settings-autosave.php:4690
|
11482 |
msgid ""
|
11483 |
"If checked, you can scroll through the images in the lightbox view. Requires "
|
11484 |
"item 5 to be checked."
|
11486 |
"Si coché, vous pouvez scroller les images dans la vue LightBox. Item 5 doit "
|
11487 |
"être coché aussi."
|
11488 |
|
11489 |
+
#: wppa-settings-autosave.php:4697
|
11490 |
msgid "Use hires files"
|
11491 |
msgstr "Utiliser fichier haute résolution"
|
11492 |
|
11493 |
+
#: wppa-settings-autosave.php:4698
|
11494 |
msgid "Use the highest resolution available for lightbox."
|
11495 |
msgstr "Utiliser la résolution maxi disponible pour LightBox."
|
11496 |
|
11497 |
+
#: wppa-settings-autosave.php:4699
|
11498 |
msgid "Ticking this box is recommended for lightbox fullscreen modes."
|
11499 |
msgstr "Cocher cette case est recommandé pour les modes plein écran de LightBox."
|
11500 |
|
11501 |
+
#: wppa-settings-autosave.php:4707
|
11502 |
msgid "Videos on lightbox start automaticly."
|
11503 |
msgstr "Les vidéos dans LightBox démarrent automatiquement."
|
11504 |
|
11505 |
+
#: wppa-settings-autosave.php:4716
|
11506 |
msgid "Audio on lightbox start automaticly."
|
11507 |
msgstr "L'audio dans LightBox démarre automatiquement."
|
11508 |
|
11509 |
+
#: wppa-settings-autosave.php:4724
|
11510 |
msgid "Lightbox start mode"
|
11511 |
msgstr "Mode de démarrage de lightbox"
|
11512 |
|
11513 |
+
#: wppa-settings-autosave.php:4725
|
11514 |
msgid "The mode lightbox starts in."
|
11515 |
msgstr "Le mode de démarrage de lightbox."
|
11516 |
|
11517 |
+
#: wppa-settings-autosave.php:4728
|
11518 |
msgid "Normal"
|
11519 |
msgstr "Normale"
|
11520 |
|
11521 |
+
#: wppa-settings-autosave.php:4729
|
11522 |
msgid "Padded"
|
11523 |
msgstr "Padded"
|
11524 |
|
11525 |
+
#: wppa-settings-autosave.php:4730
|
11526 |
msgid "Stretched"
|
11527 |
msgstr "Étiré"
|
11528 |
|
11529 |
+
#: wppa-settings-autosave.php:4731
|
11530 |
msgid "Clipped"
|
11531 |
msgstr "Coupé"
|
11532 |
|
11533 |
+
#: wppa-settings-autosave.php:4732
|
11534 |
msgid "Real size"
|
11535 |
msgstr "Taille réelle"
|
11536 |
|
11537 |
+
#: wppa-settings-autosave.php:4763
|
11538 |
msgid "Table V:"
|
11539 |
msgstr "Table V:"
|
11540 |
|
11541 |
+
#: wppa-settings-autosave.php:4763
|
11542 |
msgid "Fonts:"
|
11543 |
msgstr "Polices:"
|
11544 |
|
11545 |
+
#: wppa-settings-autosave.php:4764
|
11546 |
msgid "This table describes the Fonts used for the wppa+ elements."
|
11547 |
msgstr ""
|
11548 |
"Cette table décrit les polices de caractère utilisées pour les éléments de WPPA"
|
11549 |
"+."
|
11550 |
|
11551 |
+
#: wppa-settings-autosave.php:4774 wppa-settings-autosave.php:4950
|
11552 |
msgid "Font family"
|
11553 |
msgstr "Famille de police"
|
11554 |
|
11555 |
+
#: wppa-settings-autosave.php:4775 wppa-settings-autosave.php:4951
|
11556 |
msgid "Font size"
|
11557 |
msgstr "Taille de la police"
|
11558 |
|
11559 |
+
#: wppa-settings-autosave.php:4776 wppa-settings-autosave.php:4952
|
11560 |
msgid "Font color"
|
11561 |
msgstr "Couleur de la police"
|
11562 |
|
11563 |
+
#: wppa-settings-autosave.php:4777 wppa-settings-autosave.php:4953
|
11564 |
msgid "Font weight"
|
11565 |
msgstr "Poids de la police"
|
11566 |
|
11567 |
+
#: wppa-settings-autosave.php:4787
|
11568 |
msgid "normal"
|
11569 |
msgstr "norma"
|
11570 |
|
11571 |
+
#: wppa-settings-autosave.php:4787
|
11572 |
msgid "bold"
|
11573 |
msgstr "gras"
|
11574 |
|
11575 |
+
#: wppa-settings-autosave.php:4787
|
11576 |
msgid "bolder"
|
11577 |
msgstr "plus gras"
|
11578 |
|
11579 |
+
#: wppa-settings-autosave.php:4787
|
11580 |
msgid "lighter"
|
11581 |
msgstr "plus fin"
|
11582 |
|
11583 |
+
#: wppa-settings-autosave.php:4790
|
11584 |
msgid "Album titles"
|
11585 |
msgstr "Titres albums"
|
11586 |
|
11587 |
+
#: wppa-settings-autosave.php:4791
|
11588 |
msgid "Font used for Album titles."
|
11589 |
msgstr "Police utilisée pour les titres d'album."
|
11590 |
|
11591 |
+
#: wppa-settings-autosave.php:4792
|
11592 |
msgid "Enter font name, size, color and weight for album cover titles."
|
11593 |
msgstr ""
|
11594 |
"Entrer le nom de la police, taille, couleur et poids pour les titres de "
|
11595 |
"couverture des albums."
|
11596 |
|
11597 |
+
#: wppa-settings-autosave.php:4807
|
11598 |
msgid "Slideshow desc"
|
11599 |
msgstr "Description du diaporama"
|
11600 |
|
11601 |
+
#: wppa-settings-autosave.php:4808
|
11602 |
msgid "Font for slideshow photo descriptions."
|
11603 |
msgstr "Police pour la description des photos."
|
11604 |
|
11605 |
+
#: wppa-settings-autosave.php:4809
|
11606 |
msgid "Enter font name, size, color and weight for slideshow photo descriptions."
|
11607 |
msgstr ""
|
11608 |
"Entrer le nom de la police, taille, couleur et poids pour les descriptions des "
|
11609 |
"photo de diaporama."
|
11610 |
|
11611 |
+
#: wppa-settings-autosave.php:4824
|
11612 |
msgid "Slideshow name"
|
11613 |
msgstr "Nom du diaporama"
|
11614 |
|
11615 |
+
#: wppa-settings-autosave.php:4825
|
11616 |
msgid "Font for slideshow photo names."
|
11617 |
msgstr "Police pour le nom des photos du diaporama."
|
11618 |
|
11619 |
+
#: wppa-settings-autosave.php:4826
|
11620 |
msgid "Enter font name, size, color and weight for slideshow photo names."
|
11621 |
msgstr ""
|
11622 |
"Entrer le nom de la police, taille, couleur et poids pour les noms de photo de "
|
11623 |
"diaporama."
|
11624 |
|
11625 |
+
#: wppa-settings-autosave.php:4841
|
11626 |
msgid "Navigations"
|
11627 |
msgstr "Navigations"
|
11628 |
|
11629 |
+
#: wppa-settings-autosave.php:4842
|
11630 |
msgid "Font for navigations."
|
11631 |
msgstr "Police pour navigations."
|
11632 |
|
11633 |
+
#: wppa-settings-autosave.php:4843
|
11634 |
msgid "Enter font name, size, color and weight for navigation items."
|
11635 |
msgstr ""
|
11636 |
"Entrer le nom de la police, taille, couleur et poids pour les items de "
|
11637 |
"navigation."
|
11638 |
|
11639 |
+
#: wppa-settings-autosave.php:4859
|
11640 |
msgid "Font for text under thumbnails."
|
11641 |
msgstr "Police pour les textes sous les vignettes."
|
11642 |
|
11643 |
+
#: wppa-settings-autosave.php:4860
|
11644 |
msgid "Enter font name, size, color and weight for text under thumbnail images."
|
11645 |
msgstr ""
|
11646 |
"Entrer le nom de la police, taille, couleur et poids pour le texte sous les "
|
11647 |
"vignettes."
|
11648 |
|
11649 |
+
#: wppa-settings-autosave.php:4876
|
11650 |
msgid "General font in wppa boxes."
|
11651 |
msgstr "Police générique dans les boîtes WPPA."
|
11652 |
|
11653 |
+
#: wppa-settings-autosave.php:4877
|
11654 |
msgid "Enter font name, size, color and weight for all other items."
|
11655 |
msgstr ""
|
11656 |
"Entrer le nom de la police, taille, couleur et poids pour les autres items."
|
11657 |
|
11658 |
+
#: wppa-settings-autosave.php:4893
|
11659 |
msgid "Font in wppa number bars."
|
11660 |
msgstr "Police dans les bars de numéro wppa."
|
11661 |
|
11662 |
+
#: wppa-settings-autosave.php:4894 wppa-settings-autosave.php:4911
|
11663 |
msgid "Enter font name, size, color and weight for numberbar navigation."
|
11664 |
msgstr ""
|
11665 |
"Entrez le nom de la police, taille, couleur et poids pour numberbar navigation."
|
11666 |
|
11667 |
+
#: wppa-settings-autosave.php:4909
|
11668 |
msgid "Numbar Active"
|
11669 |
msgstr "Numbar activée"
|
11670 |
|
11671 |
+
#: wppa-settings-autosave.php:4910
|
11672 |
msgid "Font in wppa number bars, active item."
|
11673 |
msgstr "Police en wppa nombre barres, élément actif."
|
11674 |
|
11675 |
+
#: wppa-settings-autosave.php:4927
|
11676 |
msgid "Font in wppa lightbox overlays."
|
11677 |
msgstr "Police en wppa lightbox superpositions."
|
11678 |
|
11679 |
+
#: wppa-settings-autosave.php:4928
|
11680 |
msgid "Enter font name, size, color and weight for wppa lightbox overlays."
|
11681 |
msgstr ""
|
11682 |
"Entrez le nom de police, taille, couleur et poids pour les superpositions de "
|
11683 |
"lightbox wppa."
|
11684 |
|
11685 |
+
#: wppa-settings-autosave.php:4963
|
11686 |
msgid "Table VI:"
|
11687 |
msgstr "Table VI:"
|
11688 |
|
11689 |
+
#: wppa-settings-autosave.php:4963
|
11690 |
msgid "Links:"
|
11691 |
msgstr "Liens:"
|
11692 |
|
11693 |
+
#: wppa-settings-autosave.php:4964
|
11694 |
msgid "This table defines the link types and pages."
|
11695 |
msgstr "Ce table définit les types de liens et les pages."
|
11696 |
|
11697 |
+
#: wppa-settings-autosave.php:4975 wppa-settings-autosave.php:5981
|
11698 |
msgid "Link page"
|
11699 |
msgstr "Page lien"
|
11700 |
|
11701 |
+
#: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5983
|
11702 |
msgid "Photo specific link overrules"
|
11703 |
msgstr "Lien photo annule"
|
11704 |
|
11705 |
+
#: wppa-settings-autosave.php:4977 wppa-settings-autosave.php:5983
|
11706 |
msgid "PSO"
|
11707 |
msgstr "PSO"
|
11708 |
|
11709 |
+
#: wppa-settings-autosave.php:5022
|
11710 |
msgid "Links from images in WPPA+ Widgets"
|
11711 |
msgstr "Liens des images dans les Widgets WPPA +"
|
11712 |
|
11713 |
+
#: wppa-settings-autosave.php:5024
|
11714 |
msgid "PotdWidget"
|
11715 |
msgstr "Widget Photo du jour"
|
11716 |
|
11717 |
+
#: wppa-settings-autosave.php:5025
|
11718 |
msgid "Photo Of The Day widget link."
|
11719 |
msgstr "Lien de widget photo du jour."
|
11720 |
|
11721 |
+
#: wppa-settings-autosave.php:5026
|
11722 |
msgid "Select the type of link the photo of the day points to."
|
11723 |
msgstr "Sélectionnez le type de lien la photo du jour pointe vers."
|
11724 |
|
11725 |
+
#: wppa-settings-autosave.php:5027
|
11726 |
msgid ""
|
11727 |
"If you select 'defined on widget admin page' you can manually enter a link and "
|
11728 |
"title on the Photo of the day Widget Admin page."
|
11731 |
"entrer manuellement un lien et un titre sur la page d’Admin de Widget de la "
|
11732 |
"Photo de jour."
|
11733 |
|
11734 |
+
#: wppa-settings-autosave.php:5036 wppa-settings-autosave.php:5079
|
11735 |
+
#: wppa-settings-autosave.php:5157 wppa-settings-autosave.php:5200
|
11736 |
+
#: wppa-settings-autosave.php:5248 wppa-settings-autosave.php:5295
|
11737 |
+
#: wppa-settings-autosave.php:5342 wppa-settings-autosave.php:5394
|
11738 |
+
#: wppa-settings-autosave.php:5432 wppa-settings-autosave.php:5482
|
11739 |
+
#: wppa-settings-autosave.php:5524 wppa-settings-autosave.php:5565
|
11740 |
+
#: wppa-settings-autosave.php:9939
|
11741 |
msgid "no link at all."
|
11742 |
msgstr "pas de lien du tout."
|
11743 |
|
11744 |
+
#: wppa-settings-autosave.php:5037 wppa-settings-autosave.php:5080
|
11745 |
+
#: wppa-settings-autosave.php:5158 wppa-settings-autosave.php:5201
|
11746 |
+
#: wppa-settings-autosave.php:5249 wppa-settings-autosave.php:5296
|
11747 |
+
#: wppa-settings-autosave.php:5343 wppa-settings-autosave.php:5395
|
11748 |
+
#: wppa-settings-autosave.php:5433 wppa-settings-autosave.php:5483
|
11749 |
+
#: wppa-settings-autosave.php:5525 wppa-settings-autosave.php:5566
|
11750 |
+
#: wppa-settings-autosave.php:9940
|
11751 |
msgid "the plain photo (file)."
|
11752 |
msgstr "la photo originale (fichier)."
|
11753 |
|
11754 |
+
#: wppa-settings-autosave.php:5038 wppa-settings-autosave.php:9946
|
11755 |
msgid "defined on widget admin page."
|
11756 |
msgstr "réglages sur la page d'admin des widgets."
|
11757 |
|
11758 |
+
#: wppa-settings-autosave.php:5039 wppa-settings-autosave.php:5082
|
11759 |
+
#: wppa-settings-autosave.php:5484 wppa-settings-autosave.php:5526
|
11760 |
+
#: wppa-settings-autosave.php:9944
|
11761 |
msgid "the content of the album."
|
11762 |
msgstr "le contenu de l'album."
|
11763 |
|
11764 |
+
#: wppa-settings-autosave.php:5040 wppa-settings-autosave.php:5083
|
11765 |
+
#: wppa-settings-autosave.php:5159 wppa-settings-autosave.php:5204
|
11766 |
+
#: wppa-settings-autosave.php:5252 wppa-settings-autosave.php:5299
|
11767 |
+
#: wppa-settings-autosave.php:5346 wppa-settings-autosave.php:5434
|
11768 |
+
#: wppa-settings-autosave.php:5485 wppa-settings-autosave.php:5527
|
11769 |
+
#: wppa-settings-autosave.php:9941
|
11770 |
msgid "the full size photo in a slideshow."
|
11771 |
msgstr "la photo pleine grandeur dans un diaporama."
|
11772 |
|
11773 |
+
#: wppa-settings-autosave.php:5041 wppa-settings-autosave.php:5084
|
11774 |
+
#: wppa-settings-autosave.php:5160 wppa-settings-autosave.php:5205
|
11775 |
+
#: wppa-settings-autosave.php:5253 wppa-settings-autosave.php:5300
|
11776 |
+
#: wppa-settings-autosave.php:5347 wppa-settings-autosave.php:5435
|
11777 |
+
#: wppa-settings-autosave.php:5486 wppa-settings-autosave.php:5528
|
11778 |
+
#: wppa-settings-autosave.php:5567 wppa-settings-autosave.php:9942
|
11779 |
msgid "the fullsize photo on its own."
|
11780 |
msgstr "la photo pleine grandeur à lui seul."
|
11781 |
|
11782 |
+
#: wppa-settings-autosave.php:5042 wppa-settings-autosave.php:5085
|
11783 |
+
#: wppa-settings-autosave.php:5124 wppa-settings-autosave.php:5163
|
11784 |
+
#: wppa-settings-autosave.php:5208 wppa-settings-autosave.php:5256
|
11785 |
+
#: wppa-settings-autosave.php:5303 wppa-settings-autosave.php:5350
|
11786 |
+
#: wppa-settings-autosave.php:5438
|
11787 |
msgid "a plain page without a querystring."
|
11788 |
msgstr "une simple page sans une querystring."
|
11789 |
|
11790 |
+
#: wppa-settings-autosave.php:5043 wppa-settings-autosave.php:5086
|
11791 |
+
#: wppa-settings-autosave.php:5125 wppa-settings-autosave.php:5164
|
11792 |
+
#: wppa-settings-autosave.php:5209 wppa-settings-autosave.php:5257
|
11793 |
+
#: wppa-settings-autosave.php:5304 wppa-settings-autosave.php:5351
|
11794 |
+
#: wppa-settings-autosave.php:5397 wppa-settings-autosave.php:5439
|
11795 |
+
#: wppa-settings-autosave.php:5487 wppa-settings-autosave.php:5529
|
11796 |
+
#: wppa-settings-autosave.php:5568
|
11797 |
msgid "lightbox."
|
11798 |
msgstr "lightbox."
|
11799 |
|
11800 |
+
#: wppa-settings-autosave.php:5068
|
11801 |
msgid "SlideWidget"
|
11802 |
msgstr "Widget Slide"
|
11803 |
|
11804 |
+
#: wppa-settings-autosave.php:5069
|
11805 |
msgid "Slideshow widget photo link."
|
11806 |
msgstr "Lien diaporama widget photo."
|
11807 |
|
11808 |
+
#: wppa-settings-autosave.php:5070
|
11809 |
msgid "Select the type of link the slideshow photos point to."
|
11810 |
msgstr "Sélectionnez le type de lien, vers que les photos du diaporama pointent."
|
11811 |
|
11812 |
+
#: wppa-settings-autosave.php:5081 wppa-settings-autosave.php:9945
|
11813 |
msgid "defined at widget activation."
|
11814 |
msgstr "défini à l'activation du widget."
|
11815 |
|
11816 |
+
#: wppa-settings-autosave.php:5111
|
11817 |
msgid "Album widget"
|
11818 |
msgstr "Widget Album"
|
11819 |
|
11820 |
+
#: wppa-settings-autosave.php:5112
|
11821 |
msgid "Album widget thumbnail link"
|
11822 |
msgstr "Lien miniature de widget album"
|
11823 |
|
11824 |
+
#: wppa-settings-autosave.php:5113
|
11825 |
msgid "Select the type of link the album widget photos point to."
|
11826 |
msgstr ""
|
11827 |
"Sélectionnez le type de lien, vers que les photos de widget album pointent."
|
11828 |
|
11829 |
+
#: wppa-settings-autosave.php:5122
|
11830 |
msgid "subalbums and thumbnails."
|
11831 |
msgstr "sous-albums et miniatures."
|
11832 |
|
11833 |
+
#: wppa-settings-autosave.php:5123
|
11834 |
msgid "slideshow."
|
11835 |
msgstr "diaporama."
|
11836 |
|
11837 |
+
#: wppa-settings-autosave.php:5146
|
11838 |
msgid "ThumbnailWidget"
|
11839 |
msgstr "Widget vignettes"
|
11840 |
|
11841 |
+
#: wppa-settings-autosave.php:5147
|
11842 |
msgid "Thumbnail widget photo link."
|
11843 |
msgstr "Lien de widget vignette de photo."
|
11844 |
|
11845 |
+
#: wppa-settings-autosave.php:5148
|
11846 |
msgid "Select the type of link the thumbnail photos point to."
|
11847 |
msgstr "Sélectionnez le type de lien vers que les photos miniatures pointent."
|
11848 |
|
11849 |
+
#: wppa-settings-autosave.php:5161 wppa-settings-autosave.php:5206
|
11850 |
+
#: wppa-settings-autosave.php:5254 wppa-settings-autosave.php:5301
|
11851 |
+
#: wppa-settings-autosave.php:5348 wppa-settings-autosave.php:5436
|
11852 |
msgid "the single photo in the style of a slideshow."
|
11853 |
msgstr "Une photo seule avec le style du diaporama"
|
11854 |
|
11855 |
+
#: wppa-settings-autosave.php:5162 wppa-settings-autosave.php:5207
|
11856 |
+
#: wppa-settings-autosave.php:5255 wppa-settings-autosave.php:5302
|
11857 |
+
#: wppa-settings-autosave.php:5349 wppa-settings-autosave.php:5437
|
11858 |
+
#: wppa-settings-autosave.php:5570
|
11859 |
msgid "the fs photo with download and print buttons."
|
11860 |
msgstr "la photo de fs avec téléchargement et boutons d’impression."
|
11861 |
|
11862 |
+
#: wppa-settings-autosave.php:5189
|
11863 |
msgid "TopTenWidget"
|
11864 |
msgstr "Widget TopTen"
|
11865 |
|
11866 |
+
#: wppa-settings-autosave.php:5190
|
11867 |
msgid "TopTen widget photo link."
|
11868 |
msgstr "Lien TopTen widget photo."
|
11869 |
|
11870 |
+
#: wppa-settings-autosave.php:5191
|
11871 |
msgid "Select the type of link the top ten photos point to."
|
11872 |
msgstr "Sélectionnez le type de lien, vers que les photos de topten pointent."
|
11873 |
|
11874 |
+
#: wppa-settings-autosave.php:5202
|
11875 |
msgid "the content of the virtual topten album."
|
11876 |
msgstr "le contenu de l’album virtuel topten."
|
11877 |
|
11878 |
+
#: wppa-settings-autosave.php:5203 wppa-settings-autosave.php:5251
|
11879 |
+
#: wppa-settings-autosave.php:5298 wppa-settings-autosave.php:5345
|
11880 |
msgid "the content of the thumbnails album."
|
11881 |
msgstr "le contenu de l’album de vignettes."
|
11882 |
|
11883 |
+
#: wppa-settings-autosave.php:5237
|
11884 |
msgid "LasTenWidget"
|
11885 |
msgstr "Widget LastTen"
|
11886 |
|
11887 |
+
#: wppa-settings-autosave.php:5238
|
11888 |
msgid "Last Ten widget photo link."
|
11889 |
msgstr "Last Ten lien de widget photo."
|
11890 |
|
11891 |
+
#: wppa-settings-autosave.php:5239
|
11892 |
msgid "Select the type of link the last ten photos point to."
|
11893 |
msgstr ""
|
11894 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
11895 |
|
11896 |
+
#: wppa-settings-autosave.php:5250
|
11897 |
#, fuzzy
|
11898 |
msgid "the content of the virtual lasten album."
|
11899 |
msgstr "le contenu de l'album lasten virtuel."
|
11900 |
|
11901 |
+
#: wppa-settings-autosave.php:5284
|
11902 |
msgid "CommentWidget"
|
11903 |
msgstr "Widget Comment"
|
11904 |
|
11905 |
+
#: wppa-settings-autosave.php:5285
|
11906 |
msgid "Comment widget photo link."
|
11907 |
msgstr "Lien vers le commentaire widget photo."
|
11908 |
|
11909 |
+
#: wppa-settings-autosave.php:5286
|
11910 |
#, fuzzy
|
11911 |
msgid "Select the type of link the comment widget photos point to."
|
11912 |
msgstr ""
|
11913 |
"Sélectionnez le type de lien les commentaires des photos de widget indiquent."
|
11914 |
|
11915 |
+
#: wppa-settings-autosave.php:5297
|
11916 |
#, fuzzy
|
11917 |
msgid "the content of the virtual comten album."
|
11918 |
msgstr "le contenu de l'album comten virtuel."
|
11919 |
|
11920 |
+
#: wppa-settings-autosave.php:5331
|
11921 |
msgid "FeaTenWidget"
|
11922 |
msgstr "Widget FeaTen"
|
11923 |
|
11924 |
+
#: wppa-settings-autosave.php:5332
|
11925 |
msgid "FeaTen widget photo link."
|
11926 |
msgstr "FeaTen lien photo widget."
|
11927 |
|
11928 |
+
#: wppa-settings-autosave.php:5333
|
11929 |
#, fuzzy
|
11930 |
msgid "Select the type of link the featured ten photos point to."
|
11931 |
msgstr ""
|
11932 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
11933 |
|
11934 |
+
#: wppa-settings-autosave.php:5344
|
11935 |
#, fuzzy
|
11936 |
msgid "the content of the virtual featen album."
|
11937 |
msgstr "le contenu de l'album featen virtuel."
|
11938 |
|
11939 |
+
#: wppa-settings-autosave.php:5377
|
11940 |
#, fuzzy
|
11941 |
msgid "Links from other WPPA+ images"
|
11942 |
msgstr "Liens à partir d'autres LPPT images"
|
11943 |
|
11944 |
+
#: wppa-settings-autosave.php:5379
|
11945 |
msgid "Cover Image"
|
11946 |
msgstr "Image de couverture"
|
11947 |
|
11948 |
+
#: wppa-settings-autosave.php:5380
|
11949 |
#, fuzzy
|
11950 |
msgid "The link from the cover image of an album."
|
11951 |
msgstr "Le lien de l'image de couverture d'un album."
|
11952 |
|
11953 |
+
#: wppa-settings-autosave.php:5381
|
11954 |
#, fuzzy
|
11955 |
msgid "Select the type of link the coverphoto points to."
|
11956 |
msgstr "Sélectionnez le type de lien les points de Photo de couverture."
|
11957 |
|
11958 |
+
#: wppa-settings-autosave.php:5382
|
11959 |
#, fuzzy
|
11960 |
msgid "The link from the album title can be configured on the Edit Album page."
|
11961 |
msgstr ""
|
11962 |
"Le lien entre le titre de l'album peut être configuré sur la page Modifier "
|
11963 |
"l'album."
|
11964 |
|
11965 |
+
#: wppa-settings-autosave.php:5383
|
11966 |
#, fuzzy
|
11967 |
msgid "This link will be used for the photo also if you select: same as title."
|
11968 |
msgstr ""
|
11969 |
"Ce lien sera utilisé pour la photo aussi si vous sélectionnez: même que le "
|
11970 |
"titre."
|
11971 |
|
11972 |
+
#: wppa-settings-autosave.php:5384
|
11973 |
#, fuzzy
|
11974 |
msgid ""
|
11975 |
"If you specify New Tab on this line, all links from the cover will open a new "
|
11978 |
"Si vous spécifiez un nouvel onglet sur cette ligne, tous les liens de la "
|
11979 |
"couverture va ouvrir un nouvel onglet,"
|
11980 |
|
11981 |
+
#: wppa-settings-autosave.php:5385
|
11982 |
msgid "except when Ajax is activated on Table IV-A1."
|
11983 |
msgstr "sauf si Ajax est activé sur la Table IV-A1."
|
11984 |
|
11985 |
+
#: wppa-settings-autosave.php:5396 wppa-settings-autosave.php:9947
|
11986 |
msgid "same as title."
|
11987 |
msgstr "identique au titre."
|
11988 |
|
11989 |
+
#: wppa-settings-autosave.php:5398
|
11990 |
msgid "a slideshow starting at the photo"
|
11991 |
msgstr "un diaporama à partir de la photo"
|
11992 |
|
11993 |
+
#: wppa-settings-autosave.php:5419
|
11994 |
msgid "Thumbnail"
|
11995 |
msgstr "Vignette"
|
11996 |
|
11997 |
+
#: wppa-settings-autosave.php:5420
|
11998 |
msgid "Thumbnail link."
|
11999 |
msgstr "Lien vignette."
|
12000 |
|
12001 |
+
#: wppa-settings-autosave.php:5421 wppa-settings-autosave.php:5471
|
12002 |
+
#: wppa-settings-autosave.php:5513
|
12003 |
#, fuzzy
|
12004 |
msgid "Select the type of link you want, or no link at all."
|
12005 |
msgstr "Sélectionnez le type de lien que vous voulez, ou pas de lien du tout."
|
12006 |
|
12007 |
+
#: wppa-settings-autosave.php:5422 wppa-settings-autosave.php:5472
|
12008 |
+
#: wppa-settings-autosave.php:5514
|
12009 |
#, fuzzy
|
12010 |
msgid ""
|
12011 |
"If you select the fullsize photo on its own, it will be stretched to fit, "
|
12014 |
"Si vous sélectionnez la photo fullsize sur son propre, elle sera étirée pour "
|
12015 |
"tenir, indépendamment de ce paramètre."
|
12016 |
|
12017 |
+
#: wppa-settings-autosave.php:5423 wppa-settings-autosave.php:5473
|
12018 |
+
#: wppa-settings-autosave.php:5515
|
12019 |
#, fuzzy, php-format
|
12020 |
msgid ""
|
12021 |
"Note that a page must have at least %%wppa%% or [wppa][/wppa] in its content "
|
12024 |
"Notez qu'une page doit avoir au moins %% LPPT %% ou [LPPT] [/ LPPT] dans son "
|
12025 |
"contenu pour afficher la photo (s)."
|
12026 |
|
12027 |
+
#: wppa-settings-autosave.php:5452
|
12028 |
msgid "Auto Page"
|
12029 |
msgstr "Page auto"
|
12030 |
|
12031 |
+
#: wppa-settings-autosave.php:5469
|
12032 |
msgid "Sphoto"
|
12033 |
msgstr "Sphoto"
|
12034 |
|
12035 |
+
#: wppa-settings-autosave.php:5470
|
12036 |
msgid "Single photo link."
|
12037 |
msgstr "Lien photo unique"
|
12038 |
|
12039 |
+
#: wppa-settings-autosave.php:5511
|
12040 |
msgid "Mphoto"
|
12041 |
msgstr "Mphoto"
|
12042 |
|
12043 |
+
#: wppa-settings-autosave.php:5512
|
12044 |
#, fuzzy
|
12045 |
msgid "Media-like photo link."
|
12046 |
msgstr "Media-comme lien de photo."
|
12047 |
|
12048 |
+
#: wppa-settings-autosave.php:5554
|
12049 |
#, fuzzy
|
12050 |
msgid "Slideshow fullsize link"
|
12051 |
msgstr "lien fullsize Diaporama"
|
12052 |
|
12053 |
+
#: wppa-settings-autosave.php:5555
|
12054 |
#, fuzzy
|
12055 |
msgid ""
|
12056 |
"You can overrule lightbox but not big browse buttons with the photo specifc "
|
12059 |
"Vous pouvez annuler lightbox mais pas de gros boutons de navigation avec le "
|
12060 |
"lien de photo specifc."
|
12061 |
|
12062 |
+
#: wppa-settings-autosave.php:5556
|
12063 |
msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
|
12064 |
msgstr ""
|
12065 |
"Diaporama plein écran peut être définie seulement par le shortcode WPPA_SET."
|
12066 |
|
12067 |
+
#: wppa-settings-autosave.php:5569
|
12068 |
#, fuzzy
|
12069 |
msgid "lightbox single photos."
|
12070 |
msgstr "lightbox des photos simples."
|
12071 |
|
12072 |
+
#: wppa-settings-autosave.php:5571
|
12073 |
msgid "the thumbnails."
|
12074 |
msgstr "les vignettes."
|
12075 |
|
12076 |
+
#: wppa-settings-autosave.php:5572
|
12077 |
msgid "fullsize slideshow"
|
12078 |
msgstr "diaporama fullsize"
|
12079 |
|
12080 |
+
#: wppa-settings-autosave.php:5597
|
12081 |
msgid "Film linktype"
|
12082 |
msgstr "Film linktype"
|
12083 |
|
12084 |
+
#: wppa-settings-autosave.php:5598
|
12085 |
msgid "Direct access goto image in:"
|
12086 |
msgstr "Accès direct à l'image dans:"
|
12087 |
|
12088 |
+
#: wppa-settings-autosave.php:5599
|
12089 |
#, fuzzy
|
12090 |
msgid "Select the action to be taken when the user clicks on a filmstrip image."
|
12091 |
msgstr ""
|
12092 |
"Sélectionnez l'action à prendre lorsque l'utilisateur clique sur une image de "
|
12093 |
"pellicule."
|
12094 |
|
12095 |
+
#: wppa-settings-autosave.php:5604
|
12096 |
msgid "slideshow window"
|
12097 |
msgstr "fenêtre de diaporama"
|
12098 |
|
12099 |
+
#: wppa-settings-autosave.php:5605
|
12100 |
msgid "lightbox overlay"
|
12101 |
msgstr "superposition de lightbox"
|
12102 |
|
12103 |
+
#: wppa-settings-autosave.php:5620
|
12104 |
msgid "Other links"
|
12105 |
msgstr "Autres liens"
|
12106 |
|
12107 |
+
#: wppa-settings-autosave.php:5622
|
12108 |
msgid "Download Link (aka Art Monkey link)"
|
12109 |
msgstr "Lien de élécharger (le lien Art Monkey)"
|
12110 |
|
12111 |
+
#: wppa-settings-autosave.php:5623
|
12112 |
#, fuzzy
|
12113 |
msgid "Makes the photo name a download button."
|
12114 |
msgstr "Fait nommer la photo un bouton de téléchargement."
|
12115 |
|
12116 |
+
#: wppa-settings-autosave.php:5624
|
12117 |
#, fuzzy
|
12118 |
msgid "Link Photo name in slideshow to file or zip with photoname as filename."
|
12119 |
msgstr ""
|
12120 |
"Lien photo nom dans le diaporama à déposer ou zip avec photoname comme nom de "
|
12121 |
"fichier."
|
12122 |
|
12123 |
+
#: wppa-settings-autosave.php:5628 wppa-settings-autosave.php:5675
|
12124 |
msgid "image file"
|
12125 |
msgstr "fichier d' image"
|
12126 |
|
12127 |
+
#: wppa-settings-autosave.php:5629 wppa-settings-autosave.php:5676
|
12128 |
msgid "zipped image"
|
12129 |
msgstr "image compressée"
|
12130 |
|
12131 |
+
#: wppa-settings-autosave.php:5642
|
12132 |
msgid "Art Monkey Source"
|
12133 |
msgstr "'Art monkey' Source"
|
12134 |
|
12135 |
+
#: wppa-settings-autosave.php:5643
|
12136 |
#, fuzzy
|
12137 |
msgid "Use Source file for art monkey link if available."
|
12138 |
msgstr "Utilisez le fichier source pour le lien art de singe si disponible."
|
12139 |
|
12140 |
+
#: wppa-settings-autosave.php:5652
|
12141 |
msgid "Art Monkey Display"
|
12142 |
msgstr "Affichage d'Art Monkey"
|
12143 |
|
12144 |
+
#: wppa-settings-autosave.php:5653
|
12145 |
#, fuzzy
|
12146 |
msgid "Select button or link ( text )."
|
12147 |
msgstr "Sélectionnez le bouton ou le lien (texte)."
|
12148 |
|
12149 |
+
#: wppa-settings-autosave.php:5658
|
12150 |
msgid "Textlink"
|
12151 |
msgstr "Lien texte"
|
12152 |
|
12153 |
+
#: wppa-settings-autosave.php:5670
|
12154 |
#, fuzzy
|
12155 |
msgid "Popup Download Link"
|
12156 |
msgstr "Popup Lien de téléchargement"
|
12157 |
|
12158 |
+
#: wppa-settings-autosave.php:5671
|
12159 |
msgid "Configure the download link on fullsize popups."
|
12160 |
msgstr "Configurer le lien de téléchargement sur fullsize popups."
|
12161 |
|
12162 |
+
#: wppa-settings-autosave.php:5672
|
12163 |
#, fuzzy
|
12164 |
msgid "Link fullsize popup download button to either image or zip file."
|
12165 |
msgstr ""
|
12166 |
"Lien fullsize contextuel téléchargement bouton pour l'autre image ou d'un "
|
12167 |
"fichier zip."
|
12168 |
|
12169 |
+
#: wppa-settings-autosave.php:5688
|
12170 |
msgid "Download link on lightbox"
|
12171 |
msgstr "Lien de télécharger au lightbox"
|
12172 |
|
12173 |
+
#: wppa-settings-autosave.php:5689
|
12174 |
msgid "Art monkey link on lightbox photo names."
|
12175 |
msgstr "Lien de 'Art monkey' sur les noms de photo lightbox."
|
12176 |
|
12177 |
+
#: wppa-settings-autosave.php:5698
|
12178 |
msgid "Album download link"
|
12179 |
msgstr "Lien de téléchargement de l'album"
|
12180 |
|
12181 |
+
#: wppa-settings-autosave.php:5699
|
12182 |
#, fuzzy
|
12183 |
msgid "Place an album download link on the album covers"
|
12184 |
msgstr "Placez un lien album de téléchargement sur les pochettes d'albums"
|
12185 |
|
12186 |
+
#: wppa-settings-autosave.php:5700
|
12187 |
msgid "Creates a download zipfile containing the photos of the album"
|
12188 |
msgstr "Créer un fichier de téléchargement zip contenant les photos de l’album"
|
12189 |
|
12190 |
+
#: wppa-settings-autosave.php:5708
|
12191 |
msgid "Album download Source"
|
12192 |
msgstr "Télécharger l’album Source"
|
12193 |
|
12194 |
+
#: wppa-settings-autosave.php:5709
|
12195 |
#, fuzzy
|
12196 |
msgid "Use Source file for album download link if available."
|
12197 |
msgstr ""
|
12198 |
"Utilisez le fichier source pour l'album lien de téléchargement si disponible."
|
12199 |
|
12200 |
+
#: wppa-settings-autosave.php:5718
|
12201 |
msgid "Tagcloud Link"
|
12202 |
msgstr "Lien Tagcloud"
|
12203 |
|
12204 |
+
#: wppa-settings-autosave.php:5719
|
12205 |
msgid "Configure the link from the tags in the tag cloud."
|
12206 |
msgstr "Configurer le lien entre les balises dans le nuage de balises."
|
12207 |
|
12208 |
+
#: wppa-settings-autosave.php:5720
|
12209 |
#, fuzzy
|
12210 |
msgid "Link the tag words to ether the thumbnails or the slideshow."
|
12211 |
msgstr "Lier les mots d'étiquette à l'éther les vignettes ou le diaporama."
|
12212 |
|
12213 |
+
#: wppa-settings-autosave.php:5729 wppa-settings-autosave.php:5762
|
12214 |
+
#: wppa-settings-autosave.php:5859 wppa-widget-admin.php:280
|
12215 |
msgid "slideshow"
|
12216 |
msgstr "diaporama"
|
12217 |
|
12218 |
+
#: wppa-settings-autosave.php:5744 wppa-settings-autosave.php:5777
|
12219 |
+
#: wppa-settings-autosave.php:5921
|
12220 |
#, fuzzy
|
12221 |
msgid "Occur"
|
12222 |
msgstr "avoir lieu"
|
12223 |
|
12224 |
+
#: wppa-settings-autosave.php:5751
|
12225 |
msgid "Multitag Link"
|
12226 |
msgstr "Lien Multitag"
|
12227 |
|
12228 |
+
#: wppa-settings-autosave.php:5752
|
12229 |
msgid "Configure the link from the multitag selection."
|
12230 |
msgstr "Configurer la liaison de la sélection multibalises."
|
12231 |
|
12232 |
+
#: wppa-settings-autosave.php:5753
|
12233 |
#, fuzzy
|
12234 |
msgid "Link to ether the thumbnails or the slideshow."
|
12235 |
msgstr "Lien vers l'éther les vignettes ou le diaporama."
|
12236 |
|
12237 |
+
#: wppa-settings-autosave.php:5784
|
12238 |
msgid "Super View Landing"
|
12239 |
msgstr "Destination Superview"
|
12240 |
|
12241 |
+
#: wppa-settings-autosave.php:5785
|
12242 |
#, fuzzy
|
12243 |
msgid "The landing page for the Super View widget."
|
12244 |
msgstr "La page d'atterrissage pour le widget Super View."
|
12245 |
|
12246 |
+
#: wppa-settings-autosave.php:5793
|
12247 |
msgid "Defined by the visitor"
|
12248 |
msgstr "Défini par le visiteur"
|
12249 |
|
12250 |
+
#: wppa-settings-autosave.php:5806
|
12251 |
msgid "Uploader Landing"
|
12252 |
msgstr "Destination du chargement"
|
12253 |
|
12254 |
+
#: wppa-settings-autosave.php:5807
|
12255 |
#, fuzzy
|
12256 |
msgid "Select the landing page for the Uploader Widget"
|
12257 |
msgstr "Sélectionnez la page de destination pour le Uploader Widget"
|
12258 |
|
12259 |
+
#: wppa-settings-autosave.php:5827
|
12260 |
msgid "Bestof Landing"
|
12261 |
msgstr "Atterrissage de bestof"
|
12262 |
|
12263 |
+
#: wppa-settings-autosave.php:5828
|
12264 |
#, fuzzy
|
12265 |
msgid "Select the landing page for the BestOf Widget / Box"
|
12266 |
msgstr "Sélectionnez la page de destination pour le BestOf Widget / Box"
|
12267 |
|
12268 |
+
#: wppa-settings-autosave.php:5848
|
12269 |
msgid "Album navigator Link"
|
12270 |
msgstr "Navigator album lien"
|
12271 |
|
12272 |
+
#: wppa-settings-autosave.php:5849
|
12273 |
#, fuzzy
|
12274 |
msgid "Select link type and page for the Album navigator Widget"
|
12275 |
msgstr "Sélectionnez le type de lien et page pour l'album navigateur Widget"
|
12276 |
|
12277 |
+
#: wppa-settings-autosave.php:5877
|
12278 |
#, fuzzy
|
12279 |
msgid "Supersearch Landing"
|
12280 |
msgstr "Landing Supersearch"
|
12281 |
|
12282 |
+
#: wppa-settings-autosave.php:5878
|
12283 |
#, fuzzy
|
12284 |
msgid "Select the landing page for the Supersearch Box"
|
12285 |
msgstr "Sélectionnez la page de destination pour le Box Supersearch"
|
12286 |
|
12287 |
+
#: wppa-settings-autosave.php:5898
|
12288 |
#, fuzzy
|
12289 |
msgid "SM widget return"
|
12290 |
msgstr "SM retour widget"
|
12291 |
|
12292 |
+
#: wppa-settings-autosave.php:5899
|
12293 |
#, fuzzy
|
12294 |
msgid "Select the return link for social media from widgets"
|
12295 |
msgstr "Sélectionnez le lien de retour pour les médias sociaux de widgets"
|
12296 |
|
12297 |
+
#: wppa-settings-autosave.php:5900
|
12298 |
#, fuzzy
|
12299 |
msgid ""
|
12300 |
"If you select Landing page, and it wont work, it may be required to set the "
|
12304 |
"peut être nécessaire de fixer le ÉCLATENT au numéro de séquence du shortcode "
|
12305 |
"d'atterrissage sur la page."
|
12306 |
|
12307 |
+
#: wppa-settings-autosave.php:5901
|
12308 |
#, fuzzy
|
12309 |
msgid ""
|
12310 |
"Normally it is 1, but you can try 2 etc. Always create a new shared link to "
|
12313 |
"Normalement, il est 1, mais vous pouvez essayer 2, etc. Toujours créer un "
|
12314 |
"nouveau lien partagé pour tester un réglage."
|
12315 |
|
12316 |
+
#: wppa-settings-autosave.php:5909
|
12317 |
msgid "Home page"
|
12318 |
msgstr "Page d'accueil"
|
12319 |
|
12320 |
+
#: wppa-settings-autosave.php:5930
|
12321 |
msgid "Album cover subalbums link"
|
12322 |
msgstr "Lien de sous-albums à la couverture de l’album"
|
12323 |
|
12324 |
+
#: wppa-settings-autosave.php:5931
|
12325 |
#, fuzzy
|
12326 |
msgid ""
|
12327 |
"Select the linktype and display type for sub-albums on parent album covers."
|
12329 |
"Sélectionnez le linktype et le type d'affichage pour les sous-albums sur "
|
12330 |
"l'album de parent couvertures."
|
12331 |
|
12332 |
+
#: wppa-settings-autosave.php:5939
|
12333 |
msgid "No link at all"
|
12334 |
msgstr "Pas de lien du tout"
|
12335 |
|
12336 |
+
#: wppa-settings-autosave.php:5940
|
12337 |
msgid "Thumbnails and covers"
|
12338 |
msgstr "Vignettes et couvertures"
|
12339 |
|
12340 |
+
#: wppa-settings-autosave.php:5941
|
12341 |
msgid "Slideshow or covers"
|
12342 |
msgstr "Diaporama et couvertures"
|
12343 |
|
12344 |
+
#: wppa-settings-autosave.php:5951
|
12345 |
msgid "No display at all"
|
12346 |
msgstr "Pas d'afficahge du tout"
|
12347 |
|
12348 |
+
#: wppa-settings-autosave.php:5952
|
12349 |
msgid "A list with sub(sub) albums"
|
12350 |
msgstr "Une liste avec sub(sub) albums"
|
12351 |
|
12352 |
+
#: wppa-settings-autosave.php:5953
|
12353 |
msgid "A list of children only"
|
12354 |
msgstr "Une liste d’enfants seulement"
|
12355 |
|
12356 |
+
#: wppa-settings-autosave.php:5954
|
12357 |
msgid "An enumeration of names"
|
12358 |
msgstr "Une énumération de noms"
|
12359 |
|
12360 |
+
#: wppa-settings-autosave.php:5955
|
12361 |
#, fuzzy
|
12362 |
msgid "Micro thumbnails"
|
12363 |
msgstr "miniatures Micro"
|
12364 |
|
12365 |
+
#: wppa-settings-autosave.php:5993
|
12366 |
msgid "Table VII:"
|
12367 |
msgstr "Table VII:"
|
12368 |
|
12369 |
+
#: wppa-settings-autosave.php:5993
|
12370 |
#, fuzzy
|
12371 |
msgid "Permissions and Restrictions:"
|
12372 |
msgstr "Autorisations et restrictions:"
|
12373 |
|
12374 |
+
#: wppa-settings-autosave.php:5994
|
12375 |
msgid ""
|
12376 |
"This table describes the access settings for admin and front-end activities."
|
12377 |
msgstr "Ce Table décrit les paramètres d’accès admin et activités frontale."
|
12378 |
|
12379 |
+
#: wppa-settings-autosave.php:6015
|
12380 |
msgid "Moderate P+C"
|
12381 |
msgstr "Modérer P+C"
|
12382 |
|
12383 |
+
#: wppa-settings-autosave.php:6019
|
12384 |
msgid "Comment Admin"
|
12385 |
msgstr "Admin Commentaire"
|
12386 |
|
12387 |
+
#: wppa-settings-autosave.php:6020
|
12388 |
msgid "Help & Info"
|
12389 |
msgstr "Aide & Information"
|
12390 |
|
12391 |
+
#: wppa-settings-autosave.php:6022
|
12392 |
msgid "Role"
|
12393 |
msgstr "Rôle"
|
12394 |
|
12395 |
+
#: wppa-settings-autosave.php:6031
|
12396 |
msgid ""
|
12397 |
"Admin settings per user role. Enabling these settings will overrule the front-"
|
12398 |
"end settings for the specific user role"
|
12400 |
"Paramètres admin par rôle d’utilisateur. Activation de ces paramètres annule "
|
12401 |
"les paramètres frontal pour le rôle d’utilisateur spécifique"
|
12402 |
|
12403 |
+
#: wppa-settings-autosave.php:6055
|
12404 |
msgid "Frontend create Albums and upload Photos enabling and limiting settings"
|
12405 |
msgstr ""
|
12406 |
"Paramètres Frontend de permettant et en limitant de créer Albums et "
|
12407 |
"télécharger des Photos"
|
12408 |
|
12409 |
+
#: wppa-settings-autosave.php:6057
|
12410 |
msgid "User create Albums"
|
12411 |
msgstr "L’utilisateur créer des Albums"
|
12412 |
|
12413 |
+
#: wppa-settings-autosave.php:6058
|
12414 |
msgid "Enable frontend album creation."
|
12415 |
msgstr "Activer la création d’album de front-end."
|
12416 |
|
12417 |
+
#: wppa-settings-autosave.php:6059
|
12418 |
#, fuzzy
|
12419 |
msgid "If you check this item, frontend album creation will be enabled."
|
12420 |
msgstr "Si vous cochez cet article, création d'albums frontend sera activé."
|
12421 |
|
12422 |
+
#: wppa-settings-autosave.php:6069
|
12423 |
msgid "User edit album"
|
12424 |
msgstr "L'utilisateur éditer l’album"
|
12425 |
|
12426 |
+
#: wppa-settings-autosave.php:6070
|
12427 |
msgid "Enable frontend edit album name and description."
|
12428 |
msgstr "Activer front-end modifier le nom et la description album."
|
12429 |
|
12430 |
+
#: wppa-settings-autosave.php:6080
|
12431 |
msgid "User delete Albums"
|
12432 |
msgstr "L’utilisateur supprimer des Albums"
|
12433 |
|
12434 |
+
#: wppa-settings-autosave.php:6081
|
12435 |
msgid "Enable frontend album deletion"
|
12436 |
msgstr "Activer la suppression d'album de front-end"
|
12437 |
|
12438 |
+
#: wppa-settings-autosave.php:6082
|
12439 |
#, fuzzy
|
12440 |
msgid "If you check this item, frontend album deletion will be enabled."
|
12441 |
msgstr "Si vous cochez cet article, l'album frontend suppression sera activé."
|
12442 |
|
12443 |
+
#: wppa-settings-autosave.php:6092
|
12444 |
msgid "User create Albums login"
|
12445 |
msgstr "L’utilisateur créer des Albums login"
|
12446 |
|
12447 |
+
#: wppa-settings-autosave.php:6093
|
12448 |
msgid "Frontend album creation requires the user is logged in."
|
12449 |
msgstr "Création album frontend exige que l’utilisateur soit connecté."
|
12450 |
|
12451 |
+
#: wppa-settings-autosave.php:6119
|
12452 |
#, php-format
|
12453 |
msgid "Upload limit %s"
|
12454 |
msgstr "Upload limit %s"
|
12455 |
|
12456 |
+
#: wppa-settings-autosave.php:6120
|
12457 |
#, fuzzy
|
12458 |
msgid "Limit upload capacity for logged out users."
|
12459 |
msgstr ""
|
12460 |
"Limiter la capacité de téléchargement pour les utilisateurs enregistrés sur."
|
12461 |
|
12462 |
+
#: wppa-settings-autosave.php:6121
|
12463 |
#, fuzzy, php-format
|
12464 |
msgid "Limit upload capacity for the user role %s."
|
12465 |
msgstr "Limiter la capacité de téléchargement pour le rôle d'utilisateur%s."
|
12466 |
|
12467 |
+
#: wppa-settings-autosave.php:6122
|
12468 |
msgid "This setting has only effect when Table VII-B2 is unchecked."
|
12469 |
msgstr "Ce paramètre influe seulement lorsque le Table VII-B2 n’est pas cochée."
|
12470 |
|
12471 |
+
#: wppa-settings-autosave.php:6123
|
12472 |
msgid ""
|
12473 |
"This limitation only applies to frontend uploads when the same userrole does "
|
12474 |
"not have the Upload checkbox checked in Table VII-A."
|
12476 |
"Cette limitation s’applique uniquement aux frontend téléchargements lorsque "
|
12477 |
"l’userrole même n’a pas coxhé la case à cocher Télécharger dans le Table VII-A."
|
12478 |
|
12479 |
+
#: wppa-settings-autosave.php:6124 wppa-settings-autosave.php:6140
|
12480 |
+
#: wppa-settings-autosave.php:7957
|
12481 |
msgid "A value of 0 means: no limit."
|
12482 |
msgstr "Une valeur de 0 signifie: pas de limitation."
|
12483 |
|
12484 |
+
#: wppa-settings-autosave.php:6137
|
12485 |
#, php-format
|
12486 |
msgid "Album limit %s"
|
12487 |
msgstr "Album limit %s"
|
12488 |
|
12489 |
+
#: wppa-settings-autosave.php:6138
|
12490 |
#, fuzzy, php-format
|
12491 |
msgid "Limit number of albums for the user role %s."
|
12492 |
msgstr "Limiter le nombre d'albums pour le rôle d'utilisateur%s."
|
12493 |
|
12494 |
+
#: wppa-settings-autosave.php:6139
|
12495 |
msgid ""
|
12496 |
"This limitation only applies to frontend create albums when the same userrole "
|
12497 |
"does not have the Album admin checkbox checked in Table VII-A."
|
12499 |
"Cette limitation s’applique uniquement aux frontend créer albums lorsque "
|
12500 |
"l’userrole même n’a pas coché la case à cocher Album admin dans le Table VII-A."
|
12501 |
|
12502 |
+
#: wppa-settings-autosave.php:6151
|
12503 |
msgid "Upload one only"
|
12504 |
msgstr "Charger un seul élément"
|
12505 |
|
12506 |
+
#: wppa-settings-autosave.php:6152
|
12507 |
#, fuzzy
|
12508 |
msgid "Non admin users can upload only one photo at a time."
|
12509 |
msgstr "Utilisateurs non admin peuvent télécharger une seule photo à la fois."
|
12510 |
|
12511 |
+
#: wppa-settings-autosave.php:6162
|
12512 |
msgid "Upload moderation"
|
12513 |
msgstr "Modération du chargement des photos"
|
12514 |
|
12515 |
+
#: wppa-settings-autosave.php:6163
|
12516 |
msgid "Uploaded photos need moderation."
|
12517 |
msgstr "La photo chargée nécessite une modération."
|
12518 |
|
12519 |
+
#: wppa-settings-autosave.php:6164
|
12520 |
msgid ""
|
12521 |
"If checked, photos uploaded by users who do not have photo album admin access "
|
12522 |
"rights need moderation."
|
12524 |
"Si elle est cochée, les photos téléchargées par les utilisateurs qui ne "
|
12525 |
"disposent pas des droits d'accès album photo admin besoin de modération."
|
12526 |
|
12527 |
+
#: wppa-settings-autosave.php:6165
|
12528 |
#, fuzzy
|
12529 |
msgid ""
|
12530 |
"Users who have photo album admin access rights can change the photo status to "
|
12533 |
"Les utilisateurs qui ont des droits d'accès photo album admin peuvent modifier "
|
12534 |
"l'état de la photo à publier ou en vedette."
|
12535 |
|
12536 |
+
#: wppa-settings-autosave.php:6166
|
12537 |
msgid "You can set the album admin access rights in Table VII-A."
|
12538 |
msgstr "Vous pouvez définir les droits d’accès admin album dans le Table VII-A."
|
12539 |
|
12540 |
+
#: wppa-settings-autosave.php:6175
|
12541 |
msgid "Upload notify"
|
12542 |
msgstr "Notification de chargement"
|
12543 |
|
12544 |
+
#: wppa-settings-autosave.php:6176
|
12545 |
#, fuzzy
|
12546 |
msgid "Notify admin at frontend upload."
|
12547 |
msgstr "Notifier l'administrateur au frontend téléchargement."
|
12548 |
|
12549 |
+
#: wppa-settings-autosave.php:6177 wppa-settings-autosave.php:6188
|
12550 |
msgid "If checked, admin will receive a notification by email."
|
12551 |
msgstr "Si cochée, admin recevra une notification par e-mail."
|
12552 |
|
12553 |
+
#: wppa-settings-autosave.php:6186
|
12554 |
#, fuzzy
|
12555 |
msgid "Upload backend notify"
|
12556 |
msgstr "Upload backend notifier"
|
12557 |
|
12558 |
+
#: wppa-settings-autosave.php:6187
|
12559 |
#, fuzzy
|
12560 |
msgid "Notify admin at backend upload."
|
12561 |
msgstr "Notifier l'administrateur au backend téléchargement."
|
12562 |
|
12563 |
+
#: wppa-settings-autosave.php:6197
|
12564 |
msgid "Max size in pixels"
|
12565 |
msgstr "Taille maximale en pixels"
|
12566 |
|
12567 |
+
#: wppa-settings-autosave.php:6198
|
12568 |
#, fuzzy
|
12569 |
msgid "Max size for height and width for front-end uploads."
|
12570 |
msgstr ""
|
12571 |
"Taille maximale en hauteur et en largeur pour les téléchargements frontaux."
|
12572 |
|
12573 |
+
#: wppa-settings-autosave.php:6199
|
12574 |
msgid "Enter the maximum size. 0 is unlimited"
|
12575 |
msgstr "Entrez la taille maximale. 0 est illimité"
|
12576 |
|
12577 |
+
#: wppa-settings-autosave.php:6208
|
12578 |
msgid "Home after Upload"
|
12579 |
msgstr "A l'accueil après le chargement"
|
12580 |
|
12581 |
+
#: wppa-settings-autosave.php:6209
|
12582 |
msgid "After successfull front-end upload, go to the home page."
|
12583 |
msgstr "Après téléchargement réussi de front-end, aller à la page d’accueil."
|
12584 |
|
12585 |
+
#: wppa-settings-autosave.php:6219
|
12586 |
msgid "Fe alert"
|
12587 |
msgstr "Fe alerte"
|
12588 |
|
12589 |
+
#: wppa-settings-autosave.php:6220
|
12590 |
#, fuzzy
|
12591 |
msgid "Show alertbox on successful front-end upload/create."
|
12592 |
msgstr "Afficher Alertbox sur téléchargement réussi front-end / créer."
|
12593 |
|
12594 |
+
#: wppa-settings-autosave.php:6230
|
12595 |
msgid "Admin Functionality restrictions for non administrators"
|
12596 |
msgstr "Restrictions de fonctionnalités Admin pour les non administrateurs"
|
12597 |
|
12598 |
+
#: wppa-settings-autosave.php:6232
|
12599 |
msgid "Alt thumb is restricted"
|
12600 |
msgstr "Pouce Alt est limité"
|
12601 |
|
12602 |
+
#: wppa-settings-autosave.php:6233
|
12603 |
#, fuzzy
|
12604 |
msgid "Using <b>alt thumbsize</b> is a restricted action."
|
12605 |
msgstr "Utilisation <b>alt Thumbsize</b> est une action restreinte."
|
12606 |
|
12607 |
+
#: wppa-settings-autosave.php:6234
|
12608 |
#, fuzzy
|
12609 |
msgid ""
|
12610 |
"If checked: alt thumbsize can not be set in album admin by users not having "
|
12613 |
"Si coché: alt Thumbsize ne peut pas être réglé dans l'album d'administration "
|
12614 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12615 |
|
12616 |
+
#: wppa-settings-autosave.php:6243
|
12617 |
#, fuzzy
|
12618 |
msgid "Link is restricted"
|
12619 |
msgstr "Link est limité"
|
12620 |
|
12621 |
+
#: wppa-settings-autosave.php:6244
|
12622 |
#, fuzzy
|
12623 |
msgid "Using <b>Link to</b> is a restricted action."
|
12624 |
msgstr "Utiliser un <b>lien vers</b> une action est restreinte."
|
12625 |
|
12626 |
+
#: wppa-settings-autosave.php:6245
|
12627 |
#, fuzzy
|
12628 |
msgid ""
|
12629 |
"If checked: Link to: can not be set in album admin by users not having admin "
|
12632 |
"Si coché: Lien vers: ne peut pas être définie dans l'album d'administration "
|
12633 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12634 |
|
12635 |
+
#: wppa-settings-autosave.php:6254
|
12636 |
msgid "CoverType is restricted"
|
12637 |
msgstr "CoverType est limitée"
|
12638 |
|
12639 |
+
#: wppa-settings-autosave.php:6255
|
12640 |
msgid "Changing <b>Cover Type</b> is a restricted action."
|
12641 |
msgstr "Changer de <b>Type de couverture</b> est une action restreinte."
|
12642 |
|
12643 |
+
#: wppa-settings-autosave.php:6256
|
12644 |
#, fuzzy
|
12645 |
msgid ""
|
12646 |
"If checked: Cover Type: can not be set in album admin by users not having "
|
12649 |
"Si coché: Cover Type: ne peut pas être définie dans l'album d'administration "
|
12650 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
12651 |
|
12652 |
+
#: wppa-settings-autosave.php:6265
|
12653 |
msgid "Photo order# is restricted"
|
12654 |
msgstr "Photo order# is restricted"
|
12655 |
|
12656 |
+
#: wppa-settings-autosave.php:6266
|
12657 |
msgid "Changing <b>Photo sort order #</b> is a restricted action."
|
12658 |
msgstr "Changer <b>Tri Photo No de sequence</b> est une action restreinte."
|
12659 |
|
12660 |
+
#: wppa-settings-autosave.php:6267
|
12661 |
#, fuzzy
|
12662 |
msgid ""
|
12663 |
"If checked: Photo sort order #: can not be set in photo admin by users not "
|
12666 |
"Si coché: Photo ordre de tri #: ne peut pas être sur la photo d'administration "
|
12667 |
"par les utilisateurs de ne pas avoir les droits admin."
|
12668 |
|
12669 |
+
#: wppa-settings-autosave.php:6276
|
12670 |
msgid "Change source restricted"
|
12671 |
msgstr "Changement de source limitée"
|
12672 |
|
12673 |
+
#: wppa-settings-autosave.php:6277
|
12674 |
msgid "Changing the import source dir requires admin rights."
|
12675 |
msgstr ""
|
12676 |
"Changer le répertoire de source d’importation nécessite des droits d’admin."
|
12677 |
|
12678 |
+
#: wppa-settings-autosave.php:6278
|
12679 |
#, fuzzy
|
12680 |
msgid ""
|
12681 |
"If checked, the imput source for importing photos and albums is restricted to "
|
12684 |
"Si elle est cochée, la source d'imput pour importer des photos et des albums "
|
12685 |
"est limitée à l'administrateur du rôle de l'utilisateur."
|
12686 |
|
12687 |
+
#: wppa-settings-autosave.php:6287
|
12688 |
msgid "Extended status restricted"
|
12689 |
msgstr "État étendu limitée"
|
12690 |
|
12691 |
+
#: wppa-settings-autosave.php:6288
|
12692 |
#, fuzzy
|
12693 |
msgid "Setting status other than pending or publish requires admin rights."
|
12694 |
msgstr ""
|
12695 |
"Réglage de l'état autre que l'attente ou publier nécessite des droits d'admin."
|
12696 |
|
12697 |
+
#: wppa-settings-autosave.php:6298
|
12698 |
#, fuzzy
|
12699 |
msgid "Photo description restricted"
|
12700 |
msgstr "Description de la photo restreinte"
|
12701 |
|
12702 |
+
#: wppa-settings-autosave.php:6299
|
12703 |
msgid "Edit photo description requires admin rights."
|
12704 |
msgstr "Modifier description photo nécessite des droits d’admin."
|
12705 |
|
12706 |
+
#: wppa-settings-autosave.php:6309
|
12707 |
#, fuzzy
|
12708 |
msgid "Update photofiles restricted"
|
12709 |
msgstr "Mise à jour Photofiles limités"
|
12710 |
|
12711 |
+
#: wppa-settings-autosave.php:6310
|
12712 |
#, fuzzy
|
12713 |
msgid "Re-upload files requires admin rights"
|
12714 |
msgstr "fichiers Re-upload nécessite des droits d'administrateur"
|
12715 |
|
12716 |
+
#: wppa-settings-autosave.php:6320
|
12717 |
#, fuzzy
|
12718 |
msgid "Miscellaneous limiting settings"
|
12719 |
msgstr "paramètres limitant Divers"
|
12720 |
|
12721 |
+
#: wppa-settings-autosave.php:6322
|
12722 |
msgid "Owners only"
|
12723 |
msgstr "Propriétaires seulement"
|
12724 |
|
12725 |
+
#: wppa-settings-autosave.php:6323
|
12726 |
#, fuzzy
|
12727 |
msgid "Limit edit album access to the album owners only."
|
12728 |
msgstr "Limitez album accès d'édition pour les propriétaires d'album uniquement."
|
12729 |
|
12730 |
+
#: wppa-settings-autosave.php:6324
|
12731 |
msgid "If checked, non-admin users can edit their own albums only."
|
12732 |
msgstr ""
|
12733 |
"Si cochée, les utilisateurs non-admin peuvent modifier leurs propres albums "
|
12734 |
"seulement."
|
12735 |
|
12736 |
+
#: wppa-settings-autosave.php:6333
|
12737 |
#, fuzzy
|
12738 |
msgid "Upload Owners only"
|
12739 |
msgstr "Upload Propriétaires seulement"
|
12740 |
|
12741 |
+
#: wppa-settings-autosave.php:6334
|
12742 |
#, fuzzy
|
12743 |
msgid "Limit uploads to the album owners only."
|
12744 |
msgstr "Limitez ajouts aux propriétaires d'album uniquement."
|
12745 |
|
12746 |
+
#: wppa-settings-autosave.php:6335
|
12747 |
#, fuzzy
|
12748 |
msgid ""
|
12749 |
"If checked, users can upload to their own own albums and --- public --- only."
|
12751 |
"Si elle est cochée, les utilisateurs peuvent télécharger leurs propres propres "
|
12752 |
"albums et --- --- publique seulement."
|
12753 |
|
12754 |
+
#: wppa-settings-autosave.php:6344
|
12755 |
msgid "Frontend Edit"
|
12756 |
msgstr "Front-end Modifier"
|
12757 |
|
12758 |
+
#: wppa-settings-autosave.php:6345
|
12759 |
msgid "Allow the uploader to edit the photo info"
|
12760 |
msgstr "Permettre à l’uploader modifier les infos de la photo"
|
12761 |
|
12762 |
+
#: wppa-settings-autosave.php:6346
|
12763 |
#, fuzzy
|
12764 |
msgid ""
|
12765 |
"If selected, any logged in user who meets the criteria has the capability to "
|
12768 |
"Si elle est sélectionnée, tout utilisateur connecté qui répond aux critères a "
|
12769 |
"la capacité de modifier les informations de photo."
|
12770 |
|
12771 |
+
#: wppa-settings-autosave.php:6347
|
12772 |
#, fuzzy
|
12773 |
msgid "Note: This may be AFTER moderation!!"
|
12774 |
msgstr "Note: Cela peut être APRÈS la modération !!"
|
12775 |
|
12776 |
+
#: wppa-settings-autosave.php:6349
|
12777 |
msgid "Classic"
|
12778 |
msgstr "Classic"
|
12779 |
|
12780 |
+
#: wppa-settings-autosave.php:6349
|
12781 |
msgid "New style"
|
12782 |
msgstr "Nouveau style"
|
12783 |
|
12784 |
+
#: wppa-settings-autosave.php:6358
|
12785 |
msgid "Fe Edit users"
|
12786 |
msgstr "Modifier par Utilisateurs"
|
12787 |
|
12788 |
+
#: wppa-settings-autosave.php:6359
|
12789 |
msgid "The criteria the user must meet to edit photo info"
|
12790 |
msgstr ""
|
12791 |
"Les critères l’utilisateur doit remplir pour modifier les informations de la "
|
12792 |
"photo"
|
12793 |
|
12794 |
+
#: wppa-settings-autosave.php:6362
|
12795 |
msgid "Admin and superuser"
|
12796 |
msgstr "Admin et superutilisateur"
|
12797 |
|
12798 |
+
#: wppa-settings-autosave.php:6362
|
12799 |
msgid "Owner, admin and superuser"
|
12800 |
msgstr "Propriétaire, admin et superutilisateur"
|
12801 |
|
12802 |
+
#: wppa-settings-autosave.php:6371
|
12803 |
msgid "Fe Edit Theme CSS"
|
12804 |
msgstr "Fe Edit thème CSS"
|
12805 |
|
12806 |
+
#: wppa-settings-autosave.php:6372
|
12807 |
msgid "The front-end edit photo dialog uses the theme CSS."
|
12808 |
msgstr "La boîte de dialogue Modifier frontal photo utilise le thème CSS."
|
12809 |
|
12810 |
+
#: wppa-settings-autosave.php:6382
|
12811 |
msgid "Fe Edit New Items"
|
12812 |
msgstr "Fe modifiez éléments nouveau style"
|
12813 |
|
12814 |
+
#: wppa-settings-autosave.php:6383
|
12815 |
msgid "The items that are fe editable"
|
12816 |
msgstr "Les éléments qui sont modifiables de frontal"
|
12817 |
|
12818 |
+
#: wppa-settings-autosave.php:6384
|
12819 |
msgid "See also Table II-J10!"
|
12820 |
msgstr "Voir aussi Table II-J10!"
|
12821 |
|
12822 |
+
#: wppa-settings-autosave.php:6397
|
12823 |
msgid "Fe Edit Button text"
|
12824 |
msgstr "Texte du bouton modifier de Fe"
|
12825 |
|
12826 |
+
#: wppa-settings-autosave.php:6398
|
12827 |
#, fuzzy
|
12828 |
msgid "The text on the Edit button."
|
12829 |
msgstr "Le texte sur le bouton Modifier."
|
12830 |
|
12831 |
+
#: wppa-settings-autosave.php:6408
|
12832 |
msgid "Fe Edit Dialog caption"
|
12833 |
msgstr "Fe Légende de la boîte de dialogue de modifier"
|
12834 |
|
12835 |
+
#: wppa-settings-autosave.php:6409
|
12836 |
#, fuzzy
|
12837 |
msgid "The text on the header of the popup."
|
12838 |
msgstr "Le texte sur l'en-tête de la fenêtre."
|
12839 |
|
12840 |
+
#: wppa-settings-autosave.php:6419
|
12841 |
msgid "Frontend Delete"
|
12842 |
msgstr "Front-end Supprimer"
|
12843 |
|
12844 |
+
#: wppa-settings-autosave.php:6420
|
12845 |
msgid "Allow the uploader to delete the photo"
|
12846 |
msgstr "Permettre à l’uploader effacer la photo"
|
12847 |
|
12848 |
+
#: wppa-settings-autosave.php:6430
|
12849 |
#, fuzzy
|
12850 |
msgid "Uploader Moderate Comment"
|
12851 |
msgstr "Uploader Modéré Commentaire"
|
12852 |
|
12853 |
+
#: wppa-settings-autosave.php:6431
|
12854 |
#, fuzzy
|
12855 |
msgid "The owner of the photo can moderate the photos comments."
|
12856 |
msgstr "Le propriétaire de la photo peut modérer les commentaires de photos."
|
12857 |
|
12858 |
+
#: wppa-settings-autosave.php:6432
|
12859 |
#, fuzzy
|
12860 |
msgid "This setting requires \"Uploader edit\" to be enabled also."
|
12861 |
msgstr "Ce paramètre requiert \"modifier Uploader\" doit être activé aussi."
|
12862 |
|
12863 |
+
#: wppa-settings-autosave.php:6441
|
12864 |
#, fuzzy
|
12865 |
msgid "Upload memory check frontend"
|
12866 |
msgstr "Connectez chèque frontend"
|
12867 |
|
12868 |
+
#: wppa-settings-autosave.php:6442 wppa-settings-autosave.php:6453
|
12869 |
msgid "Disable uploading photos that are too large."
|
12870 |
msgstr "Désactiver le téléchargement des photos qui sont trop grands."
|
12871 |
|
12872 |
+
#: wppa-settings-autosave.php:6443 wppa-settings-autosave.php:6454
|
12873 |
#, fuzzy
|
12874 |
msgid ""
|
12875 |
"To prevent out of memory crashes during upload and possible database "
|
12879 |
"base de données possible les incohérences, les téléchargements peuvent être "
|
12880 |
"évités si les photos sont trop gros."
|
12881 |
|
12882 |
+
#: wppa-settings-autosave.php:6452
|
12883 |
#, fuzzy
|
12884 |
msgid "Upload memory check admin"
|
12885 |
msgstr "Connectez chèque administrateur"
|
12886 |
|
12887 |
+
#: wppa-settings-autosave.php:6463
|
12888 |
msgid "Comment captcha"
|
12889 |
msgstr "Captcha commentaire"
|
12890 |
|
12891 |
+
#: wppa-settings-autosave.php:6464
|
12892 |
#, fuzzy
|
12893 |
msgid "Use a simple calculate captcha on comments form."
|
12894 |
msgstr "Utilisez un calcul simple, captcha sur formulaire de commentaires."
|
12895 |
|
12896 |
+
#: wppa-settings-autosave.php:6477
|
12897 |
msgid "Spam lifetime"
|
12898 |
msgstr "Durée de vie de spam"
|
12899 |
|
12900 |
+
#: wppa-settings-autosave.php:6478
|
12901 |
msgid "Delete spam comments when older than."
|
12902 |
msgstr "Supprimer le spam de commentaires lorsqu’il y a plus de."
|
12903 |
|
12904 |
+
#: wppa-settings-autosave.php:6505
|
12905 |
msgid "Avoid duplicates"
|
12906 |
msgstr "Éviter les doublons"
|
12907 |
|
12908 |
+
#: wppa-settings-autosave.php:6506
|
12909 |
#, fuzzy
|
12910 |
msgid "Prevent the creation of duplicate photos."
|
12911 |
msgstr "Empêcher la création de photos en double."
|
12912 |
|
12913 |
+
#: wppa-settings-autosave.php:6507
|
12914 |
#, fuzzy
|
12915 |
msgid ""
|
12916 |
"If checked: uploading, importing, copying or moving photos to other albums "
|
12921 |
"d'autres albums seront évités lorsque l'album desitation contient déjà une "
|
12922 |
"photo avec le même nom de fichier."
|
12923 |
|
12924 |
+
#: wppa-settings-autosave.php:6516
|
12925 |
msgid "Blacklist user"
|
12926 |
msgstr "Blacklister l'utilisateur"
|
12927 |
|
12928 |
+
#: wppa-settings-autosave.php:6517 wppa-settings-autosave.php:6518
|
12929 |
#, fuzzy
|
12930 |
msgid "Set the status of all the users photos to 'pending'."
|
12931 |
msgstr "Définir le statut de tous les utilisateurs des photos à 'en attente'."
|
12932 |
|
12933 |
+
#: wppa-settings-autosave.php:6519
|
12934 |
msgid "Also inhibits further uploads."
|
12935 |
msgstr "Inhibe aussi les téléchargements supplémentaires."
|
12936 |
|
12937 |
+
#: wppa-settings-autosave.php:6525
|
12938 |
msgid "--- select a user to blacklist ---"
|
12939 |
msgstr "--- choisir un utilisateur à bannir ---"
|
12940 |
|
12941 |
+
#: wppa-settings-autosave.php:6535 wppa-settings-autosave.php:6540
|
12942 |
+
#: wppa-settings-autosave.php:6561 wppa-settings-autosave.php:6599
|
12943 |
+
#: wppa-settings-autosave.php:6604 wppa-settings-autosave.php:6625
|
12944 |
+
#: wppa-settings-autosave.php:9055 wppa-settings-autosave.php:9097
|
12945 |
#, fuzzy
|
12946 |
msgid "The page will be reloaded after the action has taken place."
|
12947 |
msgstr "La page sera rechargée après que l'action a eu lieu."
|
12948 |
|
12949 |
+
#: wppa-settings-autosave.php:6541 wppa-settings-autosave.php:6605
|
12950 |
#, fuzzy
|
12951 |
msgid "User login name <b>( case sensitive! )</b>:"
|
12952 |
msgstr "Nom d' utilisateur de connexion <b>(sensible</b> à la <b>casse!):</b>"
|
12953 |
|
12954 |
+
#: wppa-settings-autosave.php:6549
|
12955 |
msgid "Unblacklist user"
|
12956 |
msgstr "Unblacklist utilisateur"
|
12957 |
|
12958 |
+
#: wppa-settings-autosave.php:6550
|
12959 |
#, fuzzy
|
12960 |
msgid "Set the status of all the users photos to 'publish'."
|
12961 |
msgstr "Définir le statut de tous les utilisateurs des photos à «publier»."
|
12962 |
|
12963 |
+
#: wppa-settings-autosave.php:6554
|
12964 |
msgid "--- select a user to unblacklist ---"
|
12965 |
msgstr "---Sélectionnez un utilisateur pour unblacklist---"
|
12966 |
|
12967 |
+
#: wppa-settings-autosave.php:6569
|
12968 |
msgid "Photo owner change"
|
12969 |
msgstr "Changer le propriétaire de la photo"
|
12970 |
|
12971 |
+
#: wppa-settings-autosave.php:6570
|
12972 |
msgid "Administrators can change photo owner"
|
12973 |
msgstr "Les administrateurs peuvent modifier le propriétaire de la photo"
|
12974 |
|
12975 |
+
#: wppa-settings-autosave.php:6580
|
12976 |
msgid "Super user"
|
12977 |
msgstr "Super utilisateur"
|
12978 |
|
12979 |
+
#: wppa-settings-autosave.php:6581
|
12980 |
msgid "Give these users all rights in wppa."
|
12981 |
msgstr "Donner à ces utilisateurs tous droits en wppa."
|
12982 |
|
12983 |
+
#: wppa-settings-autosave.php:6582
|
12984 |
#, fuzzy
|
12985 |
msgid "This gives the user all the administrator privileges within wppa."
|
12986 |
msgstr ""
|
12987 |
"Cela donne à l'utilisateur tous les privilèges d'administrateur au sein de "
|
12988 |
"LPPT."
|
12989 |
|
12990 |
+
#: wppa-settings-autosave.php:6583
|
12991 |
msgid ""
|
12992 |
"Make sure the user also has a role that has all the boxes ticked in Table VII-A"
|
12993 |
msgstr ""
|
12994 |
"Assurez-vous que l’utilisateur a également un rôle qui a toutes les cases "
|
12995 |
"cochées dans le Table VII-A"
|
12996 |
|
12997 |
+
#: wppa-settings-autosave.php:6589
|
12998 |
msgid "--- select a user to make superuser ---"
|
12999 |
msgstr "--- Sélectionner un utilisateur à faire superutilisateur ---"
|
13000 |
|
13001 |
+
#: wppa-settings-autosave.php:6613
|
13002 |
msgid "Unsuper user"
|
13003 |
msgstr "utilisateur Unsuper"
|
13004 |
|
13005 |
+
#: wppa-settings-autosave.php:6614
|
13006 |
#, fuzzy
|
13007 |
msgid "Remove user from super user list."
|
13008 |
msgstr "Supprimer l'utilisateur de la liste de super-utilisateur."
|
13009 |
|
13010 |
+
#: wppa-settings-autosave.php:6618
|
13011 |
msgid "--- select a user to unmake superuser ---"
|
13012 |
msgstr "--- Sélectionner un utilisateur à défaire superutilisateur ---"
|
13013 |
|
13014 |
+
#: wppa-settings-autosave.php:6651
|
13015 |
msgid "Table VIII:"
|
13016 |
msgstr "Table VIII:"
|
13017 |
|
13018 |
+
#: wppa-settings-autosave.php:6651
|
13019 |
msgid "Actions:"
|
13020 |
msgstr "Actions:"
|
13021 |
|
13022 |
+
#: wppa-settings-autosave.php:6652
|
13023 |
msgid "This table lists all actions that can be taken to the wppa+ system"
|
13024 |
msgstr ""
|
13025 |
"Ce table répertorie toutes les actions qui peuvent être prises pour la système "
|
13026 |
"wppa+"
|
13027 |
|
13028 |
+
#: wppa-settings-autosave.php:6662 wppa-settings-autosave.php:7392
|
13029 |
msgid "Specification"
|
13030 |
msgstr "Spécification"
|
13031 |
|
13032 |
+
#: wppa-settings-autosave.php:6663 wppa-settings-autosave.php:7393
|
13033 |
+
#: wppa-settings-autosave.php:9963 wppa-settings-autosave.php:9985
|
13034 |
msgid "Do it!"
|
13035 |
msgstr "Faites-le!"
|
13036 |
|
13037 |
+
#: wppa-settings-autosave.php:6665 wppa-settings-autosave.php:7395
|
13038 |
msgid "To Go"
|
13039 |
msgstr "Encore"
|
13040 |
|
13041 |
+
#: wppa-settings-autosave.php:6673
|
13042 |
msgid "Harmless and reverseable actions"
|
13043 |
msgstr "Actions inoffensives et reversibles"
|
13044 |
|
13045 |
+
#: wppa-settings-autosave.php:6675
|
13046 |
msgid "Ignore concurrency"
|
13047 |
msgstr "Ignorer l’accès concurrentiel"
|
13048 |
|
13049 |
+
#: wppa-settings-autosave.php:6676
|
13050 |
#, fuzzy
|
13051 |
msgid "Ignore the prevention of concurrent actions."
|
13052 |
msgstr "Ignorer la prévention des actions simultanées."
|
13053 |
|
13054 |
+
#: wppa-settings-autosave.php:6677
|
13055 |
#, fuzzy
|
13056 |
msgid ""
|
13057 |
"This setting is meant to recover from deadlock situations only. Use with care!"
|
13059 |
"Ce paramètre est destiné à se remettre de situations de blocage seulement. "
|
13060 |
"Utiliser avec précaution!"
|
13061 |
|
13062 |
+
#: wppa-settings-autosave.php:6688
|
13063 |
msgid "Setup"
|
13064 |
msgstr "Configuration"
|
13065 |
|
13066 |
+
#: wppa-settings-autosave.php:6689
|
13067 |
#, fuzzy
|
13068 |
msgid "Re-initialize plugin."
|
13069 |
msgstr "Re-initialiser plugin."
|
13070 |
|
13071 |
+
#: wppa-settings-autosave.php:6690
|
13072 |
#, fuzzy
|
13073 |
msgid ""
|
13074 |
"Re-initilizes the plugin, (re)creates database tables and sets up default "
|
13077 |
"Re-initilizes le plugin, (re) crée des tables de base de données et met en "
|
13078 |
"place des paramètres et des répertoires par défaut si nécessaire."
|
13079 |
|
13080 |
+
#: wppa-settings-autosave.php:6691
|
13081 |
#, fuzzy
|
13082 |
msgid ""
|
13083 |
"This action may be required to setup blogs in a multiblog (network) site as "
|
13087 |
"(réseau) site multiblog ainsi que dans de rares cas pour corriger les erreurs "
|
13088 |
"de initilization."
|
13089 |
|
13090 |
+
#: wppa-settings-autosave.php:6702
|
13091 |
msgid "Backup settings"
|
13092 |
msgstr "Réglages de la sauvegarde"
|
13093 |
|
13094 |
+
#: wppa-settings-autosave.php:6703
|
13095 |
#, fuzzy
|
13096 |
msgid "Save all settings into a backup file."
|
13097 |
msgstr "Enregistrer tous les paramètres dans un fichier de sauvegarde."
|
13098 |
|
13099 |
+
#: wppa-settings-autosave.php:6704
|
13100 |
#, fuzzy
|
13101 |
msgid "Saves all the settings into a backup file"
|
13102 |
msgstr "Enregistre tous les paramètres dans un fichier de sauvegarde"
|
13103 |
|
13104 |
+
#: wppa-settings-autosave.php:6715
|
13105 |
msgid "Load settings"
|
13106 |
msgstr "Réglages du chargement"
|
13107 |
|
13108 |
+
#: wppa-settings-autosave.php:6716
|
13109 |
#, fuzzy
|
13110 |
msgid "Restore all settings from defaults, a backup or skin file."
|
13111 |
msgstr ""
|
13112 |
"Restaurer tous les paramètres de défaut, un fichier de sauvegarde ou de la "
|
13113 |
"peau."
|
13114 |
|
13115 |
+
#: wppa-settings-autosave.php:6717
|
13116 |
#, fuzzy
|
13117 |
msgid ""
|
13118 |
"Restores all the settings from the factory supplied defaults, the backup you "
|
13121 |
"Restaure tous les réglages des paramètres par défaut fournis, la sauvegarde "
|
13122 |
"que vous avez créé ou d'un fichier de la peau."
|
13123 |
|
13124 |
+
#: wppa-settings-autosave.php:6723
|
13125 |
msgid "--- set to defaults ---"
|
13126 |
msgstr "--- Réglages par défaut ---"
|
13127 |
|
13128 |
+
#: wppa-settings-autosave.php:6726
|
13129 |
msgid "--- restore backup ---"
|
13130 |
msgstr "--- restaurer la sauvegarde ---"
|
13131 |
|
13132 |
+
#: wppa-settings-autosave.php:6748
|
13133 |
msgid "Regenerate"
|
13134 |
msgstr "Regénérer"
|
13135 |
|
13136 |
+
#: wppa-settings-autosave.php:6749 wppa-settings-autosave.php:6750
|
13137 |
msgid "Regenerate all thumbnails."
|
13138 |
msgstr "Refaire toutes les vignettes."
|
13139 |
|
13140 |
+
#: wppa-settings-autosave.php:6753 wppa-settings-autosave.php:6857
|
13141 |
+
#: wppa-settings-autosave.php:6924
|
13142 |
msgid "Skip one"
|
13143 |
msgstr "Ignorer un"
|
13144 |
|
13145 |
+
#: wppa-settings-autosave.php:6762
|
13146 |
msgid "Rerate"
|
13147 |
msgstr "Re-noter"
|
13148 |
|
13149 |
+
#: wppa-settings-autosave.php:6763
|
13150 |
msgid "Recalculate ratings."
|
13151 |
msgstr "Recalculer les cotes."
|
13152 |
|
13153 |
+
#: wppa-settings-autosave.php:6764
|
13154 |
#, fuzzy
|
13155 |
msgid ""
|
13156 |
"This function will recalculate all mean photo ratings from the ratings table."
|
13158 |
"Cette fonction permet de recalculer toutes les notes signifie photo de la "
|
13159 |
"table de notation."
|
13160 |
|
13161 |
+
#: wppa-settings-autosave.php:6765
|
13162 |
msgid ""
|
13163 |
"You may need this function after the re-import of previously exported photos"
|
13164 |
msgstr ""
|
13165 |
"Vous pouvez avoir besoin de cette fonction après la ré-importer des photos "
|
13166 |
"préalablement exportés"
|
13167 |
|
13168 |
+
#: wppa-settings-autosave.php:6776
|
13169 |
msgid "Lost and found"
|
13170 |
msgstr "Objets trouvés"
|
13171 |
|
13172 |
+
#: wppa-settings-autosave.php:6777
|
13173 |
msgid "Find \"lost\" photos."
|
13174 |
msgstr "Retrouvez les photos « perdus »."
|
13175 |
|
13176 |
+
#: wppa-settings-autosave.php:6778
|
13177 |
#, fuzzy
|
13178 |
msgid "This function will attempt to find lost photos."
|
13179 |
msgstr "Cette fonction va tenter de trouver des photos perdues."
|
13180 |
|
13181 |
+
#: wppa-settings-autosave.php:6789
|
13182 |
msgid "Recuperate"
|
13183 |
msgstr "Récupérer"
|
13184 |
|
13185 |
+
#: wppa-settings-autosave.php:6791
|
13186 |
#, fuzzy
|
13187 |
msgid ""
|
13188 |
"This action will attempt to find and register IPTC and EXIF data from photos "
|
13191 |
"Cette action tentera de trouver et d'enregistrer IPTC et les données EXIF de "
|
13192 |
"photos dans le système LPPT ."
|
13193 |
|
13194 |
+
#: wppa-settings-autosave.php:6802
|
13195 |
msgid "Remake Index Albums"
|
13196 |
msgstr "Refaire l'index des photos"
|
13197 |
|
13198 |
+
#: wppa-settings-autosave.php:6803
|
13199 |
#, fuzzy
|
13200 |
msgid "Remakes the index database table for albums."
|
13201 |
msgstr "Remakes la table pour les albums de base de données d'index."
|
13202 |
|
13203 |
+
#: wppa-settings-autosave.php:6815
|
13204 |
msgid "Remake Index Photos"
|
13205 |
msgstr "Refaire l'index des photos"
|
13206 |
|
13207 |
+
#: wppa-settings-autosave.php:6816
|
13208 |
#, fuzzy
|
13209 |
msgid "Remakes the index database table for photos."
|
13210 |
msgstr "Remakes la table pour les photos de la base de données d'index."
|
13211 |
|
13212 |
+
#: wppa-settings-autosave.php:6834
|
13213 |
msgid "Convert to tree"
|
13214 |
msgstr "Convertir en arbre"
|
13215 |
|
13216 |
+
#: wppa-settings-autosave.php:6835
|
13217 |
msgid "Convert filesystem to tree structure."
|
13218 |
msgstr "Convertir des fichiers à structure arborescente."
|
13219 |
|
13220 |
+
#: wppa-settings-autosave.php:6838
|
13221 |
msgid "Convert to flat"
|
13222 |
msgstr "Convertir en plat"
|
13223 |
|
13224 |
+
#: wppa-settings-autosave.php:6839
|
13225 |
msgid "Convert filesystem to flat structure."
|
13226 |
msgstr "Autre système de fichiers à structure plate."
|
13227 |
|
13228 |
+
#: wppa-settings-autosave.php:6841
|
13229 |
#, fuzzy
|
13230 |
msgid ""
|
13231 |
"If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert to "
|
13234 |
"Si vous voulez revenir à une LPPT version antérieure à 5.0.16, vous devez "
|
13235 |
"convertir à plat en premier."
|
13236 |
|
13237 |
+
#: wppa-settings-autosave.php:6853
|
13238 |
#, fuzzy
|
13239 |
msgid "Remake the photofiles from photo sourcefiles."
|
13240 |
msgstr "Refaire les Photofiles de SourceFiles photo."
|
13241 |
|
13242 |
+
#: wppa-settings-autosave.php:6854
|
13243 |
#, fuzzy
|
13244 |
msgid ""
|
13245 |
"This action will remake the fullsize images, thumbnail images, and will "
|
13250 |
"actualiser les données IPTC et EXIF pour toutes les photos où la source se "
|
13251 |
"trouve dans le sous-répertoire de l'album correspondant du répertoire source."
|
13252 |
|
13253 |
+
#: wppa-settings-autosave.php:6866
|
13254 |
msgid "Orientation only"
|
13255 |
msgstr "Orientation seulement"
|
13256 |
|
13257 |
+
#: wppa-settings-autosave.php:6867
|
13258 |
#, fuzzy
|
13259 |
msgid "Remake non standard orientated photos only."
|
13260 |
msgstr "Remake non standards des photos orientées uniquement."
|
13261 |
|
13262 |
+
#: wppa-settings-autosave.php:6880
|
13263 |
msgid "Recalc sizes"
|
13264 |
msgstr "Recalc tailles"
|
13265 |
|
13266 |
+
#: wppa-settings-autosave.php:6881
|
13267 |
#, fuzzy
|
13268 |
msgid "Recalculate photosizes and save to db."
|
13269 |
msgstr "Recalculer photosizes et enregistrez-db."
|
13270 |
|
13271 |
+
#: wppa-settings-autosave.php:6893
|
13272 |
msgid "Renew album crypt"
|
13273 |
msgstr "Renouveler album crypte"
|
13274 |
|
13275 |
+
#: wppa-settings-autosave.php:6894
|
13276 |
msgid "Renew album encrcryption codes."
|
13277 |
msgstr "Renouveler codes encrcryption album."
|
13278 |
|
13279 |
+
#: wppa-settings-autosave.php:6906
|
13280 |
msgid "Renew photo crypt"
|
13281 |
msgstr "Renouveler photo crypte"
|
13282 |
|
13283 |
+
#: wppa-settings-autosave.php:6907
|
13284 |
#, fuzzy
|
13285 |
msgid "Renew photo encrcryption codes."
|
13286 |
msgstr "Renouveler photo codes encrcryption."
|
13287 |
|
13288 |
+
#: wppa-settings-autosave.php:6919
|
13289 |
msgid "Create orietation sources"
|
13290 |
msgstr "Créer des sources d'orietation"
|
13291 |
|
13292 |
+
#: wppa-settings-autosave.php:6920
|
13293 |
msgid "Creates correctly oriented pseudo source file."
|
13294 |
msgstr "Créer le fichier de source de pseudo correctement orienté."
|
13295 |
|
13296 |
+
#: wppa-settings-autosave.php:6933
|
13297 |
msgid "Clearing and other irreverseable actions"
|
13298 |
msgstr "Clairière et autres actions irreverseable"
|
13299 |
|
13300 |
+
#: wppa-settings-autosave.php:6935
|
13301 |
msgid "Clear ratings"
|
13302 |
msgstr "Effacer les votes"
|
13303 |
|
13304 |
+
#: wppa-settings-autosave.php:6936
|
13305 |
msgid "Reset all ratings."
|
13306 |
msgstr "Remettre les évaluations à zéro"
|
13307 |
|
13308 |
+
#: wppa-settings-autosave.php:6937
|
13309 |
msgid "WARNING: If checked, this will clear all ratings in the system!"
|
13310 |
msgstr ""
|
13311 |
"AVERTISSEMENT: Si coché, cela effacera toutes les notations dans le système!"
|
13312 |
|
13313 |
+
#: wppa-settings-autosave.php:6948
|
13314 |
msgid "Clear viewcounts"
|
13315 |
msgstr "Clair nombres des vues"
|
13316 |
|
13317 |
+
#: wppa-settings-autosave.php:6949
|
13318 |
#, fuzzy
|
13319 |
msgid "Reset all viewcounts."
|
13320 |
msgstr "Réinitialiser tous les nombre de vues."
|
13321 |
|
13322 |
+
#: wppa-settings-autosave.php:6950
|
13323 |
msgid "WARNING: If checked, this will clear all viewcounts in the system!"
|
13324 |
msgstr ""
|
13325 |
"AVERTISSEMENT: Si coché, cela effacera tous les nombres de vues dans le "
|
13326 |
"système!"
|
13327 |
|
13328 |
+
#: wppa-settings-autosave.php:6961
|
13329 |
msgid "Reset IPTC"
|
13330 |
msgstr "Remise à zéro IPTC"
|
13331 |
|
13332 |
+
#: wppa-settings-autosave.php:6962
|
13333 |
msgid "Clear all IPTC data."
|
13334 |
msgstr "Effacer les données IPTC"
|
13335 |
|
13336 |
+
#: wppa-settings-autosave.php:6963
|
13337 |
msgid "WARNING: If checked, this will clear all IPTC data in the system!"
|
13338 |
msgstr ""
|
13339 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données IPTC dans le système!"
|
13340 |
|
13341 |
+
#: wppa-settings-autosave.php:6974
|
13342 |
msgid "Reset EXIF"
|
13343 |
msgstr "Remise à zéro EXIF"
|
13344 |
|
13345 |
+
#: wppa-settings-autosave.php:6975
|
13346 |
msgid "Clear all EXIF data."
|
13347 |
msgstr "Effacer les données EXIF"
|
13348 |
|
13349 |
+
#: wppa-settings-autosave.php:6976
|
13350 |
msgid "WARNING: If checked, this will clear all EXIF data in the system!"
|
13351 |
msgstr ""
|
13352 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données d’EXIF dans le "
|
13353 |
"système!"
|
13354 |
|
13355 |
+
#: wppa-settings-autosave.php:6987
|
13356 |
msgid "Apply New Photodesc"
|
13357 |
msgstr "Appliquer nouvelle desc photo"
|
13358 |
|
13359 |
+
#: wppa-settings-autosave.php:6988
|
13360 |
msgid "Apply New photo description on all photos in the system."
|
13361 |
msgstr ""
|
13362 |
"Appliquer la nouvelle description de photo sur toutes les photos dans le "
|
13363 |
"système."
|
13364 |
|
13365 |
+
#: wppa-settings-autosave.php:7000
|
13366 |
msgid "Append to photodesc"
|
13367 |
msgstr "Annexer à photodesc"
|
13368 |
|
13369 |
+
#: wppa-settings-autosave.php:7001
|
13370 |
msgid "Append this text to all photo descriptions."
|
13371 |
msgstr "Ajouter ce texte à toutes les descriptions de photo."
|
13372 |
|
13373 |
+
#: wppa-settings-autosave.php:7015
|
13374 |
msgid "Remove from photodesc"
|
13375 |
msgstr "Retirer du photodescription"
|
13376 |
|
13377 |
+
#: wppa-settings-autosave.php:7016
|
13378 |
msgid "Remove this text from all photo descriptions."
|
13379 |
msgstr "Enlever ce texte de toutes les descriptions de photo."
|
13380 |
|
13381 |
+
#: wppa-settings-autosave.php:7030
|
13382 |
msgid "Remove empty albums"
|
13383 |
msgstr "Retirer les albums vides"
|
13384 |
|
13385 |
+
#: wppa-settings-autosave.php:7031
|
13386 |
#, fuzzy
|
13387 |
msgid "Removes albums that are not used."
|
13388 |
msgstr "Supprime les albums qui ne sont pas utilisés."
|
13389 |
|
13390 |
+
#: wppa-settings-autosave.php:7043
|
13391 |
msgid "Remove file-ext"
|
13392 |
msgstr "Supprimer l'extension de fichier"
|
13393 |
|
13394 |
+
#: wppa-settings-autosave.php:7044
|
13395 |
#, fuzzy
|
13396 |
msgid "Remove possible file extension from photo name."
|
13397 |
msgstr "Retirer l'extension de fichier à partir de nom de la photo."
|
13398 |
|
13399 |
+
#: wppa-settings-autosave.php:7045
|
13400 |
#, fuzzy
|
13401 |
msgid ""
|
13402 |
"This may be required for old photos, uploaded when the option in Table IX-D3 "
|
13405 |
"Cela peut être nécessaire pour les vieilles photos, téléchargé lorsque "
|
13406 |
"l'option dans le tableau IX-D3 était pas encore disponible / sélectionné."
|
13407 |
|
13408 |
+
#: wppa-settings-autosave.php:7056
|
13409 |
#, fuzzy
|
13410 |
msgid "Re-add file-ext"
|
13411 |
msgstr "Re-add file-ext"
|
13412 |
|
13413 |
+
#: wppa-settings-autosave.php:7057
|
13414 |
#, fuzzy
|
13415 |
msgid "Revert the <i>Remove file-ext</i> action."
|
13416 |
msgstr "Revert l'action <i>Supprimer fichier-ext.</i>"
|
13417 |
|
13418 |
+
#: wppa-settings-autosave.php:7069
|
13419 |
msgid "Watermark all"
|
13420 |
msgstr "Appliquer le filigrane à toutes"
|
13421 |
|
13422 |
+
#: wppa-settings-autosave.php:7070
|
13423 |
msgid "Apply watermark according to current settings to all photos."
|
13424 |
msgstr ""
|
13425 |
"Appliquer un filigrane en fonction des paramètres actuels à toutes les photos."
|
13426 |
|
13427 |
+
#: wppa-settings-autosave.php:7071
|
13428 |
msgid "See Table IX_F for the current watermark settings"
|
13429 |
msgstr "Voir Table IX_F pour les paramètres actuels de filigrane"
|
13430 |
|
13431 |
+
#: wppa-settings-autosave.php:7082
|
13432 |
msgid "Create all autopages"
|
13433 |
msgstr "Créer toutes les auto pages"
|
13434 |
|
13435 |
+
#: wppa-settings-autosave.php:7083
|
13436 |
msgid "Create all the pages to display slides individually."
|
13437 |
msgstr "Créer toutes les pages pour afficher des diapositives individuellement."
|
13438 |
|
13439 |
+
#: wppa-settings-autosave.php:7084 wppa-settings-autosave.php:7098
|
13440 |
msgid "See also Table IV-A10."
|
13441 |
msgstr "Voir aussi le Table IV-A10."
|
13442 |
|
13443 |
+
#: wppa-settings-autosave.php:7085
|
13444 |
msgid ""
|
13445 |
"Make sure you have a custom menu and the \"Automatically add new top-level "
|
13446 |
"pages to this menu\" box UNticked!!"
|
13448 |
"Assurez-vous que vous disposez d’un menu personnalisé et la case « Ajouter "
|
13449 |
"automatiquement les nouvelles pages de niveau supérieur à ce menu » DÉcoché!!"
|
13450 |
|
13451 |
+
#: wppa-settings-autosave.php:7096
|
13452 |
msgid "Delete all autopages"
|
13453 |
msgstr "Effacer toutes les pages auto"
|
13454 |
|
13455 |
+
#: wppa-settings-autosave.php:7097
|
13456 |
msgid "Delete all the pages to display slides individually."
|
13457 |
msgstr ""
|
13458 |
"Supprimer toutes les pages pour afficher des diapositives individuellement."
|
13459 |
|
13460 |
+
#: wppa-settings-autosave.php:7110
|
13461 |
msgid "Leading zeroes"
|
13462 |
msgstr "Zéro non significatif"
|
13463 |
|
13464 |
+
#: wppa-settings-autosave.php:7111
|
13465 |
#, fuzzy
|
13466 |
msgid "If photoname numeric, add leading zeros"
|
13467 |
msgstr "Si photoname numérique, ajouter des zéros à gauche"
|
13468 |
|
13469 |
+
#: wppa-settings-autosave.php:7112
|
13470 |
msgid ""
|
13471 |
"You can extend the name with leading zeros, so alphabetic sort becomes equal "
|
13472 |
"to numeric sort order."
|
13474 |
"Vous pouvez étendre le nom par des zéros, donc tri alphabétique devient égal à "
|
13475 |
"l'ordre de tri numérique."
|
13476 |
|
13477 |
+
#: wppa-settings-autosave.php:7115
|
13478 |
msgid "Total chars"
|
13479 |
msgstr "Total caractères"
|
13480 |
|
13481 |
+
#: wppa-settings-autosave.php:7124
|
13482 |
msgid "Add GPX tag"
|
13483 |
msgstr "Ajouter tag GPX"
|
13484 |
|
13485 |
+
#: wppa-settings-autosave.php:7125
|
13486 |
msgid "Make sure photos with gpx data have a Gpx tag"
|
13487 |
msgstr "S’assurer que les photos avec des données gpx ont une balise de Gpx"
|
13488 |
|
13489 |
+
#: wppa-settings-autosave.php:7138 wppa-settings-autosave.php:8109
|
13490 |
msgid "Optimize files"
|
13491 |
msgstr "Optimiser les fichiers"
|
13492 |
|
13493 |
+
#: wppa-settings-autosave.php:7139
|
13494 |
#, fuzzy
|
13495 |
msgid "Optimize with EWWW image optimizer"
|
13496 |
msgstr "Optimisez avec EWWW image optimizer"
|
13497 |
|
13498 |
+
#: wppa-settings-autosave.php:7152
|
13499 |
msgid "Edit tag"
|
13500 |
msgstr "Modifier tag"
|
13501 |
|
13502 |
+
#: wppa-settings-autosave.php:7153
|
13503 |
msgid "Globally change a tagname."
|
13504 |
msgstr "Changer un tagname dans toute la système.."
|
13505 |
|
13506 |
+
#: wppa-settings-autosave.php:7159
|
13507 |
msgid "-select a tag-"
|
13508 |
msgstr "- Choisir un tag -"
|
13509 |
|
13510 |
+
#: wppa-settings-autosave.php:7165
|
13511 |
msgid "Tag:"
|
13512 |
msgstr "Tag:"
|
13513 |
|
13514 |
+
#: wppa-settings-autosave.php:7166
|
13515 |
msgid "Change to:"
|
13516 |
msgstr "Changer pour:"
|
13517 |
|
13518 |
+
#: wppa-settings-autosave.php:7175
|
13519 |
#, fuzzy
|
13520 |
msgid "Synchronize Cloudinary"
|
13521 |
msgstr "Synchroniser Cloudinary"
|
13522 |
|
13523 |
+
#: wppa-settings-autosave.php:7176
|
13524 |
#, fuzzy
|
13525 |
msgid "Removes/adds images in the cloud."
|
13526 |
msgstr "Supprime / ajoute des images dans le nuage."
|
13527 |
|
13528 |
+
#: wppa-settings-autosave.php:7177
|
13529 |
#, fuzzy
|
13530 |
msgid "Removes old images and verifies/adds new images to Cloudinary."
|
13531 |
msgstr ""
|
13532 |
"Supprime les anciennes images et vérifie / ajoute de nouvelles images pour "
|
13533 |
"Cloudinary."
|
13534 |
|
13535 |
+
#: wppa-settings-autosave.php:7178
|
13536 |
msgid "See Table IX-K4.7 for the configured lifetime."
|
13537 |
msgstr "Voir Table IX-K4.7 pour la durée de vie configurée."
|
13538 |
|
13539 |
+
#: wppa-settings-autosave.php:7189
|
13540 |
msgid "Fix tags"
|
13541 |
msgstr "Réparer des balises"
|
13542 |
|
13543 |
+
#: wppa-settings-autosave.php:7190
|
13544 |
#, fuzzy
|
13545 |
msgid "Make sure photo tags format is uptodate"
|
13546 |
msgstr "Assurez-vous que le format des balises photo est uptodate"
|
13547 |
|
13548 |
+
#: wppa-settings-autosave.php:7191
|
13549 |
msgid "Fixes tags to be conform current database rules."
|
13550 |
msgstr ""
|
13551 |
"Fixe les balises pour être conforme à des règles de base de données actuelle."
|
13552 |
|
13553 |
+
#: wppa-settings-autosave.php:7202
|
13554 |
msgid "Fix cats"
|
13555 |
msgstr "Réparer des catégories"
|
13556 |
|
13557 |
+
#: wppa-settings-autosave.php:7203
|
13558 |
#, fuzzy
|
13559 |
msgid "Make sure album cats format is uptodate"
|
13560 |
msgstr "Assurez-vous que le format album des chats est uptodate"
|
13561 |
|
13562 |
+
#: wppa-settings-autosave.php:7204
|
13563 |
msgid "Fixes cats to be conform current database rules."
|
13564 |
msgstr ""
|
13565 |
"Fixe les catégories pour être conforme à des règles de base de données "
|
13566 |
"actuelle."
|
13567 |
|
13568 |
+
#: wppa-settings-autosave.php:7215
|
13569 |
#, fuzzy
|
13570 |
msgid "Set owner to name"
|
13571 |
msgstr "Réglez propriétaire nom"
|
13572 |
|
13573 |
+
#: wppa-settings-autosave.php:7216
|
13574 |
#, fuzzy
|
13575 |
msgid "If photoname equals user display name, set him owner."
|
13576 |
msgstr ""
|
13577 |
"Si photoname est égal à l'utilisateur le nom d'affichage, définissez le "
|
13578 |
"propriétaire."
|
13579 |
|
13580 |
+
#: wppa-settings-autosave.php:7228
|
13581 |
#, fuzzy
|
13582 |
msgid "Move all photos"
|
13583 |
msgstr "Toutes les photos"
|
13584 |
|
13585 |
+
#: wppa-settings-autosave.php:7229
|
13586 |
#, fuzzy
|
13587 |
msgid "Move all photos from one album to another album."
|
13588 |
msgstr "Déplacer toutes les photos d'un album à un autre album."
|
13589 |
|
13590 |
+
#: wppa-settings-autosave.php:7241
|
13591 |
#, fuzzy
|
13592 |
msgid "From"
|
13593 |
msgstr "De:"
|
13594 |
|
13595 |
+
#: wppa-settings-autosave.php:7242
|
13596 |
#, fuzzy
|
13597 |
msgid "Move from album"
|
13598 |
msgstr "De l'album"
|
13599 |
|
13600 |
+
#: wppa-settings-autosave.php:7268
|
13601 |
#, fuzzy
|
13602 |
msgid "To"
|
13603 |
msgstr "à"
|
13604 |
|
13605 |
+
#: wppa-settings-autosave.php:7269
|
13606 |
#, fuzzy
|
13607 |
msgid "Move to album"
|
13608 |
msgstr "Déplacer vers l'album"
|
13609 |
|
13610 |
+
#: wppa-settings-autosave.php:7310
|
13611 |
msgid "Listings"
|
13612 |
msgstr "Listes"
|
13613 |
|
13614 |
+
#: wppa-settings-autosave.php:7312
|
13615 |
msgid "List Logfile"
|
13616 |
msgstr "Lister le journal (log)"
|
13617 |
|
13618 |
+
#: wppa-settings-autosave.php:7313
|
13619 |
#, fuzzy
|
13620 |
msgid "Show the content of wppa+ (error) log."
|
13621 |
msgstr "Afficher le contenu de LPPT (erreur) journal."
|
13622 |
|
13623 |
+
#: wppa-settings-autosave.php:7317
|
13624 |
msgid "Purge logfile"
|
13625 |
msgstr "Purger le journal (log)"
|
13626 |
|
13627 |
+
#: wppa-settings-autosave.php:7326
|
13628 |
msgid "List Ratings"
|
13629 |
msgstr "Lister les votes"
|
13630 |
|
13631 |
+
#: wppa-settings-autosave.php:7327
|
13632 |
msgid "Show the most recent ratings."
|
13633 |
msgstr "Montrer les votes récents."
|
13634 |
|
13635 |
+
#: wppa-settings-autosave.php:7340
|
13636 |
msgid "List Index"
|
13637 |
msgstr "Liste d'index"
|
13638 |
|
13639 |
+
#: wppa-settings-autosave.php:7341
|
13640 |
#, fuzzy
|
13641 |
msgid "Show the content if the index table."
|
13642 |
msgstr "Afficher le contenu si la table d'index."
|
13643 |
|
13644 |
+
#: wppa-settings-autosave.php:7345
|
13645 |
msgid "Start at text:"
|
13646 |
msgstr "Commencer à:"
|
13647 |
|
13648 |
+
#: wppa-settings-autosave.php:7355
|
13649 |
msgid "List active sessions"
|
13650 |
msgstr "Lister les sessions actives"
|
13651 |
|
13652 |
+
#: wppa-settings-autosave.php:7356
|
13653 |
#, fuzzy
|
13654 |
msgid "Show the content of the sessions table."
|
13655 |
msgstr "Afficher le contenu de la table des sessions."
|
13656 |
|
13657 |
+
#: wppa-settings-autosave.php:7369
|
13658 |
msgid "List comments"
|
13659 |
msgstr "Liste des commentaires"
|
13660 |
|
13661 |
+
#: wppa-settings-autosave.php:7370
|
13662 |
#, fuzzy
|
13663 |
msgid "Show the content of the comments table."
|
13664 |
msgstr "Afficher le contenu de la table des commentaires."
|
13665 |
|
13666 |
+
#: wppa-settings-autosave.php:7376
|
13667 |
msgid "Order by:"
|
13668 |
msgstr "Trier par:"
|
13669 |
|
13670 |
+
#: wppa-settings-autosave.php:7405
|
13671 |
msgid "Table IX:"
|
13672 |
msgstr "Table IX:"
|
13673 |
|
13674 |
+
#: wppa-settings-autosave.php:7405
|
13675 |
#, fuzzy
|
13676 |
msgid "Miscellaneous:"
|
13677 |
msgstr "Type varié:"
|
13678 |
|
13679 |
+
#: wppa-settings-autosave.php:7406
|
13680 |
msgid "This table lists all settings that do not fit into an other table"
|
13681 |
msgstr ""
|
13682 |
"Ce table répertorie tous les paramètres qui ne rentrent pas dans une autre "
|
13683 |
"table"
|
13684 |
|
13685 |
+
#: wppa-settings-autosave.php:7424
|
13686 |
#, fuzzy
|
13687 |
msgid "Internal engine related settings"
|
13688 |
msgstr "les paramètres relatifs au moteur interne"
|
13689 |
|
13690 |
+
#: wppa-settings-autosave.php:7426
|
13691 |
msgid "WPPA+ Filter priority"
|
13692 |
msgstr "Priorité WPPA+ filtre"
|
13693 |
|
13694 |
+
#: wppa-settings-autosave.php:7427
|
13695 |
#, fuzzy
|
13696 |
msgid "Sets the priority of the wppa+ content filter."
|
13697 |
msgstr "Définit la priorité de la LPPT contenu filtre."
|
13698 |
|
13699 |
+
#: wppa-settings-autosave.php:7428 wppa-settings-autosave.php:7437
|
13700 |
#, fuzzy
|
13701 |
msgid ""
|
13702 |
"If you encounter conflicts with the theme or other plugins, increasing this "
|
13705 |
"Si vous rencontrez des conflits avec le thème ou d'autres plugins, augmenter "
|
13706 |
"cette valeur est parfois utile. Utilisez avec grand soin!"
|
13707 |
|
13708 |
+
#: wppa-settings-autosave.php:7435
|
13709 |
msgid "Do_shortcode priority"
|
13710 |
msgstr "Priorité de do_shortcode"
|
13711 |
|
13712 |
+
#: wppa-settings-autosave.php:7436
|
13713 |
#, fuzzy
|
13714 |
msgid "Sets the priority of the do_shortcode() content filter."
|
13715 |
msgstr "Définit la priorité du do_shortcode () filtre de contenu."
|
13716 |
|
13717 |
+
#: wppa-settings-autosave.php:7444
|
13718 |
msgid "WPPA shortcode at Filter priority"
|
13719 |
msgstr "WPPA shortcode à la priorité du filtre"
|
13720 |
|
13721 |
+
#: wppa-settings-autosave.php:7445
|
13722 |
msgid "Execute shortcode expansion on filter priority in posts and pages."
|
13723 |
msgstr ""
|
13724 |
"Exécuter expansion shortcode sur la priorité de filtre dans les messages et "
|
13725 |
"les pages."
|
13726 |
|
13727 |
+
#: wppa-settings-autosave.php:7446 wppa-settings-autosave.php:7455
|
13728 |
#, fuzzy
|
13729 |
msgid "Use to fix certain layout problems"
|
13730 |
msgstr "Utilisez pour résoudre certains problèmes de mise en page"
|
13731 |
|
13732 |
+
#: wppa-settings-autosave.php:7453
|
13733 |
msgid "WPPA shortcode at Filter priority widget"
|
13734 |
msgstr "WPPA shortcode à la priorité du filtre en widget"
|
13735 |
|
13736 |
+
#: wppa-settings-autosave.php:7454
|
13737 |
msgid "Execute shortcode expansion on filter priority in widgets."
|
13738 |
msgstr "Exécuter expansion shortcode sur la priorité de filtre dans les widgets."
|
13739 |
|
13740 |
+
#: wppa-settings-autosave.php:7462
|
13741 |
msgid "JPG image quality"
|
13742 |
msgstr "Qualité d'image JPG"
|
13743 |
|
13744 |
+
#: wppa-settings-autosave.php:7463
|
13745 |
#, fuzzy
|
13746 |
msgid "The jpg quality when photos are downsized"
|
13747 |
msgstr "La qualité de jpg lorsque les photos sont redimensionnées"
|
13748 |
|
13749 |
+
#: wppa-settings-autosave.php:7464
|
13750 |
#, fuzzy
|
13751 |
msgid "The higher the number the better the quality but the larger the file"
|
13752 |
msgstr "Plus le nombre, meilleure est la qualité, mais plus le fichier"
|
13753 |
|
13754 |
+
#: wppa-settings-autosave.php:7465
|
13755 |
#, fuzzy
|
13756 |
msgid "Possible values 20..100"
|
13757 |
msgstr "Les valeurs possibles 20..100"
|
13758 |
|
13759 |
+
#: wppa-settings-autosave.php:7472
|
13760 |
msgid "Allow WPPA+ Debugging"
|
13761 |
msgstr "Permettre le WPPA+ débogage"
|
13762 |
|
13763 |
+
#: wppa-settings-autosave.php:7473
|
13764 |
msgid "Allow the use of &debug=.. in urls to this site."
|
13765 |
msgstr "Permettre l’utilisation de &debug=... dans les URL de ce site."
|
13766 |
|
13767 |
+
#: wppa-settings-autosave.php:7474
|
13768 |
#, fuzzy
|
13769 |
msgid ""
|
13770 |
"If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this site "
|
13774 |
"site va générer l'affichage de LPPT spéciale diagnostic, ainsi que des "
|
13775 |
"avertissements php"
|
13776 |
|
13777 |
+
#: wppa-settings-autosave.php:7481
|
13778 |
msgid "Auto continue"
|
13779 |
msgstr "Auto continuer"
|
13780 |
|
13781 |
+
#: wppa-settings-autosave.php:7482
|
13782 |
msgid "Continue automatic after time out"
|
13783 |
msgstr "Continuer automatique après délai"
|
13784 |
|
13785 |
+
#: wppa-settings-autosave.php:7483
|
13786 |
msgid ""
|
13787 |
"If checked, an attempt will be made to restart an admin process when the time "
|
13788 |
"is out."
|
13790 |
"Si cochée, une tentative se fera pour relancer un processus d’admin quand le "
|
13791 |
"temps est sorti."
|
13792 |
|
13793 |
+
#: wppa-settings-autosave.php:7491
|
13794 |
#, fuzzy
|
13795 |
msgid "Set max execution time here."
|
13796 |
msgstr "Réglez le temps d'exécution max ici."
|
13797 |
|
13798 |
+
#: wppa-settings-autosave.php:7492
|
13799 |
#, fuzzy
|
13800 |
msgid ""
|
13801 |
"If your php config does not properly set the max execution time, you can set "
|
13804 |
"Si votre php config ne définit pas correctement le temps d'exécution max, vous "
|
13805 |
"pouvez définir ici. Secondes, 0 signifie ne changent pas."
|
13806 |
|
13807 |
+
#: wppa-settings-autosave.php:7493
|
13808 |
msgid "A safe value is 45 in most cases"
|
13809 |
msgstr "Une valeur sûre est de 45 le plus souvent"
|
13810 |
|
13811 |
+
#: wppa-settings-autosave.php:7494
|
13812 |
#, fuzzy, php-format
|
13813 |
msgid "The PHP setting max_execution_time is set to %s."
|
13814 |
msgstr "Le paramètre PHP max_execution_time est réglé sur%s."
|
13815 |
|
13816 |
+
#: wppa-settings-autosave.php:7502
|
13817 |
msgid "Feed use thumb"
|
13818 |
msgstr "Feed utilisez les miniatures"
|
13819 |
|
13820 |
+
#: wppa-settings-autosave.php:7503
|
13821 |
msgid "Feeds use thumbnail pictures always."
|
13822 |
msgstr "RSS utilisent toujours les images miniatures."
|
13823 |
|
13824 |
+
#: wppa-settings-autosave.php:7511
|
13825 |
msgid "Enable <i>in-line</i> settings"
|
13826 |
msgstr "Activez les paramètres <i>en ligne</i>"
|
13827 |
|
13828 |
+
#: wppa-settings-autosave.php:7512
|
13829 |
msgid "Activates shortcode [wppa_set][/wppa_set]."
|
13830 |
msgstr "Active le shortcode [wppa_set][/ wppa_set]."
|
13831 |
|
13832 |
+
#: wppa-settings-autosave.php:7513
|
13833 |
#, fuzzy
|
13834 |
msgid ""
|
13835 |
"Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
|
13837 |
"Syntaxe: [nom wppa_set = valeur \"tout paramètre LPPT\" = \"nouvelle valeur\"] "
|
13838 |
"[/ wppa_set]"
|
13839 |
|
13840 |
+
#: wppa-settings-autosave.php:7514
|
13841 |
msgid ""
|
13842 |
"Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
|
13843 |
"sets the thumbnail type to vertical masonry style"
|
13845 |
"Exemple: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"] [/wppa_set] "
|
13846 |
"définit le type miniature au style de maçonnerie verticale"
|
13847 |
|
13848 |
+
#: wppa-settings-autosave.php:7515
|
13849 |
msgid "Do not forget to reset with [wppa_set][/wppa_set]"
|
13850 |
msgstr "N’oubliez pas de réinitialiser avec [wppa_set][/wppa_set]"
|
13851 |
|
13852 |
+
#: wppa-settings-autosave.php:7516
|
13853 |
#, fuzzy
|
13854 |
msgid "Use with great care! There is no check on validity of values!"
|
13855 |
msgstr ""
|
13856 |
"Utilisez avec grand soin! Il n'y a pas de contrôle sur la validité des valeurs!"
|
13857 |
|
13858 |
+
#: wppa-settings-autosave.php:7523
|
13859 |
#, fuzzy
|
13860 |
msgid "Runtime modifyable settings"
|
13861 |
msgstr "Runtime paramètres modifyable"
|
13862 |
|
13863 |
+
#: wppa-settings-autosave.php:7524
|
13864 |
#, fuzzy
|
13865 |
msgid "The setting slugs that may be altered using [wppa_set] shortcode."
|
13866 |
msgstr ""
|
13867 |
"Les limaces de réglage qui peuvent être modifiés en utilisant [wppa_set] "
|
13868 |
"shortcode."
|
13869 |
|
13870 |
+
#: wppa-settings-autosave.php:7533
|
13871 |
msgid "WPPA+ Admin related miscellaneous settings"
|
13872 |
msgstr "Paramètres diverse liés à WPPA+ Admin"
|
13873 |
|
13874 |
+
#: wppa-settings-autosave.php:7535
|
13875 |
msgid "Allow HTML"
|
13876 |
msgstr "Autoriser HTML"
|
13877 |
|
13878 |
+
#: wppa-settings-autosave.php:7536
|
13879 |
msgid "Allow HTML in album and photo descriptions."
|
13880 |
msgstr "Permettre le HTML dans les descriptions d’album et photo."
|
13881 |
|
13882 |
+
#: wppa-settings-autosave.php:7537 wppa-settings-autosave.php:7546
|
13883 |
#, fuzzy
|
13884 |
msgid ""
|
13885 |
"If checked: html is allowed. WARNING: No checks on syntax, it is your own "
|
13888 |
"Si coché: html est autorisé. AVERTISSEMENT: Aucun contrôle sur la syntaxe, il "
|
13889 |
"est de votre propre responsabilité de fermer les balises correctement!"
|
13890 |
|
13891 |
+
#: wppa-settings-autosave.php:7544
|
13892 |
msgid "Allow HTML custom"
|
13893 |
msgstr "Autoriser HTML personnalisé"
|
13894 |
|
13895 |
+
#: wppa-settings-autosave.php:7545
|
13896 |
msgid "Allow HTML in custom photo datafields."
|
13897 |
msgstr "Permettre HTML dans les photo datafields personnalisé."
|
13898 |
|
13899 |
+
#: wppa-settings-autosave.php:7553
|
13900 |
msgid "Check tag balance"
|
13901 |
msgstr "Vérifier balance de balises"
|
13902 |
|
13903 |
+
#: wppa-settings-autosave.php:7554
|
13904 |
msgid "Check if the HTML tags are properly closed: \"balanced\"."
|
13905 |
msgstr "Vérifier si les balises HTML sont bien fermés: « équilibré »."
|
13906 |
|
13907 |
+
#: wppa-settings-autosave.php:7555
|
13908 |
#, fuzzy
|
13909 |
msgid ""
|
13910 |
"If the HTML tags in an album or a photo description are not in balance, the "
|
13914 |
"en équilibre, la description n'a pas été mis à jour, un errormessage est "
|
13915 |
"affiché"
|
13916 |
|
13917 |
+
#: wppa-settings-autosave.php:7562
|
13918 |
msgid "Use WP editor"
|
13919 |
msgstr "Utiliser l'éditeur de WordPress"
|
13920 |
|
13921 |
+
#: wppa-settings-autosave.php:7563
|
13922 |
#, fuzzy
|
13923 |
msgid "Use the wp editor for multiline text fields."
|
13924 |
msgstr "Utilisez l'éditeur de wp pour les champs de texte multiligne."
|
13925 |
|
13926 |
+
#: wppa-settings-autosave.php:7571
|
13927 |
msgid "Album sel hierarchic"
|
13928 |
msgstr "Album sel hiérarchique"
|
13929 |
|
13930 |
+
#: wppa-settings-autosave.php:7572
|
13931 |
#, fuzzy
|
13932 |
msgid "Show albums with (grand)parents in selection lists."
|
13933 |
msgstr "Afficher les albums avec (grands-) parents dans les listes de sélection."
|
13934 |
|
13935 |
+
#: wppa-settings-autosave.php:7580
|
13936 |
#, fuzzy
|
13937 |
msgid "Page sel hierarchic"
|
13938 |
msgstr "Page sel hiérarchisé"
|
13939 |
|
13940 |
+
#: wppa-settings-autosave.php:7581
|
13941 |
#, fuzzy
|
13942 |
msgid "Show pages with (grand)parents in selection lists."
|
13943 |
msgstr "Afficher les pages avec (grands-) parents dans les listes de sélection."
|
13944 |
|
13945 |
+
#: wppa-settings-autosave.php:7590
|
13946 |
#, fuzzy
|
13947 |
msgid "Photo admin page size"
|
13948 |
msgstr "Photo page admin Taille"
|
13949 |
|
13950 |
+
#: wppa-settings-autosave.php:7591
|
13951 |
#, fuzzy
|
13952 |
msgid ""
|
13953 |
"The number of photos per page on the <br/>Edit Album -> Manage photos and Edit "
|
13956 |
"Le nombre de photos par page sur le <br/> Modifier l'album -> Gérer les photos "
|
13957 |
"et éditer des photos pages d'administration."
|
13958 |
|
13959 |
+
#: wppa-settings-autosave.php:7601
|
13960 |
msgid "Comment admin page size"
|
13961 |
msgstr "Taille de la page d'admin des commentaires"
|
13962 |
|
13963 |
+
#: wppa-settings-autosave.php:7602
|
13964 |
#, fuzzy
|
13965 |
msgid "The number of comments per page on the Comments admin pages."
|
13966 |
msgstr "Le nombre de commentaires par page sur les pages Commentaires admin."
|
13967 |
|
13968 |
+
#: wppa-settings-autosave.php:7612
|
13969 |
msgid "Geo info edit"
|
13970 |
msgstr "Modifier géo info"
|
13971 |
|
13972 |
+
#: wppa-settings-autosave.php:7613
|
13973 |
#, fuzzy
|
13974 |
msgid "Lattitude and longitude may be edited in photo admin."
|
13975 |
msgstr "Lattitude et longitude peuvent être édités en photo administrateur."
|
13976 |
|
13977 |
+
#: wppa-settings-autosave.php:7621
|
13978 |
msgid "Admin bar menu admin"
|
13979 |
msgstr "Admin bar menu admin"
|
13980 |
|
13981 |
+
#: wppa-settings-autosave.php:7622
|
13982 |
#, fuzzy
|
13983 |
msgid "Show menu on admin bar on admin pages."
|
13984 |
msgstr ""
|
13985 |
"Afficher le menu sur la barre d'administration sur les pages d'administration."
|
13986 |
|
13987 |
+
#: wppa-settings-autosave.php:7630
|
13988 |
msgid "Admin bar menu frontend"
|
13989 |
msgstr "Admin bar menu frontend"
|
13990 |
|
13991 |
+
#: wppa-settings-autosave.php:7631
|
13992 |
#, fuzzy
|
13993 |
msgid "Show menu on admin bar on frontend pages."
|
13994 |
msgstr "Afficher le menu sur la barre d'administration sur les pages frontend."
|
13995 |
|
13996 |
+
#: wppa-settings-autosave.php:7639
|
13997 |
msgid "Add shortcode to posts"
|
13998 |
msgstr "Ajouter shortcode à messages"
|
13999 |
|
14000 |
+
#: wppa-settings-autosave.php:7640
|
14001 |
msgid "Add a shortcode to the end of all posts."
|
14002 |
msgstr "Ajoutez un shortcode à la fin de tous les postes."
|
14003 |
|
14004 |
+
#: wppa-settings-autosave.php:7648
|
14005 |
msgid "Shortcode to add"
|
14006 |
msgstr "Shortcode à ajouter"
|
14007 |
|
14008 |
+
#: wppa-settings-autosave.php:7649
|
14009 |
#, fuzzy
|
14010 |
msgid "The shortcode to be added to the posts."
|
14011 |
msgstr "Le shortcode à ajouter aux messages."
|
14012 |
|
14013 |
+
#: wppa-settings-autosave.php:7657
|
14014 |
msgid "We use Scripts"
|
14015 |
msgstr "Nous utilisons des Scripts"
|
14016 |
|
14017 |
+
#: wppa-settings-autosave.php:7658
|
14018 |
#, fuzzy
|
14019 |
msgid "Use scripting syntax in shortcode generator."
|
14020 |
msgstr "Utilisez la syntaxe de script générateur de shortcode."
|
14021 |
|
14022 |
+
#: wppa-settings-autosave.php:7659
|
14023 |
#, fuzzy
|
14024 |
msgid ""
|
14025 |
"This setting defines if the shortcode generator outputs old style script tags "
|
14028 |
"Ce paramètre définit si le générateur de shortcode sorties anciennes balises "
|
14029 |
"de script de style ou de nouveaux shortcodes de style."
|
14030 |
|
14031 |
+
#: wppa-settings-autosave.php:7667
|
14032 |
#, fuzzy
|
14033 |
msgid "Import page prieviews"
|
14034 |
msgstr "Page d'importation prieviews"
|
14035 |
|
14036 |
+
#: wppa-settings-autosave.php:7668
|
14037 |
#, fuzzy
|
14038 |
msgid "Show thumbnail previews in import admin page."
|
14039 |
msgstr ""
|
14040 |
"Afficher les aperçus miniatures dans la page d'administration d'importation."
|
14041 |
|
14042 |
+
#: wppa-settings-autosave.php:7676
|
14043 |
msgid "Upload audiostub"
|
14044 |
msgstr "Charger audiostub"
|
14045 |
|
14046 |
+
#: wppa-settings-autosave.php:7677
|
14047 |
#, fuzzy
|
14048 |
msgid "Upload a new audio stub file"
|
14049 |
msgstr "Ajouter un nouveau fichier stub audio"
|
14050 |
|
14051 |
+
#: wppa-settings-autosave.php:7681
|
14052 |
msgid "Upload audio stub image"
|
14053 |
msgstr "Charger image audiostub"
|
14054 |
|
14055 |
+
#: wppa-settings-autosave.php:7686
|
14056 |
msgid "Confirm create"
|
14057 |
msgstr "Confirmer création"
|
14058 |
|
14059 |
+
#: wppa-settings-autosave.php:7687
|
14060 |
msgid "Display confirmation dialog before creating album."
|
14061 |
msgstr "Afficher boîte de dialogue de confirmation avant de créer l’album."
|
14062 |
|
14063 |
+
#: wppa-settings-autosave.php:7695
|
14064 |
#, fuzzy
|
14065 |
msgid "Import source root"
|
14066 |
msgstr "Description (optionnel)"
|
14067 |
|
14068 |
+
#: wppa-settings-autosave.php:7696
|
14069 |
#, fuzzy
|
14070 |
msgid "Specify the highest level in the filesystem where to import from"
|
14071 |
msgstr ""
|
14072 |
"Indiquez le plus haut niveau dans le système de fichiers où importer à partir"
|
14073 |
|
14074 |
+
#: wppa-settings-autosave.php:7713
|
14075 |
msgid "Allow import from WPPA+ source folders"
|
14076 |
msgstr "Autoriser les importations de WPPA+ dossiers sources"
|
14077 |
|
14078 |
+
#: wppa-settings-autosave.php:7714
|
14079 |
#, fuzzy
|
14080 |
msgid "Only switch this on if you know what you are doing!"
|
14081 |
msgstr "Ne mettez cela sur si vous savez ce que vous faites!"
|
14082 |
|
14083 |
+
#: wppa-settings-autosave.php:7723
|
14084 |
#, fuzzy
|
14085 |
msgid "SEO related settings"
|
14086 |
msgstr "paramètres SEO liés"
|
14087 |
|
14088 |
+
#: wppa-settings-autosave.php:7725
|
14089 |
#, fuzzy
|
14090 |
msgid "Meta on page"
|
14091 |
msgstr "Meta à la page"
|
14092 |
|
14093 |
+
#: wppa-settings-autosave.php:7726
|
14094 |
#, fuzzy
|
14095 |
msgid "Meta tags for photos on the page."
|
14096 |
msgstr "Les balises META pour les photos sur la page."
|
14097 |
|
14098 |
+
#: wppa-settings-autosave.php:7727
|
14099 |
#, fuzzy
|
14100 |
msgid ""
|
14101 |
"If checked, the header of the page will contain metatags that refer to "
|
14104 |
"Si elle est cochée, l'en-tête de la page contiendra metatags qui se réfèrent à "
|
14105 |
"des photos en vedette sur la page dans le contexte de la page."
|
14106 |
|
14107 |
+
#: wppa-settings-autosave.php:7734
|
14108 |
msgid "Meta all"
|
14109 |
msgstr "Tous les meta"
|
14110 |
|
14111 |
+
#: wppa-settings-autosave.php:7735
|
14112 |
#, fuzzy
|
14113 |
msgid "Meta tags for all featured photos."
|
14114 |
msgstr "Les balises META pour tous en vedette des photos."
|
14115 |
|
14116 |
+
#: wppa-settings-autosave.php:7736
|
14117 |
msgid ""
|
14118 |
"If checked, the header of the page will contain metatags that refer to all "
|
14119 |
"featured photo files."
|
14121 |
"Si elle est cocheé, l’en-tête de la page contiendra les metatags qui font "
|
14122 |
"référence à tous les fichiers photo recommandés."
|
14123 |
|
14124 |
+
#: wppa-settings-autosave.php:7737
|
14125 |
#, fuzzy
|
14126 |
msgid ""
|
14127 |
"If you have many featured photos, you might wish to uncheck this item to "
|
14130 |
"Si vous avez de nombreuses photos en vedette, vous voudrez peut-être décocher "
|
14131 |
"cet élément pour réduire la taille de l'en-tête de page."
|
14132 |
|
14133 |
+
#: wppa-settings-autosave.php:7744
|
14134 |
msgid "Add og meta tags"
|
14135 |
msgstr "Ajouter des balises meta"
|
14136 |
|
14137 |
+
#: wppa-settings-autosave.php:7745
|
14138 |
msgid "Add og meta tags to the page header."
|
14139 |
msgstr "Ajouter og balises meta pour l’en-tête de page."
|
14140 |
|
14141 |
+
#: wppa-settings-autosave.php:7748
|
14142 |
#, fuzzy
|
14143 |
msgid ""
|
14144 |
"Turning this off may affect the functionality of social media items in the "
|
14148 |
"éléments des médias sociaux dans la boîte d'actions qui reposent sur "
|
14149 |
"l'information ouverte balises graphique."
|
14150 |
|
14151 |
+
#: wppa-settings-autosave.php:7754
|
14152 |
#, fuzzy
|
14153 |
msgid "Image Alt attribute type"
|
14154 |
msgstr "Image Alt type d'attribut"
|
14155 |
|
14156 |
+
#: wppa-settings-autosave.php:7755
|
14157 |
#, fuzzy
|
14158 |
msgid "Select kind of HTML alt=\"\" content for images."
|
14159 |
msgstr "Sélectionnez type de HTML alt = \"\" contenu pour les images."
|
14160 |
|
14161 |
+
#: wppa-settings-autosave.php:7758
|
14162 |
msgid "photo name"
|
14163 |
msgstr "Nom de la photo"
|
14164 |
|
14165 |
+
#: wppa-settings-autosave.php:7758
|
14166 |
msgid "name without file-ext"
|
14167 |
msgstr "nom sans l'extension de fichier"
|
14168 |
|
14169 |
+
#: wppa-settings-autosave.php:7758
|
14170 |
msgid "set in album admin"
|
14171 |
msgstr "Réglé dans album admin"
|
14172 |
|
14173 |
+
#: wppa-settings-autosave.php:7765
|
14174 |
#, fuzzy
|
14175 |
msgid "New Album and New Photo related miscellaneous settings"
|
14176 |
msgstr "Nouvel album et une nouvelle photo liées réglages divers"
|
14177 |
|
14178 |
+
#: wppa-settings-autosave.php:7803
|
14179 |
#, fuzzy
|
14180 |
msgid "Maximum time an album is indicated as New"
|
14181 |
msgstr "La durée maximale d'un album est indiqué comme New"
|
14182 |
|
14183 |
+
#: wppa-settings-autosave.php:7811
|
14184 |
msgid "New Photo"
|
14185 |
msgstr "Nouvelle photo"
|
14186 |
|
14187 |
+
#: wppa-settings-autosave.php:7812
|
14188 |
#, fuzzy
|
14189 |
msgid "Maximum time a photo is indicated as New"
|
14190 |
msgstr "La durée maximale d'une photo est indiquée comme New"
|
14191 |
|
14192 |
+
#: wppa-settings-autosave.php:7820
|
14193 |
msgid "Modified Album"
|
14194 |
msgstr "Album modifié"
|
14195 |
|
14196 |
+
#: wppa-settings-autosave.php:7821
|
14197 |
#, fuzzy
|
14198 |
msgid "Maximum time an album is indicated as Modified"
|
14199 |
msgstr "La durée maximale d'un album est indiqué comme modifié"
|
14200 |
|
14201 |
+
#: wppa-settings-autosave.php:7829
|
14202 |
msgid "Modified Photo"
|
14203 |
msgstr "Photo modifiée"
|
14204 |
|
14205 |
+
#: wppa-settings-autosave.php:7830
|
14206 |
#, fuzzy
|
14207 |
msgid "Maximum time a photo is indicated as Modofied"
|
14208 |
msgstr "La durée maximale d'une photo est indiquée comme Modofied"
|
14209 |
|
14210 |
+
#: wppa-settings-autosave.php:7838
|
14211 |
msgid "Use text labels"
|
14212 |
msgstr "Utiliser les étiquettes de texte"
|
14213 |
|
14214 |
+
#: wppa-settings-autosave.php:7839
|
14215 |
#, fuzzy
|
14216 |
msgid "Use editable text for the New and Modified labels"
|
14217 |
msgstr "Utilisez texte modifiable pour les nouvelles et modifiées étiquettes"
|
14218 |
|
14219 |
+
#: wppa-settings-autosave.php:7840
|
14220 |
#, fuzzy
|
14221 |
msgid "If UNticked, you can specify the urls for custom images to be used."
|
14222 |
msgstr ""
|
14223 |
"Si décochée, vous pouvez spécifier les urls pour les images personnalisées à "
|
14224 |
"utiliser."
|
14225 |
|
14226 |
+
#: wppa-settings-autosave.php:7851
|
14227 |
msgid "Orange"
|
14228 |
msgstr "Orange"
|
14229 |
|
14230 |
+
#: wppa-settings-autosave.php:7852
|
14231 |
msgid "Yellow"
|
14232 |
msgstr "Jaune"
|
14233 |
|
14234 |
+
#: wppa-settings-autosave.php:7855
|
14235 |
msgid "Purple"
|
14236 |
msgstr "Voilet"
|
14237 |
|
14238 |
+
#: wppa-settings-autosave.php:7856
|
14239 |
msgid "Black/white"
|
14240 |
msgstr "Noir/Blanc"
|
14241 |
|
14242 |
+
#: wppa-settings-autosave.php:7868 wppa-settings-autosave.php:7890
|
14243 |
msgid "New label"
|
14244 |
msgstr "Nouveau label"
|
14245 |
|
14246 |
+
#: wppa-settings-autosave.php:7869
|
14247 |
#, fuzzy
|
14248 |
msgid "Specify the \"New\" indicator details."
|
14249 |
msgstr "Spécifiez les «nouveaux» les détails de l'indicateur."
|
14250 |
|
14251 |
+
#: wppa-settings-autosave.php:7870 wppa-settings-autosave.php:7881
|
14252 |
msgid "If you use qTranslate, the text may be multilingual."
|
14253 |
msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
|
14254 |
|
14255 |
+
#: wppa-settings-autosave.php:7874 wppa-settings-autosave.php:7885
|
14256 |
#: wppa-stereo.php:31
|
14257 |
msgid "Color"
|
14258 |
msgstr "Couleur"
|
14259 |
|
14260 |
+
#: wppa-settings-autosave.php:7879 wppa-settings-autosave.php:7899
|
14261 |
#, fuzzy
|
14262 |
msgid "Modified label"
|
14263 |
msgstr "étiquette modifiée"
|
14264 |
|
14265 |
+
#: wppa-settings-autosave.php:7880
|
14266 |
#, fuzzy
|
14267 |
msgid "Specify the \"Modified\" indicator details."
|
14268 |
msgstr "Spécifiez les \"modifiés\" détails de l'indicateur."
|
14269 |
|
14270 |
+
#: wppa-settings-autosave.php:7891
|
14271 |
#, fuzzy
|
14272 |
msgid "Specify the \"New\" indicator url."
|
14273 |
msgstr "Spécifiez le \"Nouveau\" indicateur url."
|
14274 |
|
14275 |
+
#: wppa-settings-autosave.php:7900
|
14276 |
#, fuzzy
|
14277 |
msgid "Specify the \"Modified\" indicator url."
|
14278 |
msgstr "Spécifiez l'indicateur \"Modifié\" url."
|
14279 |
|
14280 |
+
#: wppa-settings-autosave.php:7908
|
14281 |
#, fuzzy
|
14282 |
msgid "Limit LasTen New"
|
14283 |
msgstr "Limite lasten Nouveau"
|
14284 |
|
14285 |
+
#: wppa-settings-autosave.php:7909
|
14286 |
#, fuzzy
|
14287 |
msgid "Limits the LasTen photos to those that are 'New', or newly modified."
|
14288 |
msgstr ""
|
14289 |
"Limite des photos lasten à ceux qui sont «Nouveau», ou nouvellement modifiées."
|
14290 |
|
14291 |
+
#: wppa-settings-autosave.php:7910
|
14292 |
msgid ""
|
14293 |
"If you tick this box and configured the new photo time, you can even limit the "
|
14294 |
"number by the setting in Table I-F7, or set that number to an unlikely high "
|
14298 |
"même limiter le nombre par la mise en Table I-F7, ou définir ce nombre sur une "
|
14299 |
"valeur élevée peu probable."
|
14300 |
|
14301 |
+
#: wppa-settings-autosave.php:7917
|
14302 |
#, fuzzy
|
14303 |
msgid "LasTen use Modified"
|
14304 |
msgstr "utilisation lasten modification"
|
14305 |
|
14306 |
+
#: wppa-settings-autosave.php:7918
|
14307 |
#, fuzzy
|
14308 |
msgid ""
|
14309 |
"Use the time modified rather than time upload for LasTen widget/shortcode."
|
14311 |
"Utilisez le temps modifié plutôt que le téléchargement de temps pour lasten "
|
14312 |
"widget / shortcode."
|
14313 |
|
14314 |
+
#: wppa-settings-autosave.php:7926
|
14315 |
msgid "Apply Newphoto desc"
|
14316 |
msgstr "Appliquer la description nouveau"
|
14317 |
|
14318 |
+
#: wppa-settings-autosave.php:7927
|
14319 |
msgid "Give each new photo a standard description."
|
14320 |
msgstr "Donner à chaque nouvelle photo une description normalisée."
|
14321 |
|
14322 |
+
#: wppa-settings-autosave.php:7928
|
14323 |
msgid ""
|
14324 |
"If checked, each new photo will get the description (template) as specified in "
|
14325 |
"the next item."
|
14327 |
"Si cochée, chaque nouvelle photo obtient la description (modèle), comme "
|
14328 |
"spécifié dans l’element suivant."
|
14329 |
|
14330 |
+
#: wppa-settings-autosave.php:7935
|
14331 |
msgid "New photo desc"
|
14332 |
msgstr "Description nouvelle photo"
|
14333 |
|
14334 |
+
#: wppa-settings-autosave.php:7936
|
14335 |
#, fuzzy
|
14336 |
msgid "The description (template) to add to a new photo."
|
14337 |
msgstr "La description (modèle) pour ajouter une nouvelle photo."
|
14338 |
|
14339 |
+
#: wppa-settings-autosave.php:7937
|
14340 |
msgid "Enter the default description."
|
14341 |
msgstr "Entrez la description par défaut."
|
14342 |
|
14343 |
+
#: wppa-settings-autosave.php:7938
|
14344 |
msgid "If you use html, please check item A-1 of this table."
|
14345 |
msgstr "Si vous utilisez html, s’il vous plaît cochez point A-1 de ce table."
|
14346 |
|
14347 |
+
#: wppa-settings-autosave.php:7945
|
14348 |
msgid "New photo owner"
|
14349 |
msgstr "Propriétaire de nouvelle photo"
|
14350 |
|
14351 |
+
#: wppa-settings-autosave.php:7946
|
14352 |
msgid "The owner of a new uploaded photo."
|
14353 |
msgstr "Le propriétaire d’une nouvelle photo téléchargée."
|
14354 |
|
14355 |
+
#: wppa-settings-autosave.php:7947
|
14356 |
msgid "If you leave this blank, the uploader will be set as the owner"
|
14357 |
msgstr ""
|
14358 |
"Si vous laissez ce champ vide, l’uploader sera définie en tant que propriétaire"
|
14359 |
|
14360 |
+
#: wppa-settings-autosave.php:7949
|
14361 |
msgid "leave blank or enter login name"
|
14362 |
msgstr "laissez vide ou entrez le nom de connexion"
|
14363 |
|
14364 |
+
#: wppa-settings-autosave.php:7955
|
14365 |
#, fuzzy
|
14366 |
msgid "New albums are created with this upload limit."
|
14367 |
msgstr "Nouveaux albums sont créés avec cette limite de téléchargement."
|
14368 |
|
14369 |
+
#: wppa-settings-autosave.php:7956
|
14370 |
msgid ""
|
14371 |
"Administrators can change the limit settings in the \"Edit Album Information\" "
|
14372 |
"admin page."
|
14374 |
"Administrateurs peuvent modifier les paramètres de limite dans la page "
|
14375 |
"d’administration de « Modifier les informations de Album »."
|
14376 |
|
14377 |
+
#: wppa-settings-autosave.php:7973
|
14378 |
msgid "Default parent"
|
14379 |
msgstr "Parent par défaut"
|
14380 |
|
14381 |
+
#: wppa-settings-autosave.php:7974
|
14382 |
#, fuzzy
|
14383 |
msgid "The parent album of new albums."
|
14384 |
msgstr "L'album de parent de nouveaux albums."
|
14385 |
|
14386 |
+
#: wppa-settings-autosave.php:7991
|
14387 |
msgid "Default parent always"
|
14388 |
msgstr "Par défaut parent toujours"
|
14389 |
|
14390 |
+
#: wppa-settings-autosave.php:7992
|
14391 |
#, fuzzy
|
14392 |
msgid ""
|
14393 |
"The parent album of new albums is always the default, except for "
|
14396 |
"L'album de parent de nouveaux albums est toujours la valeur par défaut, sauf "
|
14397 |
"pour les administrateurs."
|
14398 |
|
14399 |
+
#: wppa-settings-autosave.php:8000
|
14400 |
#, fuzzy
|
14401 |
msgid "Show album full"
|
14402 |
msgstr "Voir l'album complet"
|
14403 |
|
14404 |
+
#: wppa-settings-autosave.php:8001
|
14405 |
#, fuzzy
|
14406 |
msgid "Show the Upload limit reached message if appropriate."
|
14407 |
msgstr "Afficher le chargement limite un message atteint le cas échéant."
|
14408 |
|
14409 |
+
#: wppa-settings-autosave.php:8009
|
14410 |
msgid "Grant an album"
|
14411 |
msgstr "Grant an album"
|
14412 |
|
14413 |
+
#: wppa-settings-autosave.php:8010
|
14414 |
msgid "Create an album for each user logging in."
|
14415 |
msgstr "Créer un album pour chaque utilisateur connecté."
|
14416 |
|
14417 |
+
#: wppa-settings-autosave.php:8018
|
14418 |
msgid "Grant album name"
|
14419 |
msgstr "Grant album name"
|
14420 |
|
14421 |
+
#: wppa-settings-autosave.php:8019
|
14422 |
#, fuzzy
|
14423 |
msgid "The name to be used for the album."
|
14424 |
msgstr "Le nom à utiliser pour l'album."
|
14425 |
|
14426 |
+
#: wppa-settings-autosave.php:8022
|
14427 |
msgid "Login name"
|
14428 |
msgstr "Identifiant"
|
14429 |
|
14430 |
+
#: wppa-settings-autosave.php:8022 wppa-upldr-widget.php:182
|
14431 |
msgid "Display name"
|
14432 |
msgstr "Afficher le nom"
|
14433 |
|
14434 |
+
#: wppa-settings-autosave.php:8022
|
14435 |
msgid "Id"
|
14436 |
msgstr "Id"
|
14437 |
|
14438 |
+
#: wppa-settings-autosave.php:8022
|
14439 |
msgid "Firstname Lastname"
|
14440 |
msgstr "Prénom Nom de famille"
|
14441 |
|
14442 |
+
#: wppa-settings-autosave.php:8029
|
14443 |
msgid "Grant parent"
|
14444 |
msgstr "Grant parent"
|
14445 |
|
14446 |
+
#: wppa-settings-autosave.php:8030
|
14447 |
#, fuzzy
|
14448 |
msgid "The parent album of the auto created albums."
|
14449 |
msgstr "L'album de parent de l'auto albums créé."
|
14450 |
|
14451 |
+
#: wppa-settings-autosave.php:8047
|
14452 |
msgid "Max user albums"
|
14453 |
msgstr "Max albums d'utilisateur"
|
14454 |
|
14455 |
+
#: wppa-settings-autosave.php:8048
|
14456 |
#, fuzzy
|
14457 |
msgid "The max number of albums a user can create."
|
14458 |
msgstr "Le nombre maximum d'albums un utilisateur peut créer."
|
14459 |
|
14460 |
+
#: wppa-settings-autosave.php:8049
|
14461 |
#, fuzzy
|
14462 |
msgid ""
|
14463 |
"The maximum number of albums a user can create when he is not admin and owner "
|
14466 |
"Le nombre maximum d'albums, un utilisateur peut créer quand il est pas "
|
14467 |
"administrateur et propriétaire seulement est actif"
|
14468 |
|
14469 |
+
#: wppa-settings-autosave.php:8050
|
14470 |
msgid "A number of 0 means No limit"
|
14471 |
msgstr "Un nombre de 0 signifie aucune limite"
|
14472 |
|
14473 |
+
#: wppa-settings-autosave.php:8057
|
14474 |
msgid "Default photo name"
|
14475 |
msgstr "Nom de photo par défaut"
|
14476 |
|
14477 |
+
#: wppa-settings-autosave.php:8058
|
14478 |
#, fuzzy
|
14479 |
msgid "Select the way the name of a new uploaded photo should be determined."
|
14480 |
msgstr ""
|
14481 |
"Sélectionnez la façon dont le nom d'une nouvelle photo téléchargée doit être "
|
14482 |
"déterminée."
|
14483 |
|
14484 |
+
#: wppa-settings-autosave.php:8061
|
14485 |
msgid "Filename"
|
14486 |
msgstr "Nom de fichier"
|
14487 |
|
14488 |
+
#: wppa-settings-autosave.php:8062
|
14489 |
msgid "Filename without extension"
|
14490 |
msgstr "Nom de fichier sans extension"
|
14491 |
|
14492 |
+
#: wppa-settings-autosave.php:8063
|
14493 |
#, fuzzy
|
14494 |
msgid "IPTC Tag 2#005 (Graphic name)"
|
14495 |
msgstr "IPTC Tag 2 # 005 (nom Graphic)"
|
14496 |
|
14497 |
+
#: wppa-settings-autosave.php:8064
|
14498 |
#, fuzzy
|
14499 |
msgid "IPTC Tag 2#120 (Caption)"
|
14500 |
msgstr "IPTC Tag 2 # 120 (Légende)"
|
14501 |
|
14502 |
+
#: wppa-settings-autosave.php:8065
|
14503 |
msgid "No name at all"
|
14504 |
msgstr "Pas de nom du tout"
|
14505 |
|
14506 |
+
#: wppa-settings-autosave.php:8073
|
14507 |
msgid "Default coverphoto"
|
14508 |
msgstr "Photo de couverture par défaut"
|
14509 |
|
14510 |
+
#: wppa-settings-autosave.php:8074
|
14511 |
#, fuzzy
|
14512 |
msgid "Name of photofile to become cover image"
|
14513 |
msgstr "Nom du photofile pour devenir l'image de couverture"
|
14514 |
|
14515 |
+
#: wppa-settings-autosave.php:8075
|
14516 |
msgid ""
|
14517 |
"If you name a photofile like this setting before upload, it will become the "
|
14518 |
"coverimage automaticly."
|
14520 |
"Si vous nommez une Photothèque comme ce paramètre avant de télécharger, il "
|
14521 |
"deviendra automatiquement le coverimage."
|
14522 |
|
14523 |
+
#: wppa-settings-autosave.php:8082
|
14524 |
msgid "Copy Timestamp"
|
14525 |
msgstr "Copier timestamp"
|
14526 |
|
14527 |
+
#: wppa-settings-autosave.php:8083
|
14528 |
msgid "Copy timestamp when copying photo."
|
14529 |
msgstr "Copiez timestamp lors de la copie de photo."
|
14530 |
|
14531 |
+
#: wppa-settings-autosave.php:8084
|
14532 |
msgid "If checked, the copied photo is not \"new\""
|
14533 |
msgstr "Si elle est cochée, la photo copiée n'est pas \"nouveau\""
|
14534 |
|
14535 |
+
#: wppa-settings-autosave.php:8091
|
14536 |
msgid "Copy Owner"
|
14537 |
msgstr "Copier le propriétaire"
|
14538 |
|
14539 |
+
#: wppa-settings-autosave.php:8092
|
14540 |
msgid "Copy the owner when copying photo."
|
14541 |
msgstr "Copiez le propriétaire lors de la copie de photo."
|
14542 |
|
14543 |
+
#: wppa-settings-autosave.php:8100
|
14544 |
msgid "FE Albums public"
|
14545 |
msgstr "FE Albums publics"
|
14546 |
|
14547 |
+
#: wppa-settings-autosave.php:8101
|
14548 |
msgid "Frontend created albums are --- public ---"
|
14549 |
msgstr "Albums créé en Frontend sont --- publics ---"
|
14550 |
|
14551 |
+
#: wppa-settings-autosave.php:8110
|
14552 |
#, fuzzy
|
14553 |
msgid "Optimize image files right after upload/import"
|
14554 |
msgstr "Optimiser les fichiers d'image à droite après upload / import"
|
14555 |
|
14556 |
+
#: wppa-settings-autosave.php:8111
|
14557 |
#, fuzzy
|
14558 |
msgid "This option requires the plugin EWWW Image Optimizer to be activated"
|
14559 |
msgstr "Cette option nécessite le plugin EWWW Image Optimizer pour être activé"
|
14560 |
|
14561 |
+
#: wppa-settings-autosave.php:8118
|
14562 |
msgid "Default album linktype"
|
14563 |
msgstr "Linktype album par défaut"
|
14564 |
|
14565 |
+
#: wppa-settings-autosave.php:8119
|
14566 |
#, fuzzy
|
14567 |
msgid "The album linktype for new albums"
|
14568 |
msgstr "Le linktype album de nouveaux albums"
|
14569 |
|
14570 |
+
#: wppa-settings-autosave.php:8138
|
14571 |
#, fuzzy
|
14572 |
msgid "Search Albums and Photos related settings"
|
14573 |
msgstr "Recherche albums et les photos liées réglages"
|
14574 |
|
14575 |
+
#: wppa-settings-autosave.php:8140
|
14576 |
msgid "Search page"
|
14577 |
msgstr "Rechercher dans la page"
|
14578 |
|
14579 |
+
#: wppa-settings-autosave.php:8141
|
14580 |
msgid "Display the search results on page."
|
14581 |
msgstr "Affichez les résultats de recherche sur la page."
|
14582 |
|
14583 |
+
#: wppa-settings-autosave.php:8142
|
14584 |
#, fuzzy, php-format
|
14585 |
msgid ""
|
14586 |
"Select the page to be used to display search results. The page MUST contain "
|
14589 |
"Sélectionnez la page à utiliser pour afficher les résultats de recherche. La "
|
14590 |
"page DOIT contenir %% LPPT %% ou [LPPT] [/ LPPT]."
|
14591 |
|
14592 |
+
#: wppa-settings-autosave.php:8143
|
14593 |
msgid "You may give it the title \"Search results\" or something alike."
|
14594 |
msgstr ""
|
14595 |
"Vous pouvez lui donner titre « résultats de la recherche » ou quelque chose "
|
14596 |
"comme."
|
14597 |
|
14598 |
+
#: wppa-settings-autosave.php:8144
|
14599 |
#, fuzzy
|
14600 |
msgid ""
|
14601 |
"Or you ou may use the standard page on which you display the generic album."
|
14603 |
"Ou vous ous pouvez utiliser la page standard sur lequel vous affichez l'album "
|
14604 |
"générique."
|
14605 |
|
14606 |
+
#: wppa-settings-autosave.php:8177
|
14607 |
msgid "Exclude separate"
|
14608 |
msgstr "Exclure séparé"
|
14609 |
|
14610 |
+
#: wppa-settings-autosave.php:8178
|
14611 |
msgid "Do not search 'separate' albums."
|
14612 |
msgstr "Ne pas rechercher dans les albums 'séparés'"
|
14613 |
|
14614 |
+
#: wppa-settings-autosave.php:8179
|
14615 |
#, fuzzy
|
14616 |
msgid ""
|
14617 |
"When checked, albums (and photos in them) that have the parent set to --- "
|
14620 |
"Lorsqu'elle est cochée, les albums (et des photos en eux) qui ont le parent "
|
14621 |
"mis à --- --- séparée seront exclus de la fouille."
|
14622 |
|
14623 |
+
#: wppa-settings-autosave.php:8180
|
14624 |
msgid ""
|
14625 |
"Except when you start searching in a 'saparate' album, with the \"search in "
|
14626 |
"current section\" box ticked."
|
14628 |
"Sauf lorsque vous démarrez la recherche d’un album « saparate », avec la case "
|
14629 |
"« recherche dans la section en cours » cochée."
|
14630 |
|
14631 |
+
#: wppa-settings-autosave.php:8187
|
14632 |
msgid "Include tags"
|
14633 |
msgstr "Inclure les tags"
|
14634 |
|
14635 |
+
#: wppa-settings-autosave.php:8188
|
14636 |
msgid "Do also search the photo tags."
|
14637 |
msgstr "Également rechercher les balises de photo."
|
14638 |
|
14639 |
+
#: wppa-settings-autosave.php:8189
|
14640 |
#, fuzzy
|
14641 |
msgid "When checked, the tags of the photo will also be searched."
|
14642 |
msgstr ""
|
14643 |
"Lorsqu'elle est cochée, les balises de la photo seront également recherchées."
|
14644 |
|
14645 |
+
#: wppa-settings-autosave.php:8196
|
14646 |
msgid "Include categories"
|
14647 |
msgstr "Inclure les catégories:"
|
14648 |
|
14649 |
+
#: wppa-settings-autosave.php:8197
|
14650 |
msgid "Do also search the album categories."
|
14651 |
msgstr "Également rechercher les catégories de l’album."
|
14652 |
|
14653 |
+
#: wppa-settings-autosave.php:8198
|
14654 |
#, fuzzy
|
14655 |
msgid "When checked, the categories of the album will also be searched."
|
14656 |
msgstr ""
|
14657 |
"Lorsqu'elle est cochée, les catégories de l'album seront également recherchées."
|
14658 |
|
14659 |
+
#: wppa-settings-autosave.php:8205
|
14660 |
msgid "Include comments"
|
14661 |
msgstr "Inclure les commentaires"
|
14662 |
|
14663 |
+
#: wppa-settings-autosave.php:8206
|
14664 |
msgid "Do also search the comments on photos."
|
14665 |
msgstr "Également rechercher les commentaires sur les photos."
|
14666 |
|
14667 |
+
#: wppa-settings-autosave.php:8207
|
14668 |
#, fuzzy
|
14669 |
msgid "When checked, the comments of the photos will also be searched."
|
14670 |
msgstr ""
|
14671 |
"Lorsqu'elle est cochée, les commentaires des photos seront également "
|
14672 |
"recherchées."
|
14673 |
|
14674 |
+
#: wppa-settings-autosave.php:8214
|
14675 |
msgid "Photos only"
|
14676 |
msgstr "Photos seulement"
|
14677 |
|
14678 |
+
#: wppa-settings-autosave.php:8215
|
14679 |
#, fuzzy
|
14680 |
msgid "Search for photos only."
|
14681 |
msgstr "Rechercher des photos seulement."
|
14682 |
|
14683 |
+
#: wppa-settings-autosave.php:8216
|
14684 |
#, fuzzy
|
14685 |
msgid "When checked, only photos will be searched for."
|
14686 |
msgstr "Lorsqu'elle est cochée, seules les photos seront recherchées."
|
14687 |
|
14688 |
+
#: wppa-settings-autosave.php:8231
|
14689 |
msgid "Max albums found"
|
14690 |
msgstr "Maximum des albums trouvés"
|
14691 |
|
14692 |
+
#: wppa-settings-autosave.php:8232
|
14693 |
#, fuzzy
|
14694 |
msgid "The maximum number of albums to be displayed."
|
14695 |
msgstr "Le nombre maximum d'albums à afficher."
|
14696 |
|
14697 |
+
#: wppa-settings-autosave.php:8240
|
14698 |
#, fuzzy
|
14699 |
msgid "Max photos found"
|
14700 |
msgstr "Max photos trouvées"
|
14701 |
|
14702 |
+
#: wppa-settings-autosave.php:8241
|
14703 |
#, fuzzy
|
14704 |
msgid "The maximum number of photos to be displayed."
|
14705 |
msgstr "Le nombre maximum de photos à afficher."
|
14706 |
|
14707 |
+
#: wppa-settings-autosave.php:8249
|
14708 |
#, fuzzy
|
14709 |
msgid "Tags OR only"
|
14710 |
msgstr "Mots-clefs ou seulement"
|
14711 |
|
14712 |
+
#: wppa-settings-autosave.php:8250
|
14713 |
msgid "No and / or buttons"
|
14714 |
msgstr "Pas de boutons et / ou"
|
14715 |
|
14716 |
+
#: wppa-settings-autosave.php:8251
|
14717 |
msgid ""
|
14718 |
"Hide the and/or radiobuttons and do the or method in the multitag widget and "
|
14719 |
"shortcode."
|
14721 |
"Masquer l’et/ou de cases d’option et ne l’ou la méthode dans le widget "
|
14722 |
"multibalises et shortcode."
|
14723 |
|
14724 |
+
#: wppa-settings-autosave.php:8258
|
14725 |
msgid "Tags add Inverse"
|
14726 |
msgstr "Balisess ajouter un Inverse"
|
14727 |
|
14728 |
+
#: wppa-settings-autosave.php:8259
|
14729 |
msgid "Add a checkbox to invert the selection."
|
14730 |
msgstr "Ajoute une case à cocher pour inverser la sélection."
|
14731 |
|
14732 |
+
#: wppa-settings-autosave.php:8260
|
14733 |
msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
|
14734 |
msgstr ""
|
14735 |
"Ajoute une case à cocher inverser (pas) sur le widget multibalises et "
|
14736 |
"shortcode."
|
14737 |
|
14738 |
+
#: wppa-settings-autosave.php:8267
|
14739 |
msgid "Floating searchtoken"
|
14740 |
msgstr "Jeton recherche flottant"
|
14741 |
|
14742 |
+
#: wppa-settings-autosave.php:8268
|
14743 |
msgid "A match need not start at the first char."
|
14744 |
msgstr "Un match ne besoin pas dès le premier char."
|
14745 |
|
14746 |
+
#: wppa-settings-autosave.php:8269
|
14747 |
msgid ""
|
14748 |
"A match is found while searching also when the entered token is somewhere in "
|
14749 |
"the middle of a word."
|
14751 |
"Une correspondance est trouvée en cherchant également lorsque le jeton est "
|
14752 |
"entré est quelque part au milieu d’un mot."
|
14753 |
|
14754 |
+
#: wppa-settings-autosave.php:8270
|
14755 |
#, fuzzy
|
14756 |
msgid "This works in indexed search only!"
|
14757 |
msgstr "Cela fonctionne uniquement Recherche indexée!"
|
14758 |
|
14759 |
+
#: wppa-settings-autosave.php:8277
|
14760 |
#, fuzzy
|
14761 |
msgid "Search results display"
|
14762 |
msgstr "Résultats de la recherche affichage"
|
14763 |
|
14764 |
+
#: wppa-settings-autosave.php:8278
|
14765 |
#, fuzzy
|
14766 |
msgid "Select the way the search results should be displayed."
|
14767 |
msgstr ""
|
14768 |
"Sélectionnez la façon dont les résultats de la recherche doivent être affichés."
|
14769 |
|
14770 |
+
#: wppa-settings-autosave.php:8279
|
14771 |
msgid ""
|
14772 |
"If you select anything different from \"Albums and thumbnails\", \"Photos only"
|
14773 |
"\" is assumed (Table IX-E6)."
|
14775 |
"Si vous choisissez quelque chose de différent de \"Albums et miniatures\", "
|
14776 |
"\"Photos seulement\" est supposé (Table IX-E6)."
|
14777 |
|
14778 |
+
#: wppa-settings-autosave.php:8281
|
14779 |
msgid "Albums and thumbnails"
|
14780 |
msgstr "Album et vignettes"
|
14781 |
|
14782 |
+
#: wppa-settings-autosave.php:8281
|
14783 |
#, fuzzy
|
14784 |
msgid "Slideonly slideshow"
|
14785 |
msgstr "Slideonly slideshow"
|
14786 |
|
14787 |
+
#: wppa-settings-autosave.php:8288
|
14788 |
#, fuzzy
|
14789 |
msgid "Name max length"
|
14790 |
+
msgstr "Durée maximale"
|
14791 |
|
14792 |
+
#: wppa-settings-autosave.php:8289
|
14793 |
#, fuzzy
|
14794 |
msgid "Max length of displayed photonames in supersearch selectionlist"
|
14795 |
msgstr "Longueur maxi de photonames affichés dans SelectionList SuperRecherche"
|
14796 |
|
14797 |
+
#: wppa-settings-autosave.php:8290 wppa-settings-autosave.php:8299
|
14798 |
#, fuzzy
|
14799 |
msgid ""
|
14800 |
"To limit the length of the selectionlist, enter the number of characters to "
|
14803 |
"Pour limiter la longueur de la SelectionList, entrez le nombre de caractères à "
|
14804 |
"afficher."
|
14805 |
|
14806 |
+
#: wppa-settings-autosave.php:8297
|
14807 |
#, fuzzy
|
14808 |
msgid "Text max length"
|
14809 |
+
msgstr "Durée maximale"
|
14810 |
|
14811 |
+
#: wppa-settings-autosave.php:8298
|
14812 |
#, fuzzy
|
14813 |
msgid "Max length of displayed photo text in supersearch selectionlist"
|
14814 |
msgstr ""
|
14815 |
"Longueur maximale du texte affiché photo dans SelectionList SuperRecherche"
|
14816 |
|
14817 |
+
#: wppa-settings-autosave.php:8306
|
14818 |
#, fuzzy
|
14819 |
msgid "Search toptext"
|
14820 |
msgstr "Recherche Toptext"
|
14821 |
|
14822 |
+
#: wppa-settings-autosave.php:8307
|
14823 |
#, fuzzy
|
14824 |
msgid "The text at the top of the search box."
|
14825 |
msgstr "Le texte en haut de la zone de recherche."
|
14826 |
|
14827 |
+
#: wppa-settings-autosave.php:8308
|
14828 |
#, fuzzy
|
14829 |
msgid "May contain unfiltered HTML."
|
14830 |
msgstr "Peut contenir HTML non filtré."
|
14831 |
|
14832 |
+
#: wppa-settings-autosave.php:8315
|
14833 |
#, fuzzy
|
14834 |
msgid "Section search text"
|
14835 |
msgstr "texte Section de recherche"
|
14836 |
|
14837 |
+
#: wppa-settings-autosave.php:8316 wppa-settings-autosave.php:8325
|
14838 |
#, fuzzy
|
14839 |
msgid "The labeltext at the checkbox."
|
14840 |
msgstr "Le labelText à la case à cocher."
|
14841 |
|
14842 |
+
#: wppa-settings-autosave.php:8324
|
14843 |
#, fuzzy
|
14844 |
msgid "Results search text"
|
14845 |
msgstr "texte de recherche de résultats"
|
14846 |
|
14847 |
+
#: wppa-settings-autosave.php:8334
|
14848 |
msgid "Watermark related settings"
|
14849 |
msgstr "Paramètres associés de Filigrane"
|
14850 |
|
14851 |
+
#: wppa-settings-autosave.php:8337
|
14852 |
msgid "Enable the application of watermarks."
|
14853 |
msgstr "Permettre l’application de filigranes."
|
14854 |
|
14855 |
+
#: wppa-settings-autosave.php:8338
|
14856 |
msgid "If checked, photos can be watermarked during upload / import."
|
14857 |
msgstr ""
|
14858 |
"S’il est activé, les photos peuvent être filigranés pendant le "
|
14859 |
"téléchargement / import."
|
14860 |
|
14861 |
+
#: wppa-settings-autosave.php:8347
|
14862 |
msgid "Watermark file"
|
14863 |
msgstr "Fichier filigrane"
|
14864 |
|
14865 |
+
#: wppa-settings-autosave.php:8348
|
14866 |
#, fuzzy
|
14867 |
msgid "The default watermarkfile to be used."
|
14868 |
msgstr "Le watermarkfile par défaut à utiliser."
|
14869 |
|
14870 |
+
#: wppa-settings-autosave.php:8349
|
14871 |
msgid "Watermark files are of type png and reside in"
|
14872 |
msgstr "Les fichiers filigrane sont du type PNG et consistent en"
|
14873 |
|
14874 |
+
#: wppa-settings-autosave.php:8350
|
14875 |
msgid ""
|
14876 |
"A suitable watermarkfile typically consists of a transparent background and a "
|
14877 |
"black text or drawing."
|
14879 |
"Un watermarkfile convenable se compose généralement d’un arrière-plan "
|
14880 |
"transparent et un texte noir ou un dessin."
|
14881 |
|
14882 |
+
#: wppa-settings-autosave.php:8352
|
14883 |
msgid ""
|
14884 |
"You may also select one of the textual watermark types at the bottom of the "
|
14885 |
"selection list."
|
14887 |
"Vous pouvez également sélectionner un des types de filigrane textuel au bas de "
|
14888 |
"la liste de sélection."
|
14889 |
|
14890 |
+
#: wppa-settings-autosave.php:8356
|
14891 |
msgid "position:"
|
14892 |
msgstr "Position:"
|
14893 |
|
14894 |
+
#: wppa-settings-autosave.php:8362
|
14895 |
msgid "Upload watermark"
|
14896 |
msgstr "Charger filigrane"
|
14897 |
|
14898 |
+
#: wppa-settings-autosave.php:8363
|
14899 |
msgid "Upload a new watermark file"
|
14900 |
msgstr "Charger un nouveau fichier filigrane"
|
14901 |
|
14902 |
+
#: wppa-settings-autosave.php:8367
|
14903 |
msgid "Upload watermark image"
|
14904 |
msgstr "Charger une image filigrane"
|
14905 |
|
14906 |
+
#: wppa-settings-autosave.php:8372
|
14907 |
msgid "Watermark opacity image"
|
14908 |
msgstr "Opacité du filigrane d'image"
|
14909 |
|
14910 |
+
#: wppa-settings-autosave.php:8373
|
14911 |
#, fuzzy
|
14912 |
msgid "You can set the intensity of image watermarks here."
|
14913 |
msgstr "Vous pouvez régler l'intensité de l'image filigranes ici."
|
14914 |
|
14915 |
+
#: wppa-settings-autosave.php:8374 wppa-settings-autosave.php:8459
|
14916 |
#, fuzzy
|
14917 |
msgid ""
|
14918 |
"The higher the number, the intenser the watermark. Value must be > 0 and <= "
|
14921 |
"Plus le nombre est élevé, plus intense du filigrane. La valeur doit être> 0 et "
|
14922 |
"<= 100."
|
14923 |
|
14924 |
+
#: wppa-settings-autosave.php:8381
|
14925 |
msgid "Textual watermark style"
|
14926 |
msgstr "Style du texte filigrane"
|
14927 |
|
14928 |
+
#: wppa-settings-autosave.php:8382
|
14929 |
#, fuzzy
|
14930 |
msgid "The way the textual watermarks look like"
|
14931 |
msgstr "La façon dont les filigranes textuels ressemblent"
|
14932 |
|
14933 |
+
#: wppa-settings-autosave.php:8386
|
14934 |
msgid "TV subtitle style"
|
14935 |
msgstr "Style des sous-titres"
|
14936 |
|
14937 |
+
#: wppa-settings-autosave.php:8386
|
14938 |
msgid "White text on black background"
|
14939 |
msgstr "Texte blanc sur fond noir"
|
14940 |
|
14941 |
+
#: wppa-settings-autosave.php:8386
|
14942 |
msgid "Black text on white background"
|
14943 |
msgstr "Texte noir sur fond blanc"
|
14944 |
|
14945 |
+
#: wppa-settings-autosave.php:8386
|
14946 |
#, fuzzy
|
14947 |
msgid "Reverse TV style (Utopia)"
|
14948 |
msgstr "le style Reverse TV (Utopia)"
|
14949 |
|
14950 |
+
#: wppa-settings-autosave.php:8386
|
14951 |
msgid "White on transparent background"
|
14952 |
msgstr "Blanc sur fond transparent"
|
14953 |
|
14954 |
+
#: wppa-settings-autosave.php:8386
|
14955 |
msgid "Black on transparent background"
|
14956 |
msgstr "Noir sur fond transparent"
|
14957 |
|
14958 |
+
#: wppa-settings-autosave.php:8396
|
14959 |
#, fuzzy
|
14960 |
msgid "Predefined watermark text"
|
14961 |
msgstr "texte en filigrane Predefined"
|
14962 |
|
14963 |
+
#: wppa-settings-autosave.php:8397
|
14964 |
#, fuzzy
|
14965 |
msgid "The text to use when --- pre-defined --- is selected."
|
14966 |
msgstr "Le texte à utiliser quand --- pré-défini --- est sélectionné."
|
14967 |
|
14968 |
+
#: wppa-settings-autosave.php:8398
|
14969 |
msgid "You may use the following keywords:"
|
14970 |
msgstr "Vous pouvez utiliser les mots clés suivants:"
|
14971 |
|
14972 |
+
#: wppa-settings-autosave.php:8399
|
14973 |
msgid ""
|
14974 |
"w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
|
14975 |
msgstr ""
|
14976 |
"w#site, w#displayname, tous les mots-clés photo standard, mots clés iptc et "
|
14977 |
"exif"
|
14978 |
|
14979 |
+
#: wppa-settings-autosave.php:8406
|
14980 |
msgid "Textual watermark font"
|
14981 |
msgstr "Police du texte filigrane"
|
14982 |
|
14983 |
+
#: wppa-settings-autosave.php:8407
|
14984 |
#, fuzzy
|
14985 |
msgid "The font to use with textusl watermarks."
|
14986 |
msgstr "La police à utiliser avec filigranes textusl."
|
14987 |
|
14988 |
+
#: wppa-settings-autosave.php:8408
|
14989 |
msgid "Except for the system font, are font files of type ttf and reside in"
|
14990 |
msgstr ""
|
14991 |
"À l’exception de la police système, sont des fichiers de police de type ttf et "
|
14992 |
"résident dans"
|
14993 |
|
14994 |
+
#: wppa-settings-autosave.php:8436
|
14995 |
msgid "Textual watermark font size"
|
14996 |
msgstr "Taille de la police texte filigrane"
|
14997 |
|
14998 |
+
#: wppa-settings-autosave.php:8437
|
14999 |
msgid "You can set the size of the truetype fonts only."
|
15000 |
msgstr "Vous pouvez définir seulement la taille des polices truetype."
|
15001 |
|
15002 |
+
#: wppa-settings-autosave.php:8438
|
15003 |
#, fuzzy
|
15004 |
msgid ""
|
15005 |
"System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
|
15008 |
"la police du système peut avoir une taille 1,2,3,4 ou 5, dans certaines unités "
|
15009 |
"FontSize stoneage. Toute valeur> 5 sera traitée comme 5."
|
15010 |
|
15011 |
+
#: wppa-settings-autosave.php:8439
|
15012 |
#, fuzzy
|
15013 |
msgid ""
|
15014 |
"Truetype fonts can have any positive integer size, if your PHPs GD version is "
|
15017 |
"Les polices TrueType peuvent avoir toute taille de nombre entier positif, si "
|
15018 |
"votre version de PHP GD est 1, en pixels, en GD2 points."
|
15019 |
|
15020 |
+
#: wppa-settings-autosave.php:8440
|
15021 |
#, fuzzy
|
15022 |
msgid "It is unclear howmany pixels a point is..."
|
15023 |
msgstr "On ne sait pas howmany pixels est un point ..."
|
15024 |
|
15025 |
+
#: wppa-settings-autosave.php:8447
|
15026 |
msgid "Upload watermark font"
|
15027 |
msgstr "Charger police filigrane"
|
15028 |
|
15029 |
+
#: wppa-settings-autosave.php:8448
|
15030 |
msgid "Upload a new watermark font file"
|
15031 |
msgstr "Charger un nouveau fichier filigrane"
|
15032 |
|
15033 |
+
#: wppa-settings-autosave.php:8449
|
15034 |
#, fuzzy
|
15035 |
msgid ""
|
15036 |
"Upload truetype fonts (.ttf) only, and test if they work on your server "
|
15039 |
"Ajouter des polices TrueType (.ttf) seulement, et de tester si elles "
|
15040 |
"fonctionnent sur votre plate-forme serveur."
|
15041 |
|
15042 |
+
#: wppa-settings-autosave.php:8452
|
15043 |
msgid "Upload TrueType font"
|
15044 |
msgstr "Charger police TrueType"
|
15045 |
|
15046 |
+
#: wppa-settings-autosave.php:8457
|
15047 |
msgid "Watermark opacity text"
|
15048 |
msgstr "Opacité du filigrane de texte"
|
15049 |
|
15050 |
+
#: wppa-settings-autosave.php:8458
|
15051 |
#, fuzzy
|
15052 |
msgid "You can set the intensity of a text watermarks here."
|
15053 |
msgstr "Vous pouvez régler l'intensité d'un texte filigranes ici."
|
15054 |
|
15055 |
+
#: wppa-settings-autosave.php:8467
|
15056 |
msgid "A real life preview. To update: refresh the page."
|
15057 |
msgstr "Un aperçu de la vie réelle. Mise à jour: actualisez la page."
|
15058 |
|
15059 |
+
#: wppa-settings-autosave.php:8478
|
15060 |
msgid "Watermark thumbnails"
|
15061 |
msgstr "Vignettes filigrane"
|
15062 |
|
15063 |
+
#: wppa-settings-autosave.php:8479
|
15064 |
msgid "Watermark also the thumbnail image files."
|
15065 |
msgstr "Filigrane également les fichiers de l’image miniature."
|
15066 |
|
15067 |
+
#: wppa-settings-autosave.php:8487
|
15068 |
#, fuzzy
|
15069 |
msgid "Slideshow elements sequence order settings"
|
15070 |
msgstr "éléments du diaporama paramètres de l'ordre de séquence"
|
15071 |
|
15072 |
+
#: wppa-settings-autosave.php:8493 wppa-settings-autosave.php:8539
|
15073 |
msgid "StartStop"
|
15074 |
msgstr "DémarrerArréter"
|
15075 |
|
15076 |
+
#: wppa-settings-autosave.php:8494 wppa-settings-autosave.php:8540
|
15077 |
#, fuzzy
|
15078 |
msgid "SlideFrame"
|
15079 |
msgstr "SlideFrame"
|
15080 |
|
15081 |
+
#: wppa-settings-autosave.php:8496
|
15082 |
msgid "Desc"
|
15083 |
msgstr "Desc"
|
15084 |
|
15085 |
+
#: wppa-settings-autosave.php:8499 wppa-settings-autosave.php:8544
|
15086 |
msgid "FilmStrip"
|
15087 |
msgstr "FilmStrip"
|
15088 |
|
15089 |
+
#: wppa-settings-autosave.php:8500 wppa-settings-autosave.php:8545
|
15090 |
msgid "Browsebar"
|
15091 |
msgstr "Browsebar"
|
15092 |
|
15093 |
+
#: wppa-settings-autosave.php:8502 wppa-settings-autosave.php:8547
|
15094 |
msgid "IPTC data"
|
15095 |
msgstr "Données IPTC"
|
15096 |
|
15097 |
+
#: wppa-settings-autosave.php:8503 wppa-settings-autosave.php:8548
|
15098 |
msgid "EXIF data"
|
15099 |
msgstr "Données EXIF"
|
15100 |
|
15101 |
+
#: wppa-settings-autosave.php:8504 wppa-settings-autosave.php:8549
|
15102 |
msgid "Share box"
|
15103 |
msgstr "Boîte de partage"
|
15104 |
|
15105 |
+
#: wppa-settings-autosave.php:8506 wppa-settings-autosave.php:8551
|
15106 |
msgid "Enabled"
|
15107 |
msgstr "Activé"
|
15108 |
|
15109 |
+
#: wppa-settings-autosave.php:8507 wppa-settings-autosave.php:8552
|
15110 |
msgid "Disabled"
|
15111 |
msgstr "Désactivé"
|
15112 |
|
15113 |
+
#: wppa-settings-autosave.php:8509 wppa-settings-autosave.php:8554
|
15114 |
#, fuzzy
|
15115 |
msgid "Start/Stop & Slower/Faster navigation bar"
|
15116 |
msgstr "Start / Stop & Slower / Faster barre de navigation"
|
15117 |
|
15118 |
+
#: wppa-settings-autosave.php:8510 wppa-settings-autosave.php:8555
|
15119 |
#, fuzzy
|
15120 |
msgid "The Slide Frame"
|
15121 |
msgstr "Le cadre de diapositives"
|
15122 |
|
15123 |
+
#: wppa-settings-autosave.php:8510 wppa-settings-autosave.php:8555
|
15124 |
msgid "( Always )"
|
15125 |
msgstr "( Toujours )"
|
15126 |
|
15127 |
+
#: wppa-settings-autosave.php:8511
|
15128 |
msgid "Photo Name Box"
|
15129 |
msgstr "Boîte de nom de la photo"
|
15130 |
|
15131 |
+
#: wppa-settings-autosave.php:8512
|
15132 |
#, fuzzy
|
15133 |
msgid "Photo Description Box"
|
15134 |
msgstr "Description de la photo Box"
|
15135 |
|
15136 |
+
#: wppa-settings-autosave.php:8513 wppa-settings-autosave.php:8557
|
15137 |
msgid "Custom Box"
|
15138 |
msgstr "Boîte personnalisée"
|
15139 |
|
15140 |
+
#: wppa-settings-autosave.php:8514 wppa-settings-autosave.php:8558
|
15141 |
msgid "Rating Bar"
|
15142 |
msgstr "Barre de vote"
|
15143 |
|
15144 |
+
#: wppa-settings-autosave.php:8515 wppa-settings-autosave.php:8559
|
15145 |
msgid "Film Strip with embedded Start/Stop and Goto functionality"
|
15146 |
msgstr "Bande de film avec des fonctionnalités de Start/Stop et Goto incorporée"
|
15147 |
|
15148 |
+
#: wppa-settings-autosave.php:8516 wppa-settings-autosave.php:8560
|
15149 |
msgid "Browse Bar with Photo X of Y counter"
|
15150 |
msgstr "Parcourir Bar avec comptoir de la Photo X de Y"
|
15151 |
|
15152 |
+
#: wppa-settings-autosave.php:8517 wppa-settings-autosave.php:8561
|
15153 |
msgid "Comments Box"
|
15154 |
msgstr "Boîte de commentaires"
|
15155 |
|
15156 |
+
#: wppa-settings-autosave.php:8518 wppa-settings-autosave.php:8562
|
15157 |
msgid "IPTC box"
|
15158 |
msgstr "Boîte IPTC"
|
15159 |
|
15160 |
+
#: wppa-settings-autosave.php:8519 wppa-settings-autosave.php:8563
|
15161 |
msgid "EXIF box"
|
15162 |
msgstr "Boîte EXIF"
|
15163 |
|
15164 |
+
#: wppa-settings-autosave.php:8520 wppa-settings-autosave.php:8564
|
15165 |
msgid "Social media share box"
|
15166 |
msgstr "Boîte de partage social"
|
15167 |
|
15168 |
+
#: wppa-settings-autosave.php:8526 wppa-settings-autosave.php:8570
|
15169 |
#, fuzzy
|
15170 |
msgid "Move Up"
|
15171 |
msgstr "Déplacer vers le haut"
|
15172 |
|
15173 |
+
#: wppa-settings-autosave.php:8541
|
15174 |
msgid "NameDesc"
|
15175 |
msgstr "NomDesc"
|
15176 |
|
15177 |
+
#: wppa-settings-autosave.php:8556
|
15178 |
#, fuzzy
|
15179 |
msgid "Photo Name & Description Box"
|
15180 |
msgstr "Photo Nom & Description Box"
|
15181 |
|
15182 |
+
#: wppa-settings-autosave.php:8580
|
15183 |
#, fuzzy
|
15184 |
msgid "Swap Namedesc"
|
15185 |
msgstr "Swap Namedesc"
|
15186 |
|
15187 |
+
#: wppa-settings-autosave.php:8581
|
15188 |
#, fuzzy
|
15189 |
msgid "Swap the order sequence of name and description"
|
15190 |
msgstr "Remplacez la séquence d'ordre de nom et la description"
|
15191 |
|
15192 |
+
#: wppa-settings-autosave.php:8589
|
15193 |
#, fuzzy
|
15194 |
msgid "Split Name and Desc"
|
15195 |
msgstr "Nom de Split et de Desc"
|
15196 |
|
15197 |
+
#: wppa-settings-autosave.php:8590
|
15198 |
#, fuzzy
|
15199 |
msgid "Put Name and Description in separate boxes"
|
15200 |
msgstr "Mettez nom et la description dans des boîtes séparées"
|
15201 |
|
15202 |
+
#: wppa-settings-autosave.php:8593
|
15203 |
#, fuzzy
|
15204 |
msgid "Please reload this page after the green checkmark appears!"
|
15205 |
msgstr "S'il vous plaît recharger cette page après la coche verte apparaît!"
|
15206 |
|
15207 |
+
#: wppa-settings-autosave.php:8598
|
15208 |
#, fuzzy
|
15209 |
msgid "Source file management and other upload/import settings and actions."
|
15210 |
msgstr ""
|
15211 |
"la gestion du fichier source et d'autres paramètres / et des actions "
|
15212 |
"d'importation téléchargement."
|
15213 |
|
15214 |
+
#: wppa-settings-autosave.php:8600
|
15215 |
#, fuzzy
|
15216 |
msgid "Keep sourcefiles admin"
|
15217 |
msgstr "Gardez administrateur SourceFiles"
|
15218 |
|
15219 |
+
#: wppa-settings-autosave.php:8601
|
15220 |
#, fuzzy
|
15221 |
msgid "Keep the original uploaded and imported photo files."
|
15222 |
msgstr "Gardez l'original et téléchargé des fichiers photo importés."
|
15223 |
|
15224 |
+
#: wppa-settings-autosave.php:8602 wppa-settings-autosave.php:8612
|
15225 |
#, fuzzy
|
15226 |
msgid ""
|
15227 |
"The files will be kept in a separate directory with subdirectories for each "
|
15230 |
"Les fichiers seront conservés dans un répertoire distinct avec les sous-"
|
15231 |
"répertoires pour chaque album"
|
15232 |
|
15233 |
+
#: wppa-settings-autosave.php:8603 wppa-settings-autosave.php:8613
|
15234 |
#, fuzzy
|
15235 |
msgid ""
|
15236 |
"These files can be used to update the photos used in displaying in wppa+ and "
|
15240 |
"dans l'affichage en LPPT et éventuellement pour le téléchargement, les "
|
15241 |
"images un-Downsized d'origine."
|
15242 |
|
15243 |
+
#: wppa-settings-autosave.php:8610
|
15244 |
#, fuzzy
|
15245 |
msgid "Keep sourcefiles frontend"
|
15246 |
msgstr "Gardez SourceFiles frontend"
|
15247 |
|
15248 |
+
#: wppa-settings-autosave.php:8611
|
15249 |
msgid "Keep the original frontend uploaded photo files."
|
15250 |
msgstr "Keep the original frontend uploaded photo files."
|
15251 |
|
15252 |
+
#: wppa-settings-autosave.php:8620
|
15253 |
msgid "Source directory"
|
15254 |
msgstr "Répertoire source"
|
15255 |
|
15256 |
+
#: wppa-settings-autosave.php:8621
|
15257 |
#, fuzzy
|
15258 |
msgid "The path to the directory where the original photofiles will be saved."
|
15259 |
msgstr ""
|
15260 |
"Le chemin vers le répertoire où les Photofiles originaux seront sauvegardés."
|
15261 |
|
15262 |
+
#: wppa-settings-autosave.php:8622
|
15263 |
msgid "You may change the directory path, but it can not be an url."
|
15264 |
msgstr ""
|
15265 |
"Vous pouvez changer le chemin d’accès du répertoire, mais il ne peut pas être "
|
15266 |
"une url."
|
15267 |
|
15268 |
+
#: wppa-settings-autosave.php:8623
|
15269 |
#, fuzzy
|
15270 |
msgid ""
|
15271 |
"The parent of the directory that you enter here must exist and be writable."
|
15272 |
msgstr ""
|
15273 |
"Le parent du répertoire que vous entrez ici doit exister et être inscriptible."
|
15274 |
|
15275 |
+
#: wppa-settings-autosave.php:8624
|
15276 |
#, fuzzy
|
15277 |
msgid "The directory itsself will be created if it does not exist yet."
|
15278 |
msgstr "Le répertoire itsself sera créé si elle n'existe pas encore."
|
15279 |
|
15280 |
+
#: wppa-settings-autosave.php:8631
|
15281 |
msgid "Keep sync"
|
15282 |
msgstr "Garder la synchronisation"
|
15283 |
|
15284 |
+
#: wppa-settings-autosave.php:8632
|
15285 |
#, fuzzy
|
15286 |
msgid "Keep source synchronously with wppa system."
|
15287 |
msgstr "Gardez la source synchrone avec système de LPPT."
|
15288 |
|
15289 |
+
#: wppa-settings-autosave.php:8633
|
15290 |
msgid ""
|
15291 |
"If checked, photos that are deleted from wppa, will also be removed from the "
|
15292 |
"sourcefiles."
|
15294 |
"S’il est activé, les photos qui sont supprimés du wppa, sera également "
|
15295 |
"supprimé depuis les fichiers sources."
|
15296 |
|
15297 |
+
#: wppa-settings-autosave.php:8634
|
15298 |
msgid ""
|
15299 |
"Also, copying or moving photos to different albums, will also copy/move the "
|
15300 |
"sourcefiles."
|
15302 |
"En outre, copier ou déplacer des photos de différents albums, sera également "
|
15303 |
"copier/déplacer les fichiers sources."
|
15304 |
|
15305 |
+
#: wppa-settings-autosave.php:8641
|
15306 |
msgid "Remake add"
|
15307 |
msgstr "Ajouter remake"
|
15308 |
|
15309 |
+
#: wppa-settings-autosave.php:8642
|
15310 |
#, fuzzy
|
15311 |
msgid "Photos will be added from the source pool"
|
15312 |
msgstr "Les photos seront ajoutées à partir du pool de la source"
|
15313 |
|
15314 |
+
#: wppa-settings-autosave.php:8643
|
15315 |
#, fuzzy
|
15316 |
msgid ""
|
15317 |
"If checked: If photo files are found in the source directory that do not exist "
|
15320 |
"Si coché: Si les fichiers photo se trouvent dans le répertoire source qui "
|
15321 |
"n'existe pas dans l'album correspondant, ils seront ajoutés à l'album."
|
15322 |
|
15323 |
+
#: wppa-settings-autosave.php:8650
|
15324 |
msgid "Save IPTC data"
|
15325 |
msgstr "Sauver les données IPTC"
|
15326 |
|
15327 |
+
#: wppa-settings-autosave.php:8651
|
15328 |
#, fuzzy
|
15329 |
msgid "Store the iptc data from the photo into the iptc db table"
|
15330 |
msgstr "Stocker les données IPTC de la photo dans la table iptc db"
|
15331 |
|
15332 |
+
#: wppa-settings-autosave.php:8652
|
15333 |
msgid ""
|
15334 |
"You will need this if you enabled the display of iptc data in Table II-B17 or "
|
15335 |
"if you use it in the photo descriptions."
|
15337 |
"Vous en aurez besoin si vous avez activé l’affichage des données iptc dans le "
|
15338 |
"Table II-B17 ou si vous l’utiliser dans les descriptions de photo."
|
15339 |
|
15340 |
+
#: wppa-settings-autosave.php:8659
|
15341 |
msgid "Save EXIF data"
|
15342 |
msgstr "Sauver les données EXIF"
|
15343 |
|
15344 |
+
#: wppa-settings-autosave.php:8660
|
15345 |
#, fuzzy
|
15346 |
msgid "Store the exif data from the photo into the exif db table"
|
15347 |
msgstr "Stocker les données EXIF de la photo dans la table exif db"
|
15348 |
|
15349 |
+
#: wppa-settings-autosave.php:8661
|
15350 |
msgid ""
|
15351 |
"You will need this if you enabled the display of exif data in Table II-B18 or "
|
15352 |
"if you use it in the photo descriptions."
|
15354 |
"Vous en aurez besoin si vous avez activé l’affichage des données d’exif dans "
|
15355 |
"le Table II-B18 ou si vous l’utiliser dans les descriptions de photo."
|
15356 |
|
15357 |
+
#: wppa-settings-autosave.php:8668
|
15358 |
msgid "Max EXIF tag array size"
|
15359 |
msgstr "Taille max de tableau des balises EXIF"
|
15360 |
|
15361 |
+
#: wppa-settings-autosave.php:8669
|
15362 |
msgid "Truncate array tags to ..."
|
15363 |
msgstr "Tronquer les balises de tableau pour..."
|
15364 |
|
15365 |
+
#: wppa-settings-autosave.php:8670
|
15366 |
msgid "A value of 0 disables this feature"
|
15367 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
15368 |
|
15369 |
+
#: wppa-settings-autosave.php:8672
|
15370 |
msgid "elements"
|
15371 |
msgstr "éléments"
|
15372 |
|
15373 |
+
#: wppa-settings-autosave.php:8677
|
15374 |
#, fuzzy
|
15375 |
msgid "Import Create page"
|
15376 |
msgstr "Importer Créer une page"
|
15377 |
|
15378 |
+
#: wppa-settings-autosave.php:8678
|
15379 |
msgid "Create wp page when a directory to album is imported."
|
15380 |
msgstr "Créer page wp lorsqu’un répertoire de l’album est importé."
|
15381 |
|
15382 |
+
#: wppa-settings-autosave.php:8679
|
15383 |
msgid ""
|
15384 |
"As soon as an album is created when a directory is imported, a wp page is made "
|
15385 |
"that displays the album content."
|
15387 |
"Dès qu’un album est créé lorsqu’un répertoire est importé, une page de wp est "
|
15388 |
"faite qui affiche le contenu de l’album."
|
15389 |
|
15390 |
+
#: wppa-settings-autosave.php:8687
|
15391 |
msgid "Page content"
|
15392 |
msgstr "Contenu de la page"
|
15393 |
|
15394 |
+
#: wppa-settings-autosave.php:8688
|
15395 |
#, fuzzy
|
15396 |
msgid "The content of the page. Must contain <b>w#album</b>"
|
15397 |
msgstr "Le contenu de la page. Doit contenir <b>w # album</b>"
|
15398 |
|
15399 |
+
#: wppa-settings-autosave.php:8689
|
15400 |
#, fuzzy
|
15401 |
msgid ""
|
15402 |
"The content of the page. Note: it must contain w#album. This will be replaced "
|
15405 |
"Le contenu de la page. Remarque: il doit contenir w # album. Cela sera "
|
15406 |
"remplacé par le numéro de l'album dans le shortcode généré."
|
15407 |
|
15408 |
+
#: wppa-settings-autosave.php:8697
|
15409 |
msgid "Page type"
|
15410 |
msgstr "Type de la page"
|
15411 |
|
15412 |
+
#: wppa-settings-autosave.php:8698
|
15413 |
msgid "Select the type of page to create."
|
15414 |
msgstr "Choisir le type de page à créer."
|
15415 |
|
15416 |
+
#: wppa-settings-autosave.php:8702
|
15417 |
msgid "Post"
|
15418 |
msgstr "Article"
|
15419 |
|
15420 |
+
#: wppa-settings-autosave.php:8709
|
15421 |
msgid "Page status"
|
15422 |
msgstr "Statut de la page"
|
15423 |
|
15424 |
+
#: wppa-settings-autosave.php:8710
|
15425 |
msgid "Select the initial status of the page."
|
15426 |
msgstr "Choisir le statut initial de la page."
|
15427 |
|
15428 |
+
#: wppa-settings-autosave.php:8714
|
15429 |
msgid "Published"
|
15430 |
msgstr "Publié"
|
15431 |
|
15432 |
+
#: wppa-settings-autosave.php:8714
|
15433 |
msgid "Draft"
|
15434 |
msgstr "Brouillon"
|
15435 |
|
15436 |
+
#: wppa-settings-autosave.php:8722
|
15437 |
msgid "Permalink root"
|
15438 |
msgstr "Racine permalien"
|
15439 |
|
15440 |
+
#: wppa-settings-autosave.php:8723
|
15441 |
msgid "The name of the root for the photofile ermalink structure."
|
15442 |
msgstr "Le nom racine pour la structure du permalien de fichier photo."
|
15443 |
|
15444 |
+
#: wppa-settings-autosave.php:8724
|
15445 |
msgid ""
|
15446 |
"Choose a convenient name like \"albums\" or so; this will be the name of a "
|
15447 |
"folder inside .../wp-content/. Make sure you choose a unique name"
|
15450 |
"dossier à l’intérieur de la .../wp-content /. Veillez à que choisir un nom "
|
15451 |
"unique"
|
15452 |
|
15453 |
+
#: wppa-settings-autosave.php:8732
|
15454 |
msgid "Import parent check"
|
15455 |
msgstr "Importer le parent vérification"
|
15456 |
|
15457 |
+
#: wppa-settings-autosave.php:8733
|
15458 |
#, fuzzy
|
15459 |
msgid "On import dirs to albums: keep dir tree as albums."
|
15460 |
msgstr "Sur dirs d'importation aux albums: garder arbre dir que des albums."
|
15461 |
|
15462 |
+
#: wppa-settings-autosave.php:8734
|
15463 |
msgid ""
|
15464 |
"Untick only if all your albums have unique names. Then: additional photos may "
|
15465 |
"be ftp'd to toplevel depot subdirs."
|
15468 |
"supplémentaires pourront être chargées via FTP dans les répertoires de dépôt "
|
15469 |
"du niveau supérieur."
|
15470 |
|
15471 |
+
#: wppa-settings-autosave.php:8741
|
15472 |
msgid "IPTC need utf8 conversion"
|
15473 |
msgstr "IPTC a besoin d'une conversion UTF8"
|
15474 |
|
15475 |
+
#: wppa-settings-autosave.php:8742
|
15476 |
msgid "This setting converts iso to utf8 in iptc text."
|
15477 |
msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
|
15478 |
|
15479 |
+
#: wppa-settings-autosave.php:8743
|
15480 |
msgid "Untick if you have funny characters in iptc data"
|
15481 |
msgstr "Décocher si vous avez des caractères bizarres dans les données IPTC"
|
15482 |
|
15483 |
+
#: wppa-settings-autosave.php:8750
|
15484 |
msgid "Keep dir to album files"
|
15485 |
msgstr "Garder les fichiers de dir aux l’album"
|
15486 |
|
15487 |
+
#: wppa-settings-autosave.php:8751
|
15488 |
#, fuzzy
|
15489 |
msgid "Keep imported files after dir to album import"
|
15490 |
msgstr "Conserver les fichiers importés après dir à l'album import"
|
15491 |
|
15492 |
+
#: wppa-settings-autosave.php:8760
|
15493 |
#, fuzzy
|
15494 |
msgid "Other plugins related settings"
|
15495 |
msgstr "paramètres Autres plugins liés"
|
15496 |
|
15497 |
+
#: wppa-settings-autosave.php:8762
|
15498 |
msgid "Foreign shortcodes general"
|
15499 |
msgstr "Généraux étrangers shortcodes"
|
15500 |
|
15501 |
+
#: wppa-settings-autosave.php:8763
|
15502 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
15503 |
msgstr ""
|
15504 |
"Activez les shortcodes étrangers au nom de l’album, au description de l'album "
|
15505 |
"et au nom de photo"
|
15506 |
|
15507 |
+
#: wppa-settings-autosave.php:8771
|
15508 |
msgid "Foreign shortcodes fullsize"
|
15509 |
msgstr "Shortcodes étrangers fullsize"
|
15510 |
|
15511 |
+
#: wppa-settings-autosave.php:8772
|
15512 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
15513 |
msgstr ""
|
15514 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
15515 |
"pleine grandeur."
|
15516 |
|
15517 |
+
#: wppa-settings-autosave.php:8773 wppa-settings-autosave.php:8784
|
15518 |
#, fuzzy
|
15519 |
msgid ""
|
15520 |
"When checked, you can use shortcodes from other plugins in the description of "
|
15523 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins dans "
|
15524 |
"la description de photos."
|
15525 |
|
15526 |
+
#: wppa-settings-autosave.php:8774
|
15527 |
#, fuzzy
|
15528 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
15529 |
msgstr "Les shortcodes seront étendus dans les descriptions des images fullsize."
|
15530 |
|
15531 |
+
#: wppa-settings-autosave.php:8775 wppa-settings-autosave.php:8786
|
15532 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
15533 |
msgstr ""
|
15534 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
15535 |
|
15536 |
+
#: wppa-settings-autosave.php:8782
|
15537 |
msgid "Foreign shortcodes thumbnails"
|
15538 |
msgstr "Foreign shortcodes thumbnails"
|
15539 |
|
15540 |
+
#: wppa-settings-autosave.php:8783
|
15541 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
15542 |
msgstr ""
|
15543 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
15544 |
"miniature."
|
15545 |
|
15546 |
+
#: wppa-settings-autosave.php:8785
|
15547 |
msgid "The shortcodes will be expanded in the descriptions of thumbnail images."
|
15548 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
15549 |
|
15550 |
+
#: wppa-settings-autosave.php:8793
|
15551 |
msgid "Lightbox keyname"
|
15552 |
msgstr "Nom-clé Lightbox"
|
15553 |
|
15554 |
+
#: wppa-settings-autosave.php:8794
|
15555 |
msgid "The identifier of lightbox."
|
15556 |
msgstr "L'identifiant Lightbox."
|
15557 |
|
15558 |
+
#: wppa-settings-autosave.php:8795
|
15559 |
msgid ""
|
15560 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the lbox-"
|
15561 |
"id here."
|
15563 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
15564 |
"entrer l’id lbox ici."
|
15565 |
|
15566 |
+
#: wppa-settings-autosave.php:8802
|
15567 |
msgid "myCRED / Cube Points: Comment"
|
15568 |
msgstr "myCRED / Cube Points: commentaire"
|
15569 |
|
15570 |
+
#: wppa-settings-autosave.php:8803
|
15571 |
msgid "Number of points for giving a comment"
|
15572 |
msgstr "Nombre de points pour mettre un commentaire"
|
15573 |
|
15574 |
+
#: wppa-settings-autosave.php:8804 wppa-settings-autosave.php:8813
|
15575 |
+
#: wppa-settings-autosave.php:8822 wppa-settings-autosave.php:8831
|
15576 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
15577 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
15578 |
|
15579 |
+
#: wppa-settings-autosave.php:8806 wppa-settings-autosave.php:8815
|
15580 |
msgid "points per comment"
|
15581 |
msgstr "points par commentaire"
|
15582 |
|
15583 |
+
#: wppa-settings-autosave.php:8811
|
15584 |
msgid "myCRED / Cube Points: Appr Comment"
|
15585 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
15586 |
|
15587 |
+
#: wppa-settings-autosave.php:8812
|
15588 |
msgid "Number of points for receiving an approved comment"
|
15589 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
15590 |
|
15591 |
+
#: wppa-settings-autosave.php:8820
|
15592 |
msgid "myCRED / Cube Points: Rating"
|
15593 |
msgstr "myCRED / Cube Points: notation"
|
15594 |
|
15595 |
+
#: wppa-settings-autosave.php:8821
|
15596 |
msgid "Number of points for a rating vote"
|
15597 |
msgstr "Nombre de points pour un vote de cote"
|
15598 |
|
15599 |
+
#: wppa-settings-autosave.php:8824
|
15600 |
msgid "points per vote"
|
15601 |
msgstr "points par vote"
|
15602 |
|
15603 |
+
#: wppa-settings-autosave.php:8829
|
15604 |
msgid "myCRED / Cube Points: Upload"
|
15605 |
msgstr "myCRED / Cube Points : Télécharger"
|
15606 |
|
15607 |
+
#: wppa-settings-autosave.php:8830
|
15608 |
msgid "Number of points for a successfull frontend upload"
|
15609 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
15610 |
|
15611 |
+
#: wppa-settings-autosave.php:8833
|
15612 |
msgid "points per upload"
|
15613 |
msgstr "points par chargement"
|
15614 |
|
15615 |
+
#: wppa-settings-autosave.php:8838
|
15616 |
msgid "Use SCABN"
|
15617 |
msgstr "Utiliser SCABN"
|
15618 |
|
15619 |
+
#: wppa-settings-autosave.php:8839
|
15620 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
15621 |
msgstr "Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
15622 |
|
15623 |
+
#: wppa-settings-autosave.php:8840
|
15624 |
msgid ""
|
15625 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
15626 |
"descriptions is [cart ...]"
|
15628 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
15629 |
"les descriptions photo est [cart ...]"
|
15630 |
|
15631 |
+
#: wppa-settings-autosave.php:8841
|
15632 |
msgid "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
15633 |
msgstr ""
|
15634 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de SCABN."
|
15635 |
|
15636 |
+
#: wppa-settings-autosave.php:8842
|
15637 |
msgid "The shortcode for the check-out page is still [scabn]"
|
15638 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
15639 |
|
15640 |
+
#: wppa-settings-autosave.php:8843
|
15641 |
msgid ""
|
15642 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
15643 |
msgstr ""
|
15644 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = photoname, "
|
15645 |
"price = 0.01."
|
15646 |
|
15647 |
+
#: wppa-settings-autosave.php:8844
|
15648 |
msgid ""
|
15649 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
15650 |
"from the photo name."
|
15652 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
15653 |
"diffère de celui de la photo."
|
15654 |
|
15655 |
+
#: wppa-settings-autosave.php:8845
|
15656 |
msgid "This shortcode handler will also work with Ajax enabled."
|
15657 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
15658 |
|
15659 |
+
#: wppa-settings-autosave.php:8846
|
15660 |
msgid ""
|
15661 |
"Using this interface makes sure that the item urls and callback action urls "
|
15662 |
"are correct."
|
15664 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
15665 |
"callback sont correctes."
|
15666 |
|
15667 |
+
#: wppa-settings-autosave.php:8853
|
15668 |
msgid "Use CM Tooltip Glossary"
|
15669 |
msgstr "Utiliser CM Tooltip Glossary"
|
15670 |
|
15671 |
+
#: wppa-settings-autosave.php:8854
|
15672 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
15673 |
msgstr ""
|
15674 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
15675 |
"photos."
|
15676 |
|
15677 |
+
#: wppa-settings-autosave.php:8855
|
15678 |
msgid ""
|
15679 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
15680 |
"plugin to act on album and photo descriptions!"
|
15682 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
15683 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
15684 |
|
15685 |
+
#: wppa-settings-autosave.php:8863
|
15686 |
msgid "External services related settings and actions."
|
15687 |
msgstr "Réglages et actions pour les services extérieurs."
|
15688 |
|
15689 |
+
#: wppa-settings-autosave.php:8865
|
15690 |
msgid "QR Code widget size"
|
15691 |
msgstr "Taille du widget QR Code"
|
15692 |
|
15693 |
+
#: wppa-settings-autosave.php:8866
|
15694 |
msgid "The size of the QR code display."
|
15695 |
msgstr "La taille de l'affichage du QR code."
|
15696 |
|
15697 |
+
#: wppa-settings-autosave.php:8874
|
15698 |
msgid "QR color"
|
15699 |
msgstr "Couleur QR code"
|
15700 |
|
15701 |
+
#: wppa-settings-autosave.php:8875
|
15702 |
msgid "The display color of the qr code (dark)"
|
15703 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
15704 |
|
15705 |
+
#: wppa-settings-autosave.php:8876
|
15706 |
msgid "This color MUST be given in hexadecimal format!"
|
15707 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
15708 |
|
15709 |
+
#: wppa-settings-autosave.php:8883
|
15710 |
msgid "QR background color"
|
15711 |
msgstr "Couleur de fond de QR Code"
|
15712 |
|
15713 |
+
#: wppa-settings-autosave.php:8884
|
15714 |
msgid "The background color of the qr code (light)"
|
15715 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
15716 |
|
15717 |
+
#: wppa-settings-autosave.php:8892
|
15718 |
msgid "CDN Service"
|
15719 |
msgstr "Service CDN"
|
15720 |
|
15721 |
+
#: wppa-settings-autosave.php:8893
|
15722 |
msgid "Select a CDN Service you want to use."
|
15723 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
15724 |
|
15725 |
+
#: wppa-settings-autosave.php:8896
|
15726 |
msgid "Cloudinary in maintenance mode"
|
15727 |
msgstr "Cloudinary en mode maintenance"
|
15728 |
|
15729 |
+
#: wppa-settings-autosave.php:8906
|
15730 |
msgid "Cloud name"
|
15731 |
msgstr "Nom du nuage"
|
15732 |
|
15733 |
+
#: wppa-settings-autosave.php:8915
|
15734 |
msgid "API key"
|
15735 |
msgstr "Clé API"
|
15736 |
|
15737 |
+
#: wppa-settings-autosave.php:8924
|
15738 |
msgid "API secret"
|
15739 |
msgstr "Secret API"
|
15740 |
|
15741 |
+
#: wppa-settings-autosave.php:8933
|
15742 |
msgid "Delete all"
|
15743 |
msgstr "Tout effacer"
|
15744 |
|
15745 |
+
#: wppa-settings-autosave.php:8934
|
15746 |
msgid "Deletes them all !!!"
|
15747 |
msgstr "Cela les efface tous !!!"
|
15748 |
|
15749 |
+
#: wppa-settings-autosave.php:8942
|
15750 |
msgid "Delete derived images"
|
15751 |
msgstr "Effacer les images dérivées"
|
15752 |
|
15753 |
+
#: wppa-settings-autosave.php:8943
|
15754 |
msgid "Deletes all derived images !!!"
|
15755 |
msgstr "Efface toutes les images dérivées !!!"
|
15756 |
|
15757 |
+
#: wppa-settings-autosave.php:8951
|
15758 |
msgid "Max lifetime"
|
15759 |
msgstr "Temps de vie maximum"
|
15760 |
|
15761 |
+
#: wppa-settings-autosave.php:8952
|
15762 |
msgid "Old images from local server, new images from Cloudinary."
|
15763 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
15764 |
|
15765 |
+
#: wppa-settings-autosave.php:8953
|
15766 |
msgid "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
15767 |
msgstr ""
|
15768 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon régulière."
|
15769 |
|
15770 |
+
#: wppa-settings-autosave.php:8955
|
15771 |
msgid "Forever"
|
15772 |
msgstr "Infini"
|
15773 |
|
15774 |
+
#: wppa-settings-autosave.php:8986
|
15775 |
msgid "Cloudinary usage"
|
15776 |
msgstr "Utilisation de Cloudinary"
|
15777 |
|
15778 |
+
#: wppa-settings-autosave.php:9022
|
15779 |
msgid "Cloudinary usage data not available"
|
15780 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
15781 |
|
15782 |
+
#: wppa-settings-autosave.php:9026
|
15783 |
msgid "Cloudinary routines not installed."
|
15784 |
msgstr "Routines Cloudinary pas installées."
|
15785 |
|
15786 |
+
#: wppa-settings-autosave.php:9037
|
15787 |
msgid "Cloudinary"
|
15788 |
msgstr "Cloudinary"
|
15789 |
|
15790 |
+
#: wppa-settings-autosave.php:9038
|
15791 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
15792 |
msgstr ""
|
15793 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale à "
|
15794 |
"5.3</span>"
|
15795 |
|
15796 |
+
#: wppa-settings-autosave.php:9047
|
15797 |
msgid "GPX Implementation"
|
15798 |
msgstr "Implémentation GPX"
|
15799 |
|
15800 |
+
#: wppa-settings-autosave.php:9048
|
15801 |
msgid "The way the maps are produced."
|
15802 |
msgstr "La méthode de production des cartes."
|
15803 |
|
15804 |
+
#: wppa-settings-autosave.php:9049
|
15805 |
msgid "Select the way the maps are produced."
|
15806 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
15807 |
|
15808 |
+
#: wppa-settings-autosave.php:9050
|
15809 |
msgid ""
|
15810 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
15811 |
msgstr ""
|
15812 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne pouvez "
|
15813 |
"utiliser Ajax (table IV-A1)"
|
15814 |
|
15815 |
+
#: wppa-settings-autosave.php:9051
|
15816 |
msgid ""
|
15817 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
15818 |
"options."
|
15820 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais il "
|
15821 |
"y aura alors moins d'options d'affichage."
|
15822 |
|
15823 |
+
#: wppa-settings-autosave.php:9053
|
15824 |
msgid "WPPA+ Embedded code"
|
15825 |
msgstr "Code embarqué WPPA+"
|
15826 |
|
15827 |
+
#: wppa-settings-autosave.php:9053
|
15828 |
msgid "Google maps GPX viewer plugin"
|
15829 |
msgstr "Plugin Google maps de visualisation GPX"
|
15830 |
|
15831 |
+
#: wppa-settings-autosave.php:9061
|
15832 |
msgid "Map height"
|
15833 |
msgstr "Hauteur de la carte"
|
15834 |
|
15835 |
+
#: wppa-settings-autosave.php:9062
|
15836 |
msgid "The height of the map display."
|
15837 |
msgstr "La hauteur de l’affichage de la carte."
|
15838 |
|
15839 |
+
#: wppa-settings-autosave.php:9070
|
15840 |
msgid "Google maps API key"
|
15841 |
msgstr "Clé API Google maps"
|
15842 |
|
15843 |
+
#: wppa-settings-autosave.php:9071
|
15844 |
msgid "Enter your Google maps api key here if you have one."
|
15845 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
15846 |
|
15847 |
+
#: wppa-settings-autosave.php:9079
|
15848 |
msgid "GPX Shortcode"
|
15849 |
msgstr "Shortcode GPX"
|
15850 |
|
15851 |
+
#: wppa-settings-autosave.php:9080
|
15852 |
msgid "The shortcode to be used for the gpx feature."
|
15853 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
15854 |
|
15855 |
+
#: wppa-settings-autosave.php:9081
|
15856 |
msgid ""
|
15857 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
15858 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
15861 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
15862 |
"longitude."
|
15863 |
|
15864 |
+
#: wppa-settings-autosave.php:9082
|
15865 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
15866 |
msgstr ""
|
15867 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
15868 |
|
15869 |
+
#: wppa-settings-autosave.php:9089
|
15870 |
msgid "Fotomoto"
|
15871 |
msgstr "Fotomoto"
|
15872 |
|
15873 |
+
#: wppa-settings-autosave.php:9090
|
15874 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
15875 |
msgstr "Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
15876 |
|
15877 |
+
#: wppa-settings-autosave.php:9091
|
15878 |
msgid "In order to function properly:"
|
15879 |
msgstr "Pour fonctionner correctement:"
|
15880 |
|
15881 |
+
#: wppa-settings-autosave.php:9092
|
15882 |
msgid "1. Get yourself a Fotomoto account."
|
15883 |
msgstr "1. Créez-vous un compte Fotomoto."
|
15884 |
|
15885 |
+
#: wppa-settings-autosave.php:9093
|
15886 |
msgid ""
|
15887 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check the "
|
15888 |
"\"Use API Mode:\" checkbox."
|
15890 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et vérifiez "
|
15891 |
"la case à cocher \"Use API Mode:\"."
|
15892 |
|
15893 |
+
#: wppa-settings-autosave.php:9094
|
15894 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
15895 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
15896 |
|
15897 |
+
#: wppa-settings-autosave.php:9095
|
15898 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
15899 |
msgstr ""
|
15900 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-B15 )."
|
15901 |
|
15902 |
+
#: wppa-settings-autosave.php:9103
|
15903 |
msgid "Fotomoto fontsize"
|
15904 |
msgstr "Taille de la police de caractère Fotomoto"
|
15905 |
|
15906 |
+
#: wppa-settings-autosave.php:9104
|
15907 |
msgid "Fontsize for the Fotomoto toolbar."
|
15908 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
15909 |
|
15910 |
+
#: wppa-settings-autosave.php:9105
|
15911 |
msgid ""
|
15912 |
"If you set it here, it overrules a possible setting for font-size in ."
|
15913 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
15915 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
15916 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
15917 |
|
15918 |
+
#: wppa-settings-autosave.php:9113
|
15919 |
msgid "Hide toolbar on running slideshows"
|
15920 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
15921 |
|
15922 |
+
#: wppa-settings-autosave.php:9114
|
15923 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
15924 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
15925 |
|
15926 |
+
#: wppa-settings-autosave.php:9121
|
15927 |
msgid "Fotomoto minwidth"
|
15928 |
msgstr "Largeur mini de Fotomoto"
|
15929 |
|
15930 |
+
#: wppa-settings-autosave.php:9122
|
15931 |
msgid "Minimum width to display Fotomoto toolbar."
|
15932 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
15933 |
|
15934 |
+
#: wppa-settings-autosave.php:9123
|
15935 |
msgid ""
|
15936 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
15937 |
msgstr ""
|
15938 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus petits."
|
15939 |
|
15940 |
+
#: wppa-settings-autosave.php:9148
|
15941 |
msgid "Table X:"
|
15942 |
msgstr "Table X:"
|
15943 |
|
15944 |
+
#: wppa-settings-autosave.php:9148
|
15945 |
msgid "IPTC Configuration:"
|
15946 |
msgstr "Configuration IPTC:"
|
15947 |
|
15948 |
+
#: wppa-settings-autosave.php:9149
|
15949 |
msgid "This table defines the IPTC configuration"
|
15950 |
msgstr "Cette table règle la configuration de IPTC"
|
15951 |
|
15952 |
+
#: wppa-settings-autosave.php:9180 wppa-settings-autosave.php:9248
|
15953 |
msgid "Display"
|
15954 |
msgstr "Afficher"
|
15955 |
|
15956 |
+
#: wppa-settings-autosave.php:9180 wppa-settings-autosave.php:9248
|
15957 |
msgid "Hide"
|
15958 |
msgstr "Cacher"
|
15959 |
|
15960 |
+
#: wppa-settings-autosave.php:9210
|
15961 |
msgid "Table XI:"
|
15962 |
msgstr "Table XI:"
|
15963 |
|
15964 |
+
#: wppa-settings-autosave.php:9210
|
15965 |
msgid "EXIF Configuration:"
|
15966 |
msgstr "Configuration EXIF:"
|
15967 |
|
15968 |
+
#: wppa-settings-autosave.php:9211
|
15969 |
msgid "This table defines the EXIF configuration"
|
15970 |
msgstr "Cette table règle la configuration d'EXIF"
|
15971 |
|
15972 |
+
#: wppa-settings-autosave.php:9234
|
15973 |
msgid ""
|
15974 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
15975 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to add "
|
15980 |
"hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de configuration</"
|
15981 |
"b> de PHP."
|
15982 |
|
15983 |
+
#: wppa-settings-autosave.php:9278
|
15984 |
msgid "Table XII:"
|
15985 |
msgstr "Table XII:"
|
15986 |
|
15987 |
+
#: wppa-settings-autosave.php:9278
|
15988 |
msgid "WPPA+ and PHP Configuration:"
|
15989 |
msgstr "Configuration WPPA+ et PHP:"
|
15990 |
|
15991 |
+
#: wppa-settings-autosave.php:9279
|
15992 |
msgid ""
|
15993 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
15994 |
"and is read only"
|
15996 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
15997 |
"les paramètres de configuration du serveur PHP"
|
15998 |
|
15999 |
+
#: wppa-settings-autosave.php:9294
|
16000 |
msgid "Value"
|
16001 |
msgstr "Valeur"
|
16002 |
|
16003 |
+
#: wppa-settings-autosave.php:9300
|
16004 |
msgid "Albums db table name."
|
16005 |
msgstr "Nom de la table albums dans la base de données."
|
16006 |
|
16007 |
+
#: wppa-settings-autosave.php:9312
|
16008 |
msgid "Photos db table name."
|
16009 |
msgstr "Nom de la table photos dans la base de données."
|
16010 |
|
16011 |
+
#: wppa-settings-autosave.php:9324
|
16012 |
msgid "Rating db table name."
|
16013 |
msgstr "Nom de la table votes dans la base de données."
|
16014 |
|
16015 |
+
#: wppa-settings-autosave.php:9336
|
16016 |
msgid "Comments db table name."
|
16017 |
msgstr "Nom de la table commentaires dans la base de données."
|
16018 |
|
16019 |
+
#: wppa-settings-autosave.php:9348
|
16020 |
msgid "IPTC db table name."
|
16021 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
16022 |
|
16023 |
+
#: wppa-settings-autosave.php:9360
|
16024 |
msgid "EXIF db table name."
|
16025 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
16026 |
|
16027 |
+
#: wppa-settings-autosave.php:9372 wppa-settings-autosave.php:9384
|
16028 |
msgid "Index db table name."
|
16029 |
msgstr "Nom de la table Index dans la base de donnée."
|
16030 |
|
16031 |
+
#: wppa-settings-autosave.php:9396
|
16032 |
msgid "Plugins main file name."
|
16033 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
16034 |
|
16035 |
+
#: wppa-settings-autosave.php:9402
|
16036 |
msgid "ABSPATH windows proof"
|
16037 |
msgstr "ABSPATH windows proof"
|
16038 |
|
16039 |
+
#: wppa-settings-autosave.php:9408
|
16040 |
msgid "Path to plugins directory."
|
16041 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
16042 |
|
16043 |
+
#: wppa-settings-autosave.php:9414
|
16044 |
msgid "Plugins directory name."
|
16045 |
msgstr "Nom du répertoire des greffons (plugins)."
|
16046 |
|
16047 |
+
#: wppa-settings-autosave.php:9420
|
16048 |
msgid "Plugins directory url."
|
16049 |
msgstr "URL du répertoire des greffons (plugins)."
|
16050 |
|
16051 |
+
#: wppa-settings-autosave.php:9426
|
16052 |
msgid "The relative upload directory."
|
16053 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
16054 |
|
16055 |
+
#: wppa-settings-autosave.php:9432
|
16056 |
msgid "The upload directory path."
|
16057 |
msgstr "Chemin du répertoire de chargement (upload)."
|
16058 |
|
16059 |
+
#: wppa-settings-autosave.php:9438
|
16060 |
msgid "The upload directory url."
|
16061 |
msgstr "URL du répertoire de chargement (upload)."
|
16062 |
|
16063 |
+
#: wppa-settings-autosave.php:9444
|
16064 |
msgid "The relative depot directory."
|
16065 |
msgstr "Chemin relatif du répertoire de dépôt."
|
16066 |
|
16067 |
+
#: wppa-settings-autosave.php:9450
|
16068 |
msgid "The depot directory path."
|
16069 |
msgstr "Chemin du répertoire de dépôt."
|
16070 |
|
16071 |
+
#: wppa-settings-autosave.php:9456
|
16072 |
msgid "The depot directory url."
|
16073 |
msgstr "URL du répertoire de dépôt."
|
16074 |
|
16075 |
+
#: wppa-settings-autosave.php:9462
|
16076 |
msgid "The path to wp-content."
|
16077 |
msgstr "Chemin vers wp-content."
|
16078 |
|
16079 |
+
#: wppa-settings-autosave.php:9468
|
16080 |
msgid "WP Base upload dir."
|
16081 |
msgstr "Répertoire de chargement de WP."
|
16082 |
|
16083 |
+
#: wppa-settings-autosave.php:9475
|
16084 |
msgid "WP Content url."
|
16085 |
msgstr "URL de contenu WP."
|
16086 |
|
16087 |
+
#: wppa-settings-autosave.php:9494
|
16088 |
#, php-format
|
16089 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
16090 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
16091 |
|
16092 |
+
#: wppa-settings-autosave.php:9495
|
16093 |
#, php-format
|
16094 |
msgid "<br />There are %d settings and %d runtime parameters."
|
16095 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
16096 |
|
16097 |
+
#: wppa-settings-autosave.php:9574
|
16098 |
msgid "The default for this setting is:"
|
16099 |
msgstr "Le réglage par défaut pour cette option est:"
|
16100 |
|
16101 |
+
#: wppa-settings-autosave.php:9591
|
16102 |
msgid "Click for help"
|
16103 |
msgstr "Cliquer pour l'aide"
|
16104 |
|
16105 |
+
#: wppa-settings-autosave.php:9636 wppa-settings-autosave.php:9655
|
16106 |
+
#: wppa-settings-autosave.php:9685 wppa-settings-autosave.php:9702
|
16107 |
+
#: wppa-settings-autosave.php:9726 wppa-settings-autosave.php:9747
|
16108 |
+
#: wppa-settings-autosave.php:9767 wppa-settings-autosave.php:9809
|
16109 |
msgid "Slug ="
|
16110 |
msgstr "Slug ="
|
16111 |
|
16112 |
+
#: wppa-settings-autosave.php:9702 wppa-settings-autosave.php:9726
|
16113 |
+
#: wppa-settings-autosave.php:9747 wppa-settings-autosave.php:9767
|
16114 |
msgid "Values = yes, no"
|
16115 |
msgstr "Valeurs=oui,non"
|
16116 |
|
16117 |
+
#: wppa-settings-autosave.php:9725 wppa-settings-autosave.php:9745
|
16118 |
+
#: wppa-settings-autosave.php:9766
|
16119 |
msgid "Warning!"
|
16120 |
msgstr "Attention!"
|
16121 |
|
16122 |
+
#: wppa-settings-autosave.php:9746 wppa-settings-autosave.php:9766
|
16123 |
msgid "Please read the help"
|
16124 |
msgstr "Veuillez consulter l'aide"
|
16125 |
|
16126 |
+
#: wppa-settings-autosave.php:9809
|
16127 |
msgid "Values = "
|
16128 |
msgstr "Values = "
|
16129 |
|
16130 |
+
#: wppa-settings-autosave.php:9937
|
16131 |
msgid "Checked"
|
16132 |
msgstr "Coché"
|
16133 |
|
16134 |
+
#: wppa-settings-autosave.php:9938
|
16135 |
msgid "Unchecked"
|
16136 |
msgstr "Décoché"
|
16137 |
|
16138 |
+
#: wppa-settings-autosave.php:9943
|
16139 |
msgid "the photo specific link."
|
16140 |
msgstr "le lien spécifique de la photo."
|
16141 |
|
16142 |
+
#: wppa-settings-autosave.php:9977
|
16143 |
msgid "Show!"
|
16144 |
msgstr "Montrer!"
|
16145 |
|
16146 |
+
#: wppa-settings-autosave.php:9997
|
16147 |
msgid "Not done yet"
|
16148 |
msgstr "Pas encore fait"
|
16149 |
|
16150 |
+
#: wppa-settings-autosave.php:10004
|
16151 |
msgid "Start!"
|
16152 |
msgstr "Démarrer!"
|
16153 |
|
16154 |
+
#: wppa-settings-autosave.php:10009
|
16155 |
msgid "Locked!"
|
16156 |
msgstr "Verrouillé!"
|
16157 |
|
16158 |
+
#: wppa-settings-autosave.php:10040
|
16159 |
msgid ""
|
16160 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
16161 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
16164 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
16165 |
"VI-2."
|
16166 |
|
16167 |
+
#: wppa-settings-autosave.php:10043
|
16168 |
#, php-format
|
16169 |
msgid ""
|
16170 |
"It is important that you select a page that contains at least %%wppa%% or "
|
16173 |
"Il est important que sélectionniez une page qui contient au moins %%wppa%% or "
|
16174 |
"[wppa][/wppa]."
|
16175 |
|
16176 |
+
#: wppa-settings-autosave.php:10044
|
16177 |
msgid ""
|
16178 |
"If you ommit this, the link will not work at all or simply refresh the "
|
16179 |
"(home)page."
|
16181 |
"Si vous omettez ceci, le lien ne fonctionnera pas du tout ou se contentera de "
|
16182 |
"rafraîchir la page."
|
16183 |
|
16184 |
+
#: wppa-setup.php:508
|
16185 |
msgid "IMPORTANT UPGRADE NOTICE"
|
16186 |
msgstr "MESSAGE IMPORTANT DE MISE A NIVEAU"
|
16187 |
|
16188 |
+
#: wppa-setup.php:509
|
16189 |
msgid ""
|
16190 |
"Please CHECK your customized WPPA-STYLE.CSS file against the newly supplied "
|
16191 |
"one. You may wish to add or modify some attributes. Be aware of the fact that "
|
16196 |
"certains attributs. Soyez conscient du fait que la plupart des paramètres "
|
16197 |
"peuvent maintenant être réglés dans la page d'administration."
|
16198 |
|
16199 |
+
#: wppa-setup.php:510
|
16200 |
msgid ""
|
16201 |
"Please REPLACE your customized WPPA-THEME.PHP file by the newly supplied one, "
|
16202 |
"or just remove it from your theme directory. You may modify it later if you "
|
16208 |
"thème. Vous pouvez le modifier plus tard si vous voulez. La version "
|
16209 |
"personnalisée courante n'est PAS compatible avec cette version du plugin."
|
16210 |
|
16211 |
+
#: wppa-setup.php:538
|
16212 |
#, php-format
|
16213 |
msgid "WPPA+ successfully updated in multi site mode to db version %s."
|
16214 |
msgstr ""
|
16215 |
"WPPA+ s'est mis à jour avec succès en mode multi site vers la version de base "
|
16216 |
"de donnée %s."
|
16217 |
|
16218 |
+
#: wppa-setup.php:541
|
16219 |
#, php-format
|
16220 |
msgid "WPPA+ successfully updated in single site mode to db version %s."
|
16221 |
msgstr ""
|
16222 |
"WPPA+ s'est mis à jour avec succès en mode mono site vers la version de base "
|
16223 |
"de donnée %s."
|
16224 |
|
16225 |
+
#: wppa-setup.php:546
|
16226 |
msgid "An error occurred during update"
|
16227 |
msgstr "Erreur durant le la mise à jour"
|
16228 |
|
16229 |
+
#: wppa-setup.php:854
|
16230 |
msgid ""
|
16231 |
"<span style=\"color:red\" >Warning: Do not upload copyrighted material!</span>"
|
16232 |
msgstr ""
|
16233 |
"<span style=\"color:red\" >Attention: Ne chargez pas de fichiers sous "
|
16234 |
"copyright!!</span>"
|
16235 |
|
16236 |
+
#: wppa-setup.php:863 wppa-setup.php:867 wppa-setup.php:871
|
16237 |
msgid "Select tags:"
|
16238 |
msgstr "Choisir les tags:"
|
16239 |
|
16240 |
+
#: wppa-setup.php:874
|
16241 |
msgid "Enter new tags:"
|
16242 |
msgstr "Entrez les nouveaux tags:"
|
16243 |
|
16244 |
+
#: wppa-setup.php:1091
|
16245 |
msgid "Vote for me!"
|
16246 |
msgstr "Votez pour moi !"
|
16247 |
|
16248 |
+
#: wppa-setup.php:1092
|
16249 |
msgid "Voted for me"
|
16250 |
msgstr "Ont voté pour moi"
|
16251 |
|
16252 |
+
#: wppa-setup.php:1441
|
16253 |
msgid "NEW"
|
16254 |
msgstr "NOUVEAU"
|
16255 |
|
16256 |
+
#: wppa-setup.php:1443
|
16257 |
msgid "MODIFIED"
|
16258 |
msgstr "MODIFIE"
|
16259 |
|
16260 |
+
#: wppa-setup.php:1493
|
16261 |
msgid "Search in current section"
|
16262 |
msgstr "Rechercher dans la section courante"
|
16263 |
|
16264 |
+
#: wppa-setup.php:1494
|
16265 |
msgid "Search in current results"
|
16266 |
msgstr "Rechercher dans les résultats courants"
|
16267 |
|
16268 |
+
#: wppa-setup.php:1565
|
16269 |
msgid "Type your custom url here"
|
16270 |
msgstr "Tapez votre URL personnalisée ici"
|
16271 |
|
16272 |
+
#: wppa-setup.php:1566
|
16273 |
msgid "Type the title here"
|
16274 |
msgstr "Entrez ici le titre de la page"
|
16275 |
|
16276 |
+
#: wppa-setup.php:1580 wppa-topten-widget.php:13 wppa-topten-widget.php:48
|
16277 |
#: wppa-topten-widget.php:298
|
16278 |
msgid "Top Ten Photos"
|
16279 |
msgstr "Meilleures photos"
|
16280 |
|
16281 |
+
#: wppa-setup.php:1583 wppa-thumbnail-widget.php:13 wppa-thumbnail-widget.php:166
|
16282 |
msgid "Thumbnail Photos"
|
16283 |
msgstr "Vignettes"
|
16284 |
|
16285 |
+
#: wppa-setup.php:1586
|
16286 |
msgid "Search photos"
|
16287 |
msgstr "Rechercher dans les photos"
|
16288 |
|
16289 |
+
#: wppa-setup.php:1628
|
16290 |
msgid ""
|
16291 |
"The uploads directory does not exist, please do a regular WP upload first."
|
16292 |
msgstr ""
|
16293 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire un "
|
16294 |
"chargement basique via WordPress."
|
16295 |
|
16296 |
+
#: wppa-setup.php:1632
|
16297 |
msgid "Successfully created uploads directory."
|
16298 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
16299 |
|
16300 |
+
#: wppa-setup.php:1643
|
16301 |
msgid "Could not create the wppa directory."
|
16302 |
msgstr "Impossible de créer le répertoire WPPA."
|
16303 |
|
16304 |
+
#: wppa-setup.php:1647
|
16305 |
msgid "Successfully created wppa directory."
|
16306 |
msgstr "Répertoire WPPA créé avec succès."
|
16307 |
|
16308 |
+
#: wppa-setup.php:1657
|
16309 |
msgid "Could not create the wppa thumbs directory."
|
16310 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
16311 |
|
16312 |
+
#: wppa-setup.php:1661
|
16313 |
msgid "Successfully created wppa thumbs directory."
|
16314 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
16315 |
|
16316 |
+
#: wppa-setup.php:1671
|
16317 |
msgid "Could not create the wppa watermarks directory."
|
16318 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
16319 |
|
16320 |
+
#: wppa-setup.php:1675
|
16321 |
msgid "Successfully created wppa watermarks directory."
|
16322 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
16323 |
|
16324 |
+
#: wppa-setup.php:1685
|
16325 |
msgid "Could not create the wppa fonts directory."
|
16326 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
16327 |
|
16328 |
+
#: wppa-setup.php:1689
|
16329 |
msgid "Successfully created wppa fonts directory."
|
16330 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
16331 |
|
16332 |
+
#: wppa-setup.php:1701
|
16333 |
msgid "Unable to create depot directory."
|
16334 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
16335 |
|
16336 |
+
#: wppa-setup.php:1705
|
16337 |
msgid "Successfully created wppa depot directory."
|
16338 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
16339 |
|
16340 |
+
#: wppa-setup.php:1716
|
16341 |
msgid "Unable to create user depot directory"
|
16342 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
16343 |
|
16344 |
+
#: wppa-setup.php:1720
|
16345 |
msgid "Successfully created wppa user depot directory."
|
16346 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
16347 |
|
16348 |
+
#: wppa-setup.php:1730
|
16349 |
msgid "Unable to create temp directory"
|
16350 |
msgstr "Impossible de créer le répertoire temporaire"
|
16351 |
|
16352 |
+
#: wppa-setup.php:1734
|
16353 |
msgid "Successfully created temp directory."
|
16354 |
msgstr "Répertoire temporaire créé avec succès."
|
16355 |
|
16356 |
+
#: wppa-setup.php:1742
|
16357 |
#, php-format
|
16358 |
msgid ""
|
16359 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
16386 |
"vertical à 'adapté'."
|
16387 |
|
16388 |
#: wppa-slideshow-widget.php:201 wppa-slideshow-widget.php:202
|
16389 |
+
#: wppa-widget-admin.php:86
|
16390 |
msgid "pixels."
|
16391 |
msgstr "pixels."
|
16392 |
|
16477 |
msgid "Number of votes: <span id=\"wppa-vote-count-%s\" >%s</span> "
|
16478 |
msgstr "Nombre de votes: <span id=\"wppa-vote-count-%s\" >%s</span> "
|
16479 |
|
16480 |
+
#: wppa-slideshow.php:692 wppa-slideshow.php:896 wppa-slideshow.php:958
|
16481 |
#, php-format
|
16482 |
msgid "You must <a href=\"%s\">login</a> to vote"
|
16483 |
msgstr "Vous devez vous <a href=\"%s\">connecter</a> pour voter"
|
16484 |
|
16485 |
+
#: wppa-slideshow.php:695 wppa-slideshow.php:899 wppa-slideshow.php:961
|
16486 |
msgid "You must login to vote"
|
16487 |
msgstr "Se connecter pour voter"
|
16488 |
|
16489 |
+
#: wppa-slideshow.php:752
|
16490 |
msgid "very low"
|
16491 |
msgstr "très basse"
|
16492 |
|
16493 |
+
#: wppa-slideshow.php:753
|
16494 |
msgid "low"
|
16495 |
msgstr "basse"
|
16496 |
|
16497 |
+
#: wppa-slideshow.php:754
|
16498 |
msgid "average"
|
16499 |
msgstr "moyenne"
|
16500 |
|
16501 |
+
#: wppa-slideshow.php:755
|
16502 |
msgid "high"
|
16503 |
msgstr "haute"
|
16504 |
|
16505 |
+
#: wppa-slideshow.php:756
|
16506 |
msgid "very high"
|
16507 |
msgstr "très haute"
|
16508 |
|
16509 |
+
#: wppa-slideshow.php:822 wppa-slideshow.php:929
|
16510 |
msgid "Click this if you do NOT like this image!"
|
16511 |
msgstr "Cliquez ici si vous N'aimez PAS cette image !"
|
16512 |
|
16513 |
+
#: wppa-slideshow.php:830 wppa-slideshow.php:937
|
16514 |
msgid "Are you sure you want to mark this image as inappropriate?"
|
16515 |
msgstr "Etes-vous sûr de vouloir marquer cette image comme inappropriée ?"
|
16516 |
|
16517 |
+
#: wppa-slideshow.php:839 wppa-slideshow.php:947
|
16518 |
msgid "Number of people who marked this photo as inappropriate"
|
16519 |
msgstr "Nombre de personnes qui ont marqué cette photo comme inappropriée"
|
16520 |
|
16521 |
+
#: wppa-slideshow.php:953
|
16522 |
msgid "My rating:"
|
16523 |
msgstr "Mon vote:"
|
16524 |
|
16525 |
+
#: wppa-slideshow.php:1048
|
16526 |
msgid "First"
|
16527 |
msgstr "Premier"
|
16528 |
|
16529 |
+
#: wppa-slideshow.php:1080
|
16530 |
msgid "Last"
|
16531 |
msgstr "Dernier"
|
16532 |
|
16533 |
+
#: wppa-slideshow.php:1259
|
16534 |
#, php-format
|
16535 |
msgid "Photo %s of %s"
|
16536 |
msgstr "Photo %s de %s"
|
16537 |
|
16538 |
+
#: wppa-slideshow.php:1311
|
16539 |
msgid "Click to start/stop"
|
16540 |
msgstr "Cliquer pour lancer/arrêter"
|
16541 |
|
16542 |
+
#: wppa-slideshow.php:1323
|
16543 |
msgid "- - - Comments box activated - - -"
|
16544 |
msgstr "- - - Boîte de commentaires activée - - -"
|
16545 |
|
16546 |
+
#: wppa-slideshow.php:1347
|
16547 |
msgid "- - - IPTC box activated - - -"
|
16548 |
msgstr "- - - Boîte IPTC activée - - -"
|
16549 |
|
16550 |
+
#: wppa-slideshow.php:1371
|
16551 |
msgid "- - - EXIF box activated - - -"
|
16552 |
msgstr "- - - Boîte EXIF activée - - -"
|
16553 |
|
16655 |
msgid "Show photo names <small>under thumbnails only</small>:"
|
16656 |
msgstr "Montrer les noms des photos <small>sous les vignettes seulement</small>:"
|
16657 |
|
16658 |
+
#: wppa-thumbnails.php:177 wppa-thumbnails.php:1114 wppa-topten-widget.php:157
|
16659 |
msgid "View the top rated photos"
|
16660 |
msgstr "Voir les photos les mieux notées"
|
16661 |
|
16662 |
+
#: wppa-thumbnails.php:1021
|
16663 |
#, php-format
|
16664 |
msgid "Missing thumbnail image #%s"
|
16665 |
msgstr "Vignette non trouvée #%s"
|
16866 |
msgstr "Laisser vide pour la taille par défaut"
|
16867 |
|
16868 |
#: wppa-tinymce-scripts.php:284 wppa-tinymce-shortcodes.php:610
|
16869 |
+
#: wppa-widget-admin.php:86
|
16870 |
msgid "Horizontal alignment:"
|
16871 |
msgstr "Alignement horizontal:"
|
16872 |
|
17106 |
msgid "Please select one or more albums"
|
17107 |
msgstr "Sélectionner un ou plus album(s)"
|
17108 |
|
17109 |
+
#: wppa-tinymce-shortcodes.php:309 wppa-upldr-widget.php:210 wppa-utils.php:450
|
17110 |
msgid "All albums"
|
17111 |
msgstr "Tous les albums"
|
17112 |
|
17965 |
msgid "--- Ngg Galleries --- "
|
17966 |
msgstr "--- Ngg Galleries --- "
|
17967 |
|
17968 |
+
#: wppa-utils.php:299 wppa-utils.php:326
|
17969 |
#, php-format
|
17970 |
msgid "Rating: %s"
|
17971 |
msgstr "Vote: %s"
|
17972 |
|
17973 |
+
#: wppa-utils.php:935 wppa-utils.php:946 wppa-utils.php:957
|
17974 |
msgid "Notification of inappropriate image"
|
17975 |
msgstr "Notification d'image inappropriée"
|
17976 |
|
17977 |
+
#: wppa-utils.php:936 wppa-utils.php:947 wppa-utils.php:958
|
17978 |
#, php-format
|
17979 |
msgid "Photo %s has been marked as inappropriate by %s different visitors."
|
17980 |
msgstr ""
|
17981 |
"La photo %s a été marquée comme inappropriée par %s visiteurs différents."
|
17982 |
|
17983 |
+
#: wppa-utils.php:948
|
17984 |
msgid "The status has been changed to 'pending'."
|
17985 |
msgstr "Le statut est passé à \"pending\"."
|
17986 |
|
17987 |
+
#: wppa-utils.php:959
|
17988 |
msgid "It has been deleted."
|
17989 |
msgstr "A été effacé."
|
17990 |
|
17991 |
+
#: wppa-utils.php:1026
|
17992 |
msgid "Your photo has a new approved comment"
|
17993 |
msgstr "Votre photo a un nouveau commentaire approuvé"
|
17994 |
|
17995 |
+
#: wppa-utils.php:1029
|
17996 |
msgid "From:"
|
17997 |
msgstr "De:"
|
17998 |
|
17999 |
+
#: wppa-utils.php:1037
|
18000 |
msgid "Approved comment on photo"
|
18001 |
msgstr "Approuvé commentaire sur photo"
|
18002 |
|
18003 |
+
#: wppa-utils.php:1084
|
18004 |
#, php-format
|
18005 |
msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
|
18006 |
msgstr "L'adresse email du visiteur est: <a href=\"mailto:%s\">%s</a>"
|
18007 |
|
18008 |
+
#: wppa-utils.php:1089
|
18009 |
#, php-format
|
18010 |
msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
|
18011 |
msgstr "Le visiteur dit que son adresse email est: <a href=\"mailto:%s\">%s</a>"
|
18012 |
|
18013 |
+
#: wppa-utils.php:1097
|
18014 |
#, php-format
|
18015 |
msgid ""
|
18016 |
"This message is automaticly generated at %s. It is useless to respond to it."
|
18017 |
msgstr "Ce message est généré automatiquement à %s. Il est inutile d'y répondre."
|
18018 |
|
18019 |
+
#: wppa-utils.php:1304
|
18020 |
#, php-format
|
18021 |
msgid "Time out after processing %s items."
|
18022 |
msgstr "Time out après traitement de %s objets."
|
18023 |
|
18024 |
+
#: wppa-utils.php:1307 wppa-utils.php:1311
|
18025 |
#, php-format
|
18026 |
msgid "Time out after processing %s items. Please restart this operation"
|
18027 |
msgstr "Time out après traitement de %s objets. Recommencer l'opération"
|
18028 |
|
18029 |
+
#: wppa-utils.php:2372
|
18030 |
msgid "There are no ratings between"
|
18031 |
msgstr "Il n’y a aucune cote entre"
|
18032 |
|
18054 |
msgid "--- text: pre-defined ---"
|
18055 |
msgstr "--- texte: prédéfini ---"
|
18056 |
|
18057 |
+
#: wppa-widget-admin.php:45
|
18058 |
msgid "Widget Photo Width."
|
18059 |
msgstr "Largeur du widget photo."
|
18060 |
|
18061 |
+
#: wppa-widget-admin.php:51
|
18062 |
msgid "Changes Saved. Don't forget to activate the widget!"
|
18063 |
msgstr "Changements enregistrés. Ne pas oublier d'activer le widget!"
|
18064 |
|
18065 |
+
#: wppa-widget-admin.php:61
|
18066 |
msgid "Photo of the Day Widget Settings"
|
18067 |
msgstr "Réglages du widget \"Photo du jour\""
|
18068 |
|
18069 |
+
#: wppa-widget-admin.php:72
|
18070 |
msgid "Widget Title:"
|
18071 |
msgstr "Titre du widget:"
|
18072 |
|
18073 |
+
#: wppa-widget-admin.php:76
|
18074 |
msgid ""
|
18075 |
"Enter/modify the title for the widget. This is a default and can be overriden "
|
18076 |
"at widget activation."
|
18078 |
"Entrer/modifier le titre pour le widget. Ceci est un réglage par défaut et "
|
18079 |
"peut être remplacé à l'activation du widget."
|
18080 |
|
18081 |
+
#: wppa-widget-admin.php:82
|
18082 |
msgid "Widget Photo Width:"
|
18083 |
msgstr "Largeur du widget photo:"
|
18084 |
|
18085 |
+
#: wppa-widget-admin.php:95
|
18086 |
msgid ""
|
18087 |
"Enter the desired display width and alignment of the photo in the sidebar."
|
18088 |
msgstr ""
|
18089 |
"Entrer largeur d'affichage et alignement désirés de la photo dans la barre "
|
18090 |
"latérale."
|
18091 |
|
18092 |
+
#: wppa-widget-admin.php:101
|
18093 |
msgid "Use album(s):"
|
18094 |
msgstr "Utiliser album(s):"
|
18095 |
|
18096 |
+
#: wppa-widget-admin.php:117
|
18097 |
msgid "Select:"
|
18098 |
msgstr "Sélectionner:"
|
18099 |
|
18100 |
+
#: wppa-widget-admin.php:119
|
18101 |
msgid "Or Edit:"
|
18102 |
msgstr "Ou Modifier:"
|
18103 |
|
18104 |
+
#: wppa-widget-admin.php:120
|
18105 |
msgid "Update thumbnails"
|
18106 |
msgstr "Mettre à jour les vignettes"
|
18107 |
|
18108 |
+
#: wppa-widget-admin.php:122
|
18109 |
msgid "Select or edit the album(s) you want to use the photos of for the widget."
|
18110 |
msgstr ""
|
18111 |
"Choisir ou modifier le(s) album(s) dont vous voulez utiliser les photos pour "
|
18112 |
"le widget."
|
18113 |
|
18114 |
+
#: wppa-widget-admin.php:124
|
18115 |
msgid ""
|
18116 |
"If you want a <b>- special -</b> selection or get rid of it, you may need to "
|
18117 |
"use <b>- start over -</b> first."
|
18119 |
"Si vous voulez une sélection <b>- spéciale -</b> ou vous en débarrasser, vous "
|
18120 |
"pourriez avoir besoin d'utiliser <b>- repartir de zéro -</b> en premier."
|
18121 |
|
18122 |
+
#: wppa-widget-admin.php:131
|
18123 |
msgid "Status filter:"
|
18124 |
msgstr "Filtre de statut:"
|
18125 |
|
18126 |
+
#: wppa-widget-admin.php:137
|
18127 |
msgid "- none -"
|
18128 |
msgstr "- aucun -"
|
18129 |
|
18130 |
+
#: wppa-widget-admin.php:143
|
18131 |
msgid "Any medal"
|
18132 |
msgstr "N'importe quelle médaille"
|
18133 |
|
18134 |
+
#: wppa-widget-admin.php:149
|
18135 |
msgid "Display method:"
|
18136 |
msgstr "Méthode d'affichage:"
|
18137 |
|
18138 |
+
#: wppa-widget-admin.php:155
|
18139 |
msgid "Fixed photo"
|
18140 |
msgstr "Photo fixe"
|
18141 |
|
18142 |
+
#: wppa-widget-admin.php:157
|
18143 |
msgid "Last upload"
|
18144 |
msgstr "Dernier chargement"
|
18145 |
|
18146 |
+
#: wppa-widget-admin.php:158
|
18147 |
msgid "Change every"
|
18148 |
msgstr "Changer tous les"
|
18149 |
|
18150 |
+
#: wppa-widget-admin.php:161
|
18151 |
msgid "The page will now be reloaded"
|
18152 |
msgstr "La page va maintenant être rechargée"
|
18153 |
|
18154 |
+
#: wppa-widget-admin.php:174
|
18155 |
msgid "pageview."
|
18156 |
msgstr "vue page."
|
18157 |
|
18158 |
+
#: wppa-widget-admin.php:175
|
18159 |
msgid "hour."
|
18160 |
msgstr "heure."
|
18161 |
|
18162 |
+
#: wppa-widget-admin.php:176
|
18163 |
msgid "day."
|
18164 |
msgstr "jour."
|
18165 |
|
18166 |
+
#: wppa-widget-admin.php:177
|
18167 |
msgid "week."
|
18168 |
msgstr "semaine."
|
18169 |
|
18170 |
+
#: wppa-widget-admin.php:178
|
18171 |
msgid "month."
|
18172 |
msgstr "mois."
|
18173 |
|
18174 |
+
#: wppa-widget-admin.php:179
|
18175 |
msgid "day of week is order#"
|
18176 |
msgstr "day of month is order#"
|
18177 |
|
18178 |
+
#: wppa-widget-admin.php:180
|
18179 |
msgid "day of month is order#"
|
18180 |
msgstr "day of month is order#"
|
18181 |
|
18182 |
+
#: wppa-widget-admin.php:181
|
18183 |
msgid "day of year is order#"
|
18184 |
msgstr "day of year is order#"
|
18185 |
|
18186 |
+
#: wppa-widget-admin.php:183
|
18187 |
msgid "Select how the widget should display."
|
18188 |
msgstr "Sélectionner comment le widget doit s'afficher."
|
18189 |
|
18190 |
+
#: wppa-widget-admin.php:202
|
18191 |
#, php-format
|
18192 |
msgid "Current day# = %s, offset ="
|
18193 |
msgstr "Jour courant# = %s, offset ="
|
18194 |
|
18195 |
+
#: wppa-widget-admin.php:214
|
18196 |
#, php-format
|
18197 |
msgid "Todays photo order# = %s."
|
18198 |
msgstr "Photo du jour order# = %s."
|
18199 |
|
18200 |
+
#: wppa-widget-admin.php:220
|
18201 |
msgid "Not found."
|
18202 |
msgstr "Non trouvé."
|
18203 |
|
18204 |
+
#: wppa-widget-admin.php:235
|
18205 |
msgid "Links are set on the <b>Photo Albums -> Settings</b> screen."
|
18206 |
msgstr "Les liens sont configurés dans le menu: <b>Photo Albums -> Settings</b>."
|
18207 |
|
18208 |
+
#: wppa-widget-admin.php:247
|
18209 |
msgid "Url:"
|
18210 |
msgstr "URL:"
|
18211 |
|
18212 |
+
#: wppa-widget-admin.php:249
|
18213 |
msgid "Enter the title and the url. Do'nt forget the HTTP://"
|
18214 |
msgstr "Entrer le titre et l'URL. Ne pas oublier le HTTP://"
|
18215 |
|
18216 |
+
#: wppa-widget-admin.php:262
|
18217 |
msgid "Photo Name"
|
18218 |
msgstr "Nom de laphoto"
|
18219 |
|
18220 |
+
#: wppa-widget-admin.php:266
|
18221 |
msgid "Select the content of the subtitle."
|
18222 |
msgstr "Sélectionner le contenu du sous titre."
|
18223 |
|
18224 |
+
#: wppa-widget-admin.php:272
|
18225 |
+
#, fuzzy
|
18226 |
+
msgid "Counter:"
|
18227 |
+
msgstr "Montrer compteur overlay"
|
18228 |
+
|
18229 |
+
#: wppa-widget-admin.php:299
|
18230 |
#, php-format
|
18231 |
msgid "There are too many photos in the selection to show a preview ( %d )"
|
18232 |
msgstr ""
|
18280 |
#. Author URI of the plugin/theme
|
18281 |
msgid "http://wppa.opajaap.nl/"
|
18282 |
msgstr "http://wppa.opajaap.nl/"
|
18283 |
+
|
18284 |
+
#~ msgid "The photos in the authors album(s)"
|
18285 |
+
#~ msgstr "Photos dans les album(s) de l'auteur"
|
18286 |
+
|
18287 |
+
#~ msgid "All the authors photos"
|
18288 |
+
#~ msgstr "Toutes les photos de l'auteur"
|
18289 |
+
|
18290 |
+
#~ msgid ""
|
18291 |
+
#~ "You can set the content and the sizes in this widget in the <b>Photo Albums "
|
18292 |
+
#~ "-> Sidebar Widget</b> admin page."
|
18293 |
+
#~ msgstr ""
|
18294 |
+
#~ "Vous pouvez régler le contenu et les tailles de ce widget dans <b>Photo "
|
18295 |
+
#~ "Albums - > Sidebar Widget</b> admin page."
|
18296 |
+
|
18297 |
+
#~ msgid "Custom datafields"
|
18298 |
+
#~ msgstr "Champs personnalisés"
|
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¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
-
Version: 6.
|
6 |
-
Stable tag: 6.4.
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
@@ -178,7 +178,28 @@ Oh, just Google on 'picture resizer' and you will find a bunch of free programs
|
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
-
See for additional information: http://wppa.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
|
183 |
= 6.4.20 =
|
184 |
|
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¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
+
Version: 6.5.00
|
6 |
+
Stable tag: 6.4.20
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
See for additional information: http://www.wppa.nl/changelog/
|
182 |
+
|
183 |
+
= 6.5.00 =
|
184 |
+
|
185 |
+
= Bug Fixes =
|
186 |
+
|
187 |
+
* Fixed erroneous hi res urls when the wppa-source directory was 'outside' ABSPATH
|
188 |
+
* Fixed an issue where certain iptc and exif data was not findable by supersearch. If you still hsve this problem, run Table VIII-A7: Recuperate.
|
189 |
+
* In certain themes there was a line across the cover image when there was a link on the cover image. Fixed.
|
190 |
+
|
191 |
+
= New Features =
|
192 |
+
|
193 |
+
* Custom fields for albums. See Table II-J9, II-J9.xabc.
|
194 |
+
* The album attribute in shortcodes: album="#lasten,{album},{maxcount}" has been extended with an owner part: album="#lasten,{album},{maxcount},{owner}".
|
195 |
+
* Display optionally a counter on the photo of the day widget that indicates how many more photos there are in the album. Links to thumbnails or slideshow. See the Photo of the day admin page.
|
196 |
+
* Table II-G21. Rating on lightbox. Works only with display type 5 or 10 stars, not for single votes or numerical display.
|
197 |
+
|
198 |
+
= Other Changes =
|
199 |
+
|
200 |
+
* Filmstrip adjustment time is now equal to the animation speed set in Table IV-B6.
|
201 |
+
* Added two linktypes to slideshow to the Bestof widget.
|
202 |
+
* The receiver of points for comments now also gets the points when no moderation of the comment is required.
|
203 |
|
204 |
= 6.4.20 =
|
205 |
|
theme/{photo-album-page.php → photo-album-page-2010.php}
RENAMED
File without changes
|
theme/photo-album-page-2016.php
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Template Name: Photo Album page
|
4 |
+
*
|
5 |
+
* A custom page template without sidebar.
|
6 |
+
*
|
7 |
+
* The "Template Name:" bit above allows this to be selectable
|
8 |
+
* from a dropdown menu on the edit page screen.
|
9 |
+
*
|
10 |
+
* @package WordPress
|
11 |
+
* @subpackage Twenty_Sixteen
|
12 |
+
* @since Twenty Sixteen 1.0
|
13 |
+
*/
|
14 |
+
|
15 |
+
get_header(); ?>
|
16 |
+
|
17 |
+
<div id="primary" class="content-area">
|
18 |
+
<main id="main" class="site-main" role="main">
|
19 |
+
<?php /* if ( function_exists( 'wppa_statistics' ) ) wppa_statistics(); */ /* This would show the statistics at the to of the page */?>
|
20 |
+
<?php $wppa_show_statistics = true; /* This will show the statistics within the wppa-container */?>
|
21 |
+
<?php
|
22 |
+
// Start the loop.
|
23 |
+
while ( have_posts() ) : the_post();
|
24 |
+
|
25 |
+
// Include the page content template.
|
26 |
+
get_template_part( 'template-parts/content', 'page' );
|
27 |
+
|
28 |
+
// If comments are open or we have at least one comment, load up the comment template.
|
29 |
+
if ( comments_open() || get_comments_number() ) {
|
30 |
+
comments_template();
|
31 |
+
}
|
32 |
+
|
33 |
+
// End of the loop.
|
34 |
+
endwhile;
|
35 |
+
?>
|
36 |
+
|
37 |
+
<style type="text/css">
|
38 |
+
.content-area {
|
39 |
+
width:100% !important;
|
40 |
+
}
|
41 |
+
.entry-content {
|
42 |
+
margin-left:auto !important;
|
43 |
+
margin-right:auto !important;
|
44 |
+
max-width:90% !important;
|
45 |
+
}
|
46 |
+
</style>
|
47 |
+
<script type="text/javascript">
|
48 |
+
/* <![CDATA[ */
|
49 |
+
jQuery(document).ready(function(){
|
50 |
+
jQuery('#wppa-container-1').css('background-color', 'black');
|
51 |
+
jQuery('#wppa-container-1').css('padding', '80px');
|
52 |
+
jQuery('#wppa-container-1').css('margin-left', '-80px');
|
53 |
+
});
|
54 |
+
/* ]]> */
|
55 |
+
</script>
|
56 |
+
|
57 |
+
</main><!-- .site-main -->
|
58 |
+
|
59 |
+
<?php get_sidebar( 'content-bottom' ); ?>
|
60 |
+
|
61 |
+
</div><!-- .content-area -->
|
62 |
+
|
63 |
+
<?php //get_sidebar(); ?>
|
64 |
+
<?php get_footer(); ?>
|
wppa-ajax.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
-
* Version 6.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -239,7 +239,6 @@ global $wppa_log_file;
|
|
239 |
// Housekeeping
|
240 |
wppa_index_update( 'photo', $photo );
|
241 |
|
242 |
-
// ( 'Photo successfully updated', 'wp-photo-album-plus' );
|
243 |
wppa_exit();
|
244 |
break;
|
245 |
|
@@ -1129,6 +1128,32 @@ global $wppa_log_file;
|
|
1129 |
wppa_exit();
|
1130 |
break;
|
1131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1132 |
default:
|
1133 |
$itemname = $item;
|
1134 |
}
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
+
* Version 6.5.00
|
6 |
*
|
7 |
*/
|
8 |
|
239 |
// Housekeeping
|
240 |
wppa_index_update( 'photo', $photo );
|
241 |
|
|
|
242 |
wppa_exit();
|
243 |
break;
|
244 |
|
1128 |
wppa_exit();
|
1129 |
break;
|
1130 |
|
1131 |
+
case 'album_custom_0':
|
1132 |
+
case 'album_custom_1':
|
1133 |
+
case 'album_custom_2':
|
1134 |
+
case 'album_custom_3':
|
1135 |
+
case 'album_custom_4':
|
1136 |
+
case 'album_custom_5':
|
1137 |
+
case 'album_custom_6':
|
1138 |
+
case 'album_custom_7':
|
1139 |
+
case 'album_custom_8':
|
1140 |
+
case 'album_custom_9':
|
1141 |
+
$index = substr( $item, -1 );
|
1142 |
+
$custom = wppa_get_album_item( $album, 'custom' );
|
1143 |
+
if ( $custom ) {
|
1144 |
+
$custom_data = unserialize( $custom );
|
1145 |
+
}
|
1146 |
+
else {
|
1147 |
+
$custom_data = array( '', '', '', '', '', '', '', '', '', '' );
|
1148 |
+
}
|
1149 |
+
$custom_data[$index] = wppa_sanitize_custom_field( $value );
|
1150 |
+
$custom = serialize( $custom_data );
|
1151 |
+
wppa_update_album( array( 'id' => $album, 'custom' => $custom, 'modified' => time() ) );
|
1152 |
+
wppa_index_update( 'album', $album );
|
1153 |
+
echo '||0||'.sprintf( __( '<b>Custom field %s</b> updated' , 'wp-photo-album-plus'), wppa_opt( 'album_custom_caption_'.$index ) );
|
1154 |
+
wppa_exit();
|
1155 |
+
break;
|
1156 |
+
|
1157 |
default:
|
1158 |
$itemname = $item;
|
1159 |
}
|
wppa-album-admin-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* create, edit and delete albums
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -238,6 +238,42 @@ function _wppa_admin() {
|
|
238 |
<?php } ?>
|
239 |
</tr>
|
240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
<!-- Timestamp -->
|
242 |
<tr>
|
243 |
<th>
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* create, edit and delete albums
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
238 |
<?php } ?>
|
239 |
</tr>
|
240 |
|
241 |
+
<!-- Custom -->
|
242 |
+
<?php
|
243 |
+
if ( wppa_switch( 'album_custom_fields' ) ) {
|
244 |
+
echo '<tr><th>jahoor</th><td></td></tr>';
|
245 |
+
$custom = wppa_get_album_item( $edit_id, 'custom' );
|
246 |
+
if ( $custom ) {
|
247 |
+
$custom_data = unserialize( $custom );
|
248 |
+
}
|
249 |
+
else {
|
250 |
+
$custom_data = array( '', '', '', '', '', '', '', '', '', '' );
|
251 |
+
}
|
252 |
+
foreach( array_keys( $custom_data ) as $key ) {
|
253 |
+
if ( wppa_opt( 'album_custom_caption_'.$key ) ) {
|
254 |
+
?>
|
255 |
+
<tr>
|
256 |
+
<th>
|
257 |
+
<label><?php echo apply_filters( 'translate_text', wppa_opt( 'album_custom_caption_'.$key ) ) . ':<br /><small>(w#cc'.$key.')</small>' ?></label>
|
258 |
+
</th>
|
259 |
+
<td>
|
260 |
+
<?php echo '<small>(w#cd'.$key.')</small>' ?>
|
261 |
+
<input type="text"
|
262 |
+
style="width:85%; float:right;"
|
263 |
+
id="pname-<?php echo $edit_id ?>"
|
264 |
+
onkeyup="wppaAjaxUpdateAlbum( <?php echo $edit_id ?>, 'album_custom_<?php echo $key ?>', this );"
|
265 |
+
onchange="wppaAjaxUpdateAlbum( <?php echo $edit_id ?>, 'album_custom_<?php echo $key ?>', this );"
|
266 |
+
value="<?php echo esc_attr( stripslashes( $custom_data[$key] ) ) ?>"
|
267 |
+
/>
|
268 |
+
|
269 |
+
</td>
|
270 |
+
</tr>
|
271 |
+
<?php
|
272 |
+
}
|
273 |
+
}
|
274 |
+
}
|
275 |
+
?>
|
276 |
+
|
277 |
<!-- Timestamp -->
|
278 |
<tr>
|
279 |
<th>
|
wppa-album-covers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -889,7 +889,7 @@ global $wpdb;
|
|
889 |
wppa_out( "\n\t" .
|
890 |
'<a' .
|
891 |
' href="' . $link . '"' .
|
892 |
-
' style="border:0;"' .
|
893 |
( $is_video ? ' data-videohtml="' . esc_attr( wppa_get_video_body( $id ) ) . '"' .
|
894 |
' data-videonatwidth="'.wppa_get_videox( $id ).'"' .
|
895 |
' data-videonatheight="'.wppa_get_videoy( $id ).'"' : '' ) .
|
@@ -930,7 +930,7 @@ global $wpdb;
|
|
930 |
else {
|
931 |
$href = $photolink['url'] == '#' ? '' : 'href="' . wppa_convert_to_pretty( $photolink['url'] ) . '" ';
|
932 |
wppa_out( '<a' .
|
933 |
-
' style="border:0;"' .
|
934 |
' ' . $href .
|
935 |
' target="' . $photolink['target'] . '"' .
|
936 |
' title="' . $photolink['title'] . '"' .
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
889 |
wppa_out( "\n\t" .
|
890 |
'<a' .
|
891 |
' href="' . $link . '"' .
|
892 |
+
' style="border:0;color:transparent;"' .
|
893 |
( $is_video ? ' data-videohtml="' . esc_attr( wppa_get_video_body( $id ) ) . '"' .
|
894 |
' data-videonatwidth="'.wppa_get_videox( $id ).'"' .
|
895 |
' data-videonatheight="'.wppa_get_videoy( $id ).'"' : '' ) .
|
930 |
else {
|
931 |
$href = $photolink['url'] == '#' ? '' : 'href="' . wppa_convert_to_pretty( $photolink['url'] ) . '" ';
|
932 |
wppa_out( '<a' .
|
933 |
+
' style="border:0;color:transparent;"' .
|
934 |
' ' . $href .
|
935 |
' target="' . $photolink['target'] . '"' .
|
936 |
' title="' . $photolink['title'] . '"' .
|
wppa-bestof-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* display the best rated photos
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -197,8 +197,10 @@ class BestOfWidget extends WP_Widget {
|
|
197 |
<select id="<?php echo $this->get_field_id('linktype'); ?>" name="<?php echo $this->get_field_name('linktype'); ?>" >
|
198 |
<option value="none" <?php if ( $linktype == 'none' ) echo 'selected="selected"' ?>><?php _e('--- none ---', 'wp-photo-album-plus') ?></option>
|
199 |
<option value="owneralbums" <?php if ( $linktype == 'owneralbums' ) echo 'selected="selected"' ?>><?php _e('The authors album(s)', 'wp-photo-album-plus') ?></option>
|
200 |
-
<option value="ownerphotos" <?php if ( $linktype == 'ownerphotos' ) echo 'selected="selected"' ?>><?php _e('The photos in the authors album(s)', 'wp-photo-album-plus') ?></option>
|
201 |
-
<option value="
|
|
|
|
|
202 |
</select>
|
203 |
</p>
|
204 |
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* display the best rated photos
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
197 |
<select id="<?php echo $this->get_field_id('linktype'); ?>" name="<?php echo $this->get_field_name('linktype'); ?>" >
|
198 |
<option value="none" <?php if ( $linktype == 'none' ) echo 'selected="selected"' ?>><?php _e('--- none ---', 'wp-photo-album-plus') ?></option>
|
199 |
<option value="owneralbums" <?php if ( $linktype == 'owneralbums' ) echo 'selected="selected"' ?>><?php _e('The authors album(s)', 'wp-photo-album-plus') ?></option>
|
200 |
+
<option value="ownerphotos" <?php if ( $linktype == 'ownerphotos' ) echo 'selected="selected"' ?>><?php _e('The photos in the authors album(s), thumbnails', 'wp-photo-album-plus') ?></option>
|
201 |
+
<option value="ownerphotosslide" <?php if ( $linktype == 'ownerphotosslide' ) echo 'selected="selected"' ?>><?php _e('The photos in the authors album(s), slideshow', 'wp-photo-album-plus') ?></option>
|
202 |
+
<option value="upldrphotos" <?php if ( $linktype == 'upldrphotos' ) echo 'selected="selected"' ?>><?php _e('All the authors photos, thumbnails', 'wp-photo-album-plus') ?></option>
|
203 |
+
<option value="upldrphotosslide" <?php if ( $linktype == 'upldrphotosslide' ) echo 'selected="selected"' ?>><?php _e('All the authors photos, slideshow', 'wp-photo-album-plus') ?></option>
|
204 |
</select>
|
205 |
</p>
|
206 |
|
wppa-boxes-html.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various wppa boxes
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -769,7 +769,7 @@ global $wppa_session;
|
|
769 |
' value="' . __( 'Submit', 'wp-photo-album-plus' ) . '"' .
|
770 |
' style="vertical-align:top;margin:2px;"' .
|
771 |
' onclick="wppaSuperSearchSelect(' . wppa('mocc') .' , true)"' .
|
772 |
-
' ontouchstart="wppaSuperSearchSelect(' . wppa('mocc') .' , true)"' .
|
773 |
' />';
|
774 |
|
775 |
$result .= '
|
@@ -2568,8 +2568,43 @@ function wppa_user_albumedit_html( $alb, $width, $where = '', $mcr = false ) {
|
|
2568 |
__wcs( 'wppa-box-text' ) .
|
2569 |
'"' .
|
2570 |
' >' . $desc .
|
2571 |
-
'</textarea>'
|
2572 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2573 |
' type="submit"' .
|
2574 |
' name="wppa-albumeditsubmit"' .
|
2575 |
' class="wppa-user-submit"' .
|
@@ -3406,7 +3441,12 @@ function wppa_bestof_html( $args, $widget = true ) {
|
|
3406 |
foreach ( array_keys( $data ) as $id ) {
|
3407 |
$thumb = wppa_cache_thumb( $id );
|
3408 |
if ( $thumb ) {
|
3409 |
-
|
|
|
|
|
|
|
|
|
|
|
3410 |
if ( $widget ) {
|
3411 |
$maxw = $size;
|
3412 |
$maxh = round ( $maxw * $imgsize['1'] / $imgsize['0'] );
|
@@ -3445,6 +3485,17 @@ function wppa_bestof_html( $args, $widget = true ) {
|
|
3445 |
$href = wppa_get_permalink( $page ).'wppa-cover=0&wppa-upldr='.$thumb['owner'].'&wppa-occur=1';
|
3446 |
$title = __( 'See all the authors photos', 'wp-photo-album-plus' );
|
3447 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3448 |
}
|
3449 |
$result .= '<a href="'.wppa_convert_to_pretty( $href ).'" title="'.$title.'" >';
|
3450 |
}
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various wppa boxes
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
769 |
' value="' . __( 'Submit', 'wp-photo-album-plus' ) . '"' .
|
770 |
' style="vertical-align:top;margin:2px;"' .
|
771 |
' onclick="wppaSuperSearchSelect(' . wppa('mocc') .' , true)"' .
|
772 |
+
// ' ontouchstart="wppaSuperSearchSelect(' . wppa('mocc') .' , true)"' .
|
773 |
' />';
|
774 |
|
775 |
$result .= '
|
2568 |
__wcs( 'wppa-box-text' ) .
|
2569 |
'"' .
|
2570 |
' >' . $desc .
|
2571 |
+
'</textarea>';
|
2572 |
+
|
2573 |
+
// Custom data
|
2574 |
+
$custom = wppa_get_album_item( $alb, 'custom' );
|
2575 |
+
if ( $custom ) {
|
2576 |
+
$custom_data = unserialize( $custom );
|
2577 |
+
}
|
2578 |
+
else {
|
2579 |
+
$custom_data = array( '', '', '', '', '', '', '', '', '', '' );
|
2580 |
+
}
|
2581 |
+
$idx = '0';
|
2582 |
+
while ( $idx < '10' ) {
|
2583 |
+
if ( wppa_switch( 'album_custom_edit_' . $idx ) ) {
|
2584 |
+
$result .= '<div' .
|
2585 |
+
' class="wppa-box-text wppa-td"' .
|
2586 |
+
' style="' .
|
2587 |
+
'clear:both;' .
|
2588 |
+
'float:left;' .
|
2589 |
+
'text-align:left;' .
|
2590 |
+
__wcs( 'wppa-box-text' ) .
|
2591 |
+
__wcs( 'wppa-td' ) .
|
2592 |
+
'"' .
|
2593 |
+
' >'.
|
2594 |
+
apply_filters( 'translate_text', wppa_opt( 'album_custom_caption_' . $idx ) ) .
|
2595 |
+
'</div>' .
|
2596 |
+
'<input' .
|
2597 |
+
' name="custom_' . $idx . '"' .
|
2598 |
+
' id="wppaalbum-custom-' . $idx . '-' . wppa( 'mocc' ) . '-' . $alb . '"' .
|
2599 |
+
' class="wppa-box-text wppa-file-' . $t . wppa( 'mocc' ) . '"' .
|
2600 |
+
' value="' . esc_attr( stripslashes( $custom_data[$idx] ) ) . '"' .
|
2601 |
+
' style="padding:0; width:100%;' . __wcs( 'wppa-box-text' ) . '"' .
|
2602 |
+
' />';
|
2603 |
+
|
2604 |
+
}
|
2605 |
+
$idx++;
|
2606 |
+
}
|
2607 |
+
$result .= '<input' .
|
2608 |
' type="submit"' .
|
2609 |
' name="wppa-albumeditsubmit"' .
|
2610 |
' class="wppa-user-submit"' .
|
3441 |
foreach ( array_keys( $data ) as $id ) {
|
3442 |
$thumb = wppa_cache_thumb( $id );
|
3443 |
if ( $thumb ) {
|
3444 |
+
if ( wppa_is_video( $id ) ) {
|
3445 |
+
$imgsize = array( wppa_get_videox( $id ), wppa_get_videoy( $id ) );
|
3446 |
+
}
|
3447 |
+
else {
|
3448 |
+
$imgsize = array( wppa_get_photox( $id ), wppa_get_photoy( $id ) );
|
3449 |
+
}
|
3450 |
if ( $widget ) {
|
3451 |
$maxw = $size;
|
3452 |
$maxh = round ( $maxw * $imgsize['1'] / $imgsize['0'] );
|
3485 |
$href = wppa_get_permalink( $page ).'wppa-cover=0&wppa-upldr='.$thumb['owner'].'&wppa-occur=1';
|
3486 |
$title = __( 'See all the authors photos', 'wp-photo-album-plus' );
|
3487 |
break;
|
3488 |
+
case 'ownerphotosslide':
|
3489 |
+
$href = wppa_get_permalink( $page ).'wppa-cover=0&wppa-owner='.$thumb['owner'].'&photos-only&wppa-occur=1&slide';
|
3490 |
+
$title = __( 'See the authors photos', 'wp-photo-album-plus' );
|
3491 |
+
break;
|
3492 |
+
case 'upldrphotosslide':
|
3493 |
+
$href = wppa_get_permalink( $page ).'wppa-cover=0&wppa-upldr='.$thumb['owner'].'&wppa-occur=1&slide';
|
3494 |
+
$title = __( 'See all the authors photos', 'wp-photo-album-plus' );
|
3495 |
+
break;
|
3496 |
+
default:
|
3497 |
+
$href = '';
|
3498 |
+
$title = '';
|
3499 |
}
|
3500 |
$result .= '<a href="'.wppa_convert_to_pretty( $href ).'" title="'.$title.'" >';
|
3501 |
}
|
wppa-breadcrumb.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for breadcrumbs
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -129,6 +129,15 @@ global $wppa_session;
|
|
129 |
if ( wppa( 'supersearch' ) ) {
|
130 |
$value = ' ';
|
131 |
$ss_data = explode( ',', wppa( 'supersearch' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
switch ( $ss_data['0'] ) {
|
133 |
case 'a':
|
134 |
$value .= ' ' . __('Albums', 'wp-photo-album-plus');
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for breadcrumbs
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
129 |
if ( wppa( 'supersearch' ) ) {
|
130 |
$value = ' ';
|
131 |
$ss_data = explode( ',', wppa( 'supersearch' ) );
|
132 |
+
|
133 |
+
// To preserve comma's in data[3], reconstruct a possible exploded data
|
134 |
+
$data = $ss_data;
|
135 |
+
unset( $data[0] );
|
136 |
+
unset( $data[1] );
|
137 |
+
unset( $data[2] );
|
138 |
+
$data = implode( ',', $data );
|
139 |
+
$ss_data[3] = $data;
|
140 |
+
|
141 |
switch ( $ss_data['0'] ) {
|
142 |
case 'a':
|
143 |
$value .= ' ' . __('Albums', 'wp-photo-album-plus');
|
wppa-cart.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains the interface to SCABN
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -16,6 +16,11 @@ if ( ! defined( 'ABSPATH' ) ) die( "Can't load this file directly" );
|
|
16 |
function wppa_add_to_cart( $atts ) {
|
17 |
global $post;
|
18 |
|
|
|
|
|
|
|
|
|
|
|
19 |
$thumb = wppa( 'current_photo' );
|
20 |
|
21 |
extract( shortcode_atts( array(
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains the interface to SCABN
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
16 |
function wppa_add_to_cart( $atts ) {
|
17 |
global $post;
|
18 |
|
19 |
+
if ( ! class_exists( 'wfCart' ) ) {
|
20 |
+
wppa_dbg_msg('Plugin <i>Simple Cart and BuyNow</i> must be activated to use thus featue.', 'red', 'force');
|
21 |
+
return '';
|
22 |
+
}
|
23 |
+
|
24 |
$thumb = wppa( 'current_photo' );
|
25 |
|
26 |
extract( shortcode_atts( array(
|
wppa-common-functions.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-common-functions.php
|
3 |
*
|
4 |
* Functions used in admin and in themes
|
5 |
-
* Version 6.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -1836,6 +1836,11 @@ global $wppa;
|
|
1836 |
|
1837 |
function wppa_add_credit_points( $amount, $reason = '', $id = '', $value = '', $user = '' ) {
|
1838 |
|
|
|
|
|
|
|
|
|
|
|
1839 |
// Initialize
|
1840 |
$bret = false;
|
1841 |
if ( $user ) {
|
2 |
/* wppa-common-functions.php
|
3 |
*
|
4 |
* Functions used in admin and in themes
|
5 |
+
* Version 6.5.00
|
6 |
*
|
7 |
*/
|
8 |
|
1836 |
|
1837 |
function wppa_add_credit_points( $amount, $reason = '', $id = '', $value = '', $user = '' ) {
|
1838 |
|
1839 |
+
// Anything to do?
|
1840 |
+
if ( ! $amount ) {
|
1841 |
+
return;
|
1842 |
+
}
|
1843 |
+
|
1844 |
// Initialize
|
1845 |
$bret = false;
|
1846 |
if ( $user ) {
|
wppa-date-time.php
CHANGED
@@ -158,29 +158,42 @@ function wppa_get_date_time_select_html( $type, $id, $selectable = true ) {
|
|
158 |
|
159 |
// Exactly like php's date(), but corrected for wp's timezone
|
160 |
function wppa_local_date( $format, $timestamp = false ) {
|
161 |
-
|
162 |
-
if ( ! $timestamp ) $timestamp = time();
|
163 |
|
164 |
-
|
165 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
-
//
|
168 |
-
|
169 |
-
|
170 |
|
171 |
-
|
172 |
-
$
|
173 |
-
|
174 |
-
|
175 |
-
elseif ($current_offset < 0)
|
176 |
$tzstring = 'UTC' . $current_offset;
|
177 |
-
|
|
|
178 |
$tzstring = 'UTC+' . $current_offset;
|
|
|
179 |
}
|
180 |
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
|
|
|
|
184 |
return $result;
|
185 |
}
|
186 |
|
158 |
|
159 |
// Exactly like php's date(), but corrected for wp's timezone
|
160 |
function wppa_local_date( $format, $timestamp = false ) {
|
|
|
|
|
161 |
|
162 |
+
// Fill in default format if not supplied
|
163 |
+
if ( ! $format ) {
|
164 |
+
$format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
|
165 |
+
}
|
166 |
+
|
167 |
+
// Fill in default timestamp if not suplied
|
168 |
+
if ( $timestamp ) {
|
169 |
+
$time = $timestamp;
|
170 |
+
}
|
171 |
+
else {
|
172 |
+
$time = time();
|
173 |
+
}
|
174 |
|
175 |
+
// Find timezonestring
|
176 |
+
$tzstring = get_option( 'timezone_string' );
|
177 |
+
if ( empty( $tzstring ) ) {
|
178 |
|
179 |
+
// Create a UTC+- zone if no timezone string exists
|
180 |
+
if ( 0 == $current_offset ) {
|
181 |
+
$tzstring = 'UTC+0';
|
182 |
+
}
|
183 |
+
elseif ($current_offset < 0 ) {
|
184 |
$tzstring = 'UTC' . $current_offset;
|
185 |
+
}
|
186 |
+
else {
|
187 |
$tzstring = 'UTC+' . $current_offset;
|
188 |
+
}
|
189 |
}
|
190 |
|
191 |
+
// Get the right output
|
192 |
+
date_default_timezone_set( $tzstring );
|
193 |
+
$result = date_i18n( $format, $time );
|
194 |
+
|
195 |
+
// Reset default timezone to wp standard
|
196 |
+
date_default_timezone_set( 'GMT' );
|
197 |
return $result;
|
198 |
}
|
199 |
|
wppa-functions.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/* wppa-functions.php
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
-
* Various
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -330,6 +330,12 @@ global $wppa_session;
|
|
330 |
$id = isset( $temp[1] ) ? $temp[1] : '0';
|
331 |
wppa( 'lasten_count', isset( $temp[2] ) ? $temp[2] : wppa_opt( 'lasten_count' ) );
|
332 |
wppa( 'is_lasten', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
if ( wppa( 'is_cover' ) ) {
|
334 |
wppa_dbg_msg( 'A lasten album has no cover. ' . wppa( 'start_album' ), 'red', 'force' );
|
335 |
wppa_reset_occurrance();
|
@@ -1125,6 +1131,11 @@ global $wppa_session;
|
|
1125 |
wppa_dbg_msg( 'Get_thumbs entered, mocc = ' . wppa( 'mocc' ) .
|
1126 |
', Start_album=' . wppa( 'start_album' ) . ', Cover=' . wppa( 'is_cover' ) );
|
1127 |
|
|
|
|
|
|
|
|
|
|
|
1128 |
// Done already this occ?
|
1129 |
if ( is_array( $thumbs ) ) {
|
1130 |
wppa_dbg_msg( 'Cached thumbs used' );
|
@@ -1174,8 +1185,8 @@ global $wppa_session;
|
|
1174 |
$query = $wpdb->prepare( 'SELECT * FROM `'.WPPA_PHOTOS.'` WHERE `id` = %s', wppa( 'start_photo' ) );
|
1175 |
}
|
1176 |
|
1177 |
-
// Uploader?
|
1178 |
-
elseif ( wppa( 'is_upldr' ) ) {
|
1179 |
$status = "`status` <> 'pending' AND `status` <> 'scheduled'";
|
1180 |
if ( ! is_user_logged_in() ) $status .= " AND `status` <> 'private'";
|
1181 |
if ( wppa( 'start_album' ) ) {
|
@@ -1254,15 +1265,19 @@ global $wppa_session;
|
|
1254 |
// If you want only 'New' photos in the selection, the period must be <> 0;
|
1255 |
if ( wppa_switch( 'lasten_limit_new' ) && wppa_opt( 'max_photo_newtime' ) ) {
|
1256 |
$newtime = " `" . $order_by . "` >= ".( time() - wppa_opt( 'max_photo_newtime' ) );
|
|
|
|
|
1257 |
if ( current_user_can( 'wppa_moderate' ) ) {
|
1258 |
if ( wppa( 'start_album' ) ) {
|
1259 |
$query = "SELECT * FROM `" . WPPA_PHOTOS . "` " .
|
1260 |
"WHERE ( " . $album_clause . " ) AND ( " . $newtime ." ) " .
|
|
|
1261 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1262 |
}
|
1263 |
else {
|
1264 |
$query = "SELECT * FROM `" . WPPA_PHOTOS . "` " .
|
1265 |
"WHERE " . $newtime . " " .
|
|
|
1266 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1267 |
}
|
1268 |
}
|
@@ -1270,11 +1285,13 @@ global $wppa_session;
|
|
1270 |
if ( wppa( 'start_album' ) ) {
|
1271 |
$query = "SELECT * FROM `".WPPA_PHOTOS."` " .
|
1272 |
"WHERE ( " . $album_clause . " ) AND ( " . $status . " ) AND ( " . $newtime . " ) " .
|
|
|
1273 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1274 |
}
|
1275 |
else {
|
1276 |
$query = "SELECT * FROM `".WPPA_PHOTOS."` " .
|
1277 |
"WHERE ( " . $status . " ) AND (" . $newtime . ") " .
|
|
|
1278 |
"ORDER BY `" . $order_by . "` DESC LIMIT ".$max;
|
1279 |
}
|
1280 |
}
|
@@ -1390,7 +1407,16 @@ global $wppa_session;
|
|
1390 |
elseif ( wppa( 'supersearch' ) ) {
|
1391 |
|
1392 |
$ss_data = explode( ',', wppa( 'supersearch' ) );
|
1393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1394 |
|
1395 |
$status = "`status` <> 'pending' AND `status` <> 'scheduled'";
|
1396 |
if ( ! is_user_logged_in() ) $status .= " AND `status` <> 'private'";
|
@@ -1846,7 +1872,7 @@ global $wpdb;
|
|
1846 |
}
|
1847 |
|
1848 |
// Log query
|
1849 |
-
wppa_dbg_msg( $query, 'red' );
|
1850 |
wppa( 'thumb_count', $count );
|
1851 |
$time += microtime( true );
|
1852 |
wppa_dbg_msg( 'Get thumbs query took ' . $time . ' seconds. ' .
|
@@ -2278,8 +2304,20 @@ global $wppa_done;
|
|
2278 |
}
|
2279 |
}
|
2280 |
else {
|
2281 |
-
// SUCCESSFUL COMMENT, ADD POINTS
|
2282 |
-
wppa_add_credit_points(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2283 |
|
2284 |
// SEND EMAILS
|
2285 |
// Initialize
|
@@ -4245,16 +4283,53 @@ static $done;
|
|
4245 |
|
4246 |
// Do Edit
|
4247 |
if ( $may_edit ) {
|
|
|
4248 |
if ( wppa_get_post( 'wppa-albumeditsubmit' ) ) {
|
|
|
|
|
4249 |
$alb = wppa_get_post( 'wppa-albumeditid' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4250 |
$name = wppa_get_post( 'wppa-albumeditname' );
|
4251 |
$name = trim( strip_tags( $name ) );
|
4252 |
-
if ( !
|
4253 |
$name = 'Album-#'.$alb;
|
4254 |
}
|
|
|
|
|
4255 |
$description = wppa_get_post( 'wppa-albumeditdesc' );
|
4256 |
-
|
4257 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4258 |
wppa_create_pl_htaccess();
|
4259 |
}
|
4260 |
}
|
@@ -4734,6 +4809,11 @@ function wppa_get_lbtitle( $type, $id ) {
|
|
4734 |
if ( $do_name && $do_desc ) $result .= '<br />';
|
4735 |
if ( $do_desc ) $result .= wppa_get_photo_desc( $thumb['id'] );
|
4736 |
if ( ( $do_name || $do_desc ) && $do_sm ) $result .= '<br />';
|
|
|
|
|
|
|
|
|
|
|
4737 |
if ( $do_sm ) $result .= wppa_get_share_html( $thumb['id'], 'lightbox' );
|
4738 |
|
4739 |
if ( wppa_may_user_fe_edit( $id ) ) {
|
2 |
/* wppa-functions.php
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
+
* Various functions
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
330 |
$id = isset( $temp[1] ) ? $temp[1] : '0';
|
331 |
wppa( 'lasten_count', isset( $temp[2] ) ? $temp[2] : wppa_opt( 'lasten_count' ) );
|
332 |
wppa( 'is_lasten', true );
|
333 |
+
|
334 |
+
// Limit to owner?
|
335 |
+
if ( isset( $temp[3] ) ) {
|
336 |
+
wppa( 'is_upldr', $temp[3] );
|
337 |
+
}
|
338 |
+
|
339 |
if ( wppa( 'is_cover' ) ) {
|
340 |
wppa_dbg_msg( 'A lasten album has no cover. ' . wppa( 'start_album' ), 'red', 'force' );
|
341 |
wppa_reset_occurrance();
|
1131 |
wppa_dbg_msg( 'Get_thumbs entered, mocc = ' . wppa( 'mocc' ) .
|
1132 |
', Start_album=' . wppa( 'start_album' ) . ', Cover=' . wppa( 'is_cover' ) );
|
1133 |
|
1134 |
+
/* debugging, disable for production! */
|
1135 |
+
global $wppa;
|
1136 |
+
wppa_dbg_msg( 'wppa='.serialize($wppa) );
|
1137 |
+
/* ens debugging */
|
1138 |
+
|
1139 |
// Done already this occ?
|
1140 |
if ( is_array( $thumbs ) ) {
|
1141 |
wppa_dbg_msg( 'Cached thumbs used' );
|
1185 |
$query = $wpdb->prepare( 'SELECT * FROM `'.WPPA_PHOTOS.'` WHERE `id` = %s', wppa( 'start_photo' ) );
|
1186 |
}
|
1187 |
|
1188 |
+
// Uploader? // lasten with owner rstriction is handled at the Lasten case
|
1189 |
+
elseif ( wppa( 'is_upldr' ) && ! wppa( 'is_lasten' ) ) {
|
1190 |
$status = "`status` <> 'pending' AND `status` <> 'scheduled'";
|
1191 |
if ( ! is_user_logged_in() ) $status .= " AND `status` <> 'private'";
|
1192 |
if ( wppa( 'start_album' ) ) {
|
1265 |
// If you want only 'New' photos in the selection, the period must be <> 0;
|
1266 |
if ( wppa_switch( 'lasten_limit_new' ) && wppa_opt( 'max_photo_newtime' ) ) {
|
1267 |
$newtime = " `" . $order_by . "` >= ".( time() - wppa_opt( 'max_photo_newtime' ) );
|
1268 |
+
$owner_restriction = ( wppa( 'is_upldr') ) ? "AND `owner` = '" . sanitize_user( wppa( 'is_upldr' ) ) . "' " : "";
|
1269 |
+
|
1270 |
if ( current_user_can( 'wppa_moderate' ) ) {
|
1271 |
if ( wppa( 'start_album' ) ) {
|
1272 |
$query = "SELECT * FROM `" . WPPA_PHOTOS . "` " .
|
1273 |
"WHERE ( " . $album_clause . " ) AND ( " . $newtime ." ) " .
|
1274 |
+
$owner_restriction .
|
1275 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1276 |
}
|
1277 |
else {
|
1278 |
$query = "SELECT * FROM `" . WPPA_PHOTOS . "` " .
|
1279 |
"WHERE " . $newtime . " " .
|
1280 |
+
$owner_restriction .
|
1281 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1282 |
}
|
1283 |
}
|
1285 |
if ( wppa( 'start_album' ) ) {
|
1286 |
$query = "SELECT * FROM `".WPPA_PHOTOS."` " .
|
1287 |
"WHERE ( " . $album_clause . " ) AND ( " . $status . " ) AND ( " . $newtime . " ) " .
|
1288 |
+
$owner_restriction .
|
1289 |
"ORDER BY `" . $order_by . "` DESC LIMIT " . $max;
|
1290 |
}
|
1291 |
else {
|
1292 |
$query = "SELECT * FROM `".WPPA_PHOTOS."` " .
|
1293 |
"WHERE ( " . $status . " ) AND (" . $newtime . ") " .
|
1294 |
+
$owner_restriction .
|
1295 |
"ORDER BY `" . $order_by . "` DESC LIMIT ".$max;
|
1296 |
}
|
1297 |
}
|
1407 |
elseif ( wppa( 'supersearch' ) ) {
|
1408 |
|
1409 |
$ss_data = explode( ',', wppa( 'supersearch' ) );
|
1410 |
+
|
1411 |
+
// To preserve comma's in data[3], reconstruct a possible exploded data
|
1412 |
+
$data = $ss_data;
|
1413 |
+
unset( $data[0] );
|
1414 |
+
unset( $data[1] );
|
1415 |
+
unset( $data[2] );
|
1416 |
+
$data = implode( ',', $data );
|
1417 |
+
$ss_data[3] = $data;
|
1418 |
+
|
1419 |
+
// $data = $ss_data['3'];
|
1420 |
|
1421 |
$status = "`status` <> 'pending' AND `status` <> 'scheduled'";
|
1422 |
if ( ! is_user_logged_in() ) $status .= " AND `status` <> 'private'";
|
1872 |
}
|
1873 |
|
1874 |
// Log query
|
1875 |
+
wppa_dbg_msg( $query, 'red' ); // , 'force' ); /**/
|
1876 |
wppa( 'thumb_count', $count );
|
1877 |
$time += microtime( true );
|
1878 |
wppa_dbg_msg( 'Get thumbs query took ' . $time . ' seconds. ' .
|
2304 |
}
|
2305 |
}
|
2306 |
else {
|
2307 |
+
// SUCCESSFUL COMMENT, ADD POINTS to the commenter
|
2308 |
+
wppa_add_credit_points( wppa_opt( 'cp_points_comment' ),
|
2309 |
+
__( 'Photo comment' , 'wp-photo-album-plus'),
|
2310 |
+
$id );
|
2311 |
+
|
2312 |
+
// Add points to the owner, if no moderationif
|
2313 |
+
if ( $status == 'approved' ) {
|
2314 |
+
wppa_add_credit_points( wppa_opt( 'cp_points_comment_appr' ),
|
2315 |
+
__( 'Photo comment approved' , 'wp-photo-album-plus'),
|
2316 |
+
$photo,
|
2317 |
+
'',
|
2318 |
+
wppa_get_photo_item( $photo, 'owner' )
|
2319 |
+
);
|
2320 |
+
}
|
2321 |
|
2322 |
// SEND EMAILS
|
2323 |
// Initialize
|
4283 |
|
4284 |
// Do Edit
|
4285 |
if ( $may_edit ) {
|
4286 |
+
|
4287 |
if ( wppa_get_post( 'wppa-albumeditsubmit' ) ) {
|
4288 |
+
|
4289 |
+
// Get album id
|
4290 |
$alb = wppa_get_post( 'wppa-albumeditid' );
|
4291 |
+
if ( ! $alb || ! wppa_album_exists( $alb ) ) {
|
4292 |
+
die( 'Security check failure' );
|
4293 |
+
}
|
4294 |
+
|
4295 |
+
// Valid request?
|
4296 |
+
if ( ! wp_verify_nonce( wppa_get_post( 'wppa-albumeditnonce' ), 'wppa_nonce_'.$alb ) ) {
|
4297 |
+
die( 'Security check failure' );
|
4298 |
+
}
|
4299 |
+
|
4300 |
+
// Name
|
4301 |
$name = wppa_get_post( 'wppa-albumeditname' );
|
4302 |
$name = trim( strip_tags( $name ) );
|
4303 |
+
if ( ! $name ) { // Empty album name is not allowed
|
4304 |
$name = 'Album-#'.$alb;
|
4305 |
}
|
4306 |
+
|
4307 |
+
// Description
|
4308 |
$description = wppa_get_post( 'wppa-albumeditdesc' );
|
4309 |
+
|
4310 |
+
|
4311 |
+
// Custom data
|
4312 |
+
$custom = wppa_get_album_item( $alb, 'custom' );
|
4313 |
+
if ( $custom ) {
|
4314 |
+
$custom_data = unserialize( $custom );
|
4315 |
+
}
|
4316 |
+
else {
|
4317 |
+
$custom_data = array( '', '', '', '', '', '', '', '', '', '' );
|
4318 |
+
}
|
4319 |
+
|
4320 |
+
$idx = '0';
|
4321 |
+
while ( $idx < '10' ) {
|
4322 |
+
if ( isset( $_POST['custom_' . $idx] ) ) {
|
4323 |
+
$value = wppa_get_post( 'custom_' . $idx );
|
4324 |
+
$custom_data[$idx] = wppa_sanitize_custom_field( $value );
|
4325 |
+
}
|
4326 |
+
$idx++;
|
4327 |
+
}
|
4328 |
+
$custom = serialize( $custom_data );
|
4329 |
+
|
4330 |
+
// Update
|
4331 |
+
wppa_update_album( array( 'id' => $alb, 'name' => $name, 'description' => $description, 'custom' => $custom, 'modified' => time() ) );
|
4332 |
+
wppa_index_update( 'album', $alb );
|
4333 |
wppa_create_pl_htaccess();
|
4334 |
}
|
4335 |
}
|
4809 |
if ( $do_name && $do_desc ) $result .= '<br />';
|
4810 |
if ( $do_desc ) $result .= wppa_get_photo_desc( $thumb['id'] );
|
4811 |
if ( ( $do_name || $do_desc ) && $do_sm ) $result .= '<br />';
|
4812 |
+
|
4813 |
+
if ( wppa_opt( 'rating_max' ) != '1' && wppa_opt( 'rating_display_type' ) == 'graphic' ) {
|
4814 |
+
$result .= wppa_get_slide_rating_range_html( '', true, $id );
|
4815 |
+
}
|
4816 |
+
|
4817 |
if ( $do_sm ) $result .= wppa_get_share_html( $thumb['id'], 'lightbox' );
|
4818 |
|
4819 |
if ( wppa_may_user_fe_edit( $id ) ) {
|
wppa-items.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains functions to retrieve album and photo items
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -20,15 +20,15 @@ static $album_cache_2;
|
|
20 |
// This reduces the number of queries for albums to two.
|
21 |
// Only for front-end
|
22 |
if ( empty( $album_cache_2 ) && ! is_admin() ) {
|
23 |
-
|
24 |
// Find # of albums
|
25 |
$n_albs = $wpdb->get_var( "SELECT COUNT(*) FROM `" . WPPA_ALBUMS . "`" );
|
26 |
-
|
27 |
if ( $n_albs && $n_albs < 1000 ) {
|
28 |
-
|
29 |
// Get them all
|
30 |
$allalbs = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS ."`", ARRAY_A );
|
31 |
-
|
32 |
// Store in 2nd level cache
|
33 |
foreach( $allalbs as $album ) { // Add multiple
|
34 |
if ( isset( $album['id'] ) ) { // Looks valid
|
@@ -37,7 +37,7 @@ static $album_cache_2;
|
|
37 |
}
|
38 |
}
|
39 |
}
|
40 |
-
|
41 |
// Action?
|
42 |
if ( $id == 'invalidate' ) {
|
43 |
if ( isset( $album_cache_2[$data] ) ) unset( $album_cache_2[$data] );
|
@@ -496,43 +496,82 @@ function wppa_get_album_desc( $id ) {
|
|
496 |
$desc = wppa_html( $desc ); // Enable html
|
497 |
$desc = balanceTags( $desc, true ); // Balance tags
|
498 |
|
499 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
// Keywords
|
501 |
$keywords = array( 'name', 'owner', 'id', 'views' );
|
502 |
foreach ( $keywords as $keyword ) {
|
503 |
$replacement = __( trim( stripslashes( $album[$keyword] ) ) , 'wp-photo-album-plus');
|
504 |
if ( $replacement == '' ) $replacement = '‹'.__( 'none' , 'wp-photo-album-plus').'›';
|
505 |
-
$
|
506 |
}
|
507 |
|
508 |
// Timestamps
|
509 |
$timestamps = array( 'timestamp', 'modified' );
|
510 |
foreach ( $timestamps as $timestamp ) {
|
511 |
if ( $album[$timestamp] ) {
|
512 |
-
$
|
513 |
}
|
514 |
else {
|
515 |
-
$
|
516 |
}
|
517 |
}
|
518 |
-
}
|
519 |
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
}
|
528 |
|
529 |
-
//
|
530 |
-
|
531 |
-
|
532 |
-
// CMTooltipGlossary on board?
|
533 |
-
$desc = wppa_filter_glossary( $desc );
|
534 |
-
|
535 |
-
return $desc;
|
536 |
}
|
537 |
|
538 |
// Get any album field of any album, raw data from the db
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains functions to retrieve album and photo items
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
20 |
// This reduces the number of queries for albums to two.
|
21 |
// Only for front-end
|
22 |
if ( empty( $album_cache_2 ) && ! is_admin() ) {
|
23 |
+
|
24 |
// Find # of albums
|
25 |
$n_albs = $wpdb->get_var( "SELECT COUNT(*) FROM `" . WPPA_ALBUMS . "`" );
|
26 |
+
|
27 |
if ( $n_albs && $n_albs < 1000 ) {
|
28 |
+
|
29 |
// Get them all
|
30 |
$allalbs = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS ."`", ARRAY_A );
|
31 |
+
|
32 |
// Store in 2nd level cache
|
33 |
foreach( $allalbs as $album ) { // Add multiple
|
34 |
if ( isset( $album['id'] ) ) { // Looks valid
|
37 |
}
|
38 |
}
|
39 |
}
|
40 |
+
|
41 |
// Action?
|
42 |
if ( $id == 'invalidate' ) {
|
43 |
if ( isset( $album_cache_2[$data] ) ) unset( $album_cache_2[$data] );
|
496 |
$desc = wppa_html( $desc ); // Enable html
|
497 |
$desc = balanceTags( $desc, true ); // Balance tags
|
498 |
|
499 |
+
// Album keywords
|
500 |
+
$desc = wppa_translate_album_keywords( $id, $desc );
|
501 |
+
|
502 |
+
// To prevent recursive rendering of scripts or shortcodes:
|
503 |
+
$desc = str_replace( array( '%%wppa%%', '[wppa', '[/wppa]' ), array( '%-wppa-%', '{wppa', '{/wppa}' ), $desc );
|
504 |
+
if ( wppa_switch( 'allow_foreign_shortcodes_general' ) ) {
|
505 |
+
$desc = do_shortcode( $desc );
|
506 |
+
}
|
507 |
+
else {
|
508 |
+
$desc = strip_shortcodes( $desc );
|
509 |
+
}
|
510 |
+
|
511 |
+
// Convert links and mailto:
|
512 |
+
$desc = make_clickable( $desc );
|
513 |
+
|
514 |
+
// CMTooltipGlossary on board?
|
515 |
+
$desc = wppa_filter_glossary( $desc );
|
516 |
+
|
517 |
+
return $desc;
|
518 |
+
}
|
519 |
+
|
520 |
+
// Translate album keywords
|
521 |
+
function wppa_translate_album_keywords( $id, $text ) {
|
522 |
+
|
523 |
+
$result = $text;
|
524 |
+
|
525 |
+
// Does album exist and is there any 'w#' ?
|
526 |
+
if ( wppa_album_exists( $id ) && strpos( $result, 'w#' ) !== false ) {
|
527 |
+
|
528 |
+
// Get album data
|
529 |
+
$album = wppa_cache_album( $id );
|
530 |
+
|
531 |
// Keywords
|
532 |
$keywords = array( 'name', 'owner', 'id', 'views' );
|
533 |
foreach ( $keywords as $keyword ) {
|
534 |
$replacement = __( trim( stripslashes( $album[$keyword] ) ) , 'wp-photo-album-plus');
|
535 |
if ( $replacement == '' ) $replacement = '‹'.__( 'none' , 'wp-photo-album-plus').'›';
|
536 |
+
$result = str_replace( 'w#'.$keyword, $replacement, $result );
|
537 |
}
|
538 |
|
539 |
// Timestamps
|
540 |
$timestamps = array( 'timestamp', 'modified' );
|
541 |
foreach ( $timestamps as $timestamp ) {
|
542 |
if ( $album[$timestamp] ) {
|
543 |
+
$result = str_replace( 'w#'.$timestamp, wppa_local_date( get_option( 'date_format', "F j, Y," ).' '.get_option( 'time_format', "g:i a" ), $album['timestamp'] ), $result );
|
544 |
}
|
545 |
else {
|
546 |
+
$result = str_replace( 'w#'.$timestamp, '‹'.__('unknown', 'wp-photo-album-plus').'›', $result );
|
547 |
}
|
548 |
}
|
|
|
549 |
|
550 |
+
// Custom data fields
|
551 |
+
if ( wppa_switch( 'custom_fields' ) ) {
|
552 |
+
$custom = $album['custom'];
|
553 |
+
$custom_data = $custom ? unserialize( $custom ) : array( '', '', '', '', '', '', '', '', '', '' );
|
554 |
+
for ( $i = '0'; $i < '10'; $i++ ) {
|
555 |
+
if ( wppa_opt( 'album_custom_caption_'.$i ) ) { // Field defined
|
556 |
+
if ( wppa_switch( 'album_custom_visible_'.$i ) ) { // May be displayed
|
557 |
+
$result = str_replace( 'w#cc'.$i, __( wppa_opt( 'album_custom_caption_'.$i ) , 'wp-photo-album-plus') . ':', $result ); // Caption
|
558 |
+
$result = str_replace( 'w#cd'.$i, __( stripslashes( $custom_data[$i] ) , 'wp-photo-album-plus'), $result ); // Data
|
559 |
+
}
|
560 |
+
else { // May not be displayed
|
561 |
+
$result = str_replace( 'w#cc'.$i, '', $result ); // Remove
|
562 |
+
$result = str_replace( 'w#cd'.$i, '', $result ); // Remove
|
563 |
+
}
|
564 |
+
}
|
565 |
+
else { // Field not defined
|
566 |
+
$result = str_replace( 'w#cc'.$i, '', $result ); // Remove
|
567 |
+
$result = str_replace( 'w#cd'.$i, '', $result ); // Remove
|
568 |
+
}
|
569 |
+
}
|
570 |
+
}
|
571 |
}
|
572 |
|
573 |
+
// Done!
|
574 |
+
return $result;
|
|
|
|
|
|
|
|
|
|
|
575 |
}
|
576 |
|
577 |
// Get any album field of any album, raw data from the db
|
wppa-links.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Frontend links
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -232,12 +232,18 @@ function wppa_get_album_url_ajax( $id, $pag = '', $type = 'content' ) {
|
|
232 |
}
|
233 |
|
234 |
// get link to slideshow (in loop)
|
235 |
-
function wppa_get_slideshow_url($id, $page = '', $pid = '') {
|
236 |
|
237 |
-
if ($id) {
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
if ( $pid ) $link .= '&wppa-photo=' . $pid;
|
242 |
if ( wppa( 'is_upldr' ) ) $link .= '&wppa-upldr=' . wppa( 'is_upldr' );
|
243 |
// can be extended for other special cases, see wppa_thumb_default() in wppa-functions.php
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Frontend links
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
232 |
}
|
233 |
|
234 |
// get link to slideshow (in loop)
|
235 |
+
function wppa_get_slideshow_url( $id, $page = '', $pid = '', $occ = '' ) {
|
236 |
|
237 |
+
if ( $id ) {
|
238 |
+
if ( $occ ) {
|
239 |
+
$occur = $occ;
|
240 |
+
$w = '';
|
241 |
+
}
|
242 |
+
else {
|
243 |
+
$occur = wppa_in_widget() ? wppa( 'widget_occur' ) : wppa( 'occur' );
|
244 |
+
$w = wppa_in_widget() ? 'w' : '';
|
245 |
+
}
|
246 |
+
$link = wppa_get_permalink( $page ) . 'wppa-album=' . $id . '&wppa-slide' . '&wppa-' . $w . 'occur=' . $occur; // slide=true changed in slide
|
247 |
if ( $pid ) $link .= '&wppa-photo=' . $pid;
|
248 |
if ( wppa( 'is_upldr' ) ) $link .= '&wppa-upldr=' . wppa( 'is_upldr' );
|
249 |
// can be extended for other special cases, see wppa_thumb_default() in wppa-functions.php
|
wppa-potd-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* display the widget
|
6 |
-
* Version 6.
|
7 |
*/
|
8 |
|
9 |
if ( ! defined( 'ABSPATH' ) ) die( "Can't load this file directly" );
|
@@ -46,7 +46,7 @@ class PhotoOfTheDay extends WP_Widget {
|
|
46 |
}
|
47 |
else $align = '';
|
48 |
|
49 |
-
$widget_content .= "\n".'<div class="wppa-widget-photo" style="'
|
50 |
|
51 |
if ( $image ) {
|
52 |
|
@@ -57,7 +57,7 @@ class PhotoOfTheDay extends WP_Widget {
|
|
57 |
$usethumb = wppa_use_thumb_file( $id, wppa_opt( 'widget_width' ), '0' );
|
58 |
$imgurl = wppa_fix_poster_ext( $usethumb ? wppa_get_thumb_url( $id, '', $w, $h ) : wppa_get_photo_url( $id, '', $w, $h ), $id );
|
59 |
$name = wppa_get_photo_name( $id );
|
60 |
-
$page = in_array( wppa_opt( 'widget_linktype' ), wppa( 'links_no_page' ) ) ? '' : wppa_get_the_landing_page( 'widget_linkpage', __('Photo of the day', 'wp-photo-album-plus') );
|
61 |
$link = wppa_get_imglnk_a( 'potdwidget' , $id );
|
62 |
$is_video = wppa_is_video( $id );
|
63 |
$has_audio = wppa_has_audio( $id );
|
@@ -120,6 +120,24 @@ class PhotoOfTheDay extends WP_Widget {
|
|
120 |
// The medal if at the bottom
|
121 |
$widget_content .= wppa_get_medal_html_a( array( 'id' => $id, 'size' => 'M', 'where' => 'bot' ) );
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
// Audio
|
124 |
if ( wppa_has_audio( $id ) ) {
|
125 |
$widget_content .= wppa_get_audio_html( array ( 'id' => $id,
|
@@ -184,7 +202,7 @@ class PhotoOfTheDay extends WP_Widget {
|
|
184 |
$widget_title = $instance['title'];
|
185 |
?>
|
186 |
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wp-photo-album-plus'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $widget_title; ?>" /></p>
|
187 |
-
<p><?php _e('You can set the content and the sizes in this widget in the <b>Photo Albums ->
|
188 |
<?php
|
189 |
}
|
190 |
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* display the widget
|
6 |
+
* Version 6.5.00
|
7 |
*/
|
8 |
|
9 |
if ( ! defined( 'ABSPATH' ) ) die( "Can't load this file directly" );
|
46 |
}
|
47 |
else $align = '';
|
48 |
|
49 |
+
$widget_content .= "\n".'<div class="wppa-widget-photo" style="' . $align . ' padding-top:2px;position:relative;" >';
|
50 |
|
51 |
if ( $image ) {
|
52 |
|
57 |
$usethumb = wppa_use_thumb_file( $id, wppa_opt( 'widget_width' ), '0' );
|
58 |
$imgurl = wppa_fix_poster_ext( $usethumb ? wppa_get_thumb_url( $id, '', $w, $h ) : wppa_get_photo_url( $id, '', $w, $h ), $id );
|
59 |
$name = wppa_get_photo_name( $id );
|
60 |
+
$page = ( in_array( wppa_opt( 'widget_linktype' ), wppa( 'links_no_page' ) ) && ! wppa_switch( 'widget_counter' ) ) ? '' : wppa_get_the_landing_page( 'widget_linkpage', __('Photo of the day', 'wp-photo-album-plus') );
|
61 |
$link = wppa_get_imglnk_a( 'potdwidget' , $id );
|
62 |
$is_video = wppa_is_video( $id );
|
63 |
$has_audio = wppa_has_audio( $id );
|
120 |
// The medal if at the bottom
|
121 |
$widget_content .= wppa_get_medal_html_a( array( 'id' => $id, 'size' => 'M', 'where' => 'bot' ) );
|
122 |
|
123 |
+
// The counter
|
124 |
+
if ( wppa_switch( 'widget_counter' ) ) { // If we want this
|
125 |
+
$alb = wppa_get_photo_item( $id, 'album' );
|
126 |
+
$c = $wpdb->get_var( "SELECT COUNT(*) FROM `" . WPPA_PHOTOS . "` WHERE `album` = " . $alb ) - 1;
|
127 |
+
if ( $c > 0 ) {
|
128 |
+
if ( wppa_opt( 'potd_counter_link' ) == 'thumbs' ) {
|
129 |
+
$lnk = wppa_get_album_url( $alb, $page, 'thumbs', '1' );
|
130 |
+
}
|
131 |
+
else {
|
132 |
+
$lnk = wppa_get_slideshow_url( $alb, $page, $id, '1' );
|
133 |
+
}
|
134 |
+
$lnk =
|
135 |
+
$widget_content .= '<a href="' . $lnk . '" >' .
|
136 |
+
'<div style="font-size:12px;position:absolute;right:4px;bottom:4px;" >+' . $c . '</div>' .
|
137 |
+
'</a>';
|
138 |
+
}
|
139 |
+
}
|
140 |
+
|
141 |
// Audio
|
142 |
if ( wppa_has_audio( $id ) ) {
|
143 |
$widget_content .= wppa_get_audio_html( array ( 'id' => $id,
|
202 |
$widget_title = $instance['title'];
|
203 |
?>
|
204 |
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'wp-photo-album-plus'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $widget_title; ?>" /></p>
|
205 |
+
<p><?php _e('You can set the content and the sizes in this widget in the <b>Photo Albums -> Photo of the day</b> admin page.', 'wp-photo-album-plus'); ?></p>
|
206 |
<?php
|
207 |
}
|
208 |
|
wppa-settings-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -2616,6 +2616,15 @@ global $wp_version;
|
|
2616 |
$tags = 'lightbox,layout';
|
2617 |
wppa_setting($slug, '20', $name, $desc, $html, $help, $clas, $tags);
|
2618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2619 |
$name = __('Overlay show counter', 'wp-photo-album-plus');
|
2620 |
$desc = __('Show the x/y counter below the image.', 'wp-photo-album-plus');
|
2621 |
$help = '';
|
@@ -2922,7 +2931,33 @@ global $wp_version;
|
|
2922 |
$tags = 'layout,meta';
|
2923 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
2924 |
|
2925 |
-
$name = __('Custom datafields', 'wp-photo-album-plus');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2926 |
$desc = __('Define up to 10 custom data fields for photos.', 'wp-photo-album-plus');
|
2927 |
$help = '';
|
2928 |
$slug = 'wppa_custom_fields';
|
@@ -9428,6 +9463,12 @@ global $wp_version;
|
|
9428 |
<td><?php echo(WPPA_CONTENT_PATH) ?></td>
|
9429 |
<td></td>
|
9430 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
9431 |
<tr style="color:#333;">
|
9432 |
<td>wp_upload_dir() : ['basedir']</td>
|
9433 |
<td><small><?php _e('WP Base upload dir.', 'wp-photo-album-plus') ?></small></td>
|
@@ -9435,12 +9476,6 @@ global $wp_version;
|
|
9435 |
echo $wp_uploaddir['basedir']; ?></td>
|
9436 |
<td></td>
|
9437 |
</tr>
|
9438 |
-
<tr style="color:#333;">
|
9439 |
-
<td>content_url()</td>
|
9440 |
-
<td><small><?php _e('WP Content url.', 'wp-photo-album-plus') ?></small></td>
|
9441 |
-
<td><?php echo(content_url()) ?></td>
|
9442 |
-
<td></td>
|
9443 |
-
</tr>
|
9444 |
<tr style="color:#333;">
|
9445 |
<td>$_SERVER['HTTP_HOST']</td>
|
9446 |
<td><small><?php ?></small></td>
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
2616 |
$tags = 'lightbox,layout';
|
2617 |
wppa_setting($slug, '20', $name, $desc, $html, $help, $clas, $tags);
|
2618 |
|
2619 |
+
$name = __('Show rating', 'wp-photo-album-plus');
|
2620 |
+
$desc = __('Shows and enables rating on lightbox.', 'wp-photo-album-plus');
|
2621 |
+
$help = esc_js(__('This works for 5 and 10 stars only, not for single votes or numerical display', 'wp-photo-album-plus'));
|
2622 |
+
$slug = 'wppa_ovl_rating';
|
2623 |
+
$html = wppa_checkbox($slug);
|
2624 |
+
$clas = '';
|
2625 |
+
$tags = 'lightbox,layout';
|
2626 |
+
wppa_setting($slug, '21', $name, $desc, $html, $help, $clas, $tags);
|
2627 |
+
|
2628 |
$name = __('Overlay show counter', 'wp-photo-album-plus');
|
2629 |
$desc = __('Show the x/y counter below the image.', 'wp-photo-album-plus');
|
2630 |
$help = '';
|
2931 |
$tags = 'layout,meta';
|
2932 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
2933 |
|
2934 |
+
$name = __('Custom datafields albums', 'wp-photo-album-plus');
|
2935 |
+
$desc = __('Define up to 10 custom data fields for albums.', 'wp-photo-album-plus');
|
2936 |
+
$help = '';
|
2937 |
+
$slug = 'wppa_album_custom_fields';
|
2938 |
+
$onch = 'wppaCheckCheck(\'album_custom_fields\', \'albumcustfields\' )';
|
2939 |
+
$html = wppa_checkbox($slug, $onch);
|
2940 |
+
$clas = '';
|
2941 |
+
$tags = 'meta';
|
2942 |
+
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
2943 |
+
|
2944 |
+
for ( $i = '0'; $i < '10'; $i++ ) {
|
2945 |
+
$name = sprintf(__('Name, vis, edit %s', 'wp-photo-album-plus'), $i);
|
2946 |
+
$desc = sprintf(__('The caption for field %s, visibility and editability at frontend.', 'wp-photo-album-plus'), $i);
|
2947 |
+
$help = esc_js(sprintf(__('If you check the first box, the value of this field is displayable in photo descriptions at the frontend with keyword w#c%s', 'wp-photo-album-plus'), $i));
|
2948 |
+
$help .= '\n'.esc_js(__('If you check the second box, the value of this field is editable at the frontend new style dialog.', 'wp-photo-album-plus'));
|
2949 |
+
$slug1 = 'wppa_album_custom_caption_'.$i;
|
2950 |
+
$html1 = wppa_input($slug1, '300px');
|
2951 |
+
$slug2 = 'wppa_album_custom_visible_'.$i;
|
2952 |
+
$html2 = wppa_checkbox($slug2);
|
2953 |
+
$slug3 = 'wppa_album_custom_edit_'.$i;
|
2954 |
+
$html3 = wppa_checkbox($slug3);
|
2955 |
+
$clas = 'albumcustfields';
|
2956 |
+
$tags = 'meta';
|
2957 |
+
wppa_setting(array($slug1,$slug2,$slug3), '9.'.$i.'a,b,c', $name, $desc, $html1.$html2.$html3, $help, $clas, $tags);
|
2958 |
+
}
|
2959 |
+
|
2960 |
+
$name = __('Custom datafields photos', 'wp-photo-album-plus');
|
2961 |
$desc = __('Define up to 10 custom data fields for photos.', 'wp-photo-album-plus');
|
2962 |
$help = '';
|
2963 |
$slug = 'wppa_custom_fields';
|
9463 |
<td><?php echo(WPPA_CONTENT_PATH) ?></td>
|
9464 |
<td></td>
|
9465 |
</tr>
|
9466 |
+
<tr style="color:#333;">
|
9467 |
+
<td>WPPA_CONTENT_URL</td>
|
9468 |
+
<td><small><?php _e('WP Content url.', 'wp-photo-album-plus') ?></small></td>
|
9469 |
+
<td><?php echo(WPPA_CONTENT_URL) ?></td>
|
9470 |
+
<td></td>
|
9471 |
+
</tr>
|
9472 |
<tr style="color:#333;">
|
9473 |
<td>wp_upload_dir() : ['basedir']</td>
|
9474 |
<td><small><?php _e('WP Base upload dir.', 'wp-photo-album-plus') ?></small></td>
|
9476 |
echo $wp_uploaddir['basedir']; ?></td>
|
9477 |
<td></td>
|
9478 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
9479 |
<tr style="color:#333;">
|
9480 |
<td>$_SERVER['HTTP_HOST']</td>
|
9481 |
<td><small><?php ?></small></td>
|
wppa-setup.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -67,6 +67,7 @@ global $silent;
|
|
67 |
views bigint(20) NOT NULL default '0',
|
68 |
cats text NOT NULL,
|
69 |
scheduledtm tinytext NOT NULL,
|
|
|
70 |
crypt tinytext NOT NULL,
|
71 |
PRIMARY KEY (id)
|
72 |
) DEFAULT CHARACTER SET utf8;";
|
@@ -839,6 +840,7 @@ Hide Camera info
|
|
839 |
'wppa_ovl_show_legenda' => 'yes',
|
840 |
'wppa_show_zoomin' => 'yes',
|
841 |
'wppa_ovl_fs_icons' => 'yes',
|
|
|
842 |
|
843 |
'wppa_owner_on_new_line' => 'no',
|
844 |
|
@@ -874,6 +876,38 @@ Hide Camera info
|
|
874 |
'wppa_camera_connect' => 'yes',
|
875 |
|
876 |
// J Custom datafields
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
877 |
'wppa_custom_fields' => 'no',
|
878 |
'wppa_custom_caption_0' => '',
|
879 |
'wppa_custom_visible_0' => 'no',
|
@@ -1539,6 +1573,8 @@ Hide Camera info
|
|
1539 |
'wppa_widget_width' => '200',
|
1540 |
'wppa_potd_widget_width' => '200',
|
1541 |
'wppa_widget_status_filter' => 'none',
|
|
|
|
|
1542 |
|
1543 |
// Topten widget
|
1544 |
'wppa_toptenwidgettitle' => __('Top Ten Photos', 'wp-photo-album-plus'),
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
67 |
views bigint(20) NOT NULL default '0',
|
68 |
cats text NOT NULL,
|
69 |
scheduledtm tinytext NOT NULL,
|
70 |
+
custom longtext NOT NULL,
|
71 |
crypt tinytext NOT NULL,
|
72 |
PRIMARY KEY (id)
|
73 |
) DEFAULT CHARACTER SET utf8;";
|
840 |
'wppa_ovl_show_legenda' => 'yes',
|
841 |
'wppa_show_zoomin' => 'yes',
|
842 |
'wppa_ovl_fs_icons' => 'yes',
|
843 |
+
'wppa_ovl_rating' => 'no',
|
844 |
|
845 |
'wppa_owner_on_new_line' => 'no',
|
846 |
|
876 |
'wppa_camera_connect' => 'yes',
|
877 |
|
878 |
// J Custom datafields
|
879 |
+
'wppa_album_custom_fields' => 'no',
|
880 |
+
'wppa_album_custom_caption_0' => '',
|
881 |
+
'wppa_album_custom_visible_0' => 'no',
|
882 |
+
'wppa_album_custom_edit_0' => 'no',
|
883 |
+
'wppa_album_custom_caption_1' => '',
|
884 |
+
'wppa_album_custom_visible_1' => 'no',
|
885 |
+
'wppa_album_custom_edit_1' => 'no',
|
886 |
+
'wppa_album_custom_caption_2' => '',
|
887 |
+
'wppa_album_custom_visible_2' => 'no',
|
888 |
+
'wppa_album_custom_edit_2' => 'no',
|
889 |
+
'wppa_album_custom_caption_3' => '',
|
890 |
+
'wppa_album_custom_visible_3' => 'no',
|
891 |
+
'wppa_album_custom_edit_3' => 'no',
|
892 |
+
'wppa_album_custom_caption_4' => '',
|
893 |
+
'wppa_album_custom_visible_4' => 'no',
|
894 |
+
'wppa_album_custom_edit_4' => 'no',
|
895 |
+
'wppa_album_custom_caption_5' => '',
|
896 |
+
'wppa_album_custom_visible_5' => 'no',
|
897 |
+
'wppa_album_custom_edit_5' => 'no',
|
898 |
+
'wppa_album_custom_caption_6' => '',
|
899 |
+
'wppa_album_custom_visible_6' => 'no',
|
900 |
+
'wppa_album_custom_edit_6' => 'no',
|
901 |
+
'wppa_album_custom_caption_7' => '',
|
902 |
+
'wppa_album_custom_visible_7' => 'no',
|
903 |
+
'wppa_album_custom_edit_7' => 'no',
|
904 |
+
'wppa_album_custom_caption_8' => '',
|
905 |
+
'wppa_album_custom_visible_8' => 'no',
|
906 |
+
'wppa_album_custom_edit_8' => 'no',
|
907 |
+
'wppa_album_custom_caption_9' => '',
|
908 |
+
'wppa_album_custom_visible_9' => 'no',
|
909 |
+
'wppa_album_custom_edit_9' => 'no',
|
910 |
+
|
911 |
'wppa_custom_fields' => 'no',
|
912 |
'wppa_custom_caption_0' => '',
|
913 |
'wppa_custom_visible_0' => 'no',
|
1573 |
'wppa_widget_width' => '200',
|
1574 |
'wppa_potd_widget_width' => '200',
|
1575 |
'wppa_widget_status_filter' => 'none',
|
1576 |
+
'wppa_widget_counter' => 'no',
|
1577 |
+
'wppa_potd_counter_link' => 'thumbs',
|
1578 |
|
1579 |
// Topten widget
|
1580 |
'wppa_toptenwidgettitle' => __('Top Ten Photos', 'wp-photo-album-plus'),
|
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.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -680,7 +680,7 @@ function wppa_slide_rating_vote_only( $opt ) {
|
|
680 |
' class="wppa-vote-button"' .
|
681 |
' style="margin:0;"' .
|
682 |
' type="button"' .
|
683 |
-
' onclick="
|
684 |
' value="'.wppa_opt( 'vote_button_text' ) . '"' .
|
685 |
' />'
|
686 |
);
|
@@ -703,9 +703,33 @@ function wppa_slide_rating_vote_only( $opt ) {
|
|
703 |
|
704 |
function wppa_slide_rating_range( $opt ) {
|
705 |
|
706 |
-
|
707 |
-
|
708 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
|
710 |
$fs = wppa_opt( 'fontsize_nav' );
|
711 |
if ( $fs ) $fs += 3; else $fs = '15'; // iconsize = fontsize+3, Default to 15
|
@@ -713,17 +737,14 @@ function wppa_slide_rating_range( $opt ) {
|
|
713 |
$size = 'font-size:'.$fs.'px;';
|
714 |
|
715 |
// Open the rating box
|
716 |
-
|
717 |
' id="wppa-rating-'.wppa( 'mocc' ).'"' .
|
718 |
-
' class="wppa-box wppa-nav wppa-nav-text"' .
|
719 |
' style="' .
|
720 |
-
__wcs( 'wppa-box' ) .
|
721 |
-
__wcs( 'wppa-nav' ) .
|
722 |
-
__wcs( 'wppa-nav-text' ) .
|
723 |
$size .
|
724 |
' text-align:center;"' .
|
725 |
-
'> '
|
726 |
-
);
|
727 |
|
728 |
// Graphic display ?
|
729 |
if ( wppa_opt( 'rating_display_type' ) == 'graphic' ) {
|
@@ -736,38 +757,56 @@ function wppa_slide_rating_range( $opt ) {
|
|
736 |
}
|
737 |
else for ( $i = '1'; $i <= '10'; $i++ ) $r[$i] = $i;
|
738 |
|
739 |
-
$style = '
|
740 |
$icon = 'star.png';
|
741 |
|
742 |
// Display avg rating
|
743 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
744 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
__( 'Average rating', 'wp-photo-album-plus' ) .
|
746 |
-
'</span> '
|
747 |
-
);
|
748 |
|
749 |
$i = '1';
|
750 |
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
751 |
-
|
752 |
' id="wppa-avg-' . wppa( 'mocc' ) . '-' . $i . '"' .
|
753 |
' class="wppa-avg-'.wppa( 'mocc' ).' no-shadow"' .
|
754 |
-
|
|
|
|
|
|
|
755 |
' src="' . wppa_get_imgdir() . $icon . '"' .
|
756 |
' alt=" ' . $i . '"' .
|
757 |
' title="'.__('Average rating', 'wp-photo-album-plus').': '.$r[$i].'"' .
|
758 |
-
' />'
|
759 |
-
);
|
760 |
$i++;
|
761 |
}
|
762 |
}
|
763 |
|
764 |
-
|
765 |
' id="wppa-filler-'.wppa( 'mocc' ).'"' .
|
766 |
' src="'.wppa_get_imgdir().'transp.png"' .
|
767 |
' alt="f"' .
|
768 |
' style="width:'.wppa_opt( 'ratspacing').'px; height:15px; box-shadow:none; padding:0; margin:0; border:none;"' .
|
769 |
-
' />'
|
770 |
-
);
|
771 |
|
772 |
// Display my rating
|
773 |
// Logged in or don't care
|
@@ -777,7 +816,8 @@ function wppa_slide_rating_range( $opt ) {
|
|
777 |
$pad = round( ( wppa_opt( 'ratspacing' ) - $fs ) / 2 );
|
778 |
if ( $pad < 5 ) $pad = '5';
|
779 |
if ( wppa_opt( 'dislike_mail_every' ) ) {
|
780 |
-
|
|
|
781 |
' id="wppa-dislike-'.wppa( 'mocc' ).'"' .
|
782 |
' title="'.__('Click this if you do NOT like this image!', 'wp-photo-album-plus').'"' .
|
783 |
' src="'.wppa_get_imgdir().'thumbdown.png"' .
|
@@ -788,54 +828,75 @@ function wppa_slide_rating_range( $opt ) {
|
|
788 |
' onmouseout="jQuery(this).stop().fadeTo(100, wppaStarOpacity)"' .
|
789 |
' onclick="if (confirm(\'' .
|
790 |
__('Are you sure you want to mark this image as inappropriate?', 'wp-photo-album-plus') .
|
791 |
-
'\'))
|
792 |
-
|
793 |
-
|
|
|
794 |
if ( wppa_switch( 'dislike_show_count' ) ) {
|
795 |
-
|
796 |
' id="wppa-discount-' . wppa( 'mocc' ) . '"' .
|
797 |
' style="cursor:default"' .
|
798 |
' title="' . __('Number of people who marked this photo as inappropriate', 'wp-photo-album-plus') . '"' .
|
799 |
' >' .
|
800 |
-
'</span>'
|
801 |
-
);
|
802 |
}
|
803 |
}
|
804 |
|
805 |
// Text left if no avg rating
|
806 |
if ( ! wppa_switch( 'show_avg_rating') ) {
|
807 |
-
|
808 |
}
|
809 |
|
810 |
// Display the my rating stars
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
$i = '1';
|
812 |
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
813 |
-
|
814 |
-
' id="wppa-rate-'.wppa( 'mocc' ).'-'.$i.'"' .
|
815 |
' class="wppa-rate-'.wppa( 'mocc' ).' no-shadow"' .
|
816 |
-
|
|
|
|
|
|
|
817 |
' src="'.wppa_get_imgdir().$icon.'"' .
|
818 |
' alt="'.$i.'"' .
|
819 |
' title="'.__('My rating', 'wp-photo-album-plus').': '.$r[$i].'"' .
|
820 |
' onmouseover="wppaFollowMe('.wppa( 'mocc' ).', '.$i.')"' .
|
821 |
' onmouseout="wppaLeaveMe('.wppa( 'mocc' ).', '.$i.')"' .
|
822 |
-
' onclick="
|
823 |
-
|
824 |
-
|
825 |
$i++;
|
826 |
}
|
827 |
|
828 |
// Text right if avg rating diaplayed
|
829 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
830 |
-
|
831 |
}
|
832 |
}
|
833 |
else {
|
834 |
if ( wppa_switch( 'login_links' ) ) {
|
835 |
-
|
836 |
}
|
837 |
else {
|
838 |
-
|
839 |
}
|
840 |
}
|
841 |
}
|
@@ -845,10 +906,9 @@ function wppa_slide_rating_range( $opt ) {
|
|
845 |
|
846 |
// Display avg rating
|
847 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
848 |
-
|
849 |
'<span id="wppa-numrate-avg-'.wppa( 'mocc' ).'"></span>' .
|
850 |
-
' •'
|
851 |
-
);
|
852 |
}
|
853 |
|
854 |
// Display my rating
|
@@ -859,7 +919,8 @@ function wppa_slide_rating_range( $opt ) {
|
|
859 |
$pad = round( ( wppa_opt( 'ratspacing' ) - $fs ) / 2 );
|
860 |
if ( $pad < 5 ) $pad = '5';
|
861 |
if ( wppa_opt( 'dislike_mail_every') ) {
|
862 |
-
|
|
|
863 |
' id="wppa-dislike-imgdiv-'.wppa( 'mocc' ).'"' .
|
864 |
' style="display:inline"' .
|
865 |
' >' .
|
@@ -874,36 +935,38 @@ function wppa_slide_rating_range( $opt ) {
|
|
874 |
' onmouseout="jQuery(this).stop().fadeTo(100, wppaStarOpacity)"' .
|
875 |
' onclick="if (confirm(\'' .
|
876 |
__('Are you sure you want to mark this image as inappropriate?', 'wp-photo-album-plus') .
|
877 |
-
'\'))
|
878 |
' />' .
|
879 |
-
'</div>'
|
880 |
-
|
881 |
if ( wppa_switch( 'dislike_show_count') ) {
|
882 |
-
|
|
|
883 |
' id="wppa-discount-'.wppa( 'mocc' ).'"' .
|
884 |
' style="cursor:default"' .
|
885 |
' title="'.__('Number of people who marked this photo as inappropriate', 'wp-photo-album-plus').'"' .
|
886 |
' >' .
|
887 |
-
'</span>'
|
888 |
-
);
|
889 |
}
|
890 |
}
|
891 |
|
892 |
-
|
893 |
-
|
894 |
}
|
895 |
else {
|
896 |
if ( wppa_switch( 'login_links' ) ) {
|
897 |
-
|
898 |
}
|
899 |
else {
|
900 |
-
|
901 |
}
|
902 |
}
|
903 |
}
|
904 |
|
905 |
// Close rating box
|
906 |
-
|
|
|
|
|
907 |
}
|
908 |
|
909 |
function wppa_slide_filmstrip( $opt = '' ) {
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the slideshow high level functions
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
680 |
' class="wppa-vote-button"' .
|
681 |
' style="margin:0;"' .
|
682 |
' type="button"' .
|
683 |
+
' onclick="wppa'.$ovl.'RateIt('.wppa( 'mocc' ).', 1)"' .
|
684 |
' value="'.wppa_opt( 'vote_button_text' ) . '"' .
|
685 |
' />'
|
686 |
);
|
703 |
|
704 |
function wppa_slide_rating_range( $opt ) {
|
705 |
|
706 |
+
$result = wppa_get_slide_rating_range_html( $opt );
|
707 |
+
wppa_out( $result );
|
708 |
+
}
|
709 |
+
|
710 |
+
function wppa_get_slide_rating_range_html( $opt, $is_lightbox = false, $id = 0 ) {
|
711 |
+
|
712 |
+
if ( $is_lightbox ) {
|
713 |
+
if ( ! wppa_switch( 'ovl_rating' ) ) {
|
714 |
+
return '';
|
715 |
+
}
|
716 |
+
$wait_text = wppa_get_rating_wait_text( $id, wppa_get_user() );
|
717 |
+
if ( $wait_text ) {
|
718 |
+
return '<span style="color:red" >'.$wait_text.'</span>';
|
719 |
+
}
|
720 |
+
if ( wppa_get_photo_item( $photo, 'owner' ) == $user && ! wppa_switch( 'allow_owner_votes' ) ) {
|
721 |
+
return __( 'Sorry, you can not rate your own photos' , 'wp-photo-album-plus');
|
722 |
+
}
|
723 |
+
$ovl = 'Ovl';
|
724 |
+
}
|
725 |
+
else {
|
726 |
+
if ( $opt == 'optional' && ! wppa_switch( 'rating_on' ) ) return '';
|
727 |
+
if ( wppa( 'is_slideonly' ) ) return ''; /* Not when slideonly */
|
728 |
+
$ovl = '';
|
729 |
+
}
|
730 |
+
if ( is_feed() ) return '';
|
731 |
+
|
732 |
+
$result = '';
|
733 |
|
734 |
$fs = wppa_opt( 'fontsize_nav' );
|
735 |
if ( $fs ) $fs += 3; else $fs = '15'; // iconsize = fontsize+3, Default to 15
|
737 |
$size = 'font-size:'.$fs.'px;';
|
738 |
|
739 |
// Open the rating box
|
740 |
+
$result .= '<div' .
|
741 |
' id="wppa-rating-'.wppa( 'mocc' ).'"' .
|
742 |
+
' class="' . ( $ovl ? '' : 'wppa-box wppa-nav wppa-nav-text' ) . '"' .
|
743 |
' style="' .
|
744 |
+
( $ovl ? 'padding:4px;' : __wcs( 'wppa-box' ) . __wcs( 'wppa-nav' ) . __wcs( 'wppa-nav-text' ) ) .
|
|
|
|
|
745 |
$size .
|
746 |
' text-align:center;"' .
|
747 |
+
'> ';
|
|
|
748 |
|
749 |
// Graphic display ?
|
750 |
if ( wppa_opt( 'rating_display_type' ) == 'graphic' ) {
|
757 |
}
|
758 |
else for ( $i = '1'; $i <= '10'; $i++ ) $r[$i] = $i;
|
759 |
|
760 |
+
$style = 'height:'.$fs.'px; margin:0 0 -3px 0; padding:0; box-shadow:none; display:inline;background-color:transparent;';
|
761 |
$icon = 'star.png';
|
762 |
|
763 |
// Display avg rating
|
764 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
765 |
+
|
766 |
+
if ( $ovl ) {
|
767 |
+
$avgrat = wppa_get_rating_by_id( $id, 'nolabel' );
|
768 |
+
$opac = array();
|
769 |
+
$i = '1';
|
770 |
+
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
771 |
+
if ( $avgrat >= $i ) {
|
772 |
+
$opac[$i] = 'opacity:1;';
|
773 |
+
}
|
774 |
+
else if ( $avgrat <= ( $i - '1') ) {
|
775 |
+
$opac[$i] = 'opacity:0.2;';
|
776 |
+
}
|
777 |
+
else {
|
778 |
+
$opac[$i] = 'opacity:'.(0.2 + 0.8 * ($avgrat-$i+'1'));
|
779 |
+
}
|
780 |
+
$i++;
|
781 |
+
}
|
782 |
+
}
|
783 |
+
$result .= '<span id="wppa-avg-rat-' . wppa( 'mocc' ) . '" >' .
|
784 |
__( 'Average rating', 'wp-photo-album-plus' ) .
|
785 |
+
'</span> ';
|
|
|
786 |
|
787 |
$i = '1';
|
788 |
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
789 |
+
$result .= '<img' .
|
790 |
' id="wppa-avg-' . wppa( 'mocc' ) . '-' . $i . '"' .
|
791 |
' class="wppa-avg-'.wppa( 'mocc' ).' no-shadow"' .
|
792 |
+
' style="' .
|
793 |
+
$style .
|
794 |
+
( $ovl ? $opac[$i] : '' ) .
|
795 |
+
'"' .
|
796 |
' src="' . wppa_get_imgdir() . $icon . '"' .
|
797 |
' alt=" ' . $i . '"' .
|
798 |
' title="'.__('Average rating', 'wp-photo-album-plus').': '.$r[$i].'"' .
|
799 |
+
' />';
|
|
|
800 |
$i++;
|
801 |
}
|
802 |
}
|
803 |
|
804 |
+
$result .= '<img' .
|
805 |
' id="wppa-filler-'.wppa( 'mocc' ).'"' .
|
806 |
' src="'.wppa_get_imgdir().'transp.png"' .
|
807 |
' alt="f"' .
|
808 |
' style="width:'.wppa_opt( 'ratspacing').'px; height:15px; box-shadow:none; padding:0; margin:0; border:none;"' .
|
809 |
+
' />';
|
|
|
810 |
|
811 |
// Display my rating
|
812 |
// Logged in or don't care
|
816 |
$pad = round( ( wppa_opt( 'ratspacing' ) - $fs ) / 2 );
|
817 |
if ( $pad < 5 ) $pad = '5';
|
818 |
if ( wppa_opt( 'dislike_mail_every' ) ) {
|
819 |
+
|
820 |
+
$result .= '<img' .
|
821 |
' id="wppa-dislike-'.wppa( 'mocc' ).'"' .
|
822 |
' title="'.__('Click this if you do NOT like this image!', 'wp-photo-album-plus').'"' .
|
823 |
' src="'.wppa_get_imgdir().'thumbdown.png"' .
|
828 |
' onmouseout="jQuery(this).stop().fadeTo(100, wppaStarOpacity)"' .
|
829 |
' onclick="if (confirm(\'' .
|
830 |
__('Are you sure you want to mark this image as inappropriate?', 'wp-photo-album-plus') .
|
831 |
+
'\'))' . ( $ovl ? 'wppaOvlRateIt( \''.wppa_encrypt_photo($id).'\', -1)'
|
832 |
+
: 'wppaRateIt('.wppa( 'mocc' ).', -1)' ) . '"' .
|
833 |
+
' />';
|
834 |
+
|
835 |
if ( wppa_switch( 'dislike_show_count' ) ) {
|
836 |
+
$result .= '<span' .
|
837 |
' id="wppa-discount-' . wppa( 'mocc' ) . '"' .
|
838 |
' style="cursor:default"' .
|
839 |
' title="' . __('Number of people who marked this photo as inappropriate', 'wp-photo-album-plus') . '"' .
|
840 |
' >' .
|
841 |
+
'</span>';
|
|
|
842 |
}
|
843 |
}
|
844 |
|
845 |
// Text left if no avg rating
|
846 |
if ( ! wppa_switch( 'show_avg_rating') ) {
|
847 |
+
$result .= __('My rating', 'wp-photo-album-plus').': ';
|
848 |
}
|
849 |
|
850 |
// Display the my rating stars
|
851 |
+
if ( $ovl ) {
|
852 |
+
$mygrat = wppa_get_my_rating_by_id( $id, 'nolabel' );
|
853 |
+
$opac = array();
|
854 |
+
$i = '1';
|
855 |
+
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
856 |
+
if ( $mygrat >= $i ) {
|
857 |
+
$opac[$i] = 'opacity:1;';
|
858 |
+
}
|
859 |
+
else if ( $avgrat <= ( $i - '1') ) {
|
860 |
+
$opac[$i] = 'opacity:0.2;';
|
861 |
+
}
|
862 |
+
else {
|
863 |
+
$opac[$i] = 'opacity:'.(0.2 + 0.8 * ($mygrat-$i+'1'));
|
864 |
+
}
|
865 |
+
$i++;
|
866 |
+
}
|
867 |
+
}
|
868 |
+
|
869 |
$i = '1';
|
870 |
while ( $i <= wppa_opt( 'rating_max' ) ) {
|
871 |
+
$result .= '<img' .
|
872 |
+
' id="wppa-rate-'.( $ovl ? '' : wppa( 'mocc' ).'-').$i.'"' .
|
873 |
' class="wppa-rate-'.wppa( 'mocc' ).' no-shadow"' .
|
874 |
+
' style="' .
|
875 |
+
$style .
|
876 |
+
( $ovl ? $opac[$i] : '' ) .
|
877 |
+
'"' .
|
878 |
' src="'.wppa_get_imgdir().$icon.'"' .
|
879 |
' alt="'.$i.'"' .
|
880 |
' title="'.__('My rating', 'wp-photo-album-plus').': '.$r[$i].'"' .
|
881 |
' onmouseover="wppaFollowMe('.wppa( 'mocc' ).', '.$i.')"' .
|
882 |
' onmouseout="wppaLeaveMe('.wppa( 'mocc' ).', '.$i.')"' .
|
883 |
+
( $ovl ? ' onclick="wppaOvlRateIt(\''.wppa_encrypt_photo($id).'\', '.$i.')"' :
|
884 |
+
' onclick="wppaRateIt('.wppa( 'mocc' ).', '.$i.')"' ) .
|
885 |
+
' />';
|
886 |
$i++;
|
887 |
}
|
888 |
|
889 |
// Text right if avg rating diaplayed
|
890 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
891 |
+
$result .= ' '.'<span id="wppa-my-rat-'.wppa( 'mocc' ).'">'.__('My rating', 'wp-photo-album-plus').'</span>';
|
892 |
}
|
893 |
}
|
894 |
else {
|
895 |
if ( wppa_switch( 'login_links' ) ) {
|
896 |
+
$result .= sprintf(__( 'You must <a href="%s">login</a> to vote' , 'wp-photo-album-plus'), site_url('wp-login.php', 'login'));
|
897 |
}
|
898 |
else {
|
899 |
+
$result .= __( 'You must login to vote' , 'wp-photo-album-plus');
|
900 |
}
|
901 |
}
|
902 |
}
|
906 |
|
907 |
// Display avg rating
|
908 |
if ( wppa_switch( 'show_avg_rating' ) ) {
|
909 |
+
$result .= __('Average rating', 'wp-photo-album-plus').': ' .
|
910 |
'<span id="wppa-numrate-avg-'.wppa( 'mocc' ).'"></span>' .
|
911 |
+
' •';
|
|
|
912 |
}
|
913 |
|
914 |
// Display my rating
|
919 |
$pad = round( ( wppa_opt( 'ratspacing' ) - $fs ) / 2 );
|
920 |
if ( $pad < 5 ) $pad = '5';
|
921 |
if ( wppa_opt( 'dislike_mail_every') ) {
|
922 |
+
|
923 |
+
$result .= '<div' .
|
924 |
' id="wppa-dislike-imgdiv-'.wppa( 'mocc' ).'"' .
|
925 |
' style="display:inline"' .
|
926 |
' >' .
|
935 |
' onmouseout="jQuery(this).stop().fadeTo(100, wppaStarOpacity)"' .
|
936 |
' onclick="if (confirm(\'' .
|
937 |
__('Are you sure you want to mark this image as inappropriate?', 'wp-photo-album-plus') .
|
938 |
+
'\')) wppa'.$ovl.'RateIt('.wppa( 'mocc' ).', -1)"' .
|
939 |
' />' .
|
940 |
+
'</div>';
|
941 |
+
|
942 |
if ( wppa_switch( 'dislike_show_count') ) {
|
943 |
+
|
944 |
+
$result .= '<span' .
|
945 |
' id="wppa-discount-'.wppa( 'mocc' ).'"' .
|
946 |
' style="cursor:default"' .
|
947 |
' title="'.__('Number of people who marked this photo as inappropriate', 'wp-photo-album-plus').'"' .
|
948 |
' >' .
|
949 |
+
'</span>';
|
|
|
950 |
}
|
951 |
}
|
952 |
|
953 |
+
$result .= ' '.__('My rating:', 'wp-photo-album-plus');
|
954 |
+
$result .= '<span id="wppa-numrate-mine-' . wppa( 'mocc' ) . '" ></span>';
|
955 |
}
|
956 |
else {
|
957 |
if ( wppa_switch( 'login_links' ) ) {
|
958 |
+
$result .= sprintf(__( 'You must <a href="%s">login</a> to vote', 'wp-photo-album-plus' ), site_url( 'wp-login.php', 'login' ) );
|
959 |
}
|
960 |
else {
|
961 |
+
$result .= __( 'You must login to vote', 'wp-photo-album-plus' );
|
962 |
}
|
963 |
}
|
964 |
}
|
965 |
|
966 |
// Close rating box
|
967 |
+
$result .= '</div>';
|
968 |
+
|
969 |
+
return $result;
|
970 |
}
|
971 |
|
972 |
function wppa_slide_filmstrip( $opt = '' ) {
|
wppa-thumbnails.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Various funcions to display a thumbnail image
|
6 |
* Contains all possible frontend thumbnail types
|
7 |
*
|
8 |
-
* Version 6.
|
9 |
*
|
10 |
*/
|
11 |
|
@@ -522,6 +522,7 @@ global $wpdb;
|
|
522 |
$subtextcontheight = $frameheight - max( $imgwidth,$imgheight );
|
523 |
if ( ! wppa_switch( 'align_thumbtext' ) ) $subtextcontheight += $imgmarginbottom;
|
524 |
$result.= '<div' .
|
|
|
525 |
' style="' .
|
526 |
'height:'.$subtextcontheight.'px;' .
|
527 |
'width:'.$framewidth.'px;' .
|
5 |
* Various funcions to display a thumbnail image
|
6 |
* Contains all possible frontend thumbnail types
|
7 |
*
|
8 |
+
* Version 6.5.00
|
9 |
*
|
10 |
*/
|
11 |
|
522 |
$subtextcontheight = $frameheight - max( $imgwidth,$imgheight );
|
523 |
if ( ! wppa_switch( 'align_thumbtext' ) ) $subtextcontheight += $imgmarginbottom;
|
524 |
$result.= '<div' .
|
525 |
+
' class="thumbnail-subtext-frame"' .
|
526 |
' style="' .
|
527 |
'height:'.$subtextcontheight.'px;' .
|
528 |
'width:'.$framewidth.'px;' .
|
wppa-utils.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level utility routines
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -302,6 +302,33 @@ global $wpdb;
|
|
302 |
return $result;
|
303 |
}
|
304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
function wppa_switch( $xkey ) {
|
306 |
global $wppa_opt;
|
307 |
|
@@ -2061,20 +2088,24 @@ function wppa_get_hires_url( $id ) {
|
|
2061 |
if ( $url ) return $url;
|
2062 |
}
|
2063 |
|
2064 |
-
$wp_content = trim( str_replace( site_url(), '', content_url() ), '/' );
|
2065 |
-
|
2066 |
// Try the orientation corrected source url
|
2067 |
$source_path = wppa_get_o1_source_path( $id );
|
2068 |
if ( is_file( $source_path ) ) {
|
2069 |
-
|
2070 |
-
|
|
|
|
|
|
|
2071 |
}
|
2072 |
|
2073 |
// Try the source url
|
2074 |
$source_path = wppa_get_source_path( $id );
|
2075 |
if ( is_file( $source_path ) ) {
|
2076 |
-
|
2077 |
-
|
|
|
|
|
|
|
2078 |
}
|
2079 |
|
2080 |
// The medium res url
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level utility routines
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
302 |
return $result;
|
303 |
}
|
304 |
|
305 |
+
function wppa_get_my_rating_by_id($id, $opt = '') {
|
306 |
+
global $wpdb;
|
307 |
+
|
308 |
+
if ( ! is_numeric($id) || $id < '1' ) wppa_dbg_msg('Invalid arg wppa_get_my_rating_by_id('.$id.', '.$opt.')', 'red');
|
309 |
+
|
310 |
+
$my_ratings = $wpdb->get_results( $wpdb->prepare( "SELECT `value` FROM `" . WPPA_RATING . "` WHERE `photo` = %d AND `user` = %s", $id, wppa_get_user() ), ARRAY_A );
|
311 |
+
if ( $my_ratings ) {
|
312 |
+
$rating = 0;
|
313 |
+
foreach ( $my_ratings as $r ) {
|
314 |
+
$rating += $r['value'];
|
315 |
+
}
|
316 |
+
$rating /= count( $my_ratings );
|
317 |
+
}
|
318 |
+
else {
|
319 |
+
$rating = '';
|
320 |
+
}
|
321 |
+
if ( $rating ) {
|
322 |
+
$i = wppa_opt( 'rating_prec' );
|
323 |
+
$j = $i + '1';
|
324 |
+
$val = sprintf('%'.$j.'.'.$i.'f', $rating);
|
325 |
+
if ($opt == 'nolabel') $result = $val;
|
326 |
+
else $result = sprintf(__('Rating: %s', 'wp-photo-album-plus'), $val);
|
327 |
+
}
|
328 |
+
else $result = '';
|
329 |
+
return $result;
|
330 |
+
}
|
331 |
+
|
332 |
function wppa_switch( $xkey ) {
|
333 |
global $wppa_opt;
|
334 |
|
2088 |
if ( $url ) return $url;
|
2089 |
}
|
2090 |
|
|
|
|
|
2091 |
// Try the orientation corrected source url
|
2092 |
$source_path = wppa_get_o1_source_path( $id );
|
2093 |
if ( is_file( $source_path ) ) {
|
2094 |
+
|
2095 |
+
// The source file is only http reacheable when it is down from wp-content
|
2096 |
+
if ( strpos( $source_path, WPPA_CONTENT_PATH ) !== false ) {
|
2097 |
+
return str_replace( WPPA_CONTENT_PATH, WPPA_CONTENT_URL, $source_path );
|
2098 |
+
}
|
2099 |
}
|
2100 |
|
2101 |
// Try the source url
|
2102 |
$source_path = wppa_get_source_path( $id );
|
2103 |
if ( is_file( $source_path ) ) {
|
2104 |
+
|
2105 |
+
// The source file is only http reacheable when it is down from ABSPATH
|
2106 |
+
if ( strpos( $source_path, WPPA_CONTENT_PATH ) !== false ) {
|
2107 |
+
return str_replace( WPPA_CONTENT_PATH, WPPA_CONTENT_URL, $source_path );
|
2108 |
+
}
|
2109 |
}
|
2110 |
|
2111 |
// The medium res url
|
wppa-widget-admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Pachkage: wp-photo-album-plus
|
4 |
*
|
5 |
* admin sidebar widget
|
6 |
-
* version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -21,6 +21,13 @@ global $wpdb;
|
|
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']));
|
@@ -259,6 +266,22 @@ global $wpdb;
|
|
259 |
<span class="description"><br/><?php _e('Select the content of the subtitle.', 'wp-photo-album-plus'); ?></span>
|
260 |
</td>
|
261 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
</tbody>
|
263 |
</table>
|
264 |
<p>
|
3 |
* Pachkage: wp-photo-album-plus
|
4 |
*
|
5 |
* admin sidebar widget
|
6 |
+
* version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
21 |
echo 'Trying:'.$_REQUEST['wppa-update-check'];
|
22 |
}
|
23 |
|
24 |
+
if ( isset ( $_POST['widget_counter'] ) ) {
|
25 |
+
wppa_update_option( 'wppa_widget_counter', 'yes' );
|
26 |
+
}
|
27 |
+
else {
|
28 |
+
wppa_update_option( 'wppa_widget_counter', 'no' );
|
29 |
+
}
|
30 |
+
if ( isset( $_REQUEST['wppa_potd_counter_link'] ) ) wppa_update_option( 'wppa_potd_counter_link', $_REQUEST['wppa_potd_counter_link'] );
|
31 |
if (isset($_POST['wppa-widgettitle'])) wppa_update_option('wppa_widgettitle', $_POST['wppa-widgettitle']);
|
32 |
if (isset($_POST['wppa-potd-align'])) wppa_update_option('wppa_potd_align', $_POST['wppa-potd-align']);
|
33 |
if (isset($_POST['wppa-widget-albums'])) wppa_update_option('wppa_widget_album', wppa_walbum_sanitize($_POST['wppa-widget-albums']));
|
266 |
<span class="description"><br/><?php _e('Select the content of the subtitle.', 'wp-photo-album-plus'); ?></span>
|
267 |
</td>
|
268 |
</tr>
|
269 |
+
<!-- Counter -->
|
270 |
+
<tr>
|
271 |
+
<th scope="row">
|
272 |
+
<label ><?php _e('Counter:', 'wp-photo-album-plus') ?></label>
|
273 |
+
</th>
|
274 |
+
<td>
|
275 |
+
<?php $counter = wppa_switch( 'widget_counter' ) ?>
|
276 |
+
<input name="widget_counter" type="checkbox" <?php echo ( $counter ? 'checked="checked"' : '' ) ?> />
|
277 |
+
<?php echo ' ' . __( 'Link to:', 'wp-photo-album-plus' ) ?>
|
278 |
+
<select name="wppa_potd_counter_link" >
|
279 |
+
<option value="thumbs" <?php if ( wppa_opt( 'potd_counter_link' ) == 'thumbs' ) echo 'selected="selected"' ?>><?php _e( 'thumbnails', 'wp-photo-album-plus' ) ?></option>
|
280 |
+
<option value="slide" <?php if ( wppa_opt( 'potd_counter_link' ) == 'slide' ) echo 'selected="selected"' ?>><?php _e( 'slideshow', 'wp-photo-album-plus' ) ?></option>
|
281 |
+
</select>
|
282 |
+
|
283 |
+
</td>
|
284 |
+
</tr>
|
285 |
</tbody>
|
286 |
</table>
|
287 |
<p>
|
wppa-wpdb-insert.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that add new records
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -92,6 +92,9 @@ global $wpdb;
|
|
92 |
|
93 |
if ( ! wppa_is_id_free( WPPA_EXIF, $args['id'] ) ) $args['id'] = wppa_nextkey( WPPA_EXIF );
|
94 |
|
|
|
|
|
|
|
95 |
$query = $wpdb->prepare("INSERT INTO `" . WPPA_EXIF . "` ( `id`,
|
96 |
`photo`,
|
97 |
`tag`,
|
@@ -125,6 +128,9 @@ global $wpdb;
|
|
125 |
|
126 |
if ( ! wppa_is_id_free( WPPA_IPTC, $args['id'] ) ) $args['id'] = wppa_nextkey( WPPA_IPTC );
|
127 |
|
|
|
|
|
|
|
128 |
$query = $wpdb->prepare("INSERT INTO `" . WPPA_IPTC . "` ( `id`,
|
129 |
`photo`,
|
130 |
`tag`,
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that add new records
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
92 |
|
93 |
if ( ! wppa_is_id_free( WPPA_EXIF, $args['id'] ) ) $args['id'] = wppa_nextkey( WPPA_EXIF );
|
94 |
|
95 |
+
$args['description'] = sanitize_text_field( $args['description'] );
|
96 |
+
$args['description'] = str_replace( array(chr(0),chr(1),chr(2),chr(3),chr(4),chr(5),chr(6),chr(7)), '', $args['description'] );
|
97 |
+
|
98 |
$query = $wpdb->prepare("INSERT INTO `" . WPPA_EXIF . "` ( `id`,
|
99 |
`photo`,
|
100 |
`tag`,
|
128 |
|
129 |
if ( ! wppa_is_id_free( WPPA_IPTC, $args['id'] ) ) $args['id'] = wppa_nextkey( WPPA_IPTC );
|
130 |
|
131 |
+
$args['description'] = sanitize_text_field( $args['description'] );
|
132 |
+
$args['description'] = str_replace( array(chr(0),chr(1),chr(2),chr(3),chr(4),chr(5),chr(6),chr(7)), '', $args['description'] );
|
133 |
+
|
134 |
$query = $wpdb->prepare("INSERT INTO `" . WPPA_IPTC . "` ( `id`,
|
135 |
`photo`,
|
136 |
`tag`,
|
wppa-wpdb-update.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that update records
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -56,6 +56,9 @@ global $wpdb;
|
|
56 |
case 'crypt':
|
57 |
$doit = true;
|
58 |
break;
|
|
|
|
|
|
|
59 |
|
60 |
default:
|
61 |
wppa_log( 'Error', 'Not implemented in wppa_update_album(): '.$itemname );
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that update records
|
6 |
+
* Version 6.5.00
|
7 |
*
|
8 |
*/
|
9 |
|
56 |
case 'crypt':
|
57 |
$doit = true;
|
58 |
break;
|
59 |
+
case 'custom':
|
60 |
+
$doit = true;
|
61 |
+
break;
|
62 |
|
63 |
default:
|
64 |
wppa_log( 'Error', 'Not implemented in wppa_update_album(): '.$itemname );
|
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.
|
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/
|
@@ -22,8 +22,8 @@ global $wpdb;
|
|
22 |
global $wp_version;
|
23 |
|
24 |
/* WPPA GLOBALS */
|
25 |
-
global $wppa_revno; $wppa_revno = '
|
26 |
-
global $wppa_api_version; $wppa_api_version = '6-
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|
@@ -91,7 +91,8 @@ if ( defined( 'WP_CONTENT_DIR' ) ) {
|
|
91 |
define( 'WPPA_CONTENT_PATH', wppa_flips( WP_CONTENT_DIR ) );
|
92 |
}
|
93 |
|
94 |
-
// In the normal case i use content_url() with the site_url() part replaced by
|
|
|
95 |
else {
|
96 |
define( 'WPPA_CONTENT_PATH',
|
97 |
str_replace( wppa_trimflips( site_url() ) . '/',
|
@@ -99,6 +100,13 @@ else {
|
|
99 |
); // /.../wp-content
|
100 |
}
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
global $wppa_log_file; $wppa_log_file = WPPA_CONTENT_PATH . '/wppa-log.txt';
|
103 |
|
104 |
define( 'WPPA_NONCE' , 'wppa-update-check' );
|
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.5.00
|
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/
|
22 |
global $wp_version;
|
23 |
|
24 |
/* WPPA GLOBALS */
|
25 |
+
global $wppa_revno; $wppa_revno = '6500'; // WPPA db version
|
26 |
+
global $wppa_api_version; $wppa_api_version = '6-5-0-007'; // WPPA software version
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|
91 |
define( 'WPPA_CONTENT_PATH', wppa_flips( WP_CONTENT_DIR ) );
|
92 |
}
|
93 |
|
94 |
+
// In the normal case i use content_url() with the site_url() part replaced by WPPA_ABSPATH,
|
95 |
+
// i.e. ABSPATH with the slashes in the right direction (in case of windows server)
|
96 |
else {
|
97 |
define( 'WPPA_CONTENT_PATH',
|
98 |
str_replace( wppa_trimflips( site_url() ) . '/',
|
100 |
); // /.../wp-content
|
101 |
}
|
102 |
|
103 |
+
// Also define my url to wp-content:
|
104 |
+
define( 'WPPA_CONTENT_URL', content_url() );
|
105 |
+
|
106 |
+
// Now you can convert a path to an url vv form files inside wp-content as follows
|
107 |
+
// $path = str_replace( WPPA_CONTENT_URL, SWPPA_CONTENT_PATH, $url );
|
108 |
+
// $url = str_replace( WPPA_CONTENT_PATH, SWPPA_CONTENT_URL, $path );
|
109 |
+
|
110 |
global $wppa_log_file; $wppa_log_file = WPPA_CONTENT_PATH . '/wppa-log.txt';
|
111 |
|
112 |
define( 'WPPA_NONCE' , 'wppa-update-check' );
|