Version Description
Download this release
Release Info
Developer | opajaap |
Plugin | WP Photo Album Plus |
Version | 6.6.08 |
Comparing to | |
See all releases |
Code changes from version 6.6.07 to 6.6.08
- js/wppa-admin-scripts.js +7 -3
- js/wppa-ajax-front.js +3 -2
- js/wppa-ajax-front.min.js +2 -2
- js/wppa-slideshow.js +37 -26
- js/wppa-slideshow.min.js +11 -10
- js/wppa.js +22 -10
- js/wppa.min.js +4 -3
- languages/wp-photo-album-plus-fr_FR.mo +0 -0
- languages/wp-photo-album-plus-fr_FR.po +435 -430
- readme.txt +21 -2
- wppa-album-admin-autosave.php +2 -2
- wppa-boxes-html.php +1 -2
- wppa-breadcrumb.php +2 -2
- wppa-common-functions.php +2 -2
- wppa-encrypt.php +5 -3
- wppa-import.php +2 -2
- wppa-items.php +2 -2
- wppa-non-admin.php +1 -0
- wppa-photo-admin-autosave.php +77 -7
- wppa-picture.php +12 -8
- wppa-settings-autosave.php +0 -9
- wppa-setup.php +1 -2
- wppa-slideshow.php +5 -5
- wppa-styles.php +3 -3
- wppa-utils.php +8 -3
- wppa-wpdb-insert.php +15 -17
- wppa.php +3 -3
js/wppa-admin-scripts.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* admin-scripts.js */
|
2 |
/* Package: wp-photo-album-plus
|
3 |
/*
|
4 |
-
/* Version 6.6.
|
5 |
/* Various js routines used in admin pages
|
6 |
*/
|
7 |
|
@@ -1207,7 +1207,10 @@ function wppaAjaxUpdatePhotoMonitor() {
|
|
1207 |
}
|
1208 |
|
1209 |
// Do the actual ajax update request
|
1210 |
-
function _wppaAjaxUpdatePhoto( photo, actionslug, value, refresh ) {
|
|
|
|
|
|
|
1211 |
|
1212 |
// Indexes in update matrix
|
1213 |
var phoidx = 0; // photo id
|
@@ -1274,7 +1277,7 @@ function _wppaAjaxUpdatePhoto( photo, actionslug, value, refresh ) {
|
|
1274 |
}
|
1275 |
break;
|
1276 |
case '99': // Photo is gone
|
1277 |
-
jQuery( '#photoitem-' + photo ).html( '<span style="color:red">' + ArrValues[2] + '</span>' );
|
1278 |
break;
|
1279 |
default: // Any error
|
1280 |
jQuery( '#photostatus-' + photo ).html( '<span style="color:red">' + ArrValues[2] + ' (' + ArrValues[1] + ')</span>' );
|
@@ -1961,6 +1964,7 @@ function wppaAjaxUpdateOptionValue(slug, elem, multisel) {
|
|
1961 |
}
|
1962 |
|
1963 |
function wppaEncode(xtext) {
|
|
|
1964 |
var text, result;
|
1965 |
|
1966 |
if (typeof(xtext)=='undefined') return;
|
1 |
/* admin-scripts.js */
|
2 |
/* Package: wp-photo-album-plus
|
3 |
/*
|
4 |
+
/* Version 6.6.08
|
5 |
/* Various js routines used in admin pages
|
6 |
*/
|
7 |
|
1207 |
}
|
1208 |
|
1209 |
// Do the actual ajax update request
|
1210 |
+
function _wppaAjaxUpdatePhoto( photo, actionslug, value, refresh, bef, aft ) {
|
1211 |
+
|
1212 |
+
if ( ! bef ) bef = '';
|
1213 |
+
if ( ! aft ) aft = '';
|
1214 |
|
1215 |
// Indexes in update matrix
|
1216 |
var phoidx = 0; // photo id
|
1277 |
}
|
1278 |
break;
|
1279 |
case '99': // Photo is gone
|
1280 |
+
jQuery( '#photoitem-' + photo ).html( bef+'<span style="color:red">' + ArrValues[2] + '</span>'+aft );
|
1281 |
break;
|
1282 |
default: // Any error
|
1283 |
jQuery( '#photostatus-' + photo ).html( '<span style="color:red">' + ArrValues[2] + ' (' + ArrValues[1] + ')</span>' );
|
1964 |
}
|
1965 |
|
1966 |
function wppaEncode(xtext) {
|
1967 |
+
|
1968 |
var text, result;
|
1969 |
|
1970 |
if (typeof(xtext)=='undefined') return;
|
js/wppa-ajax-front.js
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
// Contains frontend ajax modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
-
var wppaJsAjaxVersion = '6.6.
|
7 |
|
8 |
var wppaRenderAdd = false;
|
9 |
var wppaWaitForCounter = 0;
|
10 |
|
11 |
// The new AJAX rendering routine Async
|
12 |
-
function wppaDoAjaxRender( mocc, ajaxurl, newurl, add, waitfor ) {
|
13 |
|
14 |
if ( parseInt(waitfor) > 0 && waitfor != wppaWaitForCounter ) {
|
15 |
setTimeout( 'wppaDoAjaxRender( '+mocc+', \''+ajaxurl+'\', \''+newurl+'\', \''+add+'\', '+waitfor+' )', 100 );
|
@@ -21,6 +21,7 @@ function wppaDoAjaxRender( mocc, ajaxurl, newurl, add, waitfor ) {
|
|
21 |
// Fix the url
|
22 |
if ( wppaLang != '' ) ajaxurl += '&lang='+wppaLang;
|
23 |
if ( wppaAutoColumnWidth[mocc] ) ajaxurl += '&resp=1';
|
|
|
24 |
|
25 |
// Ajax possible ?
|
26 |
if ( wppaCanAjaxRender ) {
|
3 |
// Contains frontend ajax modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaJsAjaxVersion = '6.6.08';
|
7 |
|
8 |
var wppaRenderAdd = false;
|
9 |
var wppaWaitForCounter = 0;
|
10 |
|
11 |
// The new AJAX rendering routine Async
|
12 |
+
function wppaDoAjaxRender( mocc, ajaxurl, newurl, add, waitfor, addHilite ) {
|
13 |
|
14 |
if ( parseInt(waitfor) > 0 && waitfor != wppaWaitForCounter ) {
|
15 |
setTimeout( 'wppaDoAjaxRender( '+mocc+', \''+ajaxurl+'\', \''+newurl+'\', \''+add+'\', '+waitfor+' )', 100 );
|
21 |
// Fix the url
|
22 |
if ( wppaLang != '' ) ajaxurl += '&lang='+wppaLang;
|
23 |
if ( wppaAutoColumnWidth[mocc] ) ajaxurl += '&resp=1';
|
24 |
+
if ( addHilite && _wppaCurIdx[mocc] && _wppaId[mocc][_wppaCurIdx[mocc]] ) ajaxurl += '&wppa-hilite=' + _wppaId[mocc][_wppaCurIdx[mocc]];
|
25 |
|
26 |
// Ajax possible ?
|
27 |
if ( wppaCanAjaxRender ) {
|
js/wppa-ajax-front.min.js
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
-
var wppaJsAjaxVersion='6.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{if(wppaRenderModal){var opt={modal:true,resizable:true,width:wppaGetContainerWidth(mocc),show:{effect:"fadeIn",duration:400},closeText:"",};jQuery('#wppa-modal-container-'+mocc).html(result).dialog(opt).dialog("open");jQuery('.ui-dialog').css({boxShadow:'0px 0px 5px 5px #aaaaaa',borderRadius:wppaBoxRadius+'px',padding:'8px',backgroundColor:wppaModalBgColor,boxSizing:'content-box',zIndex:100000,});jQuery('.ui-dialog-titlebar').css({lineHeight:'0px',height:'32px',});jQuery('.ui-button').css({backgroundImage:wppaModalQuitImg,padding:0,position:'absolute',right:'8px',top:'8px',width:'16px',height:'16px',});jQuery('.ui-button').attr('title','Close');jQuery('.ui-button').on('click',function(){_wppaStop(mocc);});}
|
10 |
else{jQuery('#wppa-container-'+mocc).html(result);}}
|
11 |
if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaJsAjaxVersion='6.6.08';var wppaRenderAdd=false;var wppaWaitForCounter=0;function wppaDoAjaxRender(mocc,ajaxurl,newurl,add,waitfor,addHilite){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(addHilite&&_wppaCurIdx[mocc]&&_wppaId[mocc][_wppaCurIdx[mocc]])ajaxurl+='&wppa-hilite='+_wppaId[mocc][_wppaCurIdx[mocc]];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{if(wppaRenderModal){var opt={modal:true,resizable:true,width:wppaGetContainerWidth(mocc),show:{effect:"fadeIn",duration:400},closeText:"",};jQuery('#wppa-modal-container-'+mocc).html(result).dialog(opt).dialog("open");jQuery('.ui-dialog').css({boxShadow:'0px 0px 5px 5px #aaaaaa',borderRadius:wppaBoxRadius+'px',padding:'8px',backgroundColor:wppaModalBgColor,boxSizing:'content-box',zIndex:100000,});jQuery('.ui-dialog-titlebar').css({lineHeight:'0px',height:'32px',});jQuery('.ui-button').css({backgroundImage:wppaModalQuitImg,padding:0,position:'absolute',right:'8px',top:'8px',width:'16px',height:'16px',});jQuery('.ui-button').attr('title','Close');jQuery('.ui-button').on('click',function(){_wppaStop(mocc);});}
|
10 |
else{jQuery('#wppa-container-'+mocc).html(result);}}
|
11 |
if(wppaCanPushState&&wppaUpdateAddressLine){wppaHis++;try{history.pushState({page:wppaHis,occur:mocc,type:'html',html:result},"",newurl);wppaConsoleLog('Ajax rendering: History stack pushed','force');}
|
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.6.
|
7 |
|
8 |
// This is an entrypoint to load the slide data
|
9 |
function wppaStoreSlideInfo(
|
@@ -349,8 +349,8 @@ function _wppaNextSlide( mocc, mode ) {
|
|
349 |
// Stop any playing video
|
350 |
wppaStopVideo( mocc );
|
351 |
|
352 |
-
// Stop
|
353 |
-
wppaStopAudio();
|
354 |
|
355 |
// Paused??
|
356 |
if ( 'auto' == mode ) {
|
@@ -813,7 +813,7 @@ function _wppaNextSlide_5( mocc ) {
|
|
813 |
|
814 |
_wppaDoAutocol(mocc);
|
815 |
|
816 |
-
wppaStopAudio();
|
817 |
|
818 |
if ( wppaSlideAudioStart ) {
|
819 |
var elms = jQuery( '.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc );
|
@@ -1167,24 +1167,35 @@ function _wppaAdjustFilmstrip( mocc ) {
|
|
1167 |
if ( _wppaCurIdx[mocc] != -1 ) {
|
1168 |
var from = _wppaCurIdx[mocc] - 10; if ( from < 0 ) from = 0;
|
1169 |
var to = _wppaCurIdx[mocc] + 10; if ( to > _wppaSlides[mocc].length ) to = _wppaSlides[mocc].length;
|
1170 |
-
var index =
|
1171 |
-
while ( index
|
|
|
1172 |
var html = jQuery( '#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc ).html();
|
|
|
1173 |
if ( html ) {
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
else if ( wppaFilmThumbTitle != '' ) {
|
1182 |
-
jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'title', wppaFilmThumbTitle );
|
1183 |
-
}
|
1184 |
-
else {
|
1185 |
-
jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'title', _wppaNames[mocc][index] );
|
1186 |
}
|
1187 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1188 |
}
|
1189 |
index++;
|
1190 |
}
|
@@ -1774,10 +1785,10 @@ function _wppaShowMetaData( mocc, key ) {
|
|
1774 |
jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'none' );
|
1775 |
}
|
1776 |
// Fade the browse arrows in
|
1777 |
-
if (
|
1778 |
-
jQuery( '.wppa-
|
1779 |
-
if (
|
1780 |
-
jQuery( '.wppa-
|
1781 |
// SM box
|
1782 |
if ( wppaShareHideWhenRunning ) {
|
1783 |
jQuery( '#wppa-share-'+mocc ).css( 'display', '' );
|
@@ -1801,8 +1812,8 @@ function _wppaShowMetaData( mocc, key ) {
|
|
1801 |
// Show the comment footer
|
1802 |
jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'block' );
|
1803 |
// Fade the browse arrows out
|
1804 |
-
// jQuery( '.wppa-
|
1805 |
-
// jQuery( '.wppa-
|
1806 |
wppaFotomotoHide( mocc );
|
1807 |
}
|
1808 |
}
|
@@ -1841,8 +1852,8 @@ function _wppaShowMetaData( mocc, key ) {
|
|
1841 |
// Hide counter
|
1842 |
jQuery( "#counter-"+mocc ).css( 'visibility', 'hidden' );
|
1843 |
// Fade the browse arrows out
|
1844 |
-
jQuery( '.wppa-
|
1845 |
-
jQuery( '.wppa-
|
1846 |
// Hide iptc
|
1847 |
jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'hidden' );
|
1848 |
jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'hidden' );
|
3 |
// Contains slideshow modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaJsSlideshowVersion = '6.6.08';
|
7 |
|
8 |
// This is an entrypoint to load the slide data
|
9 |
function wppaStoreSlideInfo(
|
349 |
// Stop any playing video
|
350 |
wppaStopVideo( mocc );
|
351 |
|
352 |
+
// Stop playing audio
|
353 |
+
wppaStopAudio( mocc );
|
354 |
|
355 |
// Paused??
|
356 |
if ( 'auto' == mode ) {
|
813 |
|
814 |
_wppaDoAutocol(mocc);
|
815 |
|
816 |
+
wppaStopAudio( mocc );
|
817 |
|
818 |
if ( wppaSlideAudioStart ) {
|
819 |
var elms = jQuery( '.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc );
|
1167 |
if ( _wppaCurIdx[mocc] != -1 ) {
|
1168 |
var from = _wppaCurIdx[mocc] - 10; if ( from < 0 ) from = 0;
|
1169 |
var to = _wppaCurIdx[mocc] + 10; if ( to > _wppaSlides[mocc].length ) to = _wppaSlides[mocc].length;
|
1170 |
+
var index = 0;
|
1171 |
+
while ( index < _wppaSlides[mocc].length ) {
|
1172 |
+
|
1173 |
var html = jQuery( '#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc ).html();
|
1174 |
+
|
1175 |
if ( html ) {
|
1176 |
+
|
1177 |
+
// Remove comment-outs
|
1178 |
+
if ( from <= index <= to ) {
|
1179 |
+
if ( html.search( '<!--' ) != -1 ) {
|
1180 |
+
html = html.replace( '<!--', '' );
|
1181 |
+
html = html.replace( '-->', '' );
|
1182 |
+
jQuery( '#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc ).html( html );
|
|
|
|
|
|
|
|
|
|
|
1183 |
}
|
1184 |
}
|
1185 |
+
|
1186 |
+
// Fit title in
|
1187 |
+
if ( jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'data-title' ) != '' ) {
|
1188 |
+
jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'title', jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'data-title' ) );
|
1189 |
+
jQuery( '#wppa-pre-'+index+'-'+mocc ).attr( 'title', jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'data-title' ) );
|
1190 |
+
}
|
1191 |
+
else if ( wppaFilmThumbTitle != '' && _wppaCurIdx[mocc] == index ) {
|
1192 |
+
jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'title', wppaFilmThumbTitle );
|
1193 |
+
jQuery( '#wppa-pre-'+index+'-'+mocc ).attr( 'title', wppaFilmThumbTitle );
|
1194 |
+
}
|
1195 |
+
else {
|
1196 |
+
jQuery( '#wppa-film-'+index+'-'+mocc ).attr( 'title', wppaClickToView + ' ' + _wppaNames[mocc][index] );
|
1197 |
+
jQuery( '#wppa-pre-'+index+'-'+mocc ).attr( 'title', wppaClickToView + ' ' + _wppaNames[mocc][index] );
|
1198 |
+
}
|
1199 |
}
|
1200 |
index++;
|
1201 |
}
|
1785 |
jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'none' );
|
1786 |
}
|
1787 |
// Fade the browse arrows in
|
1788 |
+
if ( _wppaCurIdx[mocc] != 0 )
|
1789 |
+
jQuery( '.wppa-first-'+mocc ).show(); // css( 'visibility', 'visible' ); // fadeIn( 300 );
|
1790 |
+
if ( _wppaCurIdx[mocc] != ( _wppaSlides[mocc].length - 1 ) )
|
1791 |
+
jQuery( '.wppa-last-'+mocc ).show(); //css( 'visibility', 'visible' ); // fadeIn( 300 );
|
1792 |
// SM box
|
1793 |
if ( wppaShareHideWhenRunning ) {
|
1794 |
jQuery( '#wppa-share-'+mocc ).css( 'display', '' );
|
1812 |
// Show the comment footer
|
1813 |
jQuery( '#wppa-comfooter-wrap-'+mocc ).css( 'display', 'block' );
|
1814 |
// Fade the browse arrows out
|
1815 |
+
// jQuery( '.wppa-first-'+mocc ).fadeOut( 300 );
|
1816 |
+
// jQuery( '.wppa-last-'+mocc ).fadeOut( 300 );
|
1817 |
wppaFotomotoHide( mocc );
|
1818 |
}
|
1819 |
}
|
1852 |
// Hide counter
|
1853 |
jQuery( "#counter-"+mocc ).css( 'visibility', 'hidden' );
|
1854 |
// Fade the browse arrows out
|
1855 |
+
jQuery( '.wppa-first-'+mocc ).hide(); // css( 'visibility', 'hidden' ); // fadeOut( 300 );
|
1856 |
+
jQuery( '.wppa-last-'+mocc ).hide(); // css( 'visibility', 'hidden' ); // fadeOut( 300 );
|
1857 |
// Hide iptc
|
1858 |
jQuery( "#iptccontent-"+mocc ).css( 'visibility', 'hidden' );
|
1859 |
jQuery( "#exifcontent-"+mocc ).css( 'visibility', 'hidden' );
|
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.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="'+imagealt+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}
|
@@ -43,7 +43,7 @@ else{_wppaGoto(mocc,idx);}}
|
|
43 |
function wppaGotoRunning(mocc,idx){_wppaDidGoto[mocc]=true;_wppaGotoRunning(mocc,idx);}
|
44 |
function wppaValidateComment(mocc){return _wppaValidateComment(mocc);}
|
45 |
function _wppaNextSlide(mocc,mode){var fg=_wppaFg[mocc];var bg=1-fg;if((wppaVideoPlaying[mocc]||wppaAudioPlaying[mocc])&&_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', \''+mode+'\' )',500);return;}
|
46 |
-
wppaStopVideo(mocc);wppaStopAudio();if('auto'==mode){if(wppaSlidePause[mocc]){jQuery('#theimg'+fg+'-'+mocc).attr("title",wppaSlidePause[mocc]);jQuery('#slide_frame-'+mocc).attr("title",wppaSlidePause[mocc]);setTimeout('_wppaNextSlide( '+mocc+', "auto" )',250);return;}}
|
47 |
else{jQuery('#slide_frame-'+mocc).removeAttr("title");}
|
48 |
if(!_wppaSSRuns[mocc]&&'auto'==mode)return;if(!_wppaSlides[mocc])return;if(_wppaSlides[mocc].length<2&&!_wppaFirst[mocc])return;if(!_wppaSSRuns[mocc]&&'reset'==mode){_wppaSSRuns[mocc]=true;__wppaOverruleRun=false;}
|
49 |
_wppaVoteInProgress=false;_wppaIsBusy[mocc]=true;if(_wppaSSRuns[mocc])_wppaShowMetaData(mocc,'hide');if(_wppaSSRuns[mocc]){_wppaNxtIdx[mocc]=_wppaCurIdx[mocc]+1;if(_wppaNxtIdx[mocc]==_wppaSlides[mocc].length)_wppaNxtIdx[mocc]=0;}
|
@@ -79,7 +79,7 @@ if(typeof(wppaQRUpdate)!='undefined'){wppaQRUpdate(_wppaShareUrl[mocc][_wppaCurI
|
|
79 |
if(!_wppaSSRuns[mocc]){if(_wppaSlides[mocc].length>1){wppaPushStateSlide(mocc,_wppaCurIdx[mocc],visurl);}}}
|
80 |
if(_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', "auto" )',wppaGetSlideshowTimeout(mocc));}}
|
81 |
jQuery(document).trigger('glossaryTooltipReady');_wppaDidGoto[mocc]=false;_wppaIsBusy[mocc]=false;if(!wppaIsMini[mocc]){_bumpViewCount(_wppaId[mocc][_wppaCurIdx[mocc]]);}
|
82 |
-
_wppaDoAutocol(mocc);wppaStopAudio();if(wppaSlideAudioStart){var elms=jQuery('.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc);if(elms.length>0){var audio=elms[elms.length-1];if(audio){if(!wppaAudioPlaying[mocc]){audio.play();}}}}}
|
83 |
function wppaFormatSlide(mocc){var imgid='theimg'+_wppaFg[mocc]+'-'+mocc;var slideid='theslide'+_wppaFg[mocc]+'-'+mocc;var frameid='slide_frame-'+mocc;var contw=wppaColWidth[mocc];var elm=document.getElementById(imgid);var audios=jQuery('.wppa-audio-'+mocc);if(!elm)return;if(typeof(contw)=='undefined'||contw==0){contw=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=contw;}
|
84 |
var natwidth=elm.naturalWidth;if(typeof(natwidth)=='undefined')natwidth=parseInt(elm.style.maxWidth);var natheight=elm.naturalHeight;if(typeof(natheight)=='undefined')natheight=parseInt(elm.style.maxHeight);var aspect=wppaAspectRatio[mocc];var fullsize=wppaFullSize[mocc];var delta=wppaFullFrameDelta[mocc];var ponly=wppaPortraitOnly[mocc];var valign=wppaFullValign[mocc];if(typeof(valign)=='undefined')valign='none';var halign=wppaFullHalign[mocc];if(typeof(halign)=='undefined')halign='none';var stretch=wppaStretch;var imgw,imgh;var margl,margt;var slidew,slideh;var framew,frameh;if(ponly){imgw=contw-delta;imgh=parseInt(imgw*natheight/natwidth);margl=0;margt=0;slidew=contw;slideh=imgh+delta;framew=contw;frameh=slideh;jQuery('#'+frameid).css({width:framew,height:frameh});jQuery('#'+slideid).css({width:slidew,height:slideh});jQuery('#'+imgid).css({width:imgw,height:imgh});}
|
85 |
else{framew=contw;if(fullsize<contw){framew=fullsize;}
|
@@ -121,9 +121,10 @@ _wppaAudioHtml[mocc][idx]+'</audio>';}
|
|
121 |
theHtml=theHtml.replace(/title=""/g,'');jQuery("#theslide"+bgfg+"-"+mocc).html(theHtml);}
|
122 |
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);}
|
123 |
else{_wppaFilmNoMove[mocc]=false;}
|
124 |
-
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=
|
125 |
-
|
126 |
-
else{jQuery('#wppa-film-'+index+'-'+mocc).attr('title',
|
|
|
127 |
index++;}}
|
128 |
jQuery('#wppa-film-'+_wppaCurIdx[mocc]+'-'+mocc).addClass('wppa-filmthumb-active');}
|
129 |
function _wppaNext(mocc){if(!wppaSlideWrap&&_wppaCurIdx[mocc]==(_wppaSlides[mocc].length-1))return;_wppaNxtIdx[mocc]=_wppaCurIdx[mocc]+1;if(_wppaNxtIdx[mocc]==_wppaSlides[mocc].length)_wppaNxtIdx[mocc]=0;_wppaNextSlide(mocc,0);}
|
@@ -197,15 +198,15 @@ if(wppaIsMobile){jQuery('.ubb-'+mocc).stop().fadeTo(200,1).fadeTo(1000,0);jQuery
|
|
197 |
wppaGotoKeepState(mocc,idx);break;default:alert('Unimplemented instruction: '+act+' on: '+elm);}}
|
198 |
function wppaOpenComments(mocc){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-comtable-wrap-'+mocc).css('display','block');jQuery('#wppa-comform-wrap-'+mocc).css('display','block');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','none');wppaColWidth[mocc]=0;setTimeout('_wppaDoAutocol( '+mocc+' )',100);}
|
199 |
function _wppaShowMetaData(mocc,key){if(!_wppaSSRuns[mocc]&&!__wppaOverruleRun){if(key=='show'){if(wppaAutoOpenComments){jQuery('#wppa-comtable-wrap-'+mocc).css('display','block');jQuery('#wppa-comform-wrap-'+mocc).css('display','block');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','none');}
|
200 |
-
if(
|
201 |
-
jQuery('.wppa-
|
202 |
-
jQuery('.wppa-
|
203 |
wppaFotomotoToolbar(mocc,_wppaHiresUrl[mocc][_wppaCurIdx[mocc]]);}
|
204 |
else{jQuery('#wppa-comtable-wrap-'+mocc).css('display','none');jQuery('#wppa-comform-wrap-'+mocc).css('display','none');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','block');wppaFotomotoHide(mocc);}}
|
205 |
else{if(key=='show'){if(!wppaFotomotoHideWhenRunning)wppaFotomotoToolbar(mocc,_wppaHiresUrl[mocc][_wppaCurIdx[mocc]]);}
|
206 |
else{if(wppaShareHideWhenRunning){jQuery('#wppa-share-'+mocc).css('display','none');}}}
|
207 |
if(key=='show'){jQuery("#imagedesc-"+mocc).css('visibility','visible');jQuery("#imagetitle-"+mocc).css('visibility','visible');jQuery("#counter-"+mocc).css('visibility','visible');jQuery("#iptccontent-"+mocc).css('visibility','visible');jQuery("#exifcontent-"+mocc).css('visibility','visible');}
|
208 |
-
else{jQuery("#counter-"+mocc).css('visibility','hidden');jQuery('.wppa-
|
209 |
function wppaGetSlideshowTimeout(mocc){var time;if(_wppaTimeOut[mocc]=='random'){var min=2*wppaAnimationSpeed;var max=7*wppaAnimationSpeed;time=Math.floor(Math.random()*(max-min+1))+min;}
|
210 |
else{time=_wppaTimeOut[mocc];}
|
211 |
return time;}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaJsSlideshowVersion='6.6.08';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,imagealt,posterurl){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]=[];_wppaImageAlt[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="'+imagealt+'" class="theimg theimg-'+mocc+' big" ';if(wppaSlideVideoStart&&wppaLightBox[mocc]==''){_wppaSlides[mocc][id]+=' autoplay ';}
|
43 |
function wppaGotoRunning(mocc,idx){_wppaDidGoto[mocc]=true;_wppaGotoRunning(mocc,idx);}
|
44 |
function wppaValidateComment(mocc){return _wppaValidateComment(mocc);}
|
45 |
function _wppaNextSlide(mocc,mode){var fg=_wppaFg[mocc];var bg=1-fg;if((wppaVideoPlaying[mocc]||wppaAudioPlaying[mocc])&&_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', \''+mode+'\' )',500);return;}
|
46 |
+
wppaStopVideo(mocc);wppaStopAudio(mocc);if('auto'==mode){if(wppaSlidePause[mocc]){jQuery('#theimg'+fg+'-'+mocc).attr("title",wppaSlidePause[mocc]);jQuery('#slide_frame-'+mocc).attr("title",wppaSlidePause[mocc]);setTimeout('_wppaNextSlide( '+mocc+', "auto" )',250);return;}}
|
47 |
else{jQuery('#slide_frame-'+mocc).removeAttr("title");}
|
48 |
if(!_wppaSSRuns[mocc]&&'auto'==mode)return;if(!_wppaSlides[mocc])return;if(_wppaSlides[mocc].length<2&&!_wppaFirst[mocc])return;if(!_wppaSSRuns[mocc]&&'reset'==mode){_wppaSSRuns[mocc]=true;__wppaOverruleRun=false;}
|
49 |
_wppaVoteInProgress=false;_wppaIsBusy[mocc]=true;if(_wppaSSRuns[mocc])_wppaShowMetaData(mocc,'hide');if(_wppaSSRuns[mocc]){_wppaNxtIdx[mocc]=_wppaCurIdx[mocc]+1;if(_wppaNxtIdx[mocc]==_wppaSlides[mocc].length)_wppaNxtIdx[mocc]=0;}
|
79 |
if(!_wppaSSRuns[mocc]){if(_wppaSlides[mocc].length>1){wppaPushStateSlide(mocc,_wppaCurIdx[mocc],visurl);}}}
|
80 |
if(_wppaSSRuns[mocc]){setTimeout('_wppaNextSlide( '+mocc+', "auto" )',wppaGetSlideshowTimeout(mocc));}}
|
81 |
jQuery(document).trigger('glossaryTooltipReady');_wppaDidGoto[mocc]=false;_wppaIsBusy[mocc]=false;if(!wppaIsMini[mocc]){_bumpViewCount(_wppaId[mocc][_wppaCurIdx[mocc]]);}
|
82 |
+
_wppaDoAutocol(mocc);wppaStopAudio(mocc);if(wppaSlideAudioStart){var elms=jQuery('.wppa-audio-'+_wppaId[mocc][_wppaCurIdx[mocc]]+'-'+mocc);if(elms.length>0){var audio=elms[elms.length-1];if(audio){if(!wppaAudioPlaying[mocc]){audio.play();}}}}}
|
83 |
function wppaFormatSlide(mocc){var imgid='theimg'+_wppaFg[mocc]+'-'+mocc;var slideid='theslide'+_wppaFg[mocc]+'-'+mocc;var frameid='slide_frame-'+mocc;var contw=wppaColWidth[mocc];var elm=document.getElementById(imgid);var audios=jQuery('.wppa-audio-'+mocc);if(!elm)return;if(typeof(contw)=='undefined'||contw==0){contw=wppaGetContainerWidth(mocc);wppaColWidth[mocc]=contw;}
|
84 |
var natwidth=elm.naturalWidth;if(typeof(natwidth)=='undefined')natwidth=parseInt(elm.style.maxWidth);var natheight=elm.naturalHeight;if(typeof(natheight)=='undefined')natheight=parseInt(elm.style.maxHeight);var aspect=wppaAspectRatio[mocc];var fullsize=wppaFullSize[mocc];var delta=wppaFullFrameDelta[mocc];var ponly=wppaPortraitOnly[mocc];var valign=wppaFullValign[mocc];if(typeof(valign)=='undefined')valign='none';var halign=wppaFullHalign[mocc];if(typeof(halign)=='undefined')halign='none';var stretch=wppaStretch;var imgw,imgh;var margl,margt;var slidew,slideh;var framew,frameh;if(ponly){imgw=contw-delta;imgh=parseInt(imgw*natheight/natwidth);margl=0;margt=0;slidew=contw;slideh=imgh+delta;framew=contw;frameh=slideh;jQuery('#'+frameid).css({width:framew,height:frameh});jQuery('#'+slideid).css({width:slidew,height:slideh});jQuery('#'+imgid).css({width:imgw,height:imgh});}
|
85 |
else{framew=contw;if(fullsize<contw){framew=fullsize;}
|
121 |
theHtml=theHtml.replace(/title=""/g,'');jQuery("#theslide"+bgfg+"-"+mocc).html(theHtml);}
|
122 |
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);}
|
123 |
else{_wppaFilmNoMove[mocc]=false;}
|
124 |
+
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=0;while(index<_wppaSlides[mocc].length){var html=jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html();if(html){if(from<=index<=to){if(html.search('<!--')!=-1){html=html.replace('<!--','');html=html.replace('-->','');jQuery('#film_wppatnf_'+_wppaId[mocc][index]+'_'+mocc).html(html);}}
|
125 |
+
if(jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title')!=''){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title'));jQuery('#wppa-pre-'+index+'-'+mocc).attr('title',jQuery('#wppa-film-'+index+'-'+mocc).attr('data-title'));}
|
126 |
+
else if(wppaFilmThumbTitle!=''&&_wppaCurIdx[mocc]==index){jQuery('#wppa-film-'+index+'-'+mocc).attr('title',wppaFilmThumbTitle);jQuery('#wppa-pre-'+index+'-'+mocc).attr('title',wppaFilmThumbTitle);}
|
127 |
+
else{jQuery('#wppa-film-'+index+'-'+mocc).attr('title',wppaClickToView+' '+_wppaNames[mocc][index]);jQuery('#wppa-pre-'+index+'-'+mocc).attr('title',wppaClickToView+' '+_wppaNames[mocc][index]);}}
|
128 |
index++;}}
|
129 |
jQuery('#wppa-film-'+_wppaCurIdx[mocc]+'-'+mocc).addClass('wppa-filmthumb-active');}
|
130 |
function _wppaNext(mocc){if(!wppaSlideWrap&&_wppaCurIdx[mocc]==(_wppaSlides[mocc].length-1))return;_wppaNxtIdx[mocc]=_wppaCurIdx[mocc]+1;if(_wppaNxtIdx[mocc]==_wppaSlides[mocc].length)_wppaNxtIdx[mocc]=0;_wppaNextSlide(mocc,0);}
|
198 |
wppaGotoKeepState(mocc,idx);break;default:alert('Unimplemented instruction: '+act+' on: '+elm);}}
|
199 |
function wppaOpenComments(mocc){if(_wppaSSRuns[mocc])_wppaStop(mocc);jQuery('#wppa-comtable-wrap-'+mocc).css('display','block');jQuery('#wppa-comform-wrap-'+mocc).css('display','block');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','none');wppaColWidth[mocc]=0;setTimeout('_wppaDoAutocol( '+mocc+' )',100);}
|
200 |
function _wppaShowMetaData(mocc,key){if(!_wppaSSRuns[mocc]&&!__wppaOverruleRun){if(key=='show'){if(wppaAutoOpenComments){jQuery('#wppa-comtable-wrap-'+mocc).css('display','block');jQuery('#wppa-comform-wrap-'+mocc).css('display','block');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','none');}
|
201 |
+
if(_wppaCurIdx[mocc]!=0)
|
202 |
+
jQuery('.wppa-first-'+mocc).show();if(_wppaCurIdx[mocc]!=(_wppaSlides[mocc].length-1))
|
203 |
+
jQuery('.wppa-last-'+mocc).show();if(wppaShareHideWhenRunning){jQuery('#wppa-share-'+mocc).css('display','');}
|
204 |
wppaFotomotoToolbar(mocc,_wppaHiresUrl[mocc][_wppaCurIdx[mocc]]);}
|
205 |
else{jQuery('#wppa-comtable-wrap-'+mocc).css('display','none');jQuery('#wppa-comform-wrap-'+mocc).css('display','none');jQuery('#wppa-comfooter-wrap-'+mocc).css('display','block');wppaFotomotoHide(mocc);}}
|
206 |
else{if(key=='show'){if(!wppaFotomotoHideWhenRunning)wppaFotomotoToolbar(mocc,_wppaHiresUrl[mocc][_wppaCurIdx[mocc]]);}
|
207 |
else{if(wppaShareHideWhenRunning){jQuery('#wppa-share-'+mocc).css('display','none');}}}
|
208 |
if(key=='show'){jQuery("#imagedesc-"+mocc).css('visibility','visible');jQuery("#imagetitle-"+mocc).css('visibility','visible');jQuery("#counter-"+mocc).css('visibility','visible');jQuery("#iptccontent-"+mocc).css('visibility','visible');jQuery("#exifcontent-"+mocc).css('visibility','visible');}
|
209 |
+
else{jQuery("#counter-"+mocc).css('visibility','hidden');jQuery('.wppa-first-'+mocc).hide();jQuery('.wppa-last-'+mocc).hide();jQuery("#iptccontent-"+mocc).css('visibility','hidden');jQuery("#exifcontent-"+mocc).css('visibility','hidden');}}
|
210 |
function wppaGetSlideshowTimeout(mocc){var time;if(_wppaTimeOut[mocc]=='random'){var min=2*wppaAnimationSpeed;var max=7*wppaAnimationSpeed;time=Math.floor(Math.random()*(max-min+1))+min;}
|
211 |
else{time=_wppaTimeOut[mocc];}
|
212 |
return time;}
|
js/wppa.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
//
|
3 |
// conatins common vars and functions
|
4 |
//
|
5 |
-
var wppaJsVersion = '6.6.
|
6 |
|
7 |
// Important notice:
|
8 |
// All external vars that may be given a value in wppa-non-admin.php must be declared here and not in other front-end js files!!
|
@@ -91,6 +91,7 @@ var wppaArtMonkyLink = 'none';
|
|
91 |
var wppaAutoOpenComments = false;
|
92 |
var wppaUpdateAddressLine = false;
|
93 |
var wppaFilmThumbTitle = '';
|
|
|
94 |
var wppaUploadUrl = '';
|
95 |
var wppaVoteForMe = '';
|
96 |
var wppaVotedForMe = '';
|
@@ -356,18 +357,29 @@ function wppaStopVideo( mocc ) {
|
|
356 |
}
|
357 |
}
|
358 |
|
359 |
-
// Stop
|
360 |
-
function wppaStopAudio() {
|
361 |
|
362 |
-
|
|
|
|
|
|
|
|
|
|
|
363 |
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
}
|
370 |
-
i++;
|
371 |
}
|
372 |
}
|
373 |
}
|
2 |
//
|
3 |
// conatins common vars and functions
|
4 |
//
|
5 |
+
var wppaJsVersion = '6.6.08';
|
6 |
|
7 |
// Important notice:
|
8 |
// All external vars that may be given a value in wppa-non-admin.php must be declared here and not in other front-end js files!!
|
91 |
var wppaAutoOpenComments = false;
|
92 |
var wppaUpdateAddressLine = false;
|
93 |
var wppaFilmThumbTitle = '';
|
94 |
+
var wppaClickToView = '';
|
95 |
var wppaUploadUrl = '';
|
96 |
var wppaVoteForMe = '';
|
97 |
var wppaVotedForMe = '';
|
357 |
}
|
358 |
}
|
359 |
|
360 |
+
// Stop audio
|
361 |
+
function wppaStopAudio( mocc ) {
|
362 |
|
363 |
+
// This mocc only?
|
364 |
+
if ( typeof( mocc ) == 'number' ) {
|
365 |
+
if ( jQuery( '#audio-' + mocc ).pause ) {
|
366 |
+
jQuery( '#audio-' + mocc ).pause();
|
367 |
+
}
|
368 |
+
}
|
369 |
|
370 |
+
// All audio
|
371 |
+
else {
|
372 |
+
|
373 |
+
var items = jQuery( 'audio' );
|
374 |
+
|
375 |
+
if ( items.length > 0 ) {
|
376 |
+
var i = 0;
|
377 |
+
while ( i < items.length ) {
|
378 |
+
if ( jQuery( items[i] ).attr( 'data-from' ) == 'wppa' ) {
|
379 |
+
items[i].pause();
|
380 |
+
}
|
381 |
+
i++;
|
382 |
}
|
|
|
383 |
}
|
384 |
}
|
385 |
}
|
js/wppa.min.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
// conatins common vars and functions
|
4 |
//
|
5 |
|
6 |
-
var wppaJsVersion='6.6.
|
7 |
if(!autoOnly){_wppaTextDelay=wppaAnimationSpeed;if(wppaFadeInAfterFadeOut)_wppaTextDelay*=2;if(anyAutocol){jQuery(window).resize(function(){for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}});}}}
|
8 |
jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax){wppaCanAjaxRender=true;}
|
9 |
if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
|
@@ -11,8 +11,9 @@ wppaCanPushState=true;}});function wppaUpdateLightboxes(){if(typeof(wppaInitOver
|
|
11 |
if(typeof(myLightbox)!='undefined'){if(typeof(myLightbox.updateImageList)=='function'){myLightbox.updateImageList();}}
|
12 |
if(jQuery().prettyPhoto){jQuery("a[rel^='prettyPhoto']").prettyPhoto({deeplinking:false,});}}
|
13 |
function wppaStopVideo(mocc){var id=[];var video;var i;id[1]='wppa-overlay-img';id[2]='theimg0-'+mocc;id[3]='theimg1-'+mocc;i=0;while(i<3){i++;if(i!=1||mocc==0){video=document.getElementById(id[i]);if(video){if(typeof(video.pause)=='function'){video.pause();wppaConsoleLog('Video '+id[i]+' paused','force');}}}}}
|
14 |
-
function wppaStopAudio(){
|
15 |
-
i
|
|
|
16 |
function wppaMakeFullsizeUrl(url){var temp;var temp2;url=url.replace('/thumbs/','/');temp=url.split('//');if(temp[1]){temp2=temp[1].split('/');url=temp[0]+'//';}
|
17 |
else{temp2=temp[0].split('/');url='';}
|
18 |
var j=0;while(j<temp2.length){var chunk=temp2[j];var w=chunk.split('_');if(w[0]!='w'){if(j!=0)url+='/';url+=chunk;}
|
3 |
// conatins common vars and functions
|
4 |
//
|
5 |
|
6 |
+
var wppaJsVersion='6.6.08';var wppaVersion='0';var wppaIsIe=false;var wppaDebug;var wppaFullValign=[];var wppaFullHalign=[];var wppaFullFrameDelta=[];var wppaAnimationSpeed;var wppaImageDirectory;var wppaAutoColumnWidth=[];var wppaAutoColumnFrac=[];var wppaThumbnailAreaDelta;var wppaSlideShowTimeOut=2500;var wppaFadeInAfterFadeOut=false;var wppaTextFrameDelta=0;var wppaBoxDelta=0;var wppaPreambule;var wppaHideWhenEmpty=false;var wppaThumbnailPitch=[];var wppaFilmStripLength=[];var wppaFilmStripMargin=[];var wppaFilmStripAreaDelta=[];var wppaFilmShowGlue=false;var wppaIsMini=[];var wppaPortraitOnly=[];var wppaSlideShow;var wppaPhoto;var wppaOf;var wppaNextPhoto;var wppaPreviousPhoto;var wppaNextP;var wppaPrevP;var wppaAvgRating;var wppaMyRating;var wppaAvgRat;var wppaMyRat;var wppaDislikeMsg;var wppaMiniTreshold=300;var wppaStart='Start';var wppaStop='Stop';var wppaPleaseName;var wppaPleaseEmail;var wppaPleaseComment;var wppaRatingOnce=true;var wppaBGcolorNumbar='transparent';var wppaBcolorNumbar='transparent';var wppaBGcolorNumbarActive='transparent';var wppaBcolorNumbarActive='transparent';var wppaFontFamilyNumbar='';var wppaFontSizeNumbar='';var wppaFontColorNumbar='';var wppaFontWeightNumbar='';var wppaFontFamilyNumbarActive='';var wppaFontSizeNumbarActive='';var wppaFontColorNumbarActive='';var wppaFontWeightNumbarActive='';var wppaNumbarMax='10';var wppaAjaxUrl='';var wppaLang='';var wppaNextOnCallback=false;var wppaStarOpacity=0.2;var wppaSlideWrap=true;var wppaLightBox=[];var wppaEmailRequired='required';var wppaSlideBorderWidth=0;var wppaSlideInitRunning=[];var wppaAnimationType='fadeover';var wppaSlidePause=[];var wppaSlideBlank=[];var wppaRatingMax=5;var wppaRatingDisplayType='graphic';var wppaRatingPrec=2;var wppaFilmPageSize=[];var wppaAspectRatio=[];var wppaFullSize=[];var wppaStretch=false;var wppaThumbSpaceAuto=false;var wppaMinThumbSpace=4;var wppaMagnifierCursor='';var wppaArtMonkyLink='none';var wppaAutoOpenComments=false;var wppaUpdateAddressLine=false;var wppaFilmThumbTitle='';var wppaClickToView='';var wppaUploadUrl='';var wppaVoteForMe='';var wppaVotedForMe='';var wppaSlideSwipe=true;var wppaLightboxSingle=[];var wppaMaxCoverWidth=300;var wppaDownLoad='Download';var wppaSiteUrl='';var wppaWppaUrl='';var wppaIncludeUrl='';var wppaSlideToFullpopup=false;var wppaComAltSize=75;var wppaBumpViewCount=true;var wppaBumpClickCount=false;var wppaFotomoto=false;var wppaArtMonkeyButton=true;var wppaShortQargs=false;var wppaOvlHires=false;var wppaMasonryCols=[];var wppaVideoPlaying=[];var wppaAudioPlaying=[];var wppaSlideVideoStart=false;var wppaSlideAudioStart=false;var wppaAudioHeight=28;var wppaHis=0;var wppaStartHtml=[];var wppaCanAjaxRender=false;var wppaCanPushState=false;var wppaAllowAjax=true;var wppaMaxOccur=0;var wppaFirstOccur=0;var wppaUsePhotoNamesInUrls=false;var wppaShareHideWhenRunning=false;var wppaCommentRequiredAfterVote=true;var wppaTopMoc=0;var wppaColWidth=[];var wppaFotomotoHideWhenRunning=false;var wppaFotomotoMinWidth=400;var wppaPhotoView=[];var wppaBackgroundColorImage='';var wppaPopupLinkType='';var wppaPopupOnclick=[];var wppaThumbTargetBlank=false;var wppaRel='rel';var wppaEditPhotoWidth='960';var wppaThemeStyles='';var wppaStickyHeaderHeight=0;var wppaRenderModal=false;var wppaModalBgColor='#ffffff';var wppaBoxRadius=0;var wppaModalQuitImg;var wppaUploadEdit='none';var wppaPageArg='';var _wppaId=[];var _wppaAvg=[];var _wppaDisc=[];var _wppaMyr=[];var _wppaVRU=[];var _wppaLinkUrl=[];var _wppaLinkTitle=[];var _wppaLinkTarget=[];var _wppaCommentHtml=[];var _wppaIptcHtml=[];var _wppaExifHtml=[];var _wppaToTheSame=false;var _wppaSlides=[];var _wppaNames=[];var _wppaFullNames=[];var _wppaDsc=[];var _wppaOgDsc=[];var _wppaCurIdx=[];var _wppaNxtIdx=[];var _wppaTimeOut=[];var _wppaSSRuns=[];var _wppaFg=[];var _wppaTP=[];var _wppaIsBusy=[];var _wppaFirst=[];var _wppaVoteInProgress=false;var _wppaTextDelay;var _wppaUrl=[];var _wppaSkipRated=[];var _wppaLbTitle=[];var _wppaStateCount=0;var _wppaDidGoto=[];var _wppaShareUrl=[];var _wppaShareHtml=[];var _wppaFilmNoMove=[];var _wppaHiresUrl=[];var _wppaIsVideo=[];var _wppaVideoHtml=[];var _wppaAudioHtml=[];var _wppaVideoNatWidth=[];var _wppaVideoNatHeight=[];var _wppaWaitTexts=[];var _wppaImageAlt=[];var __wppaOverruleRun=false;var wppaOvlUrls;var wppaOvlTitles;var wppaOvlAlts;var wppaOvlIdx=0;var wppaOvlFirst=true;var wppaOvlKbHandler='';var wppaOvlSizeHandler='';var wppaOvlPadTop=5;var wppaOvlIsSingle;var wppaOvlRunning=false;var wppaOvlVideoHtmls;var wppaOvlAudioHtmls;var wppaOvlVideoNaturalWidths;var wppaOvlVideoNaturalHeights;var wppaOvlModeInitial='normal';var wppaOvlVideoPlaying=false;var wppaOvlAudioPlaying=false;var wppaOvlShowLegenda=true;var wppaOvlShowStartStop=true;var wppaOvlRadius=0;var wppaOvlBorderWidth=16;var wppaOvlTxtHeight=36;var wppaOvlOpacity=0.8;var wppaOvlOnclickType='none';var wppaOvlTheme='black';var wppaOvlAnimSpeed=300;var wppaOvlSlideSpeed=3000;var wppaVer4WindowWidth=800;var wppaVer4WindowHeight=600;var wppaOvlFontFamily='Helvetica';var wppaOvlFontSize='10';var wppaOvlFontColor='';var wppaOvlFontWeight='bold';var wppaOvlLineHeight='12';var wppaOvlShowCounter=true;var wppaOvlIsVideo=false;var wppaShowLegenda='';var wppaOvlFsPhotoId=0;var wppaPhotoId=0;var wppaOvlVideoStart=false;var wppaOvlAudioStart=false;var wppaLastIptc='';var wppaLastExif='';var wppaIsMobile=false;var wppaSvgFillcolor='gray';var wppaSvgBgcolor='transparent';var wppaSvgCornerStyle='light';jQuery(document).ready(function(){wppaDoInit(false);setTimeout(function(){wppaDoInit(true);},1000);});function wppaDoInit(autoOnly){var anyAutocol=false;for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);anyAutocol=true;}}
|
7 |
if(!autoOnly){_wppaTextDelay=wppaAnimationSpeed;if(wppaFadeInAfterFadeOut)_wppaTextDelay*=2;if(anyAutocol){jQuery(window).resize(function(){for(mocc=1;mocc<=wppaTopMoc;mocc++){if(wppaAutoColumnWidth[mocc]){wppaColWidth[mocc]=0;_wppaDoAutocol(mocc);}}});}}}
|
8 |
jQuery(document).ready(function(e){if(wppaAllowAjax&&jQuery.ajax){wppaCanAjaxRender=true;}
|
9 |
if(typeof(history.pushState)!='undefined'){var i=1;while(i<=wppaMaxOccur){wppaStartHtml[i]=jQuery('#wppa-container-'+i).html();i++;}
|
11 |
if(typeof(myLightbox)!='undefined'){if(typeof(myLightbox.updateImageList)=='function'){myLightbox.updateImageList();}}
|
12 |
if(jQuery().prettyPhoto){jQuery("a[rel^='prettyPhoto']").prettyPhoto({deeplinking:false,});}}
|
13 |
function wppaStopVideo(mocc){var id=[];var video;var i;id[1]='wppa-overlay-img';id[2]='theimg0-'+mocc;id[3]='theimg1-'+mocc;i=0;while(i<3){i++;if(i!=1||mocc==0){video=document.getElementById(id[i]);if(video){if(typeof(video.pause)=='function'){video.pause();wppaConsoleLog('Video '+id[i]+' paused','force');}}}}}
|
14 |
+
function wppaStopAudio(mocc){if(typeof(mocc)=='number'){if(jQuery('#audio-'+mocc).pause){jQuery('#audio-'+mocc).pause();}}
|
15 |
+
else{var items=jQuery('audio');if(items.length>0){var i=0;while(i<items.length){if(jQuery(items[i]).attr('data-from')=='wppa'){items[i].pause();}
|
16 |
+
i++;}}}}
|
17 |
function wppaMakeFullsizeUrl(url){var temp;var temp2;url=url.replace('/thumbs/','/');temp=url.split('//');if(temp[1]){temp2=temp[1].split('/');url=temp[0]+'//';}
|
18 |
else{temp2=temp[0].split('/');url='';}
|
19 |
var j=0;while(j<temp2.length){var chunk=temp2[j];var w=chunk.split('_');if(w[0]!='w'){if(j!=0)url+='/';url+=chunk;}
|
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-12-
|
6 |
-
"PO-Revision-Date: 2016-12-
|
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,11 +24,11 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
-
#: theme/photo-album-page-2010.php:
|
28 |
msgid "Pages:"
|
29 |
msgstr "Pages:"
|
30 |
|
31 |
-
#: theme/photo-album-page-2010.php:
|
32 |
#: wppa-album-admin-autosave.php:1393 wppa-album-admin-autosave.php:1431
|
33 |
#: wppa-album-admin-autosave.php:1530 wppa-album-admin-autosave.php:1765
|
34 |
#: wppa-album-admin-autosave.php:1860 wppa-album-admin-autosave.php:1934
|
@@ -315,7 +315,7 @@ msgid "Photo of the day Widget"
|
|
315 |
msgstr "Widget \"Photo du jour\""
|
316 |
|
317 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
318 |
-
#: wppa-settings-autosave.php:6080 wppa-setup.php:
|
319 |
msgid "Photo of the day"
|
320 |
msgstr "Photo du jour"
|
321 |
|
@@ -353,7 +353,7 @@ msgstr "L’importation est désactivé temporaire pour vous"
|
|
353 |
msgid "Import"
|
354 |
msgstr "Importer"
|
355 |
|
356 |
-
#: wppa-admin.php:128 wppa-settings-autosave.php:
|
357 |
msgid "Update"
|
358 |
msgstr "Mettre à jour"
|
359 |
|
@@ -639,8 +639,8 @@ msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à %s"
|
|
639 |
#: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:1340
|
640 |
#: wppa-album-admin-autosave.php:1477 wppa-album-admin-autosave.php:1712
|
641 |
#: wppa-album-admin-autosave.php:1807 wppa-boxes-html.php:415
|
642 |
-
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:
|
643 |
-
#: wppa-photo-admin-autosave.php:
|
644 |
#: wppa-potd-admin.php:71 wppa-potd-admin.php:358 wppa-settings-autosave.php:505
|
645 |
#: wppa-settings-autosave.php:667 wppa-settings-autosave.php:689
|
646 |
#: wppa-settings-autosave.php:1437 wppa-settings-autosave.php:1458
|
@@ -652,16 +652,16 @@ msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à %s"
|
|
652 |
#: wppa-settings-autosave.php:6040 wppa-settings-autosave.php:6485
|
653 |
#: wppa-settings-autosave.php:6735 wppa-settings-autosave.php:6757
|
654 |
#: wppa-settings-autosave.php:7541 wppa-settings-autosave.php:7565
|
655 |
-
#: wppa-settings-autosave.php:8728 wppa-settings-autosave.php:
|
656 |
-
#: wppa-settings-autosave.php:
|
657 |
#: wppa-upload.php:266
|
658 |
msgid "Name"
|
659 |
msgstr "Nom"
|
660 |
|
661 |
#: wppa-ajax.php:1108 wppa-ajax.php:1568 wppa-album-admin-autosave.php:1350
|
662 |
#: wppa-album-admin-autosave.php:1487 wppa-album-admin-autosave.php:1722
|
663 |
-
#: wppa-album-admin-autosave.php:1817 wppa-photo-admin-autosave.php:
|
664 |
-
#: wppa-photo-admin-autosave.php:
|
665 |
#: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
|
666 |
#: wppa-settings-autosave.php:506 wppa-settings-autosave.php:668
|
667 |
#: wppa-settings-autosave.php:690 wppa-settings-autosave.php:1438
|
@@ -672,10 +672,10 @@ msgstr "Nom"
|
|
672 |
#: wppa-settings-autosave.php:4983 wppa-settings-autosave.php:6041
|
673 |
#: wppa-settings-autosave.php:6486 wppa-settings-autosave.php:6736
|
674 |
#: wppa-settings-autosave.php:6758 wppa-settings-autosave.php:7542
|
675 |
-
#: wppa-settings-autosave.php:7566 wppa-settings-autosave.php:
|
676 |
-
#: wppa-settings-autosave.php:
|
677 |
-
#: wppa-settings-autosave.php:
|
678 |
-
#: wppa-settings-autosave.php:
|
679 |
msgid "Description"
|
680 |
msgstr "Description"
|
681 |
|
@@ -719,7 +719,7 @@ msgstr "Lien vers"
|
|
719 |
#: wppa-ajax.php:1145 wppa-ajax.php:1589 wppa-album-admin-autosave.php:1361
|
720 |
#: wppa-album-admin-autosave.php:1498 wppa-album-admin-autosave.php:1733
|
721 |
#: wppa-album-admin-autosave.php:1828 wppa-boxes-html.php:537
|
722 |
-
#: wppa-photo-admin-autosave.php:
|
723 |
#: wppa-potd-admin.php:139
|
724 |
msgid "Owner"
|
725 |
msgstr "Propriétaire"
|
@@ -952,10 +952,10 @@ msgid "Photo Tags"
|
|
952 |
msgstr "Tags de la photo"
|
953 |
|
954 |
#: wppa-ajax.php:1609 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
955 |
-
#: wppa-photo-admin-autosave.php:
|
956 |
#: wppa-settings-autosave.php:6761 wppa-settings-autosave.php:7545
|
957 |
-
#: wppa-settings-autosave.php:
|
958 |
-
#: wppa-settings-autosave.php:
|
959 |
msgid "Status"
|
960 |
msgstr "Statut"
|
961 |
|
@@ -1532,7 +1532,7 @@ msgid "Modified:"
|
|
1532 |
msgstr "Modifié:"
|
1533 |
|
1534 |
#: wppa-album-admin-autosave.php:326 wppa-photo-admin-autosave.php:583
|
1535 |
-
#: wppa-photo-admin-autosave.php:
|
1536 |
msgid "Not modified"
|
1537 |
msgstr "Non modifié"
|
1538 |
|
@@ -1869,8 +1869,8 @@ msgstr ""
|
|
1869 |
msgid "Link to:"
|
1870 |
msgstr "Lien vers:"
|
1871 |
|
1872 |
-
#: wppa-album-admin-autosave.php:834 wppa-settings-autosave.php:
|
1873 |
-
#: wppa-settings-autosave.php:
|
1874 |
msgid "There are no pages (yet) to link to."
|
1875 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1876 |
|
@@ -1982,8 +1982,8 @@ msgstr "Modérer la photo"
|
|
1982 |
msgid "Edit photo"
|
1983 |
msgstr "Modifier photo"
|
1984 |
|
1985 |
-
#: wppa-album-admin-autosave.php:1076 wppa-boxes-html.php:
|
1986 |
-
#: wppa-boxes-html.php:
|
1987 |
msgid "Delete Album"
|
1988 |
msgstr "Supprimer l'album"
|
1989 |
|
@@ -2017,8 +2017,8 @@ msgstr ""
|
|
2017 |
#: wppa-album-admin-autosave.php:1864 wppa-album-admin-autosave.php:2082
|
2018 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2019 |
#: wppa-comment-admin.php:406 wppa-functions.php:2137 wppa-links.php:789
|
2020 |
-
#: wppa-links.php:807 wppa-photo-admin-autosave.php:
|
2021 |
-
#: wppa-photo-admin-autosave.php:
|
2022 |
msgid "Delete"
|
2023 |
msgstr "Supprimer"
|
2024 |
|
@@ -2026,7 +2026,7 @@ msgstr "Supprimer"
|
|
2026 |
msgid "Move to:"
|
2027 |
msgstr "Déplacer vers:"
|
2028 |
|
2029 |
-
#: wppa-album-admin-autosave.php:1094 wppa-photo-admin-autosave.php:
|
2030 |
#: wppa-settings-autosave.php:2892
|
2031 |
msgid "Cancel"
|
2032 |
msgstr "Annuler"
|
@@ -2065,7 +2065,7 @@ msgstr "Fermer tous"
|
|
2065 |
|
2066 |
#: wppa-album-admin-autosave.php:1330 wppa-album-admin-autosave.php:1467
|
2067 |
#: wppa-album-admin-autosave.php:1701 wppa-album-admin-autosave.php:1796
|
2068 |
-
#: wppa-photo-admin-autosave.php:
|
2069 |
msgid "ID"
|
2070 |
msgstr "ID"
|
2071 |
|
@@ -2336,7 +2336,7 @@ msgid_plural "%d photos"
|
|
2336 |
msgstr[0] "%d photo"
|
2337 |
msgstr[1] "%d photos"
|
2338 |
|
2339 |
-
#: wppa-album-covers.php:1448 wppa-boxes-html.php:1282 wppa-boxes-html.php:
|
2340 |
#: wppa-breadcrumb.php:175 wppa-breadcrumb.php:181 wppa-breadcrumb.php:188
|
2341 |
#: wppa-breadcrumb.php:412 wppa-breadcrumb.php:414 wppa-breadcrumb.php:420
|
2342 |
#: wppa-breadcrumb.php:422 wppa-breadcrumb.php:430 wppa-breadcrumb.php:446
|
@@ -2533,7 +2533,7 @@ msgstr "Nombre de notes:"
|
|
2533 |
#: wppa-settings-autosave.php:4182 wppa-settings-autosave.php:5689
|
2534 |
#: wppa-settings-autosave.php:6446 wppa-settings-autosave.php:7921
|
2535 |
#: wppa-settings-autosave.php:8140 wppa-settings-autosave.php:8216
|
2536 |
-
#: wppa-settings-autosave.php:
|
2537 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-shortcodes.php:626
|
2538 |
#: wppa-watermark.php:533
|
2539 |
msgid "--- none ---"
|
@@ -2590,9 +2590,9 @@ msgstr "CTRL+Clic pour ajouter/supprimer des options."
|
|
2590 |
msgid "Items must meet all selected options."
|
2591 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2592 |
|
2593 |
-
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:
|
2594 |
-
#: wppa-settings-autosave.php:
|
2595 |
-
#: wppa-settings-autosave.php:
|
2596 |
msgid "Tag"
|
2597 |
msgstr "Tag"
|
2598 |
|
@@ -2671,119 +2671,119 @@ msgstr "Social media landing page"
|
|
2671 |
msgid "See this image on %s"
|
2672 |
msgstr "Voir cette image sur %s"
|
2673 |
|
2674 |
-
#: wppa-boxes-html.php:1310 wppa-boxes-html.php:
|
2675 |
msgid "QR code"
|
2676 |
msgstr "QR code"
|
2677 |
|
2678 |
-
#: wppa-boxes-html.php:1355 wppa-boxes-html.php:
|
2679 |
#, php-format
|
2680 |
msgid "Tweet %s on Twitter"
|
2681 |
msgstr "Tweeter %s sur Twitter"
|
2682 |
|
2683 |
-
#: wppa-boxes-html.php:1362 wppa-boxes-html.php:
|
2684 |
msgid "Share on Twitter"
|
2685 |
msgstr "Partager sur Pinterest"
|
2686 |
|
2687 |
-
#: wppa-boxes-html.php:1375 wppa-boxes-html.php:
|
2688 |
#, php-format
|
2689 |
msgid "Share %s on Google+"
|
2690 |
msgstr "Partager %s sur Google+"
|
2691 |
|
2692 |
-
#: wppa-boxes-html.php:
|
2693 |
msgid "Share on Google+"
|
2694 |
msgstr "Partager sur Google+"
|
2695 |
|
2696 |
-
#: wppa-boxes-html.php:
|
2697 |
#, php-format
|
2698 |
msgid "Share %s on Pinterest"
|
2699 |
msgstr "Partager %s sur Pinterest"
|
2700 |
|
2701 |
-
#: wppa-boxes-html.php:
|
2702 |
msgid "Share on Pinterest"
|
2703 |
msgstr "Partager sur Pinterest"
|
2704 |
|
2705 |
-
#: wppa-boxes-html.php:
|
2706 |
msgid "Comment on Facebook:"
|
2707 |
msgstr "Commenter sur Facebook:"
|
2708 |
|
2709 |
-
#: wppa-boxes-html.php:
|
2710 |
#, php-format
|
2711 |
msgid "See this article on %s"
|
2712 |
msgstr "Voir cet article sur %s"
|
2713 |
|
2714 |
-
#: wppa-boxes-html.php:
|
2715 |
msgid "Working..."
|
2716 |
msgstr "Traitement en cours..."
|
2717 |
|
2718 |
-
#: wppa-boxes-html.php:
|
2719 |
msgid "Create Sub Album"
|
2720 |
msgstr "Créer un sub-album"
|
2721 |
|
2722 |
-
#: wppa-boxes-html.php:
|
2723 |
msgid "Create Album"
|
2724 |
msgstr "Créer un album"
|
2725 |
|
2726 |
-
#: wppa-boxes-html.php:
|
2727 |
msgid "Enter album name."
|
2728 |
msgstr "Entrer un nom d'album."
|
2729 |
|
2730 |
-
#: wppa-boxes-html.php:
|
2731 |
msgid "Don't leave this blank!"
|
2732 |
msgstr "Ne laissez pas ceci vide !"
|
2733 |
|
2734 |
-
#: wppa-boxes-html.php:
|
2735 |
msgid "Enter album description"
|
2736 |
msgstr "Entrez la description de l'album"
|
2737 |
|
2738 |
-
#: wppa-boxes-html.php:
|
2739 |
msgid "Create album"
|
2740 |
msgstr "Créer un album"
|
2741 |
|
2742 |
-
#: wppa-boxes-html.php:
|
2743 |
msgid "Max uploads reached"
|
2744 |
msgstr "Ajout maximum ateind"
|
2745 |
|
2746 |
-
#: wppa-boxes-html.php:
|
2747 |
msgid "Upload Photo"
|
2748 |
msgstr "Uploader une photo"
|
2749 |
|
2750 |
-
#: wppa-boxes-html.php:
|
2751 |
msgid "Enter album id"
|
2752 |
msgstr "Entrez album id"
|
2753 |
|
2754 |
-
#: wppa-boxes-html.php:
|
2755 |
msgid "Select Photo / Video / Camera"
|
2756 |
msgstr "Sélectionnez Photo / Vidéo / Camera"
|
2757 |
|
2758 |
-
#: wppa-boxes-html.php:
|
2759 |
msgid "Select Photo / Camera"
|
2760 |
msgstr "Sélectionnez Photo / Caméra"
|
2761 |
|
2762 |
-
#: wppa-boxes-html.php:
|
2763 |
msgid "Select Photo / Video"
|
2764 |
msgstr "Sélectionnez Photo / Vidéo"
|
2765 |
|
2766 |
-
#: wppa-boxes-html.php:
|
2767 |
msgid "Select Photo"
|
2768 |
msgstr "Sélectionnez photo"
|
2769 |
|
2770 |
-
#: wppa-boxes-html.php:
|
2771 |
msgid "Select Photos / Video / Camera"
|
2772 |
msgstr "Sélectionnez Photos / Vidéo / Caméra"
|
2773 |
|
2774 |
-
#: wppa-boxes-html.php:
|
2775 |
msgid "Select Photos / Camera"
|
2776 |
msgstr "Sélectionnez Photos / Caméra"
|
2777 |
|
2778 |
-
#: wppa-boxes-html.php:
|
2779 |
msgid "Select Photos / Video"
|
2780 |
msgstr "Sélectionnez Photos / Vidéo"
|
2781 |
|
2782 |
-
#: wppa-boxes-html.php:
|
2783 |
msgid "Select Photos"
|
2784 |
msgstr "Sélectionnez Photos"
|
2785 |
|
2786 |
-
#: wppa-boxes-html.php:
|
2787 |
#, php-format
|
2788 |
msgid "You may upload %d photo"
|
2789 |
msgid_plural ""
|
@@ -2794,22 +2794,22 @@ msgstr[1] ""
|
|
2794 |
"Vous pouvez charger jusqu'à %d photos à la fois si votre navigateur supporte "
|
2795 |
"la fonction HTML-5 multiple file upload"
|
2796 |
|
2797 |
-
#: wppa-boxes-html.php:
|
2798 |
#, php-format
|
2799 |
msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
|
2800 |
msgstr "Taille photo max: %d x %d (%2.1f MegaPixel)"
|
2801 |
|
2802 |
-
#: wppa-boxes-html.php:
|
2803 |
#: wppa-upload.php:316 wppa-upload.php:390
|
2804 |
msgid "Apply watermark file:"
|
2805 |
msgstr "Appliquer le filigrane:"
|
2806 |
|
2807 |
-
#: wppa-boxes-html.php:
|
2808 |
#: wppa-upload.php:320 wppa-upload.php:394
|
2809 |
msgid "Position:"
|
2810 |
msgstr "Position:"
|
2811 |
|
2812 |
-
#: wppa-boxes-html.php:
|
2813 |
msgid ""
|
2814 |
"If you leave this blank, iptc tag 005 (Graphic name) will be used as photoname "
|
2815 |
"if available, else the original filename will be used as photo name."
|
@@ -2818,7 +2818,7 @@ msgstr ""
|
|
2818 |
"de photo si disponible sinon le nom original du fichier sera utilisé comme nom "
|
2819 |
"de photo. "
|
2820 |
|
2821 |
-
#: wppa-boxes-html.php:
|
2822 |
msgid ""
|
2823 |
"If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
|
2824 |
"available, else the original filename will be used as photo name."
|
@@ -2827,190 +2827,190 @@ msgstr ""
|
|
2827 |
"photo si disponible sinon le nom de fichier original sera utilisé comme nom de "
|
2828 |
"photo."
|
2829 |
|
2830 |
-
#: wppa-boxes-html.php:
|
2831 |
msgid ""
|
2832 |
"If you leave this blank, the original filename will be used as photo name."
|
2833 |
msgstr ""
|
2834 |
"Si vous laisser cela vide, le nom de fichier original sera utilisé comme nom "
|
2835 |
"de photo."
|
2836 |
|
2837 |
-
#: wppa-boxes-html.php:
|
2838 |
msgid "Photo name"
|
2839 |
msgstr "Nom de la photo"
|
2840 |
|
2841 |
-
#: wppa-boxes-html.php:
|
2842 |
msgid "Photo description"
|
2843 |
msgstr "Description de la photo"
|
2844 |
|
2845 |
-
#: wppa-boxes-html.php:
|
2846 |
msgid "hidden"
|
2847 |
msgstr "caché"
|
2848 |
|
2849 |
-
#: wppa-boxes-html.php:
|
2850 |
msgid "Preview tags:"
|
2851 |
msgstr "Aperçu tags:"
|
2852 |
|
2853 |
-
#: wppa-boxes-html.php:
|
2854 |
msgid "Blog it?"
|
2855 |
msgstr "Blog it?"
|
2856 |
|
2857 |
-
#: wppa-boxes-html.php:
|
2858 |
msgid "Upload and blog"
|
2859 |
msgstr "Upload et blog"
|
2860 |
|
2861 |
-
#: wppa-boxes-html.php:
|
2862 |
msgid "Upload photo"
|
2863 |
msgstr "Uploader une photo"
|
2864 |
|
2865 |
-
#: wppa-boxes-html.php:
|
2866 |
msgid "Post title:"
|
2867 |
msgstr "Titre du post:"
|
2868 |
|
2869 |
-
#: wppa-boxes-html.php:
|
2870 |
msgid "Text BEFORE the image:"
|
2871 |
msgstr "Texte AVANT l'image:"
|
2872 |
|
2873 |
-
#: wppa-boxes-html.php:
|
2874 |
msgid "Text AFTER the image:"
|
2875 |
msgstr "Texte APRÈS l'image:"
|
2876 |
|
2877 |
-
#: wppa-boxes-html.php:
|
2878 |
msgid "Please select an album and try again"
|
2879 |
msgstr "Veuillez sélectionner un album et recommencer"
|
2880 |
|
2881 |
-
#: wppa-boxes-html.php:
|
2882 |
msgid "ERROR: unable to upload files."
|
2883 |
msgstr "Erreur: impossible de télécharger des fichiers."
|
2884 |
|
2885 |
-
#: wppa-boxes-html.php:
|
2886 |
msgid "Edit Album Info"
|
2887 |
msgstr "Modifier l’album"
|
2888 |
|
2889 |
-
#: wppa-boxes-html.php:
|
2890 |
msgid "Enter album name"
|
2891 |
msgstr "Entrer un nom d'album"
|
2892 |
|
2893 |
-
#: wppa-boxes-html.php:
|
2894 |
msgid "Album description:"
|
2895 |
msgstr "Description de l'album:"
|
2896 |
|
2897 |
-
#: wppa-boxes-html.php:
|
2898 |
msgid "Update album"
|
2899 |
msgstr "Update album"
|
2900 |
|
2901 |
-
#: wppa-boxes-html.php:
|
2902 |
msgid "wrote:"
|
2903 |
msgstr "a écrit:"
|
2904 |
|
2905 |
-
#: wppa-boxes-html.php:
|
2906 |
msgid "Avatar"
|
2907 |
msgstr "Avatar"
|
2908 |
|
2909 |
-
#: wppa-boxes-html.php:
|
2910 |
msgid "Awaiting moderation"
|
2911 |
msgstr "En attente de modération"
|
2912 |
|
2913 |
-
#: wppa-boxes-html.php:
|
2914 |
msgid "Marked as spam"
|
2915 |
msgstr "Marqué comme indésirable"
|
2916 |
|
2917 |
-
#: wppa-boxes-html.php:
|
2918 |
msgid "Edit!"
|
2919 |
msgstr "Éditer !"
|
2920 |
|
2921 |
-
#: wppa-boxes-html.php:
|
2922 |
msgid "Send!"
|
2923 |
msgstr "Transmettre !"
|
2924 |
|
2925 |
-
#: wppa-boxes-html.php:
|
2926 |
msgid "Your name:"
|
2927 |
msgstr "Votre nom:"
|
2928 |
|
2929 |
-
#: wppa-boxes-html.php:
|
2930 |
msgid "Your email:"
|
2931 |
msgstr "Votre email:"
|
2932 |
|
2933 |
-
#: wppa-boxes-html.php:
|
2934 |
msgid "Your comment:"
|
2935 |
msgstr "Votre commentaire:"
|
2936 |
|
2937 |
-
#: wppa-boxes-html.php:
|
2938 |
#, php-format
|
2939 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
2940 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
2941 |
|
2942 |
-
#: wppa-boxes-html.php:
|
2943 |
msgid "You must login to enter a comment"
|
2944 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
2945 |
|
2946 |
-
#: wppa-boxes-html.php:
|
2947 |
#, php-format
|
2948 |
msgid "%d comment"
|
2949 |
msgid_plural "%d comments"
|
2950 |
msgstr[0] "%d commentaire"
|
2951 |
msgstr[1] "%d commentaires"
|
2952 |
|
2953 |
-
#: wppa-boxes-html.php:
|
2954 |
msgid "Leave a comment"
|
2955 |
msgstr "Laisser un commentaire"
|
2956 |
|
2957 |
-
#: wppa-boxes-html.php:
|
2958 |
msgid "Show IPTC data"
|
2959 |
msgstr "Afficher les données IPTC"
|
2960 |
|
2961 |
-
#: wppa-boxes-html.php:
|
2962 |
msgid "Hide IPTC data"
|
2963 |
msgstr "Cacher les données IPTC"
|
2964 |
|
2965 |
-
#: wppa-boxes-html.php:
|
2966 |
msgid "No IPTC data"
|
2967 |
msgstr "Pas de données IPTC"
|
2968 |
|
2969 |
-
#: wppa-boxes-html.php:
|
2970 |
msgid "Show EXIF data"
|
2971 |
msgstr "Afficher les données EXIF"
|
2972 |
|
2973 |
-
#: wppa-boxes-html.php:
|
2974 |
msgid "Hide EXIF data"
|
2975 |
msgstr "Cacher les données EXIF"
|
2976 |
|
2977 |
-
#: wppa-boxes-html.php:
|
2978 |
msgid "No EXIF data"
|
2979 |
msgstr "Pas de données EXIF"
|
2980 |
|
2981 |
-
#: wppa-boxes-html.php:
|
2982 |
msgid "< Previous"
|
2983 |
msgstr "< Préc."
|
2984 |
|
2985 |
-
#: wppa-boxes-html.php:
|
2986 |
msgid "Next >"
|
2987 |
msgstr "Suiv. >"
|
2988 |
|
2989 |
-
#: wppa-boxes-html.php:
|
2990 |
msgid "See the authors albums"
|
2991 |
msgstr "Voir les albums des auteurs"
|
2992 |
|
2993 |
-
#: wppa-boxes-html.php:
|
2994 |
msgid "See the authors photos"
|
2995 |
msgstr "Voir les photos des auteurs"
|
2996 |
|
2997 |
-
#: wppa-boxes-html.php:
|
2998 |
msgid "See all the authors photos"
|
2999 |
msgstr "Voir toutes les photos des auteurs"
|
3000 |
|
3001 |
-
#: wppa-boxes-html.php:
|
3002 |
#, php-format
|
3003 |
msgid "Photo by: %s"
|
3004 |
msgstr "Photo par: %s"
|
3005 |
|
3006 |
-
#: wppa-boxes-html.php:
|
3007 |
#, php-format
|
3008 |
msgid "%d max rating"
|
3009 |
msgid_plural "%d max ratings"
|
3010 |
msgstr[0] "%d max note"
|
3011 |
msgstr[1] "%d max notes"
|
3012 |
|
3013 |
-
#: wppa-boxes-html.php:
|
3014 |
#: wppa-topten-widget.php:206 wppa-topten-widget.php:223
|
3015 |
#: wppa-topten-widget.php:259
|
3016 |
#, php-format
|
@@ -3019,22 +3019,22 @@ msgid_plural "%d votes"
|
|
3019 |
msgstr[0] "%d vote"
|
3020 |
msgstr[1] "%d votes"
|
3021 |
|
3022 |
-
#: wppa-boxes-html.php:
|
3023 |
#, php-format
|
3024 |
msgid "Rating: %4.2f."
|
3025 |
msgstr "Vote: %4.2f."
|
3026 |
|
3027 |
-
#: wppa-boxes-html.php:
|
3028 |
#, php-format
|
3029 |
msgid "Photo %s not found."
|
3030 |
msgstr "Photo %s non trouvée."
|
3031 |
|
3032 |
-
#: wppa-boxes-html.php:
|
3033 |
#, php-format
|
3034 |
msgid "Mean value: %4.2f."
|
3035 |
msgstr "Valeur moyenne: %4.2f."
|
3036 |
|
3037 |
-
#: wppa-boxes-html.php:
|
3038 |
msgid "Refresh"
|
3039 |
msgstr "Rafraichir"
|
3040 |
|
@@ -3337,7 +3337,7 @@ msgstr "timestamp"
|
|
3337 |
msgid "photo"
|
3338 |
msgstr "photo"
|
3339 |
|
3340 |
-
#: wppa-comment-admin.php:263 wppa-photo-admin-autosave.php:
|
3341 |
msgid "Bulk action:"
|
3342 |
msgstr "Action groupée:"
|
3343 |
|
@@ -3375,9 +3375,9 @@ msgstr "(Album)"
|
|
3375 |
#: wppa-settings-autosave.php:4957 wppa-settings-autosave.php:4981
|
3376 |
#: wppa-settings-autosave.php:6039 wppa-settings-autosave.php:6734
|
3377 |
#: wppa-settings-autosave.php:6756 wppa-settings-autosave.php:7540
|
3378 |
-
#: wppa-settings-autosave.php:7564 wppa-settings-autosave.php:
|
3379 |
-
#: wppa-settings-autosave.php:
|
3380 |
-
#: wppa-settings-autosave.php:
|
3381 |
msgid "#"
|
3382 |
msgstr "#"
|
3383 |
|
@@ -3416,8 +3416,8 @@ msgstr "Répondre"
|
|
3416 |
|
3417 |
#: wppa-comment-admin.php:377 wppa-photo-admin-autosave.php:727
|
3418 |
#: wppa-photo-admin-autosave.php:760 wppa-photo-admin-autosave.php:1612
|
3419 |
-
#: wppa-photo-admin-autosave.php:1621 wppa-photo-admin-autosave.php:
|
3420 |
-
#: wppa-photo-admin-autosave.php:
|
3421 |
msgid "Pending"
|
3422 |
msgstr "en attente"
|
3423 |
|
@@ -3447,19 +3447,19 @@ msgstr "WPPA+ Commentaires sur les photos"
|
|
3447 |
msgid "Comments on Photos"
|
3448 |
msgstr "Commentaires sur les photos"
|
3449 |
|
3450 |
-
#: wppa-comment-widget.php:73 wppa-non-admin.php:
|
3451 |
msgid "wrote"
|
3452 |
msgstr "a écrit"
|
3453 |
|
3454 |
#: wppa-comment-widget.php:87 wppa-featen-widget.php:137
|
3455 |
-
#: wppa-lasten-widget.php:148 wppa-non-admin.php:
|
3456 |
-
#: wppa-non-admin.php:
|
3457 |
-
#: wppa-non-admin.php:
|
3458 |
#: wppa-topten-widget.php:267
|
3459 |
msgid "Photo not found"
|
3460 |
msgstr "Photo non trouvée"
|
3461 |
|
3462 |
-
#: wppa-comment-widget.php:93 wppa-non-admin.php:
|
3463 |
msgid "There are no commented photos (yet)"
|
3464 |
msgstr "Il n'y pas encore de photos commentariés"
|
3465 |
|
@@ -3492,7 +3492,7 @@ msgstr[1] "%d heures"
|
|
3492 |
#: wppa-settings-autosave.php:7935 wppa-settings-autosave.php:7936
|
3493 |
#: wppa-settings-autosave.php:7937 wppa-settings-autosave.php:7939
|
3494 |
#: wppa-settings-autosave.php:7940 wppa-settings-autosave.php:7941
|
3495 |
-
#: wppa-settings-autosave.php:
|
3496 |
#, php-format
|
3497 |
msgid "%d day"
|
3498 |
msgid_plural "%d days"
|
@@ -3502,7 +3502,7 @@ msgstr[1] "%d jours"
|
|
3502 |
#: wppa-common-functions.php:670 wppa-functions.php:4712
|
3503 |
#: wppa-settings-autosave.php:6583 wppa-settings-autosave.php:7938
|
3504 |
#: wppa-settings-autosave.php:7942 wppa-settings-autosave.php:7943
|
3505 |
-
#: wppa-settings-autosave.php:7944 wppa-settings-autosave.php:
|
3506 |
#, php-format
|
3507 |
msgid "%d week"
|
3508 |
msgid_plural "%d weeks"
|
@@ -3510,17 +3510,17 @@ msgstr[0] "%d semaine"
|
|
3510 |
msgstr[1] "%d semaines"
|
3511 |
|
3512 |
#: wppa-common-functions.php:674 wppa-settings-autosave.php:7945
|
3513 |
-
#: wppa-settings-autosave.php:
|
3514 |
-
#: wppa-settings-autosave.php:
|
3515 |
-
#: wppa-settings-autosave.php:
|
3516 |
#, php-format
|
3517 |
msgid "%d month"
|
3518 |
msgid_plural "%d months"
|
3519 |
msgstr[0] "%d mois"
|
3520 |
msgstr[1] "%d mois"
|
3521 |
|
3522 |
-
#: wppa-common-functions.php:677 wppa-settings-autosave.php:
|
3523 |
-
#: wppa-settings-autosave.php:
|
3524 |
#, php-format
|
3525 |
msgid "%d year"
|
3526 |
msgid_plural "%d years"
|
@@ -3919,11 +3919,11 @@ msgstr "WPPA+ Photos recommandées"
|
|
3919 |
msgid "Featured Photos"
|
3920 |
msgstr "Photos recommandées"
|
3921 |
|
3922 |
-
#: wppa-featen-widget.php:115 wppa-non-admin.php:
|
3923 |
msgid "View the featured photos"
|
3924 |
msgstr "Voir les photos recommandées"
|
3925 |
|
3926 |
-
#: wppa-featen-widget.php:146 wppa-non-admin.php:
|
3927 |
msgid "There are no featured photos (yet)"
|
3928 |
msgstr "Il n'y pas (encore) de photos recommandées"
|
3929 |
|
@@ -4155,11 +4155,11 @@ msgid "You can upload after"
|
|
4155 |
msgstr "Vous pouvez charger après"
|
4156 |
|
4157 |
#: wppa-functions.php:4753 wppa-functions.php:4757 wppa-functions.php:4764
|
4158 |
-
#: wppa-functions.php:4768 wppa-links.php:1174 wppa-non-admin.php:
|
4159 |
-
#: wppa-settings-autosave.php:
|
4160 |
-
#: wppa-settings-autosave.php:
|
4161 |
-
#: wppa-settings-autosave.php:
|
4162 |
-
#: wppa-settings-autosave.php:
|
4163 |
msgid "Download"
|
4164 |
msgstr "Télécharger"
|
4165 |
|
@@ -4926,8 +4926,8 @@ msgid "Gold medal"
|
|
4926 |
msgstr "Médaille d'or"
|
4927 |
|
4928 |
#: wppa-items.php:264 wppa-photo-admin-autosave.php:736
|
4929 |
-
#: wppa-photo-admin-autosave.php:763 wppa-photo-admin-autosave.php:
|
4930 |
-
#: wppa-photo-admin-autosave.php:
|
4931 |
#: wppa-potd-admin.php:228
|
4932 |
msgid "Gold"
|
4933 |
msgstr "Or"
|
@@ -4937,8 +4937,8 @@ msgid "Silver medal"
|
|
4937 |
msgstr "Médaille d'argent"
|
4938 |
|
4939 |
#: wppa-items.php:265 wppa-photo-admin-autosave.php:739
|
4940 |
-
#: wppa-photo-admin-autosave.php:764 wppa-photo-admin-autosave.php:
|
4941 |
-
#: wppa-photo-admin-autosave.php:
|
4942 |
#: wppa-potd-admin.php:229
|
4943 |
msgid "Silver"
|
4944 |
msgstr "Argent"
|
@@ -4948,8 +4948,8 @@ msgid "Bronze medal"
|
|
4948 |
msgstr "Médaille de bronze"
|
4949 |
|
4950 |
#: wppa-items.php:266 wppa-photo-admin-autosave.php:742
|
4951 |
-
#: wppa-photo-admin-autosave.php:765 wppa-photo-admin-autosave.php:
|
4952 |
-
#: wppa-photo-admin-autosave.php:
|
4953 |
#: wppa-potd-admin.php:230
|
4954 |
msgid "Bronze"
|
4955 |
msgstr "Bronze"
|
@@ -4996,11 +4996,11 @@ msgstr "Dix dernières photos chargées"
|
|
4996 |
msgid "Last Ten Uploaded Photos"
|
4997 |
msgstr "Dix dernières photos chargées"
|
4998 |
|
4999 |
-
#: wppa-lasten-widget.php:131 wppa-non-admin.php:
|
5000 |
msgid "View the most recent uploaded photos"
|
5001 |
msgstr "Voir les photos chargées les plus récentes"
|
5002 |
|
5003 |
-
#: wppa-lasten-widget.php:155 wppa-non-admin.php:
|
5004 |
msgid "There are no uploaded photos (yet)"
|
5005 |
msgstr "Il n'y a pas de (encore) de photo chargées"
|
5006 |
|
@@ -5124,7 +5124,7 @@ msgid "From and To albums are identical"
|
|
5124 |
msgstr "Les albums de source et de destination sont identiques"
|
5125 |
|
5126 |
#: wppa-maintenance.php:851 wppa-maintenance.php:867
|
5127 |
-
#: wppa-photo-admin-autosave.php:
|
5128 |
#: wppa-settings-autosave.php:4487 wppa-setup.php:352
|
5129 |
msgid "Required"
|
5130 |
msgstr "requis"
|
@@ -5284,28 +5284,32 @@ msgstr "Entrer un commentaire"
|
|
5284 |
msgid "Double click to start/stop slideshow running"
|
5285 |
msgstr "Double-cliquez pour lancer/arrêter le diaporama"
|
5286 |
|
5287 |
-
#: wppa-non-admin.php:
|
|
|
|
|
|
|
|
|
5288 |
#: wppa-potd-widget.php:178
|
5289 |
msgid "By:"
|
5290 |
msgstr "Par:"
|
5291 |
|
5292 |
-
#: wppa-non-admin.php:
|
5293 |
msgid "No album defined (yet)"
|
5294 |
msgstr "Pas encore d'album défini"
|
5295 |
|
5296 |
-
#: wppa-non-admin.php:
|
5297 |
msgid "There are no photos (yet)"
|
5298 |
msgstr "Il n'y pas encore de photos"
|
5299 |
|
5300 |
-
#: wppa-non-admin.php:
|
5301 |
msgid "There are too many registered users in the system for this widget"
|
5302 |
msgstr "Il y a trop d'utilisateurs enregistrés dans le système pour ce widget"
|
5303 |
|
5304 |
-
#: wppa-non-admin.php:
|
5305 |
msgid "Photos uploaded by"
|
5306 |
msgstr "Photos chargées par"
|
5307 |
|
5308 |
-
#: wppa-non-admin.php:
|
5309 |
#: wppa-topten-widget.php:213 wppa-topten-widget.php:236
|
5310 |
#: wppa-topten-widget.php:246
|
5311 |
#, php-format
|
@@ -5314,7 +5318,7 @@ msgid_plural "%d views"
|
|
5314 |
msgstr[0] "%d vu"
|
5315 |
msgstr[1] "%d vus"
|
5316 |
|
5317 |
-
#: wppa-non-admin.php:
|
5318 |
msgid "There are no rated photos (yet)"
|
5319 |
msgstr "Il n'y a pas (encore) de photos évaluées"
|
5320 |
|
@@ -5347,23 +5351,23 @@ msgstr "Gérer toutes les photo par timestamp"
|
|
5347 |
msgid "Photo %s has been removed."
|
5348 |
msgstr "La photo %s a été retirée."
|
5349 |
|
5350 |
-
#: wppa-photo-admin-autosave.php:267 wppa-photo-admin-autosave.php:
|
5351 |
msgid "No photos matching your search criteria."
|
5352 |
msgstr "Aucune photo correspondant à vos critères de recherche n'a été trouvée."
|
5353 |
|
5354 |
-
#: wppa-photo-admin-autosave.php:275 wppa-photo-admin-autosave.php:
|
5355 |
msgid "No photos yet in this album."
|
5356 |
msgstr "Pas encore de photo dans cet album"
|
5357 |
|
5358 |
-
#: wppa-photo-admin-autosave.php:294
|
5359 |
msgid "Please select an album to move to first."
|
5360 |
msgstr "Veuillez d'abord sélectionner un album où déplacer la photo"
|
5361 |
|
5362 |
-
#: wppa-photo-admin-autosave.php:299
|
5363 |
msgid "Are you sure you want to move this video?"
|
5364 |
msgstr "Etes-vous sûr que vous voulez déplacer cette vidéo?"
|
5365 |
|
5366 |
-
#: wppa-photo-admin-autosave.php:302
|
5367 |
msgid "Are you sure you want to move this photo?"
|
5368 |
msgstr "Êtes-vous sûr de vouloir déplacer cette photo?"
|
5369 |
|
@@ -5383,7 +5387,7 @@ msgstr "Êtes-vous sûr de vouloir copier cette photo ?"
|
|
5383 |
msgid "Are you sure you want to delete this video?"
|
5384 |
msgstr "Êtes-vous sûr de vouloir supprimer cette video?"
|
5385 |
|
5386 |
-
#: wppa-photo-admin-autosave.php:339 wppa-photo-admin-autosave.php:
|
5387 |
msgid "Are you sure you want to delete this photo?"
|
5388 |
msgstr "Êtes-vous sûr de vouloir supprimer cette photo ?"
|
5389 |
|
@@ -5551,26 +5555,26 @@ msgid "Status:"
|
|
5551 |
msgstr "Statut:"
|
5552 |
|
5553 |
#: wppa-photo-admin-autosave.php:730 wppa-photo-admin-autosave.php:761
|
5554 |
-
#: wppa-photo-admin-autosave.php:
|
5555 |
-
#: wppa-photo-admin-autosave.php:
|
5556 |
msgid "Publish"
|
5557 |
msgstr "Publier"
|
5558 |
|
5559 |
#: wppa-photo-admin-autosave.php:733 wppa-photo-admin-autosave.php:762
|
5560 |
-
#: wppa-photo-admin-autosave.php:
|
5561 |
#: wppa-potd-admin.php:227
|
5562 |
msgid "Featured"
|
5563 |
msgstr "Recommandé"
|
5564 |
|
5565 |
#: wppa-photo-admin-autosave.php:745 wppa-photo-admin-autosave.php:766
|
5566 |
-
#: wppa-photo-admin-autosave.php:
|
5567 |
-
#: wppa-photo-admin-autosave.php:
|
5568 |
msgid "Scheduled"
|
5569 |
msgstr "Planifié"
|
5570 |
|
5571 |
#: wppa-photo-admin-autosave.php:748 wppa-photo-admin-autosave.php:767
|
5572 |
-
#: wppa-photo-admin-autosave.php:
|
5573 |
-
#: wppa-photo-admin-autosave.php:
|
5574 |
msgid "Private"
|
5575 |
msgstr "Privé"
|
5576 |
|
@@ -5860,74 +5864,82 @@ msgstr "Propriétaire changé pour %1$s sur %2$s photos."
|
|
5860 |
msgid "%d photos processed."
|
5861 |
msgstr "%d photos traitées."
|
5862 |
|
5863 |
-
#: wppa-photo-admin-autosave.php:
|
5864 |
msgid "Move to"
|
5865 |
msgstr "Déplacer vers"
|
5866 |
|
5867 |
-
#: wppa-photo-admin-autosave.php:
|
5868 |
msgid "Copy to"
|
5869 |
msgstr "Copier vers"
|
5870 |
|
5871 |
-
#: wppa-photo-admin-autosave.php:
|
5872 |
msgid "Set status to"
|
5873 |
msgstr "Régler le statut à"
|
5874 |
|
5875 |
-
#: wppa-photo-admin-autosave.php:
|
5876 |
msgid "Set owner to"
|
5877 |
msgstr "Régler le propriétaire à"
|
5878 |
|
5879 |
-
#: wppa-photo-admin-autosave.php:
|
5880 |
msgid "- select a status -"
|
5881 |
msgstr "- Choisir un statut -"
|
5882 |
|
5883 |
-
#: wppa-photo-admin-autosave.php:
|
5884 |
msgid "- select an owner -"
|
5885 |
msgstr "- Choisir un propriétaire -"
|
5886 |
|
5887 |
-
#: wppa-photo-admin-autosave.php:
|
5888 |
msgid "Doit!"
|
5889 |
msgstr "Le faire!"
|
5890 |
|
5891 |
-
#: wppa-photo-admin-autosave.php:
|
5892 |
msgid "the previous page"
|
5893 |
msgstr "la page précédente"
|
5894 |
|
5895 |
-
#: wppa-photo-admin-autosave.php:
|
5896 |
msgid "the same page"
|
5897 |
msgstr "la même page"
|
5898 |
|
5899 |
-
#: wppa-photo-admin-autosave.php:
|
5900 |
msgid "the next page"
|
5901 |
msgstr "la page suivante"
|
5902 |
|
5903 |
-
#: wppa-photo-admin-autosave.php:
|
5904 |
#, php-format
|
5905 |
msgid "Go to %s after Doit!."
|
5906 |
msgstr "Aller vers %s après Le faire!."
|
5907 |
|
5908 |
-
#: wppa-photo-admin-autosave.php:
|
5909 |
msgid "Confirm delete"
|
5910 |
msgstr "Confirmer Suppression"
|
5911 |
|
5912 |
-
#: wppa-photo-admin-autosave.php:
|
|
|
|
|
|
|
|
|
5913 |
#: wppa-potd-admin.php:321 wppa-settings-autosave.php:8699
|
5914 |
msgid "Preview"
|
5915 |
msgstr "Prévisualiser"
|
5916 |
|
5917 |
-
#: wppa-photo-admin-autosave.php:
|
5918 |
msgid "Remark"
|
5919 |
msgstr "Remarque"
|
5920 |
|
5921 |
-
#: wppa-photo-admin-autosave.php:
|
5922 |
msgid "Deleting..."
|
5923 |
msgstr "Suppression..."
|
5924 |
|
5925 |
-
#: wppa-photo-admin-autosave.php:
|
|
|
|
|
|
|
|
|
5926 |
#, php-format
|
5927 |
msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
|
5928 |
msgstr "La page %d est vide, essayez <a href=\"%s\" >la page %d</a>."
|
5929 |
|
5930 |
-
#: wppa-photo-admin-autosave.php:
|
5931 |
msgid ""
|
5932 |
"Setting photo sequence order has only effect if the photo order method is set "
|
5933 |
"to <b>Order#</b>"
|
@@ -5935,43 +5947,43 @@ msgstr ""
|
|
5935 |
"Régler l'ordre des photos a seulement un effet si la méthode d'ordonnancement "
|
5936 |
"est réglée à <b>Order#</b>"
|
5937 |
|
5938 |
-
#: wppa-photo-admin-autosave.php:
|
5939 |
msgid "Id: "
|
5940 |
msgstr "ID:"
|
5941 |
|
5942 |
-
#: wppa-photo-admin-autosave.php:
|
5943 |
msgid "Video"
|
5944 |
msgstr "Vidéo"
|
5945 |
|
5946 |
-
#: wppa-photo-admin-autosave.php:
|
5947 |
msgid "Audio"
|
5948 |
msgstr "Audio"
|
5949 |
|
5950 |
-
#: wppa-photo-admin-autosave.php:
|
5951 |
msgid "Ord: "
|
5952 |
msgstr "Ord:"
|
5953 |
|
5954 |
-
#: wppa-photo-admin-autosave.php:
|
5955 |
msgid "The album is empty."
|
5956 |
msgstr "Cet album est vide."
|
5957 |
|
5958 |
-
#: wppa-photo-admin-autosave.php:
|
5959 |
msgid "Combined"
|
5960 |
msgstr "Combiné"
|
5961 |
|
5962 |
-
#: wppa-photo-admin-autosave.php:
|
5963 |
msgid "Word"
|
5964 |
msgstr "Mot"
|
5965 |
|
5966 |
-
#: wppa-photo-admin-autosave.php:
|
5967 |
msgid "Count"
|
5968 |
msgstr "Compteur"
|
5969 |
|
5970 |
-
#: wppa-photo-admin-autosave.php:
|
5971 |
msgid "Tags"
|
5972 |
msgstr "Tags"
|
5973 |
|
5974 |
-
#: wppa-photo-admin-autosave.php:
|
5975 |
msgid "Send"
|
5976 |
msgstr "Envoyer"
|
5977 |
|
@@ -5999,7 +6011,7 @@ msgstr ""
|
|
5999 |
#: wppa-settings-autosave.php:1439 wppa-settings-autosave.php:1460
|
6000 |
#: wppa-settings-autosave.php:2998 wppa-settings-autosave.php:3402
|
6001 |
#: wppa-settings-autosave.php:4763 wppa-settings-autosave.php:6737
|
6002 |
-
#: wppa-settings-autosave.php:7567 wppa-settings-autosave.php:
|
6003 |
msgid "Setting"
|
6004 |
msgstr "Réglages"
|
6005 |
|
@@ -6012,9 +6024,9 @@ msgstr "Réglages"
|
|
6012 |
#: wppa-settings-autosave.php:4964 wppa-settings-autosave.php:4988
|
6013 |
#: wppa-settings-autosave.php:6046 wppa-settings-autosave.php:6739
|
6014 |
#: wppa-settings-autosave.php:6763 wppa-settings-autosave.php:7547
|
6015 |
-
#: wppa-settings-autosave.php:7568 wppa-settings-autosave.php:
|
6016 |
-
#: wppa-settings-autosave.php:
|
6017 |
-
#: wppa-settings-autosave.php:
|
6018 |
msgid "Help"
|
6019 |
msgstr "Aide"
|
6020 |
|
@@ -6039,7 +6051,6 @@ msgid "Widget Photo Width:"
|
|
6039 |
msgstr "Largeur du widget photo:"
|
6040 |
|
6041 |
#: wppa-potd-admin.php:90
|
6042 |
-
#, fuzzy
|
6043 |
msgid "Enter the desired display width of the photo in the sidebar."
|
6044 |
msgstr ""
|
6045 |
"Saisissez la largeur d'affichage souhaitée de la photo dans la barre latérale."
|
@@ -6055,7 +6066,6 @@ msgid "Horizontal alignment:"
|
|
6055 |
msgstr "Alignement horizontal:"
|
6056 |
|
6057 |
#: wppa-potd-admin.php:97
|
6058 |
-
#, fuzzy
|
6059 |
msgid "Enter the desired display alignment of the photo in the sidebar."
|
6060 |
msgstr ""
|
6061 |
"Entrez l'alignement d'affichage souhaité de la photo dans la barre latérale."
|
@@ -6067,16 +6077,14 @@ msgid "center"
|
|
6067 |
msgstr "Centre"
|
6068 |
|
6069 |
#: wppa-potd-admin.php:109
|
6070 |
-
#, fuzzy
|
6071 |
msgid "Enter the url. Do'nt forget the HTTP://"
|
6072 |
-
msgstr "Entrez l'url.
|
6073 |
|
6074 |
#: wppa-potd-admin.php:115
|
6075 |
msgid "Link Title:"
|
6076 |
msgstr "Titre du lien:"
|
6077 |
|
6078 |
#: wppa-potd-admin.php:116
|
6079 |
-
#, fuzzy
|
6080 |
msgid "The balloon text when hovering over the photo."
|
6081 |
msgstr "Le texte du ballon lors du survol de la photo."
|
6082 |
|
@@ -6152,12 +6160,12 @@ msgstr "Sélectionnez les albums à utiliser pour la photo du jour."
|
|
6152 |
#: wppa-potd-admin.php:707 wppa-settings-autosave.php:343
|
6153 |
#: wppa-settings-autosave.php:7410 wppa-settings-autosave.php:7437
|
6154 |
#: wppa-settings-autosave.php:8568 wppa-settings-autosave.php:8570
|
6155 |
-
#: wppa-settings-autosave.php:
|
6156 |
-
#: wppa-settings-autosave.php:
|
6157 |
-
#: wppa-settings-autosave.php:
|
6158 |
-
#: wppa-settings-autosave.php:
|
6159 |
-
#: wppa-settings-autosave.php:
|
6160 |
-
#: wppa-settings-autosave.php:
|
6161 |
msgid "Setting unmodified"
|
6162 |
msgstr "Configuration inchangée"
|
6163 |
|
@@ -6344,19 +6352,19 @@ msgstr ""
|
|
6344 |
"Il y a trop de photos dans la sélection pour pouvoir afficher une "
|
6345 |
"prévisualisation ( %d )"
|
6346 |
|
6347 |
-
#: wppa-potd-admin.php:573 wppa-settings-autosave.php:
|
6348 |
msgid "The default for this setting is:"
|
6349 |
msgstr "Le réglage par défaut pour cette option est:"
|
6350 |
|
6351 |
-
#: wppa-potd-admin.php:590 wppa-settings-autosave.php:
|
6352 |
msgid "Click for help"
|
6353 |
msgstr "Cliquer pour l'aide"
|
6354 |
|
6355 |
-
#: wppa-potd-admin.php:614 wppa-settings-autosave.php:
|
6356 |
msgid "Checked"
|
6357 |
msgstr "Coché"
|
6358 |
|
6359 |
-
#: wppa-potd-admin.php:615 wppa-settings-autosave.php:
|
6360 |
msgid "Unchecked"
|
6361 |
msgstr "Décoché"
|
6362 |
|
@@ -6367,7 +6375,7 @@ msgstr "Décoché"
|
|
6367 |
#: wppa-settings-autosave.php:5412 wppa-settings-autosave.php:5450
|
6368 |
#: wppa-settings-autosave.php:5502 wppa-settings-autosave.php:5544
|
6369 |
#: wppa-settings-autosave.php:5586 wppa-settings-autosave.php:5627
|
6370 |
-
#: wppa-settings-autosave.php:
|
6371 |
msgid "no link at all."
|
6372 |
msgstr "pas de lien du tout."
|
6373 |
|
@@ -6378,7 +6386,7 @@ msgstr "pas de lien du tout."
|
|
6378 |
#: wppa-settings-autosave.php:5413 wppa-settings-autosave.php:5451
|
6379 |
#: wppa-settings-autosave.php:5503 wppa-settings-autosave.php:5545
|
6380 |
#: wppa-settings-autosave.php:5587 wppa-settings-autosave.php:5628
|
6381 |
-
#: wppa-settings-autosave.php:
|
6382 |
msgid "the plain photo (file)."
|
6383 |
msgstr "la photo originale (fichier)."
|
6384 |
|
@@ -6388,7 +6396,7 @@ msgstr "la photo originale (fichier)."
|
|
6388 |
#: wppa-settings-autosave.php:5313 wppa-settings-autosave.php:5362
|
6389 |
#: wppa-settings-autosave.php:5452 wppa-settings-autosave.php:5505
|
6390 |
#: wppa-settings-autosave.php:5547 wppa-settings-autosave.php:5589
|
6391 |
-
#: wppa-settings-autosave.php:
|
6392 |
msgid "the full size photo in a slideshow."
|
6393 |
msgstr "la photo pleine grandeur dans un diaporama."
|
6394 |
|
@@ -6398,52 +6406,52 @@ msgstr "la photo pleine grandeur dans un diaporama."
|
|
6398 |
#: wppa-settings-autosave.php:5315 wppa-settings-autosave.php:5364
|
6399 |
#: wppa-settings-autosave.php:5454 wppa-settings-autosave.php:5506
|
6400 |
#: wppa-settings-autosave.php:5548 wppa-settings-autosave.php:5590
|
6401 |
-
#: wppa-settings-autosave.php:5629 wppa-settings-autosave.php:
|
6402 |
msgid "the fullsize photo on its own."
|
6403 |
msgstr "la photo pleine grandeur à lui seul."
|
6404 |
|
6405 |
-
#: wppa-potd-admin.php:620 wppa-settings-autosave.php:
|
6406 |
msgid "the photo specific link."
|
6407 |
msgstr "le lien spécifique de la photo."
|
6408 |
|
6409 |
#: wppa-potd-admin.php:621 wppa-settings-autosave.php:5049
|
6410 |
#: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5504
|
6411 |
#: wppa-settings-autosave.php:5546 wppa-settings-autosave.php:5588
|
6412 |
-
#: wppa-settings-autosave.php:
|
6413 |
msgid "the content of the album."
|
6414 |
msgstr "le contenu de l'album."
|
6415 |
|
6416 |
#: wppa-potd-admin.php:622 wppa-settings-autosave.php:5091
|
6417 |
-
#: wppa-settings-autosave.php:
|
6418 |
msgid "defined at widget activation."
|
6419 |
msgstr "défini à l'activation du widget."
|
6420 |
|
6421 |
#: wppa-potd-admin.php:623 wppa-settings-autosave.php:5048
|
6422 |
-
#: wppa-settings-autosave.php:
|
6423 |
msgid "defined on widget admin page."
|
6424 |
msgstr "réglages sur la page d'admin des widgets."
|
6425 |
|
6426 |
#: wppa-potd-admin.php:624 wppa-settings-autosave.php:5414
|
6427 |
-
#: wppa-settings-autosave.php:
|
6428 |
msgid "same as title."
|
6429 |
msgstr "identique au titre."
|
6430 |
|
6431 |
#: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
|
6432 |
-
#: wppa-settings-autosave.php:
|
6433 |
-
#: wppa-settings-autosave.php:
|
6434 |
-
#: wppa-settings-autosave.php:
|
6435 |
-
#: wppa-settings-autosave.php:
|
6436 |
-
#: wppa-settings-autosave.php:
|
6437 |
msgid "Slug ="
|
6438 |
msgstr "Slug ="
|
6439 |
|
6440 |
-
#: wppa-potd-admin.php:636 wppa-settings-autosave.php:
|
6441 |
-
#: wppa-settings-autosave.php:
|
6442 |
-
#: wppa-settings-autosave.php:
|
6443 |
msgid "Values = yes, no"
|
6444 |
msgstr "Valeurs=oui,non"
|
6445 |
|
6446 |
-
#: wppa-potd-admin.php:680 wppa-settings-autosave.php:
|
6447 |
msgid "Values = "
|
6448 |
msgstr "Values = "
|
6449 |
|
@@ -6740,8 +6748,8 @@ msgstr "Bouton"
|
|
6740 |
msgid "action that causes page reload."
|
6741 |
msgstr "action qui provoque le rechargement de la page."
|
6742 |
|
6743 |
-
#: wppa-settings-autosave.php:340 wppa-settings-autosave.php:
|
6744 |
-
#: wppa-settings-autosave.php:
|
6745 |
msgid "Are you sure?"
|
6746 |
msgstr "Êtes-vous sûr ?"
|
6747 |
|
@@ -7277,9 +7285,9 @@ msgstr ""
|
|
7277 |
#: wppa-settings-autosave.php:4860 wppa-settings-autosave.php:4877
|
7278 |
#: wppa-settings-autosave.php:4894 wppa-settings-autosave.php:4911
|
7279 |
#: wppa-settings-autosave.php:4928 wppa-settings-autosave.php:4945
|
7280 |
-
#: wppa-settings-autosave.php:6285 wppa-settings-autosave.php:
|
7281 |
-
#: wppa-settings-autosave.php:
|
7282 |
-
#: wppa-settings-autosave.php:
|
7283 |
msgid "pixels"
|
7284 |
msgstr "pixels"
|
7285 |
|
@@ -8958,7 +8966,7 @@ msgstr "Montrer la boîte de partage"
|
|
8958 |
msgid "Display the share social media buttons box."
|
8959 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
8960 |
|
8961 |
-
#: wppa-settings-autosave.php:1881 wppa-settings-autosave.php:
|
8962 |
msgid "Hide when running"
|
8963 |
msgstr "Cacher lorsqu'en fonctionnement"
|
8964 |
|
@@ -12361,8 +12369,8 @@ msgstr "Comment email required"
|
|
12361 |
msgid "Commenting users must enter their email addresses."
|
12362 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
12363 |
|
12364 |
-
#: wppa-settings-autosave.php:4486 wppa-settings-autosave.php:
|
12365 |
-
#: wppa-settings-autosave.php:
|
12366 |
msgid "Optional"
|
12367 |
msgstr "Optionnel"
|
12368 |
|
@@ -14071,7 +14079,7 @@ msgstr "--- choisir un utilisateur à bannir ---"
|
|
14071 |
#: wppa-settings-autosave.php:6632 wppa-settings-autosave.php:6637
|
14072 |
#: wppa-settings-autosave.php:6658 wppa-settings-autosave.php:6696
|
14073 |
#: wppa-settings-autosave.php:6701 wppa-settings-autosave.php:6722
|
14074 |
-
#: wppa-settings-autosave.php:
|
14075 |
#, fuzzy
|
14076 |
msgid "The page will be reloaded after the action has taken place."
|
14077 |
msgstr "La page sera rechargée après que l'action a eu lieu."
|
@@ -14160,7 +14168,7 @@ msgid "Specification"
|
|
14160 |
msgstr "Spécification"
|
14161 |
|
14162 |
#: wppa-settings-autosave.php:6760 wppa-settings-autosave.php:7544
|
14163 |
-
#: wppa-settings-autosave.php:
|
14164 |
msgid "Do it!"
|
14165 |
msgstr "Faites-le!"
|
14166 |
|
@@ -16712,51 +16720,39 @@ msgstr ""
|
|
16712 |
"du niveau supérieur."
|
16713 |
|
16714 |
#: wppa-settings-autosave.php:8975
|
16715 |
-
msgid "IPTC need utf8 conversion"
|
16716 |
-
msgstr "IPTC a besoin d'une conversion UTF8"
|
16717 |
-
|
16718 |
-
#: wppa-settings-autosave.php:8976
|
16719 |
-
msgid "This setting converts iso to utf8 in iptc text."
|
16720 |
-
msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
|
16721 |
-
|
16722 |
-
#: wppa-settings-autosave.php:8977
|
16723 |
-
msgid "Untick if you have funny characters in iptc data"
|
16724 |
-
msgstr "Décocher si vous avez des caractères bizarres dans les données IPTC"
|
16725 |
-
|
16726 |
-
#: wppa-settings-autosave.php:8984
|
16727 |
msgid "Keep dir to album files"
|
16728 |
msgstr "Garder les fichiers de dir aux l’album"
|
16729 |
|
16730 |
-
#: wppa-settings-autosave.php:
|
16731 |
#, fuzzy
|
16732 |
msgid "Keep imported files after dir to album import"
|
16733 |
msgstr "Conserver les fichiers importés après dir à l'album import"
|
16734 |
|
16735 |
-
#: wppa-settings-autosave.php:
|
16736 |
msgid "Other plugins related settings"
|
16737 |
msgstr "Paramètres liés d'autres plugins"
|
16738 |
|
16739 |
-
#: wppa-settings-autosave.php:
|
16740 |
msgid "Foreign shortcodes general"
|
16741 |
msgstr "Généraux étrangers shortcodes"
|
16742 |
|
16743 |
-
#: wppa-settings-autosave.php:
|
16744 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
16745 |
msgstr ""
|
16746 |
"Activez les shortcodes étrangers au nom de l’album, au description de l'album "
|
16747 |
"et au nom de photo"
|
16748 |
|
16749 |
-
#: wppa-settings-autosave.php:
|
16750 |
msgid "Foreign shortcodes fullsize"
|
16751 |
msgstr "Shortcodes étrangers fullsize"
|
16752 |
|
16753 |
-
#: wppa-settings-autosave.php:
|
16754 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
16755 |
msgstr ""
|
16756 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16757 |
"pleine grandeur."
|
16758 |
|
16759 |
-
#: wppa-settings-autosave.php:
|
16760 |
#, fuzzy
|
16761 |
msgid ""
|
16762 |
"When checked, you can use shortcodes from other plugins in the description of "
|
@@ -16765,39 +16761,39 @@ msgstr ""
|
|
16765 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins dans "
|
16766 |
"la description de photos."
|
16767 |
|
16768 |
-
#: wppa-settings-autosave.php:
|
16769 |
#, fuzzy
|
16770 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
16771 |
msgstr "Les shortcodes seront étendus dans les descriptions des images fullsize."
|
16772 |
|
16773 |
-
#: wppa-settings-autosave.php:
|
16774 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
16775 |
msgstr ""
|
16776 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
16777 |
|
16778 |
-
#: wppa-settings-autosave.php:
|
16779 |
msgid "Foreign shortcodes thumbnails"
|
16780 |
msgstr "Foreign shortcodes thumbnails"
|
16781 |
|
16782 |
-
#: wppa-settings-autosave.php:
|
16783 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
16784 |
msgstr ""
|
16785 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16786 |
"miniature."
|
16787 |
|
16788 |
-
#: wppa-settings-autosave.php:
|
16789 |
msgid "The shortcodes will be expanded in the descriptions of thumbnail images."
|
16790 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
16791 |
|
16792 |
-
#: wppa-settings-autosave.php:
|
16793 |
msgid "Lightbox keyname"
|
16794 |
msgstr "Nom-clé Lightbox"
|
16795 |
|
16796 |
-
#: wppa-settings-autosave.php:
|
16797 |
msgid "The identifier of lightbox."
|
16798 |
msgstr "L'identifiant Lightbox."
|
16799 |
|
16800 |
-
#: wppa-settings-autosave.php:
|
16801 |
msgid ""
|
16802 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the lbox-"
|
16803 |
"id here."
|
@@ -16805,64 +16801,64 @@ msgstr ""
|
|
16805 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
16806 |
"entrer l’id lbox ici."
|
16807 |
|
16808 |
-
#: wppa-settings-autosave.php:
|
16809 |
msgid "myCRED / Cube Points: Comment"
|
16810 |
msgstr "myCRED / Cube Points: commentaire"
|
16811 |
|
16812 |
-
#: wppa-settings-autosave.php:
|
16813 |
msgid "Number of points for giving a comment"
|
16814 |
msgstr "Nombre de points pour mettre un commentaire"
|
16815 |
|
16816 |
-
#: wppa-settings-autosave.php:
|
16817 |
-
#: wppa-settings-autosave.php:
|
16818 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
16819 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
16820 |
|
16821 |
-
#: wppa-settings-autosave.php:
|
16822 |
msgid "points per comment"
|
16823 |
msgstr "points par commentaire"
|
16824 |
|
16825 |
-
#: wppa-settings-autosave.php:
|
16826 |
msgid "myCRED / Cube Points: Appr Comment"
|
16827 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
16828 |
|
16829 |
-
#: wppa-settings-autosave.php:
|
16830 |
msgid "Number of points for receiving an approved comment"
|
16831 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
16832 |
|
16833 |
-
#: wppa-settings-autosave.php:
|
16834 |
msgid "myCRED / Cube Points: Rating"
|
16835 |
msgstr "myCRED / Cube Points: notation"
|
16836 |
|
16837 |
-
#: wppa-settings-autosave.php:
|
16838 |
msgid "Number of points for a rating vote"
|
16839 |
msgstr "Nombre de points pour un vote de cote"
|
16840 |
|
16841 |
-
#: wppa-settings-autosave.php:
|
16842 |
msgid "points per vote"
|
16843 |
msgstr "points par vote"
|
16844 |
|
16845 |
-
#: wppa-settings-autosave.php:
|
16846 |
msgid "myCRED / Cube Points: Upload"
|
16847 |
msgstr "myCRED / Cube Points : Télécharger"
|
16848 |
|
16849 |
-
#: wppa-settings-autosave.php:
|
16850 |
msgid "Number of points for a successfull frontend upload"
|
16851 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
16852 |
|
16853 |
-
#: wppa-settings-autosave.php:
|
16854 |
msgid "points per upload"
|
16855 |
msgstr "points par chargement"
|
16856 |
|
16857 |
-
#: wppa-settings-autosave.php:
|
16858 |
msgid "Use SCABN"
|
16859 |
msgstr "Utiliser SCABN"
|
16860 |
|
16861 |
-
#: wppa-settings-autosave.php:
|
16862 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
16863 |
msgstr "Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
16864 |
|
16865 |
-
#: wppa-settings-autosave.php:
|
16866 |
msgid ""
|
16867 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
16868 |
"descriptions is [cart ...]"
|
@@ -16870,23 +16866,23 @@ msgstr ""
|
|
16870 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
16871 |
"les descriptions photo est [cart ...]"
|
16872 |
|
16873 |
-
#: wppa-settings-autosave.php:
|
16874 |
msgid "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
16875 |
msgstr ""
|
16876 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de SCABN."
|
16877 |
|
16878 |
-
#: wppa-settings-autosave.php:
|
16879 |
msgid "The shortcode for the check-out page is still [scabn]"
|
16880 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
16881 |
|
16882 |
-
#: wppa-settings-autosave.php:
|
16883 |
msgid ""
|
16884 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
16885 |
msgstr ""
|
16886 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = photoname, "
|
16887 |
"price = 0.01."
|
16888 |
|
16889 |
-
#: wppa-settings-autosave.php:
|
16890 |
msgid ""
|
16891 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
16892 |
"from the photo name."
|
@@ -16894,11 +16890,11 @@ msgstr ""
|
|
16894 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
16895 |
"diffère de celui de la photo."
|
16896 |
|
16897 |
-
#: wppa-settings-autosave.php:
|
16898 |
msgid "This shortcode handler will also work with Ajax enabled."
|
16899 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
16900 |
|
16901 |
-
#: wppa-settings-autosave.php:
|
16902 |
msgid ""
|
16903 |
"Using this interface makes sure that the item urls and callback action urls "
|
16904 |
"are correct."
|
@@ -16906,17 +16902,17 @@ msgstr ""
|
|
16906 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
16907 |
"callback sont correctes."
|
16908 |
|
16909 |
-
#: wppa-settings-autosave.php:
|
16910 |
msgid "Use CM Tooltip Glossary"
|
16911 |
msgstr "Utiliser CM Tooltip Glossary"
|
16912 |
|
16913 |
-
#: wppa-settings-autosave.php:
|
16914 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
16915 |
msgstr ""
|
16916 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
16917 |
"photos."
|
16918 |
|
16919 |
-
#: wppa-settings-autosave.php:
|
16920 |
msgid ""
|
16921 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
16922 |
"plugin to act on album and photo descriptions!"
|
@@ -16924,137 +16920,137 @@ msgstr ""
|
|
16924 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
16925 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
16926 |
|
16927 |
-
#: wppa-settings-autosave.php:
|
16928 |
msgid "External services related settings and actions."
|
16929 |
msgstr "Réglages et actions pour les services extérieurs."
|
16930 |
|
16931 |
-
#: wppa-settings-autosave.php:
|
16932 |
msgid "QR Code widget size"
|
16933 |
msgstr "Taille du widget QR Code"
|
16934 |
|
16935 |
-
#: wppa-settings-autosave.php:
|
16936 |
msgid "The size of the QR code display."
|
16937 |
msgstr "La taille de l'affichage du QR code."
|
16938 |
|
16939 |
-
#: wppa-settings-autosave.php:
|
16940 |
msgid "QR color"
|
16941 |
msgstr "Couleur QR code"
|
16942 |
|
16943 |
-
#: wppa-settings-autosave.php:
|
16944 |
msgid "The display color of the qr code (dark)"
|
16945 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
16946 |
|
16947 |
-
#: wppa-settings-autosave.php:
|
16948 |
msgid "This color MUST be given in hexadecimal format!"
|
16949 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
16950 |
|
16951 |
-
#: wppa-settings-autosave.php:
|
16952 |
msgid "QR background color"
|
16953 |
msgstr "Couleur de fond de QR Code"
|
16954 |
|
16955 |
-
#: wppa-settings-autosave.php:
|
16956 |
msgid "The background color of the qr code (light)"
|
16957 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
16958 |
|
16959 |
-
#: wppa-settings-autosave.php:
|
16960 |
msgid "CDN Service"
|
16961 |
msgstr "Service CDN"
|
16962 |
|
16963 |
-
#: wppa-settings-autosave.php:
|
16964 |
msgid "Select a CDN Service you want to use."
|
16965 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
16966 |
|
16967 |
-
#: wppa-settings-autosave.php:
|
16968 |
msgid "Cloudinary in maintenance mode"
|
16969 |
msgstr "Cloudinary en mode maintenance"
|
16970 |
|
16971 |
-
#: wppa-settings-autosave.php:
|
16972 |
msgid "Cloud name"
|
16973 |
msgstr "Nom du nuage"
|
16974 |
|
16975 |
-
#: wppa-settings-autosave.php:
|
16976 |
msgid "API key"
|
16977 |
msgstr "Clé API"
|
16978 |
|
16979 |
-
#: wppa-settings-autosave.php:
|
16980 |
msgid "API secret"
|
16981 |
msgstr "Secret API"
|
16982 |
|
16983 |
-
#: wppa-settings-autosave.php:
|
16984 |
msgid "Delete all"
|
16985 |
msgstr "Tout effacer"
|
16986 |
|
16987 |
-
#: wppa-settings-autosave.php:
|
16988 |
msgid "Deletes them all !!!"
|
16989 |
msgstr "Cela les efface tous !!!"
|
16990 |
|
16991 |
-
#: wppa-settings-autosave.php:
|
16992 |
msgid "Delete derived images"
|
16993 |
msgstr "Effacer les images dérivées"
|
16994 |
|
16995 |
-
#: wppa-settings-autosave.php:
|
16996 |
msgid "Deletes all derived images !!!"
|
16997 |
msgstr "Efface toutes les images dérivées !!!"
|
16998 |
|
16999 |
-
#: wppa-settings-autosave.php:
|
17000 |
msgid "Max lifetime"
|
17001 |
msgstr "Temps de vie maximum"
|
17002 |
|
17003 |
-
#: wppa-settings-autosave.php:
|
17004 |
msgid "Old images from local server, new images from Cloudinary."
|
17005 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
17006 |
|
17007 |
-
#: wppa-settings-autosave.php:
|
17008 |
msgid "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
17009 |
msgstr ""
|
17010 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon régulière."
|
17011 |
|
17012 |
-
#: wppa-settings-autosave.php:
|
17013 |
msgid "Forever"
|
17014 |
msgstr "Infini"
|
17015 |
|
17016 |
-
#: wppa-settings-autosave.php:
|
17017 |
msgid "Cloudinary usage"
|
17018 |
msgstr "Utilisation de Cloudinary"
|
17019 |
|
17020 |
-
#: wppa-settings-autosave.php:
|
17021 |
msgid "Cloudinary usage data not available"
|
17022 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
17023 |
|
17024 |
-
#: wppa-settings-autosave.php:
|
17025 |
msgid "Cloudinary routines not installed."
|
17026 |
msgstr "Routines Cloudinary pas installées."
|
17027 |
|
17028 |
-
#: wppa-settings-autosave.php:
|
17029 |
msgid "Cloudinary"
|
17030 |
msgstr "Cloudinary"
|
17031 |
|
17032 |
-
#: wppa-settings-autosave.php:
|
17033 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
17034 |
msgstr ""
|
17035 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale à "
|
17036 |
"5.3</span>"
|
17037 |
|
17038 |
-
#: wppa-settings-autosave.php:
|
17039 |
msgid "GPX Implementation"
|
17040 |
msgstr "Implémentation GPX"
|
17041 |
|
17042 |
-
#: wppa-settings-autosave.php:
|
17043 |
msgid "The way the maps are produced."
|
17044 |
msgstr "La méthode de production des cartes."
|
17045 |
|
17046 |
-
#: wppa-settings-autosave.php:
|
17047 |
msgid "Select the way the maps are produced."
|
17048 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
17049 |
|
17050 |
-
#: wppa-settings-autosave.php:
|
17051 |
msgid ""
|
17052 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
17053 |
msgstr ""
|
17054 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne pouvez "
|
17055 |
"utiliser Ajax (table IV-A1)"
|
17056 |
|
17057 |
-
#: wppa-settings-autosave.php:
|
17058 |
msgid ""
|
17059 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
17060 |
"options."
|
@@ -17062,39 +17058,39 @@ msgstr ""
|
|
17062 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais il "
|
17063 |
"y aura alors moins d'options d'affichage."
|
17064 |
|
17065 |
-
#: wppa-settings-autosave.php:
|
17066 |
msgid "WPPA+ Embedded code"
|
17067 |
msgstr "Code embarqué WPPA+"
|
17068 |
|
17069 |
-
#: wppa-settings-autosave.php:
|
17070 |
msgid "Google maps GPX viewer plugin"
|
17071 |
msgstr "Plugin Google maps de visualisation GPX"
|
17072 |
|
17073 |
-
#: wppa-settings-autosave.php:
|
17074 |
msgid "Map height"
|
17075 |
msgstr "Hauteur de la carte"
|
17076 |
|
17077 |
-
#: wppa-settings-autosave.php:
|
17078 |
msgid "The height of the map display."
|
17079 |
msgstr "La hauteur de l’affichage de la carte."
|
17080 |
|
17081 |
-
#: wppa-settings-autosave.php:
|
17082 |
msgid "Google maps API key"
|
17083 |
msgstr "Clé API Google maps"
|
17084 |
|
17085 |
-
#: wppa-settings-autosave.php:
|
17086 |
msgid "Enter your Google maps api key here if you have one."
|
17087 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
17088 |
|
17089 |
-
#: wppa-settings-autosave.php:
|
17090 |
msgid "GPX Shortcode"
|
17091 |
msgstr "Shortcode GPX"
|
17092 |
|
17093 |
-
#: wppa-settings-autosave.php:
|
17094 |
msgid "The shortcode to be used for the gpx feature."
|
17095 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
17096 |
|
17097 |
-
#: wppa-settings-autosave.php:
|
17098 |
msgid ""
|
17099 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
17100 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
@@ -17103,28 +17099,28 @@ msgstr ""
|
|
17103 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
17104 |
"longitude."
|
17105 |
|
17106 |
-
#: wppa-settings-autosave.php:
|
17107 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
17108 |
msgstr ""
|
17109 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
17110 |
|
17111 |
-
#: wppa-settings-autosave.php:
|
17112 |
msgid "Fotomoto"
|
17113 |
msgstr "Fotomoto"
|
17114 |
|
17115 |
-
#: wppa-settings-autosave.php:
|
17116 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
17117 |
msgstr "Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
17118 |
|
17119 |
-
#: wppa-settings-autosave.php:
|
17120 |
msgid "In order to function properly:"
|
17121 |
msgstr "Pour fonctionner correctement:"
|
17122 |
|
17123 |
-
#: wppa-settings-autosave.php:
|
17124 |
msgid "1. Get yourself a Fotomoto account."
|
17125 |
msgstr "1. Créez-vous un compte Fotomoto."
|
17126 |
|
17127 |
-
#: wppa-settings-autosave.php:
|
17128 |
msgid ""
|
17129 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check the "
|
17130 |
"\"Use API Mode:\" checkbox."
|
@@ -17132,24 +17128,24 @@ msgstr ""
|
|
17132 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et vérifiez "
|
17133 |
"la case à cocher \"Use API Mode:\"."
|
17134 |
|
17135 |
-
#: wppa-settings-autosave.php:
|
17136 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
17137 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
17138 |
|
17139 |
-
#: wppa-settings-autosave.php:
|
17140 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
17141 |
msgstr ""
|
17142 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-B15 )."
|
17143 |
|
17144 |
-
#: wppa-settings-autosave.php:
|
17145 |
msgid "Fotomoto fontsize"
|
17146 |
msgstr "Taille de la police de caractère Fotomoto"
|
17147 |
|
17148 |
-
#: wppa-settings-autosave.php:
|
17149 |
msgid "Fontsize for the Fotomoto toolbar."
|
17150 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
17151 |
|
17152 |
-
#: wppa-settings-autosave.php:
|
17153 |
msgid ""
|
17154 |
"If you set it here, it overrules a possible setting for font-size in ."
|
17155 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
@@ -17157,61 +17153,61 @@ msgstr ""
|
|
17157 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
17158 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
17159 |
|
17160 |
-
#: wppa-settings-autosave.php:
|
17161 |
msgid "Hide toolbar on running slideshows"
|
17162 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
17163 |
|
17164 |
-
#: wppa-settings-autosave.php:
|
17165 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
17166 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
17167 |
|
17168 |
-
#: wppa-settings-autosave.php:
|
17169 |
msgid "Fotomoto minwidth"
|
17170 |
msgstr "Largeur mini de Fotomoto"
|
17171 |
|
17172 |
-
#: wppa-settings-autosave.php:
|
17173 |
msgid "Minimum width to display Fotomoto toolbar."
|
17174 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
17175 |
|
17176 |
-
#: wppa-settings-autosave.php:
|
17177 |
msgid ""
|
17178 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
17179 |
msgstr ""
|
17180 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus petits."
|
17181 |
|
17182 |
-
#: wppa-settings-autosave.php:
|
17183 |
msgid "Table X:"
|
17184 |
msgstr "Table X:"
|
17185 |
|
17186 |
-
#: wppa-settings-autosave.php:
|
17187 |
msgid "IPTC Configuration:"
|
17188 |
msgstr "Configuration IPTC:"
|
17189 |
|
17190 |
-
#: wppa-settings-autosave.php:
|
17191 |
msgid "This table defines the IPTC configuration"
|
17192 |
msgstr "Cette table règle la configuration de IPTC"
|
17193 |
|
17194 |
-
#: wppa-settings-autosave.php:
|
17195 |
msgid "Display"
|
17196 |
msgstr "Afficher"
|
17197 |
|
17198 |
-
#: wppa-settings-autosave.php:
|
17199 |
msgid "Hide"
|
17200 |
msgstr "Cacher"
|
17201 |
|
17202 |
-
#: wppa-settings-autosave.php:
|
17203 |
msgid "Table XI:"
|
17204 |
msgstr "Table XI:"
|
17205 |
|
17206 |
-
#: wppa-settings-autosave.php:
|
17207 |
msgid "EXIF Configuration:"
|
17208 |
msgstr "Configuration EXIF:"
|
17209 |
|
17210 |
-
#: wppa-settings-autosave.php:
|
17211 |
msgid "This table defines the EXIF configuration"
|
17212 |
msgstr "Cette table règle la configuration d'EXIF"
|
17213 |
|
17214 |
-
#: wppa-settings-autosave.php:
|
17215 |
msgid ""
|
17216 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
17217 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to add "
|
@@ -17222,15 +17218,15 @@ msgstr ""
|
|
17222 |
"hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de configuration</"
|
17223 |
"b> de PHP."
|
17224 |
|
17225 |
-
#: wppa-settings-autosave.php:
|
17226 |
msgid "Table XII:"
|
17227 |
msgstr "Table XII:"
|
17228 |
|
17229 |
-
#: wppa-settings-autosave.php:
|
17230 |
msgid "WPPA+ and PHP Configuration:"
|
17231 |
msgstr "Configuration WPPA+ et PHP:"
|
17232 |
|
17233 |
-
#: wppa-settings-autosave.php:
|
17234 |
msgid ""
|
17235 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
17236 |
"and is read only"
|
@@ -17238,142 +17234,142 @@ msgstr ""
|
|
17238 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
17239 |
"les paramètres de configuration du serveur PHP"
|
17240 |
|
17241 |
-
#: wppa-settings-autosave.php:
|
17242 |
msgid "Value"
|
17243 |
msgstr "Valeur"
|
17244 |
|
17245 |
-
#: wppa-settings-autosave.php:
|
17246 |
msgid "Albums db table name."
|
17247 |
msgstr "Nom de la table albums dans la base de données."
|
17248 |
|
17249 |
-
#: wppa-settings-autosave.php:
|
17250 |
msgid "Photos db table name."
|
17251 |
msgstr "Nom de la table photos dans la base de données."
|
17252 |
|
17253 |
-
#: wppa-settings-autosave.php:
|
17254 |
msgid "Rating db table name."
|
17255 |
msgstr "Nom de la table votes dans la base de données."
|
17256 |
|
17257 |
-
#: wppa-settings-autosave.php:
|
17258 |
msgid "Comments db table name."
|
17259 |
msgstr "Nom de la table commentaires dans la base de données."
|
17260 |
|
17261 |
-
#: wppa-settings-autosave.php:
|
17262 |
msgid "IPTC db table name."
|
17263 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
17264 |
|
17265 |
-
#: wppa-settings-autosave.php:
|
17266 |
msgid "EXIF db table name."
|
17267 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
17268 |
|
17269 |
-
#: wppa-settings-autosave.php:
|
17270 |
msgid "Index db table name."
|
17271 |
msgstr "Nom de la table Index dans la base de donnée."
|
17272 |
|
17273 |
-
#: wppa-settings-autosave.php:
|
17274 |
msgid "Plugins main file name."
|
17275 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
17276 |
|
17277 |
-
#: wppa-settings-autosave.php:
|
17278 |
msgid "ABSPATH windows proof"
|
17279 |
msgstr "ABSPATH windows proof"
|
17280 |
|
17281 |
-
#: wppa-settings-autosave.php:
|
17282 |
msgid "Path to plugins directory."
|
17283 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
17284 |
|
17285 |
-
#: wppa-settings-autosave.php:
|
17286 |
msgid "Plugins directory name."
|
17287 |
msgstr "Nom du répertoire des greffons (plugins)."
|
17288 |
|
17289 |
-
#: wppa-settings-autosave.php:
|
17290 |
msgid "Plugins directory url."
|
17291 |
msgstr "URL du répertoire des greffons (plugins)."
|
17292 |
|
17293 |
-
#: wppa-settings-autosave.php:
|
17294 |
msgid "The relative upload directory."
|
17295 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
17296 |
|
17297 |
-
#: wppa-settings-autosave.php:
|
17298 |
msgid "The upload directory path."
|
17299 |
msgstr "Chemin du répertoire de chargement (upload)."
|
17300 |
|
17301 |
-
#: wppa-settings-autosave.php:
|
17302 |
msgid "The upload directory url."
|
17303 |
msgstr "URL du répertoire de chargement (upload)."
|
17304 |
|
17305 |
-
#: wppa-settings-autosave.php:
|
17306 |
msgid "The relative depot directory."
|
17307 |
msgstr "Chemin relatif du répertoire de dépôt."
|
17308 |
|
17309 |
-
#: wppa-settings-autosave.php:
|
17310 |
msgid "The depot directory path."
|
17311 |
msgstr "Chemin du répertoire de dépôt."
|
17312 |
|
17313 |
-
#: wppa-settings-autosave.php:
|
17314 |
msgid "The depot directory url."
|
17315 |
msgstr "URL du répertoire de dépôt."
|
17316 |
|
17317 |
-
#: wppa-settings-autosave.php:
|
17318 |
msgid "The path to wp-content."
|
17319 |
msgstr "Chemin vers wp-content."
|
17320 |
|
17321 |
-
#: wppa-settings-autosave.php:
|
17322 |
msgid "WP Content url."
|
17323 |
msgstr "URL de contenu WP."
|
17324 |
|
17325 |
-
#: wppa-settings-autosave.php:
|
17326 |
msgid "WP Base upload dir."
|
17327 |
msgstr "Répertoire de chargement de WP."
|
17328 |
|
17329 |
-
#: wppa-settings-autosave.php:
|
17330 |
#, php-format
|
17331 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
17332 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
17333 |
|
17334 |
-
#: wppa-settings-autosave.php:
|
17335 |
#, php-format
|
17336 |
msgid "<br />There are %d settings and %d runtime parameters."
|
17337 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
17338 |
|
17339 |
-
#: wppa-settings-autosave.php:
|
17340 |
-
#: wppa-settings-autosave.php:
|
17341 |
msgid "Warning!"
|
17342 |
msgstr "Attention!"
|
17343 |
|
17344 |
-
#: wppa-settings-autosave.php:
|
17345 |
msgid "Please read the help"
|
17346 |
msgstr "Veuillez consulter l'aide"
|
17347 |
|
17348 |
-
#: wppa-settings-autosave.php:
|
17349 |
msgid "Show!"
|
17350 |
msgstr "Montrer!"
|
17351 |
|
17352 |
-
#: wppa-settings-autosave.php:
|
17353 |
msgid "Not done yet"
|
17354 |
msgstr "Pas encore fait"
|
17355 |
|
17356 |
-
#: wppa-settings-autosave.php:
|
17357 |
msgid "Start as cron job"
|
17358 |
msgstr "Commencez comme tâche cron"
|
17359 |
|
17360 |
-
#: wppa-settings-autosave.php:
|
17361 |
msgid "Locked!"
|
17362 |
msgstr "Verrouillé!"
|
17363 |
|
17364 |
-
#: wppa-settings-autosave.php:
|
17365 |
msgid "Crashed!"
|
17366 |
msgstr "Écrasé!"
|
17367 |
|
17368 |
-
#: wppa-settings-autosave.php:
|
17369 |
msgid "Click me to resume"
|
17370 |
msgstr "Cliquez-moi pour reprendre"
|
17371 |
|
17372 |
-
#: wppa-settings-autosave.php:
|
17373 |
msgid "Start!"
|
17374 |
msgstr "Démarrer!"
|
17375 |
|
17376 |
-
#: wppa-settings-autosave.php:
|
17377 |
msgid ""
|
17378 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
17379 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
@@ -17382,7 +17378,7 @@ msgstr ""
|
|
17382 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
17383 |
"VI-2."
|
17384 |
|
17385 |
-
#: wppa-settings-autosave.php:
|
17386 |
#, fuzzy
|
17387 |
msgid ""
|
17388 |
"It is important that you select a page that contains at least [wppa][/wppa]."
|
@@ -17390,7 +17386,7 @@ msgstr ""
|
|
17390 |
"Il est important que vous sélectionnez une page qui contient au moins [LPPT] "
|
17391 |
"[/ LPPT]."
|
17392 |
|
17393 |
-
#: wppa-settings-autosave.php:
|
17394 |
msgid ""
|
17395 |
"If you ommit this, the link will not work at all or simply refresh the "
|
17396 |
"(home)page."
|
@@ -17482,95 +17478,95 @@ msgstr "Rechercher dans la section courante"
|
|
17482 |
msgid "Search in current results"
|
17483 |
msgstr "Rechercher dans les résultats courants"
|
17484 |
|
17485 |
-
#: wppa-setup.php:
|
17486 |
msgid "Type your custom url here"
|
17487 |
msgstr "Tapez votre URL personnalisée ici"
|
17488 |
|
17489 |
-
#: wppa-setup.php:
|
17490 |
msgid "Type the title here"
|
17491 |
msgstr "Entrez ici le titre de la page"
|
17492 |
|
17493 |
-
#: wppa-setup.php:
|
17494 |
#: wppa-topten-widget.php:308
|
17495 |
msgid "Top Ten Photos"
|
17496 |
msgstr "Meilleures photos"
|
17497 |
|
17498 |
-
#: wppa-setup.php:
|
17499 |
msgid "Thumbnail Photos"
|
17500 |
msgstr "Vignettes"
|
17501 |
|
17502 |
-
#: wppa-setup.php:
|
17503 |
msgid "Search photos"
|
17504 |
msgstr "Rechercher dans les photos"
|
17505 |
|
17506 |
-
#: wppa-setup.php:
|
17507 |
msgid ""
|
17508 |
"The uploads directory does not exist, please do a regular WP upload first."
|
17509 |
msgstr ""
|
17510 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire un "
|
17511 |
"chargement basique via WordPress."
|
17512 |
|
17513 |
-
#: wppa-setup.php:
|
17514 |
msgid "Successfully created uploads directory."
|
17515 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
17516 |
|
17517 |
-
#: wppa-setup.php:
|
17518 |
msgid "Could not create the wppa directory."
|
17519 |
msgstr "Impossible de créer le répertoire WPPA."
|
17520 |
|
17521 |
-
#: wppa-setup.php:
|
17522 |
msgid "Successfully created wppa directory."
|
17523 |
msgstr "Répertoire WPPA créé avec succès."
|
17524 |
|
17525 |
-
#: wppa-setup.php:
|
17526 |
msgid "Could not create the wppa thumbs directory."
|
17527 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
17528 |
|
17529 |
-
#: wppa-setup.php:
|
17530 |
msgid "Successfully created wppa thumbs directory."
|
17531 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
17532 |
|
17533 |
-
#: wppa-setup.php:
|
17534 |
msgid "Could not create the wppa watermarks directory."
|
17535 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
17536 |
|
17537 |
-
#: wppa-setup.php:
|
17538 |
msgid "Successfully created wppa watermarks directory."
|
17539 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
17540 |
|
17541 |
-
#: wppa-setup.php:
|
17542 |
msgid "Could not create the wppa fonts directory."
|
17543 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
17544 |
|
17545 |
-
#: wppa-setup.php:
|
17546 |
msgid "Successfully created wppa fonts directory."
|
17547 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
17548 |
|
17549 |
-
#: wppa-setup.php:
|
17550 |
msgid "Unable to create depot directory."
|
17551 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
17552 |
|
17553 |
-
#: wppa-setup.php:
|
17554 |
msgid "Successfully created wppa depot directory."
|
17555 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
17556 |
|
17557 |
-
#: wppa-setup.php:
|
17558 |
msgid "Unable to create user depot directory"
|
17559 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
17560 |
|
17561 |
-
#: wppa-setup.php:
|
17562 |
msgid "Successfully created wppa user depot directory."
|
17563 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
17564 |
|
17565 |
-
#: wppa-setup.php:
|
17566 |
msgid "Unable to create temp directory"
|
17567 |
msgstr "Impossible de créer le répertoire temporaire"
|
17568 |
|
17569 |
-
#: wppa-setup.php:
|
17570 |
msgid "Successfully created temp directory."
|
17571 |
msgstr "Répertoire temporaire créé avec succès."
|
17572 |
|
17573 |
-
#: wppa-setup.php:
|
17574 |
#, php-format
|
17575 |
msgid ""
|
17576 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
@@ -17579,7 +17575,7 @@ msgstr ""
|
|
17579 |
"Demander à votre administrateur de vous donner plus de droits, ou créer <b>%s</"
|
17580 |
"b> manuellement en utilisant un logiciel FTP."
|
17581 |
|
17582 |
-
#: wppa-setup.php:
|
17583 |
msgid "Default photo album for"
|
17584 |
msgstr "Album par défaut pour"
|
17585 |
|
@@ -18734,33 +18730,33 @@ msgstr "Time out après traitement de %s objets. Recommencer l'opération"
|
|
18734 |
msgid "There are no ratings between"
|
18735 |
msgstr "Il n’y a aucune cote entre"
|
18736 |
|
18737 |
-
#: wppa-utils.php:
|
18738 |
#, php-format
|
18739 |
msgid "You and %d other person like this"
|
18740 |
msgid_plural "You and %d other people like this"
|
18741 |
msgstr[0] "Vous et %d total autre personne aiment cela."
|
18742 |
msgstr[1] "Vous et %d total autre personnes aiment cela."
|
18743 |
|
18744 |
-
#: wppa-utils.php:
|
18745 |
msgid "You are the first one who likes this"
|
18746 |
msgstr "Vous êtes la première personne qui aime ça"
|
18747 |
|
18748 |
-
#: wppa-utils.php:
|
18749 |
msgid "Click again if you do no longer like this"
|
18750 |
msgstr "Cliquez à nouveau si vous aime plus comme ceci"
|
18751 |
|
18752 |
-
#: wppa-utils.php:
|
18753 |
#, php-format
|
18754 |
msgid "%d person likes this"
|
18755 |
msgid_plural "%d people like this"
|
18756 |
msgstr[0] "%d personne aime ça"
|
18757 |
msgstr[1] "%d personnes aime ça"
|
18758 |
|
18759 |
-
#: wppa-utils.php:
|
18760 |
msgid "Be the first one to like this"
|
18761 |
msgstr "Soyez le premier à aimer!"
|
18762 |
|
18763 |
-
#: wppa-utils.php:
|
18764 |
#, php-format
|
18765 |
msgid "%d like"
|
18766 |
msgid_plural "%d likes"
|
@@ -18815,6 +18811,15 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
|
|
18815 |
msgid "http://wppa.opajaap.nl/"
|
18816 |
msgstr "http://wppa.opajaap.nl/"
|
18817 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18818 |
#~ msgid ""
|
18819 |
#~ "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
18820 |
#~ msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-12-14 11:26+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-12-14 11:29+0100\n"
|
7 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language-Team: French <kde-i18n-doc@kde.org>\n"
|
9 |
"Language: fr_FR\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
+
#: theme/photo-album-page-2010.php:33 theme/photo-album-search-page.php:52
|
28 |
msgid "Pages:"
|
29 |
msgstr "Pages:"
|
30 |
|
31 |
+
#: theme/photo-album-page-2010.php:34 theme/photo-album-search-page.php:53
|
32 |
#: wppa-album-admin-autosave.php:1393 wppa-album-admin-autosave.php:1431
|
33 |
#: wppa-album-admin-autosave.php:1530 wppa-album-admin-autosave.php:1765
|
34 |
#: wppa-album-admin-autosave.php:1860 wppa-album-admin-autosave.php:1934
|
315 |
msgstr "Widget \"Photo du jour\""
|
316 |
|
317 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
318 |
+
#: wppa-settings-autosave.php:6080 wppa-setup.php:1634
|
319 |
msgid "Photo of the day"
|
320 |
msgstr "Photo du jour"
|
321 |
|
353 |
msgid "Import"
|
354 |
msgstr "Importer"
|
355 |
|
356 |
+
#: wppa-admin.php:128 wppa-settings-autosave.php:9924
|
357 |
msgid "Update"
|
358 |
msgstr "Mettre à jour"
|
359 |
|
639 |
#: wppa-album-admin-autosave.php:486 wppa-album-admin-autosave.php:1340
|
640 |
#: wppa-album-admin-autosave.php:1477 wppa-album-admin-autosave.php:1712
|
641 |
#: wppa-album-admin-autosave.php:1807 wppa-boxes-html.php:415
|
642 |
+
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:1991
|
643 |
+
#: wppa-photo-admin-autosave.php:2156 wppa-photo-admin-autosave.php:2573
|
644 |
#: wppa-potd-admin.php:71 wppa-potd-admin.php:358 wppa-settings-autosave.php:505
|
645 |
#: wppa-settings-autosave.php:667 wppa-settings-autosave.php:689
|
646 |
#: wppa-settings-autosave.php:1437 wppa-settings-autosave.php:1458
|
652 |
#: wppa-settings-autosave.php:6040 wppa-settings-autosave.php:6485
|
653 |
#: wppa-settings-autosave.php:6735 wppa-settings-autosave.php:6757
|
654 |
#: wppa-settings-autosave.php:7541 wppa-settings-autosave.php:7565
|
655 |
+
#: wppa-settings-autosave.php:8728 wppa-settings-autosave.php:9361
|
656 |
+
#: wppa-settings-autosave.php:9517 wppa-thumbnail-widget.php:202
|
657 |
#: wppa-upload.php:266
|
658 |
msgid "Name"
|
659 |
msgstr "Nom"
|
660 |
|
661 |
#: wppa-ajax.php:1108 wppa-ajax.php:1568 wppa-album-admin-autosave.php:1350
|
662 |
#: wppa-album-admin-autosave.php:1487 wppa-album-admin-autosave.php:1722
|
663 |
+
#: wppa-album-admin-autosave.php:1817 wppa-photo-admin-autosave.php:1992
|
664 |
+
#: wppa-photo-admin-autosave.php:2157 wppa-photo-admin-autosave.php:2574
|
665 |
#: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
|
666 |
#: wppa-settings-autosave.php:506 wppa-settings-autosave.php:668
|
667 |
#: wppa-settings-autosave.php:690 wppa-settings-autosave.php:1438
|
672 |
#: wppa-settings-autosave.php:4983 wppa-settings-autosave.php:6041
|
673 |
#: wppa-settings-autosave.php:6486 wppa-settings-autosave.php:6736
|
674 |
#: wppa-settings-autosave.php:6758 wppa-settings-autosave.php:7542
|
675 |
+
#: wppa-settings-autosave.php:7566 wppa-settings-autosave.php:9362
|
676 |
+
#: wppa-settings-autosave.php:9384 wppa-settings-autosave.php:9424
|
677 |
+
#: wppa-settings-autosave.php:9446 wppa-settings-autosave.php:9492
|
678 |
+
#: wppa-settings-autosave.php:9518
|
679 |
msgid "Description"
|
680 |
msgstr "Description"
|
681 |
|
719 |
#: wppa-ajax.php:1145 wppa-ajax.php:1589 wppa-album-admin-autosave.php:1361
|
720 |
#: wppa-album-admin-autosave.php:1498 wppa-album-admin-autosave.php:1733
|
721 |
#: wppa-album-admin-autosave.php:1828 wppa-boxes-html.php:537
|
722 |
+
#: wppa-photo-admin-autosave.php:1994 wppa-photo-admin-autosave.php:2159
|
723 |
#: wppa-potd-admin.php:139
|
724 |
msgid "Owner"
|
725 |
msgstr "Propriétaire"
|
952 |
msgstr "Tags de la photo"
|
953 |
|
954 |
#: wppa-ajax.php:1609 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
955 |
+
#: wppa-photo-admin-autosave.php:1993 wppa-photo-admin-autosave.php:2158
|
956 |
#: wppa-settings-autosave.php:6761 wppa-settings-autosave.php:7545
|
957 |
+
#: wppa-settings-autosave.php:9385 wppa-settings-autosave.php:9425
|
958 |
+
#: wppa-settings-autosave.php:9447 wppa-settings-autosave.php:9493
|
959 |
msgid "Status"
|
960 |
msgstr "Statut"
|
961 |
|
1532 |
msgstr "Modifié:"
|
1533 |
|
1534 |
#: wppa-album-admin-autosave.php:326 wppa-photo-admin-autosave.php:583
|
1535 |
+
#: wppa-photo-admin-autosave.php:2146
|
1536 |
msgid "Not modified"
|
1537 |
msgstr "Non modifié"
|
1538 |
|
1869 |
msgid "Link to:"
|
1870 |
msgstr "Lien vers:"
|
1871 |
|
1872 |
+
#: wppa-album-admin-autosave.php:834 wppa-settings-autosave.php:10050
|
1873 |
+
#: wppa-settings-autosave.php:10092 wppa-settings-autosave.php:10144
|
1874 |
msgid "There are no pages (yet) to link to."
|
1875 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1876 |
|
1982 |
msgid "Edit photo"
|
1983 |
msgstr "Modifier photo"
|
1984 |
|
1985 |
+
#: wppa-album-admin-autosave.php:1076 wppa-boxes-html.php:1854
|
1986 |
+
#: wppa-boxes-html.php:1857
|
1987 |
msgid "Delete Album"
|
1988 |
msgstr "Supprimer l'album"
|
1989 |
|
2017 |
#: wppa-album-admin-autosave.php:1864 wppa-album-admin-autosave.php:2082
|
2018 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2019 |
#: wppa-comment-admin.php:406 wppa-functions.php:2137 wppa-links.php:789
|
2020 |
+
#: wppa-links.php:807 wppa-photo-admin-autosave.php:1925
|
2021 |
+
#: wppa-photo-admin-autosave.php:2011 wppa-thumbnails.php:669
|
2022 |
msgid "Delete"
|
2023 |
msgstr "Supprimer"
|
2024 |
|
2026 |
msgid "Move to:"
|
2027 |
msgstr "Déplacer vers:"
|
2028 |
|
2029 |
+
#: wppa-album-admin-autosave.php:1094 wppa-photo-admin-autosave.php:2704
|
2030 |
#: wppa-settings-autosave.php:2892
|
2031 |
msgid "Cancel"
|
2032 |
msgstr "Annuler"
|
2065 |
|
2066 |
#: wppa-album-admin-autosave.php:1330 wppa-album-admin-autosave.php:1467
|
2067 |
#: wppa-album-admin-autosave.php:1701 wppa-album-admin-autosave.php:1796
|
2068 |
+
#: wppa-photo-admin-autosave.php:1989 wppa-photo-admin-autosave.php:2154
|
2069 |
msgid "ID"
|
2070 |
msgstr "ID"
|
2071 |
|
2336 |
msgstr[0] "%d photo"
|
2337 |
msgstr[1] "%d photos"
|
2338 |
|
2339 |
+
#: wppa-album-covers.php:1448 wppa-boxes-html.php:1282 wppa-boxes-html.php:1595
|
2340 |
#: wppa-breadcrumb.php:175 wppa-breadcrumb.php:181 wppa-breadcrumb.php:188
|
2341 |
#: wppa-breadcrumb.php:412 wppa-breadcrumb.php:414 wppa-breadcrumb.php:420
|
2342 |
#: wppa-breadcrumb.php:422 wppa-breadcrumb.php:430 wppa-breadcrumb.php:446
|
2533 |
#: wppa-settings-autosave.php:4182 wppa-settings-autosave.php:5689
|
2534 |
#: wppa-settings-autosave.php:6446 wppa-settings-autosave.php:7921
|
2535 |
#: wppa-settings-autosave.php:8140 wppa-settings-autosave.php:8216
|
2536 |
+
#: wppa-settings-autosave.php:9121 wppa-settings-autosave.php:9278
|
2537 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-shortcodes.php:626
|
2538 |
#: wppa-watermark.php:533
|
2539 |
msgid "--- none ---"
|
2590 |
msgid "Items must meet all selected options."
|
2591 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2592 |
|
2593 |
+
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:9382
|
2594 |
+
#: wppa-settings-autosave.php:9422 wppa-settings-autosave.php:9444
|
2595 |
+
#: wppa-settings-autosave.php:9490
|
2596 |
msgid "Tag"
|
2597 |
msgstr "Tag"
|
2598 |
|
2671 |
msgid "See this image on %s"
|
2672 |
msgstr "Voir cette image sur %s"
|
2673 |
|
2674 |
+
#: wppa-boxes-html.php:1310 wppa-boxes-html.php:1613 wppa-qr-widget.php:39
|
2675 |
msgid "QR code"
|
2676 |
msgstr "QR code"
|
2677 |
|
2678 |
+
#: wppa-boxes-html.php:1355 wppa-boxes-html.php:1645
|
2679 |
#, php-format
|
2680 |
msgid "Tweet %s on Twitter"
|
2681 |
msgstr "Tweeter %s sur Twitter"
|
2682 |
|
2683 |
+
#: wppa-boxes-html.php:1362 wppa-boxes-html.php:1652
|
2684 |
msgid "Share on Twitter"
|
2685 |
msgstr "Partager sur Pinterest"
|
2686 |
|
2687 |
+
#: wppa-boxes-html.php:1375 wppa-boxes-html.php:1665
|
2688 |
#, php-format
|
2689 |
msgid "Share %s on Google+"
|
2690 |
msgstr "Partager %s sur Google+"
|
2691 |
|
2692 |
+
#: wppa-boxes-html.php:1382 wppa-boxes-html.php:1673
|
2693 |
msgid "Share on Google+"
|
2694 |
msgstr "Partager sur Google+"
|
2695 |
|
2696 |
+
#: wppa-boxes-html.php:1397
|
2697 |
#, php-format
|
2698 |
msgid "Share %s on Pinterest"
|
2699 |
msgstr "Partager %s sur Pinterest"
|
2700 |
|
2701 |
+
#: wppa-boxes-html.php:1407
|
2702 |
msgid "Share on Pinterest"
|
2703 |
msgstr "Partager sur Pinterest"
|
2704 |
|
2705 |
+
#: wppa-boxes-html.php:1552 wppa-boxes-html.php:1749
|
2706 |
msgid "Comment on Facebook:"
|
2707 |
msgstr "Commenter sur Facebook:"
|
2708 |
|
2709 |
+
#: wppa-boxes-html.php:1596
|
2710 |
#, php-format
|
2711 |
msgid "See this article on %s"
|
2712 |
msgstr "Voir cet article sur %s"
|
2713 |
|
2714 |
+
#: wppa-boxes-html.php:1852 wppa-import.php:1305
|
2715 |
msgid "Working..."
|
2716 |
msgstr "Traitement en cours..."
|
2717 |
|
2718 |
+
#: wppa-boxes-html.php:1949
|
2719 |
msgid "Create Sub Album"
|
2720 |
msgstr "Créer un sub-album"
|
2721 |
|
2722 |
+
#: wppa-boxes-html.php:1949
|
2723 |
msgid "Create Album"
|
2724 |
msgstr "Créer un album"
|
2725 |
|
2726 |
+
#: wppa-boxes-html.php:1997
|
2727 |
msgid "Enter album name."
|
2728 |
msgstr "Entrer un nom d'album."
|
2729 |
|
2730 |
+
#: wppa-boxes-html.php:1999 wppa-boxes-html.php:2941
|
2731 |
msgid "Don't leave this blank!"
|
2732 |
msgstr "Ne laissez pas ceci vide !"
|
2733 |
|
2734 |
+
#: wppa-boxes-html.php:2020
|
2735 |
msgid "Enter album description"
|
2736 |
msgstr "Entrez la description de l'album"
|
2737 |
|
2738 |
+
#: wppa-boxes-html.php:2048
|
2739 |
msgid "Create album"
|
2740 |
msgstr "Créer un album"
|
2741 |
|
2742 |
+
#: wppa-boxes-html.php:2206 wppa-boxes-html.php:2220 wppa-functions.php:4307
|
2743 |
msgid "Max uploads reached"
|
2744 |
msgstr "Ajout maximum ateind"
|
2745 |
|
2746 |
+
#: wppa-boxes-html.php:2285 wppa-upload.php:188
|
2747 |
msgid "Upload Photo"
|
2748 |
msgstr "Uploader une photo"
|
2749 |
|
2750 |
+
#: wppa-boxes-html.php:2360
|
2751 |
msgid "Enter album id"
|
2752 |
msgstr "Entrez album id"
|
2753 |
|
2754 |
+
#: wppa-boxes-html.php:2386
|
2755 |
msgid "Select Photo / Video / Camera"
|
2756 |
msgstr "Sélectionnez Photo / Vidéo / Camera"
|
2757 |
|
2758 |
+
#: wppa-boxes-html.php:2389
|
2759 |
msgid "Select Photo / Camera"
|
2760 |
msgstr "Sélectionnez Photo / Caméra"
|
2761 |
|
2762 |
+
#: wppa-boxes-html.php:2394
|
2763 |
msgid "Select Photo / Video"
|
2764 |
msgstr "Sélectionnez Photo / Vidéo"
|
2765 |
|
2766 |
+
#: wppa-boxes-html.php:2397
|
2767 |
msgid "Select Photo"
|
2768 |
msgstr "Sélectionnez photo"
|
2769 |
|
2770 |
+
#: wppa-boxes-html.php:2404
|
2771 |
msgid "Select Photos / Video / Camera"
|
2772 |
msgstr "Sélectionnez Photos / Vidéo / Caméra"
|
2773 |
|
2774 |
+
#: wppa-boxes-html.php:2407
|
2775 |
msgid "Select Photos / Camera"
|
2776 |
msgstr "Sélectionnez Photos / Caméra"
|
2777 |
|
2778 |
+
#: wppa-boxes-html.php:2412
|
2779 |
msgid "Select Photos / Video"
|
2780 |
msgstr "Sélectionnez Photos / Vidéo"
|
2781 |
|
2782 |
+
#: wppa-boxes-html.php:2415
|
2783 |
msgid "Select Photos"
|
2784 |
msgstr "Sélectionnez Photos"
|
2785 |
|
2786 |
+
#: wppa-boxes-html.php:2458
|
2787 |
#, php-format
|
2788 |
msgid "You may upload %d photo"
|
2789 |
msgid_plural ""
|
2794 |
"Vous pouvez charger jusqu'à %d photos à la fois si votre navigateur supporte "
|
2795 |
"la fonction HTML-5 multiple file upload"
|
2796 |
|
2797 |
+
#: wppa-boxes-html.php:2466
|
2798 |
#, php-format
|
2799 |
msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
|
2800 |
msgstr "Taille photo max: %d x %d (%2.1f MegaPixel)"
|
2801 |
|
2802 |
+
#: wppa-boxes-html.php:2495 wppa-import.php:561 wppa-upload.php:174
|
2803 |
#: wppa-upload.php:316 wppa-upload.php:390
|
2804 |
msgid "Apply watermark file:"
|
2805 |
msgstr "Appliquer le filigrane:"
|
2806 |
|
2807 |
+
#: wppa-boxes-html.php:2517 wppa-import.php:565 wppa-upload.php:178
|
2808 |
#: wppa-upload.php:320 wppa-upload.php:394
|
2809 |
msgid "Position:"
|
2810 |
msgstr "Position:"
|
2811 |
|
2812 |
+
#: wppa-boxes-html.php:2545
|
2813 |
msgid ""
|
2814 |
"If you leave this blank, iptc tag 005 (Graphic name) will be used as photoname "
|
2815 |
"if available, else the original filename will be used as photo name."
|
2818 |
"de photo si disponible sinon le nom original du fichier sera utilisé comme nom "
|
2819 |
"de photo. "
|
2820 |
|
2821 |
+
#: wppa-boxes-html.php:2550
|
2822 |
msgid ""
|
2823 |
"If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
|
2824 |
"available, else the original filename will be used as photo name."
|
2827 |
"photo si disponible sinon le nom de fichier original sera utilisé comme nom de "
|
2828 |
"photo."
|
2829 |
|
2830 |
+
#: wppa-boxes-html.php:2555
|
2831 |
msgid ""
|
2832 |
"If you leave this blank, the original filename will be used as photo name."
|
2833 |
msgstr ""
|
2834 |
"Si vous laisser cela vide, le nom de fichier original sera utilisé comme nom "
|
2835 |
"de photo."
|
2836 |
|
2837 |
+
#: wppa-boxes-html.php:2560 wppa-settings-autosave.php:1671
|
2838 |
msgid "Photo name"
|
2839 |
msgstr "Nom de la photo"
|
2840 |
|
2841 |
+
#: wppa-boxes-html.php:2578
|
2842 |
msgid "Photo description"
|
2843 |
msgstr "Description de la photo"
|
2844 |
|
2845 |
+
#: wppa-boxes-html.php:2606
|
2846 |
msgid "hidden"
|
2847 |
msgstr "caché"
|
2848 |
|
2849 |
+
#: wppa-boxes-html.php:2676
|
2850 |
msgid "Preview tags:"
|
2851 |
msgstr "Aperçu tags:"
|
2852 |
|
2853 |
+
#: wppa-boxes-html.php:2693
|
2854 |
msgid "Blog it?"
|
2855 |
msgstr "Blog it?"
|
2856 |
|
2857 |
+
#: wppa-boxes-html.php:2703
|
2858 |
msgid "Upload and blog"
|
2859 |
msgstr "Upload et blog"
|
2860 |
|
2861 |
+
#: wppa-boxes-html.php:2707 wppa-boxes-html.php:2770
|
2862 |
msgid "Upload photo"
|
2863 |
msgstr "Uploader une photo"
|
2864 |
|
2865 |
+
#: wppa-boxes-html.php:2715
|
2866 |
msgid "Post title:"
|
2867 |
msgstr "Titre du post:"
|
2868 |
|
2869 |
+
#: wppa-boxes-html.php:2725
|
2870 |
msgid "Text BEFORE the image:"
|
2871 |
msgstr "Texte AVANT l'image:"
|
2872 |
|
2873 |
+
#: wppa-boxes-html.php:2735
|
2874 |
msgid "Text AFTER the image:"
|
2875 |
msgstr "Texte APRÈS l'image:"
|
2876 |
|
2877 |
+
#: wppa-boxes-html.php:2755
|
2878 |
msgid "Please select an album and try again"
|
2879 |
msgstr "Veuillez sélectionner un album et recommencer"
|
2880 |
|
2881 |
+
#: wppa-boxes-html.php:2826
|
2882 |
msgid "ERROR: unable to upload files."
|
2883 |
msgstr "Erreur: impossible de télécharger des fichiers."
|
2884 |
|
2885 |
+
#: wppa-boxes-html.php:2880
|
2886 |
msgid "Edit Album Info"
|
2887 |
msgstr "Modifier l’album"
|
2888 |
|
2889 |
+
#: wppa-boxes-html.php:2939
|
2890 |
msgid "Enter album name"
|
2891 |
msgstr "Entrer un nom d'album"
|
2892 |
|
2893 |
+
#: wppa-boxes-html.php:2961
|
2894 |
msgid "Album description:"
|
2895 |
msgstr "Description de l'album:"
|
2896 |
|
2897 |
+
#: wppa-boxes-html.php:3015
|
2898 |
msgid "Update album"
|
2899 |
msgstr "Update album"
|
2900 |
|
2901 |
+
#: wppa-boxes-html.php:3084
|
2902 |
msgid "wrote:"
|
2903 |
msgstr "a écrit:"
|
2904 |
|
2905 |
+
#: wppa-boxes-html.php:3146
|
2906 |
msgid "Avatar"
|
2907 |
msgstr "Avatar"
|
2908 |
|
2909 |
+
#: wppa-boxes-html.php:3189 wppa-links.php:833
|
2910 |
msgid "Awaiting moderation"
|
2911 |
msgstr "En attente de modération"
|
2912 |
|
2913 |
+
#: wppa-boxes-html.php:3192
|
2914 |
msgid "Marked as spam"
|
2915 |
msgstr "Marqué comme indésirable"
|
2916 |
|
2917 |
+
#: wppa-boxes-html.php:3216
|
2918 |
msgid "Edit!"
|
2919 |
msgstr "Éditer !"
|
2920 |
|
2921 |
+
#: wppa-boxes-html.php:3220
|
2922 |
msgid "Send!"
|
2923 |
msgstr "Transmettre !"
|
2924 |
|
2925 |
+
#: wppa-boxes-html.php:3281
|
2926 |
msgid "Your name:"
|
2927 |
msgstr "Votre nom:"
|
2928 |
|
2929 |
+
#: wppa-boxes-html.php:3296
|
2930 |
msgid "Your email:"
|
2931 |
msgstr "Votre email:"
|
2932 |
|
2933 |
+
#: wppa-boxes-html.php:3312
|
2934 |
msgid "Your comment:"
|
2935 |
msgstr "Votre commentaire:"
|
2936 |
|
2937 |
+
#: wppa-boxes-html.php:3356
|
2938 |
#, php-format
|
2939 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
2940 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
2941 |
|
2942 |
+
#: wppa-boxes-html.php:3359
|
2943 |
msgid "You must login to enter a comment"
|
2944 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
2945 |
|
2946 |
+
#: wppa-boxes-html.php:3371 wppa-functions.php:2597 wppa-thumbnails.php:722
|
2947 |
#, php-format
|
2948 |
msgid "%d comment"
|
2949 |
msgid_plural "%d comments"
|
2950 |
msgstr[0] "%d commentaire"
|
2951 |
msgstr[1] "%d commentaires"
|
2952 |
|
2953 |
+
#: wppa-boxes-html.php:3375
|
2954 |
msgid "Leave a comment"
|
2955 |
msgstr "Laisser un commentaire"
|
2956 |
|
2957 |
+
#: wppa-boxes-html.php:3472
|
2958 |
msgid "Show IPTC data"
|
2959 |
msgstr "Afficher les données IPTC"
|
2960 |
|
2961 |
+
#: wppa-boxes-html.php:3483
|
2962 |
msgid "Hide IPTC data"
|
2963 |
msgstr "Cacher les données IPTC"
|
2964 |
|
2965 |
+
#: wppa-boxes-html.php:3531
|
2966 |
msgid "No IPTC data"
|
2967 |
msgstr "Pas de données IPTC"
|
2968 |
|
2969 |
+
#: wppa-boxes-html.php:3583
|
2970 |
msgid "Show EXIF data"
|
2971 |
msgstr "Afficher les données EXIF"
|
2972 |
|
2973 |
+
#: wppa-boxes-html.php:3594
|
2974 |
msgid "Hide EXIF data"
|
2975 |
msgstr "Cacher les données EXIF"
|
2976 |
|
2977 |
+
#: wppa-boxes-html.php:3646
|
2978 |
msgid "No EXIF data"
|
2979 |
msgstr "Pas de données EXIF"
|
2980 |
|
2981 |
+
#: wppa-boxes-html.php:3760 wppa-boxes-html.php:3765
|
2982 |
msgid "< Previous"
|
2983 |
msgstr "< Préc."
|
2984 |
|
2985 |
+
#: wppa-boxes-html.php:3771 wppa-boxes-html.php:3776
|
2986 |
msgid "Next >"
|
2987 |
msgstr "Suiv. >"
|
2988 |
|
2989 |
+
#: wppa-boxes-html.php:3878 wppa-boxes-html.php:3957
|
2990 |
msgid "See the authors albums"
|
2991 |
msgstr "Voir les albums des auteurs"
|
2992 |
|
2993 |
+
#: wppa-boxes-html.php:3882 wppa-boxes-html.php:3890 wppa-boxes-html.php:3961
|
2994 |
msgid "See the authors photos"
|
2995 |
msgstr "Voir les photos des auteurs"
|
2996 |
|
2997 |
+
#: wppa-boxes-html.php:3886 wppa-boxes-html.php:3894 wppa-boxes-html.php:3965
|
2998 |
msgid "See all the authors photos"
|
2999 |
msgstr "Voir toutes les photos des auteurs"
|
3000 |
|
3001 |
+
#: wppa-boxes-html.php:3920
|
3002 |
#, php-format
|
3003 |
msgid "Photo by: %s"
|
3004 |
msgstr "Photo par: %s"
|
3005 |
|
3006 |
+
#: wppa-boxes-html.php:3923 wppa-boxes-html.php:3986
|
3007 |
#, php-format
|
3008 |
msgid "%d max rating"
|
3009 |
msgid_plural "%d max ratings"
|
3010 |
msgstr[0] "%d max note"
|
3011 |
msgstr[1] "%d max notes"
|
3012 |
|
3013 |
+
#: wppa-boxes-html.php:3927 wppa-boxes-html.php:3990 wppa-non-admin.php:959
|
3014 |
#: wppa-topten-widget.php:206 wppa-topten-widget.php:223
|
3015 |
#: wppa-topten-widget.php:259
|
3016 |
#, php-format
|
3019 |
msgstr[0] "%d vote"
|
3020 |
msgstr[1] "%d votes"
|
3021 |
|
3022 |
+
#: wppa-boxes-html.php:3931
|
3023 |
#, php-format
|
3024 |
msgid "Rating: %4.2f."
|
3025 |
msgstr "Vote: %4.2f."
|
3026 |
|
3027 |
+
#: wppa-boxes-html.php:3939
|
3028 |
#, php-format
|
3029 |
msgid "Photo %s not found."
|
3030 |
msgstr "Photo %s non trouvée."
|
3031 |
|
3032 |
+
#: wppa-boxes-html.php:3994
|
3033 |
#, php-format
|
3034 |
msgid "Mean value: %4.2f."
|
3035 |
msgstr "Valeur moyenne: %4.2f."
|
3036 |
|
3037 |
+
#: wppa-boxes-html.php:4346
|
3038 |
msgid "Refresh"
|
3039 |
msgstr "Rafraichir"
|
3040 |
|
3337 |
msgid "photo"
|
3338 |
msgstr "photo"
|
3339 |
|
3340 |
+
#: wppa-comment-admin.php:263 wppa-photo-admin-autosave.php:1922
|
3341 |
msgid "Bulk action:"
|
3342 |
msgstr "Action groupée:"
|
3343 |
|
3375 |
#: wppa-settings-autosave.php:4957 wppa-settings-autosave.php:4981
|
3376 |
#: wppa-settings-autosave.php:6039 wppa-settings-autosave.php:6734
|
3377 |
#: wppa-settings-autosave.php:6756 wppa-settings-autosave.php:7540
|
3378 |
+
#: wppa-settings-autosave.php:7564 wppa-settings-autosave.php:9360
|
3379 |
+
#: wppa-settings-autosave.php:9381 wppa-settings-autosave.php:9421
|
3380 |
+
#: wppa-settings-autosave.php:9443 wppa-settings-autosave.php:9489
|
3381 |
msgid "#"
|
3382 |
msgstr "#"
|
3383 |
|
3416 |
|
3417 |
#: wppa-comment-admin.php:377 wppa-photo-admin-autosave.php:727
|
3418 |
#: wppa-photo-admin-autosave.php:760 wppa-photo-admin-autosave.php:1612
|
3419 |
+
#: wppa-photo-admin-autosave.php:1621 wppa-photo-admin-autosave.php:1940
|
3420 |
+
#: wppa-photo-admin-autosave.php:2118 wppa-photo-admin-autosave.php:2130
|
3421 |
msgid "Pending"
|
3422 |
msgstr "en attente"
|
3423 |
|
3447 |
msgid "Comments on Photos"
|
3448 |
msgstr "Commentaires sur les photos"
|
3449 |
|
3450 |
+
#: wppa-comment-widget.php:73 wppa-non-admin.php:929 wppa-thumbnails.php:500
|
3451 |
msgid "wrote"
|
3452 |
msgstr "a écrit"
|
3453 |
|
3454 |
#: wppa-comment-widget.php:87 wppa-featen-widget.php:137
|
3455 |
+
#: wppa-lasten-widget.php:148 wppa-non-admin.php:930 wppa-non-admin.php:935
|
3456 |
+
#: wppa-non-admin.php:940 wppa-non-admin.php:944 wppa-non-admin.php:951
|
3457 |
+
#: wppa-non-admin.php:961 wppa-potd-widget.php:159 wppa-thumbnail-widget.php:114
|
3458 |
#: wppa-topten-widget.php:267
|
3459 |
msgid "Photo not found"
|
3460 |
msgstr "Photo non trouvée"
|
3461 |
|
3462 |
+
#: wppa-comment-widget.php:93 wppa-non-admin.php:931
|
3463 |
msgid "There are no commented photos (yet)"
|
3464 |
msgstr "Il n'y pas encore de photos commentariés"
|
3465 |
|
3492 |
#: wppa-settings-autosave.php:7935 wppa-settings-autosave.php:7936
|
3493 |
#: wppa-settings-autosave.php:7937 wppa-settings-autosave.php:7939
|
3494 |
#: wppa-settings-autosave.php:7940 wppa-settings-autosave.php:7941
|
3495 |
+
#: wppa-settings-autosave.php:9181
|
3496 |
#, php-format
|
3497 |
msgid "%d day"
|
3498 |
msgid_plural "%d days"
|
3502 |
#: wppa-common-functions.php:670 wppa-functions.php:4712
|
3503 |
#: wppa-settings-autosave.php:6583 wppa-settings-autosave.php:7938
|
3504 |
#: wppa-settings-autosave.php:7942 wppa-settings-autosave.php:7943
|
3505 |
+
#: wppa-settings-autosave.php:7944 wppa-settings-autosave.php:9182
|
3506 |
#, php-format
|
3507 |
msgid "%d week"
|
3508 |
msgid_plural "%d weeks"
|
3510 |
msgstr[1] "%d semaines"
|
3511 |
|
3512 |
#: wppa-common-functions.php:674 wppa-settings-autosave.php:7945
|
3513 |
+
#: wppa-settings-autosave.php:9183 wppa-settings-autosave.php:9184
|
3514 |
+
#: wppa-settings-autosave.php:9185 wppa-settings-autosave.php:9186
|
3515 |
+
#: wppa-settings-autosave.php:9187 wppa-settings-autosave.php:9189
|
3516 |
#, php-format
|
3517 |
msgid "%d month"
|
3518 |
msgid_plural "%d months"
|
3519 |
msgstr[0] "%d mois"
|
3520 |
msgstr[1] "%d mois"
|
3521 |
|
3522 |
+
#: wppa-common-functions.php:677 wppa-settings-autosave.php:9188
|
3523 |
+
#: wppa-settings-autosave.php:9190
|
3524 |
#, php-format
|
3525 |
msgid "%d year"
|
3526 |
msgid_plural "%d years"
|
3919 |
msgid "Featured Photos"
|
3920 |
msgstr "Photos recommandées"
|
3921 |
|
3922 |
+
#: wppa-featen-widget.php:115 wppa-non-admin.php:934
|
3923 |
msgid "View the featured photos"
|
3924 |
msgstr "Voir les photos recommandées"
|
3925 |
|
3926 |
+
#: wppa-featen-widget.php:146 wppa-non-admin.php:936
|
3927 |
msgid "There are no featured photos (yet)"
|
3928 |
msgstr "Il n'y pas (encore) de photos recommandées"
|
3929 |
|
4155 |
msgstr "Vous pouvez charger après"
|
4156 |
|
4157 |
#: wppa-functions.php:4753 wppa-functions.php:4757 wppa-functions.php:4764
|
4158 |
+
#: wppa-functions.php:4768 wppa-links.php:1174 wppa-non-admin.php:854
|
4159 |
+
#: wppa-settings-autosave.php:9529 wppa-settings-autosave.php:9541
|
4160 |
+
#: wppa-settings-autosave.php:9553 wppa-settings-autosave.php:9565
|
4161 |
+
#: wppa-settings-autosave.php:9577 wppa-settings-autosave.php:9589
|
4162 |
+
#: wppa-settings-autosave.php:9601 wppa-settings-autosave.php:9613
|
4163 |
msgid "Download"
|
4164 |
msgstr "Télécharger"
|
4165 |
|
4926 |
msgstr "Médaille d'or"
|
4927 |
|
4928 |
#: wppa-items.php:264 wppa-photo-admin-autosave.php:736
|
4929 |
+
#: wppa-photo-admin-autosave.php:763 wppa-photo-admin-autosave.php:1944
|
4930 |
+
#: wppa-photo-admin-autosave.php:2122 wppa-photo-admin-autosave.php:2133
|
4931 |
#: wppa-potd-admin.php:228
|
4932 |
msgid "Gold"
|
4933 |
msgstr "Or"
|
4937 |
msgstr "Médaille d'argent"
|
4938 |
|
4939 |
#: wppa-items.php:265 wppa-photo-admin-autosave.php:739
|
4940 |
+
#: wppa-photo-admin-autosave.php:764 wppa-photo-admin-autosave.php:1945
|
4941 |
+
#: wppa-photo-admin-autosave.php:2123 wppa-photo-admin-autosave.php:2134
|
4942 |
#: wppa-potd-admin.php:229
|
4943 |
msgid "Silver"
|
4944 |
msgstr "Argent"
|
4948 |
msgstr "Médaille de bronze"
|
4949 |
|
4950 |
#: wppa-items.php:266 wppa-photo-admin-autosave.php:742
|
4951 |
+
#: wppa-photo-admin-autosave.php:765 wppa-photo-admin-autosave.php:1946
|
4952 |
+
#: wppa-photo-admin-autosave.php:2124 wppa-photo-admin-autosave.php:2135
|
4953 |
#: wppa-potd-admin.php:230
|
4954 |
msgid "Bronze"
|
4955 |
msgstr "Bronze"
|
4996 |
msgid "Last Ten Uploaded Photos"
|
4997 |
msgstr "Dix dernières photos chargées"
|
4998 |
|
4999 |
+
#: wppa-lasten-widget.php:131 wppa-non-admin.php:939
|
5000 |
msgid "View the most recent uploaded photos"
|
5001 |
msgstr "Voir les photos chargées les plus récentes"
|
5002 |
|
5003 |
+
#: wppa-lasten-widget.php:155 wppa-non-admin.php:941
|
5004 |
msgid "There are no uploaded photos (yet)"
|
5005 |
msgstr "Il n'y a pas de (encore) de photo chargées"
|
5006 |
|
5124 |
msgstr "Les albums de source et de destination sont identiques"
|
5125 |
|
5126 |
#: wppa-maintenance.php:851 wppa-maintenance.php:867
|
5127 |
+
#: wppa-photo-admin-autosave.php:2436 wppa-photo-admin-autosave.php:2457
|
5128 |
#: wppa-settings-autosave.php:4487 wppa-setup.php:352
|
5129 |
msgid "Required"
|
5130 |
msgstr "requis"
|
5284 |
msgid "Double click to start/stop slideshow running"
|
5285 |
msgstr "Double-cliquez pour lancer/arrêter le diaporama"
|
5286 |
|
5287 |
+
#: wppa-non-admin.php:849
|
5288 |
+
msgid "Click to view"
|
5289 |
+
msgstr "Cliquez pour afficher"
|
5290 |
+
|
5291 |
+
#: wppa-non-admin.php:945 wppa-photo-admin-autosave.php:558
|
5292 |
#: wppa-potd-widget.php:178
|
5293 |
msgid "By:"
|
5294 |
msgstr "Par:"
|
5295 |
|
5296 |
+
#: wppa-non-admin.php:948 wppa-slideshow-widget.php:124
|
5297 |
msgid "No album defined (yet)"
|
5298 |
msgstr "Pas encore d'album défini"
|
5299 |
|
5300 |
+
#: wppa-non-admin.php:952 wppa-thumbnail-widget.php:121
|
5301 |
msgid "There are no photos (yet)"
|
5302 |
msgstr "Il n'y pas encore de photos"
|
5303 |
|
5304 |
+
#: wppa-non-admin.php:955 wppa-upldr-widget.php:99
|
5305 |
msgid "There are too many registered users in the system for this widget"
|
5306 |
msgstr "Il y a trop d'utilisateurs enregistrés dans le système pour ce widget"
|
5307 |
|
5308 |
+
#: wppa-non-admin.php:956 wppa-upldr-widget.php:141 wppa-upldr-widget.php:148
|
5309 |
msgid "Photos uploaded by"
|
5310 |
msgstr "Photos chargées par"
|
5311 |
|
5312 |
+
#: wppa-non-admin.php:960 wppa-thumbnails.php:732 wppa-thumbnails.php:1520
|
5313 |
#: wppa-topten-widget.php:213 wppa-topten-widget.php:236
|
5314 |
#: wppa-topten-widget.php:246
|
5315 |
#, php-format
|
5318 |
msgstr[0] "%d vu"
|
5319 |
msgstr[1] "%d vus"
|
5320 |
|
5321 |
+
#: wppa-non-admin.php:962 wppa-topten-widget.php:271
|
5322 |
msgid "There are no rated photos (yet)"
|
5323 |
msgstr "Il n'y a pas (encore) de photos évaluées"
|
5324 |
|
5351 |
msgid "Photo %s has been removed."
|
5352 |
msgstr "La photo %s a été retirée."
|
5353 |
|
5354 |
+
#: wppa-photo-admin-autosave.php:267 wppa-photo-admin-autosave.php:2170
|
5355 |
msgid "No photos matching your search criteria."
|
5356 |
msgstr "Aucune photo correspondant à vos critères de recherche n'a été trouvée."
|
5357 |
|
5358 |
+
#: wppa-photo-admin-autosave.php:275 wppa-photo-admin-autosave.php:2173
|
5359 |
msgid "No photos yet in this album."
|
5360 |
msgstr "Pas encore de photo dans cet album"
|
5361 |
|
5362 |
+
#: wppa-photo-admin-autosave.php:294 wppa-photo-admin-autosave.php:1902
|
5363 |
msgid "Please select an album to move to first."
|
5364 |
msgstr "Veuillez d'abord sélectionner un album où déplacer la photo"
|
5365 |
|
5366 |
+
#: wppa-photo-admin-autosave.php:299 wppa-photo-admin-autosave.php:1907
|
5367 |
msgid "Are you sure you want to move this video?"
|
5368 |
msgstr "Etes-vous sûr que vous voulez déplacer cette vidéo?"
|
5369 |
|
5370 |
+
#: wppa-photo-admin-autosave.php:302 wppa-photo-admin-autosave.php:1910
|
5371 |
msgid "Are you sure you want to move this photo?"
|
5372 |
msgstr "Êtes-vous sûr de vouloir déplacer cette photo?"
|
5373 |
|
5387 |
msgid "Are you sure you want to delete this video?"
|
5388 |
msgstr "Êtes-vous sûr de vouloir supprimer cette video?"
|
5389 |
|
5390 |
+
#: wppa-photo-admin-autosave.php:339 wppa-photo-admin-autosave.php:2010
|
5391 |
msgid "Are you sure you want to delete this photo?"
|
5392 |
msgstr "Êtes-vous sûr de vouloir supprimer cette photo ?"
|
5393 |
|
5555 |
msgstr "Statut:"
|
5556 |
|
5557 |
#: wppa-photo-admin-autosave.php:730 wppa-photo-admin-autosave.php:761
|
5558 |
+
#: wppa-photo-admin-autosave.php:1941 wppa-photo-admin-autosave.php:2119
|
5559 |
+
#: wppa-photo-admin-autosave.php:2131 wppa-potd-admin.php:226
|
5560 |
msgid "Publish"
|
5561 |
msgstr "Publier"
|
5562 |
|
5563 |
#: wppa-photo-admin-autosave.php:733 wppa-photo-admin-autosave.php:762
|
5564 |
+
#: wppa-photo-admin-autosave.php:1943 wppa-photo-admin-autosave.php:2121
|
5565 |
#: wppa-potd-admin.php:227
|
5566 |
msgid "Featured"
|
5567 |
msgstr "Recommandé"
|
5568 |
|
5569 |
#: wppa-photo-admin-autosave.php:745 wppa-photo-admin-autosave.php:766
|
5570 |
+
#: wppa-photo-admin-autosave.php:1947 wppa-photo-admin-autosave.php:2125
|
5571 |
+
#: wppa-photo-admin-autosave.php:2136
|
5572 |
msgid "Scheduled"
|
5573 |
msgstr "Planifié"
|
5574 |
|
5575 |
#: wppa-photo-admin-autosave.php:748 wppa-photo-admin-autosave.php:767
|
5576 |
+
#: wppa-photo-admin-autosave.php:1948 wppa-photo-admin-autosave.php:2126
|
5577 |
+
#: wppa-photo-admin-autosave.php:2137
|
5578 |
msgid "Private"
|
5579 |
msgstr "Privé"
|
5580 |
|
5864 |
msgid "%d photos processed."
|
5865 |
msgstr "%d photos traitées."
|
5866 |
|
5867 |
+
#: wppa-photo-admin-autosave.php:1926
|
5868 |
msgid "Move to"
|
5869 |
msgstr "Déplacer vers"
|
5870 |
|
5871 |
+
#: wppa-photo-admin-autosave.php:1927
|
5872 |
msgid "Copy to"
|
5873 |
msgstr "Copier vers"
|
5874 |
|
5875 |
+
#: wppa-photo-admin-autosave.php:1929
|
5876 |
msgid "Set status to"
|
5877 |
msgstr "Régler le statut à"
|
5878 |
|
5879 |
+
#: wppa-photo-admin-autosave.php:1932
|
5880 |
msgid "Set owner to"
|
5881 |
msgstr "Régler le propriétaire à"
|
5882 |
|
5883 |
+
#: wppa-photo-admin-autosave.php:1939
|
5884 |
msgid "- select a status -"
|
5885 |
msgstr "- Choisir un statut -"
|
5886 |
|
5887 |
+
#: wppa-photo-admin-autosave.php:1954
|
5888 |
msgid "- select an owner -"
|
5889 |
msgstr "- Choisir un propriétaire -"
|
5890 |
|
5891 |
+
#: wppa-photo-admin-autosave.php:1966
|
5892 |
msgid "Doit!"
|
5893 |
msgstr "Le faire!"
|
5894 |
|
5895 |
+
#: wppa-photo-admin-autosave.php:1969
|
5896 |
msgid "the previous page"
|
5897 |
msgstr "la page précédente"
|
5898 |
|
5899 |
+
#: wppa-photo-admin-autosave.php:1970
|
5900 |
msgid "the same page"
|
5901 |
msgstr "la même page"
|
5902 |
|
5903 |
+
#: wppa-photo-admin-autosave.php:1971
|
5904 |
msgid "the next page"
|
5905 |
msgstr "la page suivante"
|
5906 |
|
5907 |
+
#: wppa-photo-admin-autosave.php:1973
|
5908 |
#, php-format
|
5909 |
msgid "Go to %s after Doit!."
|
5910 |
msgstr "Aller vers %s après Le faire!."
|
5911 |
|
5912 |
+
#: wppa-photo-admin-autosave.php:1978
|
5913 |
msgid "Confirm delete"
|
5914 |
msgstr "Confirmer Suppression"
|
5915 |
|
5916 |
+
#: wppa-photo-admin-autosave.php:1981
|
5917 |
+
msgid "Confirm move"
|
5918 |
+
msgstr "Confirmer le déplacement"
|
5919 |
+
|
5920 |
+
#: wppa-photo-admin-autosave.php:1990 wppa-photo-admin-autosave.php:2155
|
5921 |
#: wppa-potd-admin.php:321 wppa-settings-autosave.php:8699
|
5922 |
msgid "Preview"
|
5923 |
msgstr "Prévisualiser"
|
5924 |
|
5925 |
+
#: wppa-photo-admin-autosave.php:1995 wppa-photo-admin-autosave.php:2160
|
5926 |
msgid "Remark"
|
5927 |
msgstr "Remarque"
|
5928 |
|
5929 |
+
#: wppa-photo-admin-autosave.php:2010
|
5930 |
msgid "Deleting..."
|
5931 |
msgstr "Suppression..."
|
5932 |
|
5933 |
+
#: wppa-photo-admin-autosave.php:2099
|
5934 |
+
msgid "Target album for move to:"
|
5935 |
+
msgstr "Album d'objet pour déplacer:"
|
5936 |
+
|
5937 |
+
#: wppa-photo-admin-autosave.php:2178
|
5938 |
#, php-format
|
5939 |
msgid "Page %d is empty, try <a href=\"%s\" >page %d</a>."
|
5940 |
msgstr "La page %d est vide, essayez <a href=\"%s\" >la page %d</a>."
|
5941 |
|
5942 |
+
#: wppa-photo-admin-autosave.php:2303
|
5943 |
msgid ""
|
5944 |
"Setting photo sequence order has only effect if the photo order method is set "
|
5945 |
"to <b>Order#</b>"
|
5947 |
"Régler l'ordre des photos a seulement un effet si la méthode d'ordonnancement "
|
5948 |
"est réglée à <b>Order#</b>"
|
5949 |
|
5950 |
+
#: wppa-photo-admin-autosave.php:2362
|
5951 |
msgid "Id: "
|
5952 |
msgstr "ID:"
|
5953 |
|
5954 |
+
#: wppa-photo-admin-autosave.php:2363 wppa-settings-autosave.php:379
|
5955 |
msgid "Video"
|
5956 |
msgstr "Vidéo"
|
5957 |
|
5958 |
+
#: wppa-photo-admin-autosave.php:2364 wppa-settings-autosave.php:360
|
5959 |
msgid "Audio"
|
5960 |
msgstr "Audio"
|
5961 |
|
5962 |
+
#: wppa-photo-admin-autosave.php:2365
|
5963 |
msgid "Ord: "
|
5964 |
msgstr "Ord:"
|
5965 |
|
5966 |
+
#: wppa-photo-admin-autosave.php:2378
|
5967 |
msgid "The album is empty."
|
5968 |
msgstr "Cet album est vide."
|
5969 |
|
5970 |
+
#: wppa-photo-admin-autosave.php:2483
|
5971 |
msgid "Combined"
|
5972 |
msgstr "Combiné"
|
5973 |
|
5974 |
+
#: wppa-photo-admin-autosave.php:2520
|
5975 |
msgid "Word"
|
5976 |
msgstr "Mot"
|
5977 |
|
5978 |
+
#: wppa-photo-admin-autosave.php:2523
|
5979 |
msgid "Count"
|
5980 |
msgstr "Compteur"
|
5981 |
|
5982 |
+
#: wppa-photo-admin-autosave.php:2575 wppa-settings-autosave.php:6487
|
5983 |
msgid "Tags"
|
5984 |
msgstr "Tags"
|
5985 |
|
5986 |
+
#: wppa-photo-admin-autosave.php:2695
|
5987 |
msgid "Send"
|
5988 |
msgstr "Envoyer"
|
5989 |
|
6011 |
#: wppa-settings-autosave.php:1439 wppa-settings-autosave.php:1460
|
6012 |
#: wppa-settings-autosave.php:2998 wppa-settings-autosave.php:3402
|
6013 |
#: wppa-settings-autosave.php:4763 wppa-settings-autosave.php:6737
|
6014 |
+
#: wppa-settings-autosave.php:7567 wppa-settings-autosave.php:9363
|
6015 |
msgid "Setting"
|
6016 |
msgstr "Réglages"
|
6017 |
|
6024 |
#: wppa-settings-autosave.php:4964 wppa-settings-autosave.php:4988
|
6025 |
#: wppa-settings-autosave.php:6046 wppa-settings-autosave.php:6739
|
6026 |
#: wppa-settings-autosave.php:6763 wppa-settings-autosave.php:7547
|
6027 |
+
#: wppa-settings-autosave.php:7568 wppa-settings-autosave.php:9364
|
6028 |
+
#: wppa-settings-autosave.php:9386 wppa-settings-autosave.php:9426
|
6029 |
+
#: wppa-settings-autosave.php:9448 wppa-settings-autosave.php:9494
|
6030 |
msgid "Help"
|
6031 |
msgstr "Aide"
|
6032 |
|
6051 |
msgstr "Largeur du widget photo:"
|
6052 |
|
6053 |
#: wppa-potd-admin.php:90
|
|
|
6054 |
msgid "Enter the desired display width of the photo in the sidebar."
|
6055 |
msgstr ""
|
6056 |
"Saisissez la largeur d'affichage souhaitée de la photo dans la barre latérale."
|
6066 |
msgstr "Alignement horizontal:"
|
6067 |
|
6068 |
#: wppa-potd-admin.php:97
|
|
|
6069 |
msgid "Enter the desired display alignment of the photo in the sidebar."
|
6070 |
msgstr ""
|
6071 |
"Entrez l'alignement d'affichage souhaité de la photo dans la barre latérale."
|
6077 |
msgstr "Centre"
|
6078 |
|
6079 |
#: wppa-potd-admin.php:109
|
|
|
6080 |
msgid "Enter the url. Do'nt forget the HTTP://"
|
6081 |
+
msgstr "Entrez l'url. N'oubliez pas le HTTP: //"
|
6082 |
|
6083 |
#: wppa-potd-admin.php:115
|
6084 |
msgid "Link Title:"
|
6085 |
msgstr "Titre du lien:"
|
6086 |
|
6087 |
#: wppa-potd-admin.php:116
|
|
|
6088 |
msgid "The balloon text when hovering over the photo."
|
6089 |
msgstr "Le texte du ballon lors du survol de la photo."
|
6090 |
|
6160 |
#: wppa-potd-admin.php:707 wppa-settings-autosave.php:343
|
6161 |
#: wppa-settings-autosave.php:7410 wppa-settings-autosave.php:7437
|
6162 |
#: wppa-settings-autosave.php:8568 wppa-settings-autosave.php:8570
|
6163 |
+
#: wppa-settings-autosave.php:9871 wppa-settings-autosave.php:9891
|
6164 |
+
#: wppa-settings-autosave.php:9908 wppa-settings-autosave.php:9937
|
6165 |
+
#: wppa-settings-autosave.php:9955 wppa-settings-autosave.php:9979
|
6166 |
+
#: wppa-settings-autosave.php:10000 wppa-settings-autosave.php:10020
|
6167 |
+
#: wppa-settings-autosave.php:10037 wppa-settings-autosave.php:10081
|
6168 |
+
#: wppa-settings-autosave.php:10134 wppa-settings-autosave.php:10166
|
6169 |
msgid "Setting unmodified"
|
6170 |
msgstr "Configuration inchangée"
|
6171 |
|
6352 |
"Il y a trop de photos dans la sélection pour pouvoir afficher une "
|
6353 |
"prévisualisation ( %d )"
|
6354 |
|
6355 |
+
#: wppa-potd-admin.php:573 wppa-settings-autosave.php:9799
|
6356 |
msgid "The default for this setting is:"
|
6357 |
msgstr "Le réglage par défaut pour cette option est:"
|
6358 |
|
6359 |
+
#: wppa-potd-admin.php:590 wppa-settings-autosave.php:9816
|
6360 |
msgid "Click for help"
|
6361 |
msgstr "Cliquer pour l'aide"
|
6362 |
|
6363 |
+
#: wppa-potd-admin.php:614 wppa-settings-autosave.php:10182
|
6364 |
msgid "Checked"
|
6365 |
msgstr "Coché"
|
6366 |
|
6367 |
+
#: wppa-potd-admin.php:615 wppa-settings-autosave.php:10183
|
6368 |
msgid "Unchecked"
|
6369 |
msgstr "Décoché"
|
6370 |
|
6375 |
#: wppa-settings-autosave.php:5412 wppa-settings-autosave.php:5450
|
6376 |
#: wppa-settings-autosave.php:5502 wppa-settings-autosave.php:5544
|
6377 |
#: wppa-settings-autosave.php:5586 wppa-settings-autosave.php:5627
|
6378 |
+
#: wppa-settings-autosave.php:10184
|
6379 |
msgid "no link at all."
|
6380 |
msgstr "pas de lien du tout."
|
6381 |
|
6386 |
#: wppa-settings-autosave.php:5413 wppa-settings-autosave.php:5451
|
6387 |
#: wppa-settings-autosave.php:5503 wppa-settings-autosave.php:5545
|
6388 |
#: wppa-settings-autosave.php:5587 wppa-settings-autosave.php:5628
|
6389 |
+
#: wppa-settings-autosave.php:10185
|
6390 |
msgid "the plain photo (file)."
|
6391 |
msgstr "la photo originale (fichier)."
|
6392 |
|
6396 |
#: wppa-settings-autosave.php:5313 wppa-settings-autosave.php:5362
|
6397 |
#: wppa-settings-autosave.php:5452 wppa-settings-autosave.php:5505
|
6398 |
#: wppa-settings-autosave.php:5547 wppa-settings-autosave.php:5589
|
6399 |
+
#: wppa-settings-autosave.php:10186
|
6400 |
msgid "the full size photo in a slideshow."
|
6401 |
msgstr "la photo pleine grandeur dans un diaporama."
|
6402 |
|
6406 |
#: wppa-settings-autosave.php:5315 wppa-settings-autosave.php:5364
|
6407 |
#: wppa-settings-autosave.php:5454 wppa-settings-autosave.php:5506
|
6408 |
#: wppa-settings-autosave.php:5548 wppa-settings-autosave.php:5590
|
6409 |
+
#: wppa-settings-autosave.php:5629 wppa-settings-autosave.php:10187
|
6410 |
msgid "the fullsize photo on its own."
|
6411 |
msgstr "la photo pleine grandeur à lui seul."
|
6412 |
|
6413 |
+
#: wppa-potd-admin.php:620 wppa-settings-autosave.php:10188
|
6414 |
msgid "the photo specific link."
|
6415 |
msgstr "le lien spécifique de la photo."
|
6416 |
|
6417 |
#: wppa-potd-admin.php:621 wppa-settings-autosave.php:5049
|
6418 |
#: wppa-settings-autosave.php:5092 wppa-settings-autosave.php:5504
|
6419 |
#: wppa-settings-autosave.php:5546 wppa-settings-autosave.php:5588
|
6420 |
+
#: wppa-settings-autosave.php:10189
|
6421 |
msgid "the content of the album."
|
6422 |
msgstr "le contenu de l'album."
|
6423 |
|
6424 |
#: wppa-potd-admin.php:622 wppa-settings-autosave.php:5091
|
6425 |
+
#: wppa-settings-autosave.php:10190
|
6426 |
msgid "defined at widget activation."
|
6427 |
msgstr "défini à l'activation du widget."
|
6428 |
|
6429 |
#: wppa-potd-admin.php:623 wppa-settings-autosave.php:5048
|
6430 |
+
#: wppa-settings-autosave.php:10191
|
6431 |
msgid "defined on widget admin page."
|
6432 |
msgstr "réglages sur la page d'admin des widgets."
|
6433 |
|
6434 |
#: wppa-potd-admin.php:624 wppa-settings-autosave.php:5414
|
6435 |
+
#: wppa-settings-autosave.php:10192
|
6436 |
msgid "same as title."
|
6437 |
msgstr "identique au titre."
|
6438 |
|
6439 |
#: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
|
6440 |
+
#: wppa-settings-autosave.php:9861 wppa-settings-autosave.php:9881
|
6441 |
+
#: wppa-settings-autosave.php:9900 wppa-settings-autosave.php:9930
|
6442 |
+
#: wppa-settings-autosave.php:9947 wppa-settings-autosave.php:9971
|
6443 |
+
#: wppa-settings-autosave.php:9992 wppa-settings-autosave.php:10012
|
6444 |
+
#: wppa-settings-autosave.php:10054
|
6445 |
msgid "Slug ="
|
6446 |
msgstr "Slug ="
|
6447 |
|
6448 |
+
#: wppa-potd-admin.php:636 wppa-settings-autosave.php:9947
|
6449 |
+
#: wppa-settings-autosave.php:9971 wppa-settings-autosave.php:9992
|
6450 |
+
#: wppa-settings-autosave.php:10012
|
6451 |
msgid "Values = yes, no"
|
6452 |
msgstr "Valeurs=oui,non"
|
6453 |
|
6454 |
+
#: wppa-potd-admin.php:680 wppa-settings-autosave.php:10054
|
6455 |
msgid "Values = "
|
6456 |
msgstr "Values = "
|
6457 |
|
6748 |
msgid "action that causes page reload."
|
6749 |
msgstr "action qui provoque le rechargement de la page."
|
6750 |
|
6751 |
+
#: wppa-settings-autosave.php:340 wppa-settings-autosave.php:10215
|
6752 |
+
#: wppa-settings-autosave.php:10234
|
6753 |
msgid "Are you sure?"
|
6754 |
msgstr "Êtes-vous sûr ?"
|
6755 |
|
7285 |
#: wppa-settings-autosave.php:4860 wppa-settings-autosave.php:4877
|
7286 |
#: wppa-settings-autosave.php:4894 wppa-settings-autosave.php:4911
|
7287 |
#: wppa-settings-autosave.php:4928 wppa-settings-autosave.php:4945
|
7288 |
+
#: wppa-settings-autosave.php:6285 wppa-settings-autosave.php:9094
|
7289 |
+
#: wppa-settings-autosave.php:9290 wppa-settings-autosave.php:9332
|
7290 |
+
#: wppa-settings-autosave.php:9350
|
7291 |
msgid "pixels"
|
7292 |
msgstr "pixels"
|
7293 |
|
8966 |
msgid "Display the share social media buttons box."
|
8967 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
8968 |
|
8969 |
+
#: wppa-settings-autosave.php:1881 wppa-settings-autosave.php:9337
|
8970 |
msgid "Hide when running"
|
8971 |
msgstr "Cacher lorsqu'en fonctionnement"
|
8972 |
|
12369 |
msgid "Commenting users must enter their email addresses."
|
12370 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
12371 |
|
12372 |
+
#: wppa-settings-autosave.php:4486 wppa-settings-autosave.php:9405
|
12373 |
+
#: wppa-settings-autosave.php:9473
|
12374 |
msgid "Optional"
|
12375 |
msgstr "Optionnel"
|
12376 |
|
14079 |
#: wppa-settings-autosave.php:6632 wppa-settings-autosave.php:6637
|
14080 |
#: wppa-settings-autosave.php:6658 wppa-settings-autosave.php:6696
|
14081 |
#: wppa-settings-autosave.php:6701 wppa-settings-autosave.php:6722
|
14082 |
+
#: wppa-settings-autosave.php:9280 wppa-settings-autosave.php:9322
|
14083 |
#, fuzzy
|
14084 |
msgid "The page will be reloaded after the action has taken place."
|
14085 |
msgstr "La page sera rechargée après que l'action a eu lieu."
|
14168 |
msgstr "Spécification"
|
14169 |
|
14170 |
#: wppa-settings-autosave.php:6760 wppa-settings-autosave.php:7544
|
14171 |
+
#: wppa-settings-autosave.php:10208 wppa-settings-autosave.php:10230
|
14172 |
msgid "Do it!"
|
14173 |
msgstr "Faites-le!"
|
14174 |
|
16720 |
"du niveau supérieur."
|
16721 |
|
16722 |
#: wppa-settings-autosave.php:8975
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16723 |
msgid "Keep dir to album files"
|
16724 |
msgstr "Garder les fichiers de dir aux l’album"
|
16725 |
|
16726 |
+
#: wppa-settings-autosave.php:8976
|
16727 |
#, fuzzy
|
16728 |
msgid "Keep imported files after dir to album import"
|
16729 |
msgstr "Conserver les fichiers importés après dir à l'album import"
|
16730 |
|
16731 |
+
#: wppa-settings-autosave.php:8985
|
16732 |
msgid "Other plugins related settings"
|
16733 |
msgstr "Paramètres liés d'autres plugins"
|
16734 |
|
16735 |
+
#: wppa-settings-autosave.php:8987
|
16736 |
msgid "Foreign shortcodes general"
|
16737 |
msgstr "Généraux étrangers shortcodes"
|
16738 |
|
16739 |
+
#: wppa-settings-autosave.php:8988
|
16740 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
16741 |
msgstr ""
|
16742 |
"Activez les shortcodes étrangers au nom de l’album, au description de l'album "
|
16743 |
"et au nom de photo"
|
16744 |
|
16745 |
+
#: wppa-settings-autosave.php:8996
|
16746 |
msgid "Foreign shortcodes fullsize"
|
16747 |
msgstr "Shortcodes étrangers fullsize"
|
16748 |
|
16749 |
+
#: wppa-settings-autosave.php:8997
|
16750 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
16751 |
msgstr ""
|
16752 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16753 |
"pleine grandeur."
|
16754 |
|
16755 |
+
#: wppa-settings-autosave.php:8998 wppa-settings-autosave.php:9009
|
16756 |
#, fuzzy
|
16757 |
msgid ""
|
16758 |
"When checked, you can use shortcodes from other plugins in the description of "
|
16761 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins dans "
|
16762 |
"la description de photos."
|
16763 |
|
16764 |
+
#: wppa-settings-autosave.php:8999
|
16765 |
#, fuzzy
|
16766 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
16767 |
msgstr "Les shortcodes seront étendus dans les descriptions des images fullsize."
|
16768 |
|
16769 |
+
#: wppa-settings-autosave.php:9000 wppa-settings-autosave.php:9011
|
16770 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
16771 |
msgstr ""
|
16772 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
16773 |
|
16774 |
+
#: wppa-settings-autosave.php:9007
|
16775 |
msgid "Foreign shortcodes thumbnails"
|
16776 |
msgstr "Foreign shortcodes thumbnails"
|
16777 |
|
16778 |
+
#: wppa-settings-autosave.php:9008
|
16779 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
16780 |
msgstr ""
|
16781 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16782 |
"miniature."
|
16783 |
|
16784 |
+
#: wppa-settings-autosave.php:9010
|
16785 |
msgid "The shortcodes will be expanded in the descriptions of thumbnail images."
|
16786 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
16787 |
|
16788 |
+
#: wppa-settings-autosave.php:9018
|
16789 |
msgid "Lightbox keyname"
|
16790 |
msgstr "Nom-clé Lightbox"
|
16791 |
|
16792 |
+
#: wppa-settings-autosave.php:9019
|
16793 |
msgid "The identifier of lightbox."
|
16794 |
msgstr "L'identifiant Lightbox."
|
16795 |
|
16796 |
+
#: wppa-settings-autosave.php:9020
|
16797 |
msgid ""
|
16798 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the lbox-"
|
16799 |
"id here."
|
16801 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
16802 |
"entrer l’id lbox ici."
|
16803 |
|
16804 |
+
#: wppa-settings-autosave.php:9027
|
16805 |
msgid "myCRED / Cube Points: Comment"
|
16806 |
msgstr "myCRED / Cube Points: commentaire"
|
16807 |
|
16808 |
+
#: wppa-settings-autosave.php:9028
|
16809 |
msgid "Number of points for giving a comment"
|
16810 |
msgstr "Nombre de points pour mettre un commentaire"
|
16811 |
|
16812 |
+
#: wppa-settings-autosave.php:9029 wppa-settings-autosave.php:9038
|
16813 |
+
#: wppa-settings-autosave.php:9047 wppa-settings-autosave.php:9056
|
16814 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
16815 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
16816 |
|
16817 |
+
#: wppa-settings-autosave.php:9031 wppa-settings-autosave.php:9040
|
16818 |
msgid "points per comment"
|
16819 |
msgstr "points par commentaire"
|
16820 |
|
16821 |
+
#: wppa-settings-autosave.php:9036
|
16822 |
msgid "myCRED / Cube Points: Appr Comment"
|
16823 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
16824 |
|
16825 |
+
#: wppa-settings-autosave.php:9037
|
16826 |
msgid "Number of points for receiving an approved comment"
|
16827 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
16828 |
|
16829 |
+
#: wppa-settings-autosave.php:9045
|
16830 |
msgid "myCRED / Cube Points: Rating"
|
16831 |
msgstr "myCRED / Cube Points: notation"
|
16832 |
|
16833 |
+
#: wppa-settings-autosave.php:9046
|
16834 |
msgid "Number of points for a rating vote"
|
16835 |
msgstr "Nombre de points pour un vote de cote"
|
16836 |
|
16837 |
+
#: wppa-settings-autosave.php:9049
|
16838 |
msgid "points per vote"
|
16839 |
msgstr "points par vote"
|
16840 |
|
16841 |
+
#: wppa-settings-autosave.php:9054
|
16842 |
msgid "myCRED / Cube Points: Upload"
|
16843 |
msgstr "myCRED / Cube Points : Télécharger"
|
16844 |
|
16845 |
+
#: wppa-settings-autosave.php:9055
|
16846 |
msgid "Number of points for a successfull frontend upload"
|
16847 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
16848 |
|
16849 |
+
#: wppa-settings-autosave.php:9058
|
16850 |
msgid "points per upload"
|
16851 |
msgstr "points par chargement"
|
16852 |
|
16853 |
+
#: wppa-settings-autosave.php:9063
|
16854 |
msgid "Use SCABN"
|
16855 |
msgstr "Utiliser SCABN"
|
16856 |
|
16857 |
+
#: wppa-settings-autosave.php:9064
|
16858 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
16859 |
msgstr "Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
16860 |
|
16861 |
+
#: wppa-settings-autosave.php:9065
|
16862 |
msgid ""
|
16863 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
16864 |
"descriptions is [cart ...]"
|
16866 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
16867 |
"les descriptions photo est [cart ...]"
|
16868 |
|
16869 |
+
#: wppa-settings-autosave.php:9066
|
16870 |
msgid "as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
16871 |
msgstr ""
|
16872 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de SCABN."
|
16873 |
|
16874 |
+
#: wppa-settings-autosave.php:9067
|
16875 |
msgid "The shortcode for the check-out page is still [scabn]"
|
16876 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
16877 |
|
16878 |
+
#: wppa-settings-autosave.php:9068
|
16879 |
msgid ""
|
16880 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
16881 |
msgstr ""
|
16882 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = photoname, "
|
16883 |
"price = 0.01."
|
16884 |
|
16885 |
+
#: wppa-settings-autosave.php:9069
|
16886 |
msgid ""
|
16887 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
16888 |
"from the photo name."
|
16890 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
16891 |
"diffère de celui de la photo."
|
16892 |
|
16893 |
+
#: wppa-settings-autosave.php:9070
|
16894 |
msgid "This shortcode handler will also work with Ajax enabled."
|
16895 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
16896 |
|
16897 |
+
#: wppa-settings-autosave.php:9071
|
16898 |
msgid ""
|
16899 |
"Using this interface makes sure that the item urls and callback action urls "
|
16900 |
"are correct."
|
16902 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
16903 |
"callback sont correctes."
|
16904 |
|
16905 |
+
#: wppa-settings-autosave.php:9078
|
16906 |
msgid "Use CM Tooltip Glossary"
|
16907 |
msgstr "Utiliser CM Tooltip Glossary"
|
16908 |
|
16909 |
+
#: wppa-settings-autosave.php:9079
|
16910 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
16911 |
msgstr ""
|
16912 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
16913 |
"photos."
|
16914 |
|
16915 |
+
#: wppa-settings-autosave.php:9080
|
16916 |
msgid ""
|
16917 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
16918 |
"plugin to act on album and photo descriptions!"
|
16920 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
16921 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
16922 |
|
16923 |
+
#: wppa-settings-autosave.php:9088
|
16924 |
msgid "External services related settings and actions."
|
16925 |
msgstr "Réglages et actions pour les services extérieurs."
|
16926 |
|
16927 |
+
#: wppa-settings-autosave.php:9090
|
16928 |
msgid "QR Code widget size"
|
16929 |
msgstr "Taille du widget QR Code"
|
16930 |
|
16931 |
+
#: wppa-settings-autosave.php:9091
|
16932 |
msgid "The size of the QR code display."
|
16933 |
msgstr "La taille de l'affichage du QR code."
|
16934 |
|
16935 |
+
#: wppa-settings-autosave.php:9099
|
16936 |
msgid "QR color"
|
16937 |
msgstr "Couleur QR code"
|
16938 |
|
16939 |
+
#: wppa-settings-autosave.php:9100
|
16940 |
msgid "The display color of the qr code (dark)"
|
16941 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
16942 |
|
16943 |
+
#: wppa-settings-autosave.php:9101
|
16944 |
msgid "This color MUST be given in hexadecimal format!"
|
16945 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
16946 |
|
16947 |
+
#: wppa-settings-autosave.php:9108
|
16948 |
msgid "QR background color"
|
16949 |
msgstr "Couleur de fond de QR Code"
|
16950 |
|
16951 |
+
#: wppa-settings-autosave.php:9109
|
16952 |
msgid "The background color of the qr code (light)"
|
16953 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
16954 |
|
16955 |
+
#: wppa-settings-autosave.php:9117
|
16956 |
msgid "CDN Service"
|
16957 |
msgstr "Service CDN"
|
16958 |
|
16959 |
+
#: wppa-settings-autosave.php:9118
|
16960 |
msgid "Select a CDN Service you want to use."
|
16961 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
16962 |
|
16963 |
+
#: wppa-settings-autosave.php:9121
|
16964 |
msgid "Cloudinary in maintenance mode"
|
16965 |
msgstr "Cloudinary en mode maintenance"
|
16966 |
|
16967 |
+
#: wppa-settings-autosave.php:9131
|
16968 |
msgid "Cloud name"
|
16969 |
msgstr "Nom du nuage"
|
16970 |
|
16971 |
+
#: wppa-settings-autosave.php:9140
|
16972 |
msgid "API key"
|
16973 |
msgstr "Clé API"
|
16974 |
|
16975 |
+
#: wppa-settings-autosave.php:9149
|
16976 |
msgid "API secret"
|
16977 |
msgstr "Secret API"
|
16978 |
|
16979 |
+
#: wppa-settings-autosave.php:9158
|
16980 |
msgid "Delete all"
|
16981 |
msgstr "Tout effacer"
|
16982 |
|
16983 |
+
#: wppa-settings-autosave.php:9159
|
16984 |
msgid "Deletes them all !!!"
|
16985 |
msgstr "Cela les efface tous !!!"
|
16986 |
|
16987 |
+
#: wppa-settings-autosave.php:9167
|
16988 |
msgid "Delete derived images"
|
16989 |
msgstr "Effacer les images dérivées"
|
16990 |
|
16991 |
+
#: wppa-settings-autosave.php:9168
|
16992 |
msgid "Deletes all derived images !!!"
|
16993 |
msgstr "Efface toutes les images dérivées !!!"
|
16994 |
|
16995 |
+
#: wppa-settings-autosave.php:9176
|
16996 |
msgid "Max lifetime"
|
16997 |
msgstr "Temps de vie maximum"
|
16998 |
|
16999 |
+
#: wppa-settings-autosave.php:9177
|
17000 |
msgid "Old images from local server, new images from Cloudinary."
|
17001 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
17002 |
|
17003 |
+
#: wppa-settings-autosave.php:9178
|
17004 |
msgid "If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
17005 |
msgstr ""
|
17006 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon régulière."
|
17007 |
|
17008 |
+
#: wppa-settings-autosave.php:9180
|
17009 |
msgid "Forever"
|
17010 |
msgstr "Infini"
|
17011 |
|
17012 |
+
#: wppa-settings-autosave.php:9211
|
17013 |
msgid "Cloudinary usage"
|
17014 |
msgstr "Utilisation de Cloudinary"
|
17015 |
|
17016 |
+
#: wppa-settings-autosave.php:9247
|
17017 |
msgid "Cloudinary usage data not available"
|
17018 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
17019 |
|
17020 |
+
#: wppa-settings-autosave.php:9251
|
17021 |
msgid "Cloudinary routines not installed."
|
17022 |
msgstr "Routines Cloudinary pas installées."
|
17023 |
|
17024 |
+
#: wppa-settings-autosave.php:9262
|
17025 |
msgid "Cloudinary"
|
17026 |
msgstr "Cloudinary"
|
17027 |
|
17028 |
+
#: wppa-settings-autosave.php:9263
|
17029 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
17030 |
msgstr ""
|
17031 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale à "
|
17032 |
"5.3</span>"
|
17033 |
|
17034 |
+
#: wppa-settings-autosave.php:9272
|
17035 |
msgid "GPX Implementation"
|
17036 |
msgstr "Implémentation GPX"
|
17037 |
|
17038 |
+
#: wppa-settings-autosave.php:9273
|
17039 |
msgid "The way the maps are produced."
|
17040 |
msgstr "La méthode de production des cartes."
|
17041 |
|
17042 |
+
#: wppa-settings-autosave.php:9274
|
17043 |
msgid "Select the way the maps are produced."
|
17044 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
17045 |
|
17046 |
+
#: wppa-settings-autosave.php:9275
|
17047 |
msgid ""
|
17048 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
17049 |
msgstr ""
|
17050 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne pouvez "
|
17051 |
"utiliser Ajax (table IV-A1)"
|
17052 |
|
17053 |
+
#: wppa-settings-autosave.php:9276
|
17054 |
msgid ""
|
17055 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
17056 |
"options."
|
17058 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais il "
|
17059 |
"y aura alors moins d'options d'affichage."
|
17060 |
|
17061 |
+
#: wppa-settings-autosave.php:9278
|
17062 |
msgid "WPPA+ Embedded code"
|
17063 |
msgstr "Code embarqué WPPA+"
|
17064 |
|
17065 |
+
#: wppa-settings-autosave.php:9278
|
17066 |
msgid "Google maps GPX viewer plugin"
|
17067 |
msgstr "Plugin Google maps de visualisation GPX"
|
17068 |
|
17069 |
+
#: wppa-settings-autosave.php:9286
|
17070 |
msgid "Map height"
|
17071 |
msgstr "Hauteur de la carte"
|
17072 |
|
17073 |
+
#: wppa-settings-autosave.php:9287
|
17074 |
msgid "The height of the map display."
|
17075 |
msgstr "La hauteur de l’affichage de la carte."
|
17076 |
|
17077 |
+
#: wppa-settings-autosave.php:9295
|
17078 |
msgid "Google maps API key"
|
17079 |
msgstr "Clé API Google maps"
|
17080 |
|
17081 |
+
#: wppa-settings-autosave.php:9296
|
17082 |
msgid "Enter your Google maps api key here if you have one."
|
17083 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
17084 |
|
17085 |
+
#: wppa-settings-autosave.php:9304
|
17086 |
msgid "GPX Shortcode"
|
17087 |
msgstr "Shortcode GPX"
|
17088 |
|
17089 |
+
#: wppa-settings-autosave.php:9305
|
17090 |
msgid "The shortcode to be used for the gpx feature."
|
17091 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
17092 |
|
17093 |
+
#: wppa-settings-autosave.php:9306
|
17094 |
msgid ""
|
17095 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
17096 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
17099 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
17100 |
"longitude."
|
17101 |
|
17102 |
+
#: wppa-settings-autosave.php:9307
|
17103 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
17104 |
msgstr ""
|
17105 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
17106 |
|
17107 |
+
#: wppa-settings-autosave.php:9314
|
17108 |
msgid "Fotomoto"
|
17109 |
msgstr "Fotomoto"
|
17110 |
|
17111 |
+
#: wppa-settings-autosave.php:9315
|
17112 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
17113 |
msgstr "Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
17114 |
|
17115 |
+
#: wppa-settings-autosave.php:9316
|
17116 |
msgid "In order to function properly:"
|
17117 |
msgstr "Pour fonctionner correctement:"
|
17118 |
|
17119 |
+
#: wppa-settings-autosave.php:9317
|
17120 |
msgid "1. Get yourself a Fotomoto account."
|
17121 |
msgstr "1. Créez-vous un compte Fotomoto."
|
17122 |
|
17123 |
+
#: wppa-settings-autosave.php:9318
|
17124 |
msgid ""
|
17125 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check the "
|
17126 |
"\"Use API Mode:\" checkbox."
|
17128 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et vérifiez "
|
17129 |
"la case à cocher \"Use API Mode:\"."
|
17130 |
|
17131 |
+
#: wppa-settings-autosave.php:9319
|
17132 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
17133 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
17134 |
|
17135 |
+
#: wppa-settings-autosave.php:9320
|
17136 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
17137 |
msgstr ""
|
17138 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-B15 )."
|
17139 |
|
17140 |
+
#: wppa-settings-autosave.php:9328
|
17141 |
msgid "Fotomoto fontsize"
|
17142 |
msgstr "Taille de la police de caractère Fotomoto"
|
17143 |
|
17144 |
+
#: wppa-settings-autosave.php:9329
|
17145 |
msgid "Fontsize for the Fotomoto toolbar."
|
17146 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
17147 |
|
17148 |
+
#: wppa-settings-autosave.php:9330
|
17149 |
msgid ""
|
17150 |
"If you set it here, it overrules a possible setting for font-size in ."
|
17151 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
17153 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
17154 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
17155 |
|
17156 |
+
#: wppa-settings-autosave.php:9338
|
17157 |
msgid "Hide toolbar on running slideshows"
|
17158 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
17159 |
|
17160 |
+
#: wppa-settings-autosave.php:9339
|
17161 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
17162 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
17163 |
|
17164 |
+
#: wppa-settings-autosave.php:9346
|
17165 |
msgid "Fotomoto minwidth"
|
17166 |
msgstr "Largeur mini de Fotomoto"
|
17167 |
|
17168 |
+
#: wppa-settings-autosave.php:9347
|
17169 |
msgid "Minimum width to display Fotomoto toolbar."
|
17170 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
17171 |
|
17172 |
+
#: wppa-settings-autosave.php:9348
|
17173 |
msgid ""
|
17174 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
17175 |
msgstr ""
|
17176 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus petits."
|
17177 |
|
17178 |
+
#: wppa-settings-autosave.php:9373
|
17179 |
msgid "Table X:"
|
17180 |
msgstr "Table X:"
|
17181 |
|
17182 |
+
#: wppa-settings-autosave.php:9373
|
17183 |
msgid "IPTC Configuration:"
|
17184 |
msgstr "Configuration IPTC:"
|
17185 |
|
17186 |
+
#: wppa-settings-autosave.php:9374
|
17187 |
msgid "This table defines the IPTC configuration"
|
17188 |
msgstr "Cette table règle la configuration de IPTC"
|
17189 |
|
17190 |
+
#: wppa-settings-autosave.php:9405 wppa-settings-autosave.php:9473
|
17191 |
msgid "Display"
|
17192 |
msgstr "Afficher"
|
17193 |
|
17194 |
+
#: wppa-settings-autosave.php:9405 wppa-settings-autosave.php:9473
|
17195 |
msgid "Hide"
|
17196 |
msgstr "Cacher"
|
17197 |
|
17198 |
+
#: wppa-settings-autosave.php:9435
|
17199 |
msgid "Table XI:"
|
17200 |
msgstr "Table XI:"
|
17201 |
|
17202 |
+
#: wppa-settings-autosave.php:9435
|
17203 |
msgid "EXIF Configuration:"
|
17204 |
msgstr "Configuration EXIF:"
|
17205 |
|
17206 |
+
#: wppa-settings-autosave.php:9436
|
17207 |
msgid "This table defines the EXIF configuration"
|
17208 |
msgstr "Cette table règle la configuration d'EXIF"
|
17209 |
|
17210 |
+
#: wppa-settings-autosave.php:9459
|
17211 |
msgid ""
|
17212 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
17213 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to add "
|
17218 |
"hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de configuration</"
|
17219 |
"b> de PHP."
|
17220 |
|
17221 |
+
#: wppa-settings-autosave.php:9503
|
17222 |
msgid "Table XII:"
|
17223 |
msgstr "Table XII:"
|
17224 |
|
17225 |
+
#: wppa-settings-autosave.php:9503
|
17226 |
msgid "WPPA+ and PHP Configuration:"
|
17227 |
msgstr "Configuration WPPA+ et PHP:"
|
17228 |
|
17229 |
+
#: wppa-settings-autosave.php:9504
|
17230 |
msgid ""
|
17231 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
17232 |
"and is read only"
|
17234 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
17235 |
"les paramètres de configuration du serveur PHP"
|
17236 |
|
17237 |
+
#: wppa-settings-autosave.php:9519
|
17238 |
msgid "Value"
|
17239 |
msgstr "Valeur"
|
17240 |
|
17241 |
+
#: wppa-settings-autosave.php:9525
|
17242 |
msgid "Albums db table name."
|
17243 |
msgstr "Nom de la table albums dans la base de données."
|
17244 |
|
17245 |
+
#: wppa-settings-autosave.php:9537
|
17246 |
msgid "Photos db table name."
|
17247 |
msgstr "Nom de la table photos dans la base de données."
|
17248 |
|
17249 |
+
#: wppa-settings-autosave.php:9549
|
17250 |
msgid "Rating db table name."
|
17251 |
msgstr "Nom de la table votes dans la base de données."
|
17252 |
|
17253 |
+
#: wppa-settings-autosave.php:9561
|
17254 |
msgid "Comments db table name."
|
17255 |
msgstr "Nom de la table commentaires dans la base de données."
|
17256 |
|
17257 |
+
#: wppa-settings-autosave.php:9573
|
17258 |
msgid "IPTC db table name."
|
17259 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
17260 |
|
17261 |
+
#: wppa-settings-autosave.php:9585
|
17262 |
msgid "EXIF db table name."
|
17263 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
17264 |
|
17265 |
+
#: wppa-settings-autosave.php:9597 wppa-settings-autosave.php:9609
|
17266 |
msgid "Index db table name."
|
17267 |
msgstr "Nom de la table Index dans la base de donnée."
|
17268 |
|
17269 |
+
#: wppa-settings-autosave.php:9621
|
17270 |
msgid "Plugins main file name."
|
17271 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
17272 |
|
17273 |
+
#: wppa-settings-autosave.php:9627
|
17274 |
msgid "ABSPATH windows proof"
|
17275 |
msgstr "ABSPATH windows proof"
|
17276 |
|
17277 |
+
#: wppa-settings-autosave.php:9633
|
17278 |
msgid "Path to plugins directory."
|
17279 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
17280 |
|
17281 |
+
#: wppa-settings-autosave.php:9639
|
17282 |
msgid "Plugins directory name."
|
17283 |
msgstr "Nom du répertoire des greffons (plugins)."
|
17284 |
|
17285 |
+
#: wppa-settings-autosave.php:9645
|
17286 |
msgid "Plugins directory url."
|
17287 |
msgstr "URL du répertoire des greffons (plugins)."
|
17288 |
|
17289 |
+
#: wppa-settings-autosave.php:9651
|
17290 |
msgid "The relative upload directory."
|
17291 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
17292 |
|
17293 |
+
#: wppa-settings-autosave.php:9657
|
17294 |
msgid "The upload directory path."
|
17295 |
msgstr "Chemin du répertoire de chargement (upload)."
|
17296 |
|
17297 |
+
#: wppa-settings-autosave.php:9663
|
17298 |
msgid "The upload directory url."
|
17299 |
msgstr "URL du répertoire de chargement (upload)."
|
17300 |
|
17301 |
+
#: wppa-settings-autosave.php:9669
|
17302 |
msgid "The relative depot directory."
|
17303 |
msgstr "Chemin relatif du répertoire de dépôt."
|
17304 |
|
17305 |
+
#: wppa-settings-autosave.php:9675
|
17306 |
msgid "The depot directory path."
|
17307 |
msgstr "Chemin du répertoire de dépôt."
|
17308 |
|
17309 |
+
#: wppa-settings-autosave.php:9681
|
17310 |
msgid "The depot directory url."
|
17311 |
msgstr "URL du répertoire de dépôt."
|
17312 |
|
17313 |
+
#: wppa-settings-autosave.php:9687
|
17314 |
msgid "The path to wp-content."
|
17315 |
msgstr "Chemin vers wp-content."
|
17316 |
|
17317 |
+
#: wppa-settings-autosave.php:9693
|
17318 |
msgid "WP Content url."
|
17319 |
msgstr "URL de contenu WP."
|
17320 |
|
17321 |
+
#: wppa-settings-autosave.php:9699
|
17322 |
msgid "WP Base upload dir."
|
17323 |
msgstr "Répertoire de chargement de WP."
|
17324 |
|
17325 |
+
#: wppa-settings-autosave.php:9719
|
17326 |
#, php-format
|
17327 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
17328 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
17329 |
|
17330 |
+
#: wppa-settings-autosave.php:9720
|
17331 |
#, php-format
|
17332 |
msgid "<br />There are %d settings and %d runtime parameters."
|
17333 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
17334 |
|
17335 |
+
#: wppa-settings-autosave.php:9970 wppa-settings-autosave.php:9990
|
17336 |
+
#: wppa-settings-autosave.php:10011
|
17337 |
msgid "Warning!"
|
17338 |
msgstr "Attention!"
|
17339 |
|
17340 |
+
#: wppa-settings-autosave.php:9991 wppa-settings-autosave.php:10011
|
17341 |
msgid "Please read the help"
|
17342 |
msgstr "Veuillez consulter l'aide"
|
17343 |
|
17344 |
+
#: wppa-settings-autosave.php:10222
|
17345 |
msgid "Show!"
|
17346 |
msgstr "Montrer!"
|
17347 |
|
17348 |
+
#: wppa-settings-autosave.php:10242
|
17349 |
msgid "Not done yet"
|
17350 |
msgstr "Pas encore fait"
|
17351 |
|
17352 |
+
#: wppa-settings-autosave.php:10249
|
17353 |
msgid "Start as cron job"
|
17354 |
msgstr "Commencez comme tâche cron"
|
17355 |
|
17356 |
+
#: wppa-settings-autosave.php:10254 wppa-settings-autosave.php:10296
|
17357 |
msgid "Locked!"
|
17358 |
msgstr "Verrouillé!"
|
17359 |
|
17360 |
+
#: wppa-settings-autosave.php:10264
|
17361 |
msgid "Crashed!"
|
17362 |
msgstr "Écrasé!"
|
17363 |
|
17364 |
+
#: wppa-settings-autosave.php:10282
|
17365 |
msgid "Click me to resume"
|
17366 |
msgstr "Cliquez-moi pour reprendre"
|
17367 |
|
17368 |
+
#: wppa-settings-autosave.php:10291
|
17369 |
msgid "Start!"
|
17370 |
msgstr "Démarrer!"
|
17371 |
|
17372 |
+
#: wppa-settings-autosave.php:10327
|
17373 |
msgid ""
|
17374 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
17375 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
17378 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
17379 |
"VI-2."
|
17380 |
|
17381 |
+
#: wppa-settings-autosave.php:10330
|
17382 |
#, fuzzy
|
17383 |
msgid ""
|
17384 |
"It is important that you select a page that contains at least [wppa][/wppa]."
|
17386 |
"Il est important que vous sélectionnez une page qui contient au moins [LPPT] "
|
17387 |
"[/ LPPT]."
|
17388 |
|
17389 |
+
#: wppa-settings-autosave.php:10331
|
17390 |
msgid ""
|
17391 |
"If you ommit this, the link will not work at all or simply refresh the "
|
17392 |
"(home)page."
|
17478 |
msgid "Search in current results"
|
17479 |
msgstr "Rechercher dans les résultats courants"
|
17480 |
|
17481 |
+
#: wppa-setup.php:1637
|
17482 |
msgid "Type your custom url here"
|
17483 |
msgstr "Tapez votre URL personnalisée ici"
|
17484 |
|
17485 |
+
#: wppa-setup.php:1638
|
17486 |
msgid "Type the title here"
|
17487 |
msgstr "Entrez ici le titre de la page"
|
17488 |
|
17489 |
+
#: wppa-setup.php:1657 wppa-topten-widget.php:13 wppa-topten-widget.php:48
|
17490 |
#: wppa-topten-widget.php:308
|
17491 |
msgid "Top Ten Photos"
|
17492 |
msgstr "Meilleures photos"
|
17493 |
|
17494 |
+
#: wppa-setup.php:1660 wppa-thumbnail-widget.php:13 wppa-thumbnail-widget.php:166
|
17495 |
msgid "Thumbnail Photos"
|
17496 |
msgstr "Vignettes"
|
17497 |
|
17498 |
+
#: wppa-setup.php:1663
|
17499 |
msgid "Search photos"
|
17500 |
msgstr "Rechercher dans les photos"
|
17501 |
|
17502 |
+
#: wppa-setup.php:1708
|
17503 |
msgid ""
|
17504 |
"The uploads directory does not exist, please do a regular WP upload first."
|
17505 |
msgstr ""
|
17506 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire un "
|
17507 |
"chargement basique via WordPress."
|
17508 |
|
17509 |
+
#: wppa-setup.php:1712
|
17510 |
msgid "Successfully created uploads directory."
|
17511 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
17512 |
|
17513 |
+
#: wppa-setup.php:1723
|
17514 |
msgid "Could not create the wppa directory."
|
17515 |
msgstr "Impossible de créer le répertoire WPPA."
|
17516 |
|
17517 |
+
#: wppa-setup.php:1727
|
17518 |
msgid "Successfully created wppa directory."
|
17519 |
msgstr "Répertoire WPPA créé avec succès."
|
17520 |
|
17521 |
+
#: wppa-setup.php:1737
|
17522 |
msgid "Could not create the wppa thumbs directory."
|
17523 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
17524 |
|
17525 |
+
#: wppa-setup.php:1741
|
17526 |
msgid "Successfully created wppa thumbs directory."
|
17527 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
17528 |
|
17529 |
+
#: wppa-setup.php:1751
|
17530 |
msgid "Could not create the wppa watermarks directory."
|
17531 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
17532 |
|
17533 |
+
#: wppa-setup.php:1755
|
17534 |
msgid "Successfully created wppa watermarks directory."
|
17535 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
17536 |
|
17537 |
+
#: wppa-setup.php:1765
|
17538 |
msgid "Could not create the wppa fonts directory."
|
17539 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
17540 |
|
17541 |
+
#: wppa-setup.php:1769
|
17542 |
msgid "Successfully created wppa fonts directory."
|
17543 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
17544 |
|
17545 |
+
#: wppa-setup.php:1781
|
17546 |
msgid "Unable to create depot directory."
|
17547 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
17548 |
|
17549 |
+
#: wppa-setup.php:1785
|
17550 |
msgid "Successfully created wppa depot directory."
|
17551 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
17552 |
|
17553 |
+
#: wppa-setup.php:1796
|
17554 |
msgid "Unable to create user depot directory"
|
17555 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
17556 |
|
17557 |
+
#: wppa-setup.php:1800
|
17558 |
msgid "Successfully created wppa user depot directory."
|
17559 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
17560 |
|
17561 |
+
#: wppa-setup.php:1810
|
17562 |
msgid "Unable to create temp directory"
|
17563 |
msgstr "Impossible de créer le répertoire temporaire"
|
17564 |
|
17565 |
+
#: wppa-setup.php:1814
|
17566 |
msgid "Successfully created temp directory."
|
17567 |
msgstr "Répertoire temporaire créé avec succès."
|
17568 |
|
17569 |
+
#: wppa-setup.php:1822
|
17570 |
#, php-format
|
17571 |
msgid ""
|
17572 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
17575 |
"Demander à votre administrateur de vous donner plus de droits, ou créer <b>%s</"
|
17576 |
"b> manuellement en utilisant un logiciel FTP."
|
17577 |
|
17578 |
+
#: wppa-setup.php:1924
|
17579 |
msgid "Default photo album for"
|
17580 |
msgstr "Album par défaut pour"
|
17581 |
|
18730 |
msgid "There are no ratings between"
|
18731 |
msgstr "Il n’y a aucune cote entre"
|
18732 |
|
18733 |
+
#: wppa-utils.php:3408
|
18734 |
#, php-format
|
18735 |
msgid "You and %d other person like this"
|
18736 |
msgid_plural "You and %d other people like this"
|
18737 |
msgstr[0] "Vous et %d total autre personne aiment cela."
|
18738 |
msgstr[1] "Vous et %d total autre personnes aiment cela."
|
18739 |
|
18740 |
+
#: wppa-utils.php:3411
|
18741 |
msgid "You are the first one who likes this"
|
18742 |
msgstr "Vous êtes la première personne qui aime ça"
|
18743 |
|
18744 |
+
#: wppa-utils.php:3414
|
18745 |
msgid "Click again if you do no longer like this"
|
18746 |
msgstr "Cliquez à nouveau si vous aime plus comme ceci"
|
18747 |
|
18748 |
+
#: wppa-utils.php:3418
|
18749 |
#, php-format
|
18750 |
msgid "%d person likes this"
|
18751 |
msgid_plural "%d people like this"
|
18752 |
msgstr[0] "%d personne aime ça"
|
18753 |
msgstr[1] "%d personnes aime ça"
|
18754 |
|
18755 |
+
#: wppa-utils.php:3421
|
18756 |
msgid "Be the first one to like this"
|
18757 |
msgstr "Soyez le premier à aimer!"
|
18758 |
|
18759 |
+
#: wppa-utils.php:3427
|
18760 |
#, php-format
|
18761 |
msgid "%d like"
|
18762 |
msgid_plural "%d likes"
|
18811 |
msgid "http://wppa.opajaap.nl/"
|
18812 |
msgstr "http://wppa.opajaap.nl/"
|
18813 |
|
18814 |
+
#~ msgid "IPTC need utf8 conversion"
|
18815 |
+
#~ msgstr "IPTC a besoin d'une conversion UTF8"
|
18816 |
+
|
18817 |
+
#~ msgid "This setting converts iso to utf8 in iptc text."
|
18818 |
+
#~ msgstr "Ce réglage converti ISO vers UTF8 dans le texte IPTC."
|
18819 |
+
|
18820 |
+
#~ msgid "Untick if you have funny characters in iptc data"
|
18821 |
+
#~ msgstr "Décocher si vous avez des caractères bizarres dans les données IPTC"
|
18822 |
+
|
18823 |
#~ msgid ""
|
18824 |
#~ "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
18825 |
#~ msgstr ""
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
-
Version: 6.6.
|
6 |
-
Stable tag: 6.6.
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
@@ -180,6 +180,25 @@ Oh, just Google on 'picture resizer' and you will find a bunch of free programs
|
|
180 |
|
181 |
See for additional information: <a href="http://www.wppa.nl/changelog/" >The documentation website</a>
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
= 6.6.07 =
|
184 |
|
185 |
= Bug Fixes =
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
+
Version: 6.6.08
|
6 |
+
Stable tag: 6.6.08
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
180 |
|
181 |
See for additional information: <a href="http://www.wppa.nl/changelog/" >The documentation website</a>
|
182 |
|
183 |
+
= 6.6.08 =
|
184 |
+
|
185 |
+
= Bug Fixes =
|
186 |
+
|
187 |
+
* Fixed an error in the html for google+ share code.
|
188 |
+
* A running slideshow no longer interrupts running audio.
|
189 |
+
* Fixed an alignment problem of the audio bar on theme Twenty Seventeen.
|
190 |
+
* Fixed cursor (is now a pointer) in case a single image has a link to it.
|
191 |
+
* Fixed a spurious php error in wppa_in_widget().
|
192 |
+
* Hilite is working again. (Indication on thumbnail when linked from slideshow to thumbnails).
|
193 |
+
|
194 |
+
= Other Changes =
|
195 |
+
|
196 |
+
* The first/last arrow icons on the filmstrip do no longer show up if the first/last image is displayed.
|
197 |
+
* Cosmetic changes to filmstrip tooltips (titles).
|
198 |
+
* Functional enhancements in bulk edit photos i.c. immediate move por photo.
|
199 |
+
* Table IX-H16 ( iptc needs utf8 conversion ) has been removed. This is now autodetected.
|
200 |
+
* It is no longer possible to generate negative photo or album or any other db table ids.
|
201 |
+
|
202 |
= 6.6.07 =
|
203 |
|
204 |
= Bug Fixes =
|
wppa-album-admin-autosave.php
CHANGED
@@ -88,7 +88,7 @@ function _wppa_admin() {
|
|
88 |
if ( isset($_REQUEST['bulk']) ) wppa_album_photos_bulk($ei);
|
89 |
else wppa_album_photos($ei);
|
90 |
?>
|
91 |
-
<
|
92 |
<br /><a href="<?php echo $back_url ?>"><?php _e('Back to album table', 'wp-photo-album-plus') ?></a>
|
93 |
<?php
|
94 |
return;
|
@@ -1024,7 +1024,7 @@ function wppaTryScheduleAll( id ) {
|
|
1024 |
elseif ( isset($_REQUEST['seq']) ) wppa_album_photos_sequence($edit_id);
|
1025 |
else wppa_album_photos($edit_id)
|
1026 |
?>
|
1027 |
-
<
|
1028 |
</div>
|
1029 |
<?php }
|
1030 |
|
88 |
if ( isset($_REQUEST['bulk']) ) wppa_album_photos_bulk($ei);
|
89 |
else wppa_album_photos($ei);
|
90 |
?>
|
91 |
+
<div style="position:fixed;right:30px;bottom:30px;background-color:lightblue;" > <a href="#manage-photos"><?php _e('Top of page', 'wp-photo-album-plus') ?></a> </div>
|
92 |
<br /><a href="<?php echo $back_url ?>"><?php _e('Back to album table', 'wp-photo-album-plus') ?></a>
|
93 |
<?php
|
94 |
return;
|
1024 |
elseif ( isset($_REQUEST['seq']) ) wppa_album_photos_sequence($edit_id);
|
1025 |
else wppa_album_photos($edit_id)
|
1026 |
?>
|
1027 |
+
<div style="position:fixed;right:30px;bottom:30px;background-color:lightblue;" > <a href="#manage-photos"><?php _e('Top of page', 'wp-photo-album-plus') ?></a> </div>
|
1028 |
</div>
|
1029 |
<?php }
|
1030 |
|
wppa-boxes-html.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various wppa boxes
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1374,7 +1374,6 @@ $tweet = urlencode( $share_url );
|
|
1374 |
'<a' .
|
1375 |
' title="' . sprintf( __( 'Share %s on Google+', 'wp-photo-album-plus' ), esc_attr( $photo_name ) ) . '"' .
|
1376 |
' href="https://plus.google.com/share?url=' . urlencode( $share_url ) . '"' .
|
1377 |
-
' onclick="javascript:window.open( this.href, \"\", \"menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600\" );return false;"' .
|
1378 |
' target="_blank"' .
|
1379 |
' >' .
|
1380 |
'<img' .
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various wppa boxes
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
1374 |
'<a' .
|
1375 |
' title="' . sprintf( __( 'Share %s on Google+', 'wp-photo-album-plus' ), esc_attr( $photo_name ) ) . '"' .
|
1376 |
' href="https://plus.google.com/share?url=' . urlencode( $share_url ) . '"' .
|
|
|
1377 |
' target="_blank"' .
|
1378 |
' >' .
|
1379 |
'<img' .
|
wppa-breadcrumb.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for breadcrumbs
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -534,7 +534,7 @@ global $wppa_session;
|
|
534 |
}
|
535 |
else {
|
536 |
$s = wppa( 'src' ) ? '&wppa-searchstring='.urlencode( wppa( 'searchstring' ) ) : '';
|
537 |
-
$onclick = "wppaDoAjaxRender( ".wppa( 'mocc' ).", '".wppa_encrypt_url(wppa_get_album_url_ajax( wppa( 'start_album' ), '0' )."&wppa-photos-only=1".$s)."'+wppaPageArg, '".wppa_convert_to_pretty( wppa_encrypt_url( wppa_get_album_url( wppa( 'start_album' ), '0' ).'&wppa-photos-only=1'.$s.$pg ) )."' )";
|
538 |
$fs = wppa_opt( 'fontsize_nav' );
|
539 |
if ( $fs != '' ) $fs += 3; else $fs = '15'; // iconsize = fontsize+3, Default to 15
|
540 |
$imgs = 'height: '.$fs.'px; margin:0 0 -3px 0; padding:0; box-shadow:none;';
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for breadcrumbs
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
534 |
}
|
535 |
else {
|
536 |
$s = wppa( 'src' ) ? '&wppa-searchstring='.urlencode( wppa( 'searchstring' ) ) : '';
|
537 |
+
$onclick = "wppaDoAjaxRender( ".wppa( 'mocc' ).", '".wppa_encrypt_url(wppa_get_album_url_ajax( wppa( 'start_album' ), '0' )."&wppa-photos-only=1".$s)."'+wppaPageArg, '".wppa_convert_to_pretty( wppa_encrypt_url( wppa_get_album_url( wppa( 'start_album' ), '0' ).'&wppa-photos-only=1'.$s.$pg ) )."', '', '', true )";
|
538 |
$fs = wppa_opt( 'fontsize_nav' );
|
539 |
if ( $fs != '' ) $fs += 3; else $fs = '15'; // iconsize = fontsize+3, Default to 15
|
540 |
$imgs = 'height: '.$fs.'px; margin:0 0 -3px 0; padding:0; box-shadow:none;';
|
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.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -984,7 +984,7 @@ static $labels;
|
|
984 |
$photo = $id;
|
985 |
$tag = $s;
|
986 |
$desc = $iptc[$s][$i];
|
987 |
-
if (
|
988 |
$desc = utf8_encode( $desc );
|
989 |
}
|
990 |
$status = 'default';
|
2 |
/* wppa-common-functions.php
|
3 |
*
|
4 |
* Functions used in admin and in themes
|
5 |
+
* Version 6.6.08
|
6 |
*
|
7 |
*/
|
8 |
|
984 |
$photo = $id;
|
985 |
$tag = $s;
|
986 |
$desc = $iptc[$s][$i];
|
987 |
+
if ( ! seems_utf8( $desc ) ) {
|
988 |
$desc = utf8_encode( $desc );
|
989 |
}
|
990 |
$status = 'default';
|
wppa-encrypt.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all ecryption/decryption logic
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -125,7 +125,7 @@ function wppa_encrypt_album( $album ) {
|
|
125 |
}
|
126 |
|
127 |
// Convert photo crypt to id
|
128 |
-
function wppa_decrypt_photo( $photo ) {
|
129 |
global $wpdb;
|
130 |
|
131 |
// Feature enabled?
|
@@ -145,7 +145,9 @@ global $wpdb;
|
|
145 |
// Just do it
|
146 |
$id = $wpdb->get_var( $wpdb->prepare( "SELECT `id` FROM `" . WPPA_PHOTOS . "` WHERE `crypt` = %s", substr( $photo, 0, 12 ) ) );
|
147 |
if ( ! $id ) {
|
148 |
-
|
|
|
|
|
149 |
}
|
150 |
|
151 |
return $id;
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all ecryption/decryption logic
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
125 |
}
|
126 |
|
127 |
// Convert photo crypt to id
|
128 |
+
function wppa_decrypt_photo( $photo, $report_error = true ) {
|
129 |
global $wpdb;
|
130 |
|
131 |
// Feature enabled?
|
145 |
// Just do it
|
146 |
$id = $wpdb->get_var( $wpdb->prepare( "SELECT `id` FROM `" . WPPA_PHOTOS . "` WHERE `crypt` = %s", substr( $photo, 0, 12 ) ) );
|
147 |
if ( ! $id ) {
|
148 |
+
if ( $report_error ) {
|
149 |
+
wppa_dbg_msg( 'Invalid photo identifier: ' . $photo, 'red', 'force' );
|
150 |
+
}
|
151 |
}
|
152 |
|
153 |
return $id;
|
wppa-import.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the import pages and functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1833,7 +1833,7 @@ global $wppa_supported_audio_extensions;
|
|
1833 |
}
|
1834 |
else {
|
1835 |
$id = substr( $id, 0, strpos( $id, '.' ) );
|
1836 |
-
if ( !is_numeric( $id ) || ! wppa_is_id_free(
|
1837 |
if ( wppa_insert_photo( $unsanitized_path_name, $alb, stripslashes( $name ), stripslashes( $desc ), $porder, $id, stripslashes( $linkurl ), stripslashes( $linktitle ) ) ) {
|
1838 |
if ( wppa( 'ajax' ) ) {
|
1839 |
wppa( 'ajax_import_files_done', true );
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the import pages and functions
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
1833 |
}
|
1834 |
else {
|
1835 |
$id = substr( $id, 0, strpos( $id, '.' ) );
|
1836 |
+
if ( ! is_numeric( $id ) || ! wppa_is_id_free( WPPA_PHOTOS, $id ) ) $id = 0;
|
1837 |
if ( wppa_insert_photo( $unsanitized_path_name, $alb, stripslashes( $name ), stripslashes( $desc ), $porder, $id, stripslashes( $linkurl ), stripslashes( $linktitle ) ) ) {
|
1838 |
if ( wppa( 'ajax' ) ) {
|
1839 |
wppa( 'ajax_import_files_done', true );
|
wppa-items.php
CHANGED
@@ -607,7 +607,7 @@ function wppa_get_album_item( $id, $item ) {
|
|
607 |
}
|
608 |
}
|
609 |
else {
|
610 |
-
wppa_log( '
|
611 |
}
|
612 |
return false;
|
613 |
}
|
@@ -626,7 +626,7 @@ function wppa_get_photo_item( $id, $item ) {
|
|
626 |
}
|
627 |
}
|
628 |
else {
|
629 |
-
wppa_log( '
|
630 |
}
|
631 |
return false;
|
632 |
}
|
607 |
}
|
608 |
}
|
609 |
else {
|
610 |
+
wppa_log( 'Dbg', 'Album ' . $id . ' does not exist. ( get_album_item )' );
|
611 |
}
|
612 |
return false;
|
613 |
}
|
626 |
}
|
627 |
}
|
628 |
else {
|
629 |
+
wppa_log( 'Dbg', 'Photo ' . $id . ' does not exist. ( get_photo_item )' );
|
630 |
}
|
631 |
return false;
|
632 |
}
|
wppa-non-admin.php
CHANGED
@@ -846,6 +846,7 @@ global $wppa_init_js_data;
|
|
846 |
wppaAutoOpenComments = '.( wppa_switch( 'auto_open_comments') ? 'true' : 'false' ).';
|
847 |
wppaUpdateAddressLine = '.( wppa_switch( 'update_addressline') ? 'true' : 'false' ).';
|
848 |
wppaFilmThumbTitle = "'.( wppa_opt( 'film_linktype' ) == 'lightbox' ? wppa_zoom_in( false ) : __('Double click to start/stop slideshow running', 'wp-photo-album-plus') ).'";
|
|
|
849 |
wppaVoteForMe = "'.__(wppa_opt( 'vote_button_text' ), 'wp-photo-album-plus').'";
|
850 |
wppaVotedForMe = "'.__(wppa_opt( 'voted_button_text' ), 'wp-photo-album-plus').'";
|
851 |
wppaSlideSwipe = '.( wppa_switch( 'slide_swipe') ? 'true' : 'false' ).';
|
846 |
wppaAutoOpenComments = '.( wppa_switch( 'auto_open_comments') ? 'true' : 'false' ).';
|
847 |
wppaUpdateAddressLine = '.( wppa_switch( 'update_addressline') ? 'true' : 'false' ).';
|
848 |
wppaFilmThumbTitle = "'.( wppa_opt( 'film_linktype' ) == 'lightbox' ? wppa_zoom_in( false ) : __('Double click to start/stop slideshow running', 'wp-photo-album-plus') ).'";
|
849 |
+
wppaClickToView = "'.( wppa_opt( 'film_linktype' ) == 'lightbox' ? wppa_zoom_in( false ) : __('Click to view', 'wp-photo-album-plus') ).'";
|
850 |
wppaVoteForMe = "'.__(wppa_opt( 'vote_button_text' ), 'wp-photo-album-plus').'";
|
851 |
wppaVotedForMe = "'.__(wppa_opt( 'voted_button_text' ), 'wp-photo-album-plus').'";
|
852 |
wppaSlideSwipe = '.( wppa_switch( 'slide_swipe') ? 'true' : 'false' ).';
|
wppa-photo-admin-autosave.php
CHANGED
@@ -698,7 +698,7 @@ function wppaTryWatermark( id ) {
|
|
698 |
$views .
|
699 |
'. ';
|
700 |
}
|
701 |
-
|
702 |
// Clicks
|
703 |
if ( wppa_switch( 'track_clickcounts' ) ) {
|
704 |
echo
|
@@ -1785,6 +1785,7 @@ function wppa_album_photos_bulk( $album ) {
|
|
1785 |
$skip = ( $page > '0' ? ( $page - '1' ) * $pagesize : '0' );
|
1786 |
$limit = ( $pagesize < '1' ) ? '' : ' LIMIT '.$skip.','.$pagesize;
|
1787 |
$no_confirm_delete = ( isset( $_REQUEST['no-confirm-delete'] ) ? true : false );
|
|
|
1788 |
/*
|
1789 |
echo 'Post=';
|
1790 |
print_r($_POST);
|
@@ -1808,7 +1809,7 @@ echo 'Page='.$page;
|
|
1808 |
}
|
1809 |
|
1810 |
if ( $photos ) {
|
1811 |
-
$plink = $link . '&next-after=' . $next_after . ( $no_confirm_delete ? '&no-confirm-delete=on' : '' );
|
1812 |
wppa_admin_page_links( $page, $pagesize, $count, $plink, '#manage-photos' );
|
1813 |
?>
|
1814 |
<script type="text/javascript" >
|
@@ -1893,7 +1894,27 @@ echo 'Page='.$page;
|
|
1893 |
document.getElementById( 'wppa-bulk-owner' ).value = wppa_getCookie( 'wppa_bulk_owner' );
|
1894 |
}
|
1895 |
} );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1896 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1897 |
</script>
|
1898 |
<?php /**/ ?>
|
1899 |
<form action="<?php echo $link.'&wppa-page='.$page.'#manage-photos' ?>" method="post" >
|
@@ -1956,6 +1977,11 @@ echo 'Page='.$page;
|
|
1956 |
<input type="checkbox" id="no-confirm-delete" name="no-confirm-delete"<?php if ( $no_confirm_delete ) echo ' checked="checked"' ?> style="display:none;" />
|
1957 |
<input type="checkbox" id="confirm-delete" name="confirm-delete"<?php if ( ! $no_confirm_delete ) echo ' checked="checked"' ?>
|
1958 |
onchange="if ( jQuery(this).val() == 'on' ) jQuery( '#no-confirm-delete' ).attr('checked', 'checked'); else jQuery( '#no-confirm-delete' ).removeAttr( 'checked' );" /><?php _e('Confirm delete', 'wp-photo-album-plus') ?>
|
|
|
|
|
|
|
|
|
|
|
1959 |
<?php echo '<small style="float:right;" > (' . count( $photos ) . ')</small>'; ?>
|
1960 |
</h3>
|
1961 |
<table class="widefat" >
|
@@ -1972,6 +1998,7 @@ echo 'Page='.$page;
|
|
1972 |
<tbody>
|
1973 |
<?php foreach ( $photos as $photo ) { ?>
|
1974 |
<?php $id = $photo['id']; ?>
|
|
|
1975 |
<tr id="photoitem-<?php echo $photo['id'] ?>" >
|
1976 |
<!-- Checkbox -->
|
1977 |
<td>
|
@@ -2016,14 +2043,29 @@ echo 'Page='.$page;
|
|
2016 |
</video> -->
|
2017 |
</a>
|
2018 |
<?php }
|
2019 |
-
else {
|
2020 |
-
|
2021 |
-
<
|
2022 |
-
|
2023 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024 |
</td>
|
|
|
|
|
2025 |
<td style="width:25%;" >
|
2026 |
<input type="text" style="width:100%;" id="pname-<?php echo $photo['id'] ?>" onchange="wppaAjaxUpdatePhoto( <?php echo $photo['id'] ?>, 'name', this );" value="<?php echo esc_attr( stripslashes( $photo['name'] ) ) ?>" />
|
|
|
2027 |
<?php
|
2028 |
if ( wppa_is_video( $photo['id'] ) ) {
|
2029 |
echo '<br />'.wppa_get_videox( $photo['id'] ).' x '.wppa_get_videoy( $photo['id'] ).' px.';
|
@@ -2038,6 +2080,34 @@ echo 'Page='.$page;
|
|
2038 |
}
|
2039 |
}
|
2040 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2041 |
</td>
|
2042 |
<!-- Description -->
|
2043 |
<td style="width:25%;" >
|
698 |
$views .
|
699 |
'. ';
|
700 |
}
|
701 |
+
|
702 |
// Clicks
|
703 |
if ( wppa_switch( 'track_clickcounts' ) ) {
|
704 |
echo
|
1785 |
$skip = ( $page > '0' ? ( $page - '1' ) * $pagesize : '0' );
|
1786 |
$limit = ( $pagesize < '1' ) ? '' : ' LIMIT '.$skip.','.$pagesize;
|
1787 |
$no_confirm_delete = ( isset( $_REQUEST['no-confirm-delete'] ) ? true : false );
|
1788 |
+
$no_confirm_move = ( isset( $_REQUEST['no-confirm-move'] ) ? true : false );
|
1789 |
/*
|
1790 |
echo 'Post=';
|
1791 |
print_r($_POST);
|
1809 |
}
|
1810 |
|
1811 |
if ( $photos ) {
|
1812 |
+
$plink = $link . '&next-after=' . $next_after . ( $no_confirm_delete ? '&no-confirm-delete=on' : '' ) . ( $no_confirm_move ? '&no-confirm-move=on' : '' );
|
1813 |
wppa_admin_page_links( $page, $pagesize, $count, $plink, '#manage-photos' );
|
1814 |
?>
|
1815 |
<script type="text/javascript" >
|
1894 |
document.getElementById( 'wppa-bulk-owner' ).value = wppa_getCookie( 'wppa_bulk_owner' );
|
1895 |
}
|
1896 |
} );
|
1897 |
+
function wppaTryMove( id, video ) {
|
1898 |
+
|
1899 |
+
var query;
|
1900 |
+
|
1901 |
+
if ( ! jQuery( '#target-' + id ).val() ) {
|
1902 |
+
alert( '<?php echo esc_js( __( 'Please select an album to move to first.', 'wp-photo-album-plus' ) ) ?>' );
|
1903 |
+
return false;
|
1904 |
+
}
|
1905 |
|
1906 |
+
if ( video ) {
|
1907 |
+
query = '<?php echo esc_js( __( 'Are you sure you want to move this video?', 'wp-photo-album-plus' ) ) ?>';
|
1908 |
+
}
|
1909 |
+
else {
|
1910 |
+
query = '<?php echo esc_js( __( 'Are you sure you want to move this photo?', 'wp-photo-album-plus' ) ) ?>';
|
1911 |
+
}
|
1912 |
+
|
1913 |
+
if ( jQuery('#no-confirm-move').attr('checked') == 'checked' || confirm( query ) ) {
|
1914 |
+
jQuery( '#moving-' + id ).html( '<?php _e( 'Moving...', 'wp-photo-album-plus' ) ?>' );
|
1915 |
+
_wppaAjaxUpdatePhoto( id, 'moveto', jQuery( '#target-' + id ).val(), false, '<td colspan="8" >', '</td>' );
|
1916 |
+
}
|
1917 |
+
}
|
1918 |
</script>
|
1919 |
<?php /**/ ?>
|
1920 |
<form action="<?php echo $link.'&wppa-page='.$page.'#manage-photos' ?>" method="post" >
|
1977 |
<input type="checkbox" id="no-confirm-delete" name="no-confirm-delete"<?php if ( $no_confirm_delete ) echo ' checked="checked"' ?> style="display:none;" />
|
1978 |
<input type="checkbox" id="confirm-delete" name="confirm-delete"<?php if ( ! $no_confirm_delete ) echo ' checked="checked"' ?>
|
1979 |
onchange="if ( jQuery(this).val() == 'on' ) jQuery( '#no-confirm-delete' ).attr('checked', 'checked'); else jQuery( '#no-confirm-delete' ).removeAttr( 'checked' );" /><?php _e('Confirm delete', 'wp-photo-album-plus') ?>
|
1980 |
+
<input type="checkbox" id="no-confirm-move" name="no-confirm-move"<?php if ( $no_confirm_move ) echo ' checked="checked"' ?> style="display:none;" />
|
1981 |
+
<input type="checkbox" id="confirm-move" name="confirm-move"<?php if ( ! $no_confirm_move ) echo ' checked="checked"' ?>
|
1982 |
+
onchange="if ( jQuery(this).val() == 'on' ) jQuery( '#no-confirm-move' ).attr('checked', 'checked'); else jQuery( '#no-confirm-move' ).removeAttr( 'checked' );" /><?php _e('Confirm move', 'wp-photo-album-plus') ?>
|
1983 |
+
|
1984 |
+
|
1985 |
<?php echo '<small style="float:right;" > (' . count( $photos ) . ')</small>'; ?>
|
1986 |
</h3>
|
1987 |
<table class="widefat" >
|
1998 |
<tbody>
|
1999 |
<?php foreach ( $photos as $photo ) { ?>
|
2000 |
<?php $id = $photo['id']; ?>
|
2001 |
+
<?php $maxsize = wppa_get_minisize(); ?>
|
2002 |
<tr id="photoitem-<?php echo $photo['id'] ?>" >
|
2003 |
<!-- Checkbox -->
|
2004 |
<td>
|
2043 |
</video> -->
|
2044 |
</a>
|
2045 |
<?php }
|
2046 |
+
else {
|
2047 |
+
echo
|
2048 |
+
'<a' .
|
2049 |
+
' href="' . wppa_fix_poster_ext( wppa_get_photo_url( $photo['id'] ), $photo['id'] ) . '"' .
|
2050 |
+
' target="_blank"' .
|
2051 |
+
' title="Click to see fullsize"' .
|
2052 |
+
' >' .
|
2053 |
+
'<img' .
|
2054 |
+
' class="wppa-bulk-thumb"' .
|
2055 |
+
' src="' . wppa_fix_poster_ext( wppa_get_thumb_url( $photo['id'] ), $photo['id'] ) . '"' .
|
2056 |
+
' style="max-width:' . $maxsize . 'max-height:' . $maxsize . 'px;"' .
|
2057 |
+
// ' onmouseover="jQuery( this ).stop().animate( {height:120}, 100 )"' .
|
2058 |
+
// ' onmouseout="jQuery( this ).stop().animate( {height:60}, 100 )"' .
|
2059 |
+
' />' .
|
2060 |
+
'</a>';
|
2061 |
+
}
|
2062 |
+
?>
|
2063 |
</td>
|
2064 |
+
<!-- Name, size, move -->
|
2065 |
+
<!-- Name -->
|
2066 |
<td style="width:25%;" >
|
2067 |
<input type="text" style="width:100%;" id="pname-<?php echo $photo['id'] ?>" onchange="wppaAjaxUpdatePhoto( <?php echo $photo['id'] ?>, 'name', this );" value="<?php echo esc_attr( stripslashes( $photo['name'] ) ) ?>" />
|
2068 |
+
<!-- Size -->
|
2069 |
<?php
|
2070 |
if ( wppa_is_video( $photo['id'] ) ) {
|
2071 |
echo '<br />'.wppa_get_videox( $photo['id'] ).' x '.wppa_get_videoy( $photo['id'] ).' px.';
|
2080 |
}
|
2081 |
}
|
2082 |
?>
|
2083 |
+
<!-- Move -->
|
2084 |
+
<?php
|
2085 |
+
$max = wppa_opt( 'photo_admin_max_albums' );
|
2086 |
+
if ( ! $max || wppa_get_total_album_count() < $max ) {
|
2087 |
+
|
2088 |
+
// If not done yet, get the album options html with the current album excluded
|
2089 |
+
if ( ! isset( $album_select[$album] ) ) {
|
2090 |
+
$album_select[$album] = wppa_album_select_a( array( 'checkaccess' => true,
|
2091 |
+
'path' => wppa_switch( 'hier_albsel' ),
|
2092 |
+
'exclude' => $album,
|
2093 |
+
'selected' => '0',
|
2094 |
+
'addpleaseselect' => true
|
2095 |
+
)
|
2096 |
+
);
|
2097 |
+
}
|
2098 |
+
|
2099 |
+
echo
|
2100 |
+
'<br />' . __( 'Target album for move to:', 'wp-photo-album-plus' ) . '<br />' .
|
2101 |
+
'<select' .
|
2102 |
+
' id="target-' . $id . '"' .
|
2103 |
+
' onchange="wppaTryMove(' . $id . ', ' . ( wppa_is_video( $id ) ? 'true' : 'false' ) . ');"' .
|
2104 |
+
' >' .
|
2105 |
+
$album_select[$album] .
|
2106 |
+
'</select>' .
|
2107 |
+
'<span id="moving-' . $id . '" style="color:red;font-weight:bold;" ></span>';
|
2108 |
+
}
|
2109 |
+
|
2110 |
+
?>
|
2111 |
</td>
|
2112 |
<!-- Description -->
|
2113 |
<td style="width:25%;" >
|
wppa-picture.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Make the picture html
|
6 |
-
* Version 6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -122,8 +122,9 @@ function wppa_get_picture_html( $args ) {
|
|
122 |
$title = wppa_zoom_in( $id );
|
123 |
}
|
124 |
|
125 |
-
// Create the html
|
126 |
-
|
|
|
127 |
|
128 |
// The link
|
129 |
if ( $link ) {
|
@@ -155,13 +156,14 @@ function wppa_get_picture_html( $args ) {
|
|
155 |
else {
|
156 |
$result .=
|
157 |
'<a' .
|
158 |
-
( wppa_is_mobile() ?
|
159 |
-
' ontouchstart="wppaStartTime();" ontouchend="wppaTapLink(\'' . $id . '\',\'' . $link['url'] . '\');" ' :
|
160 |
-
' onclick="_bumpClickCount( \'' . $id . '\' );window.open(\'' . $link['url'] . '\', \'' . $link['target'] . '\' )"'
|
161 |
) .
|
162 |
' title="' . $link['title'] . '"' .
|
163 |
' class="thumb-img"' .
|
164 |
' id="a-' . $id . '-' . wppa( 'mocc' ) . '"' .
|
|
|
165 |
' >';
|
166 |
}
|
167 |
}
|
@@ -205,8 +207,8 @@ function wppa_get_picture_html( $args ) {
|
|
205 |
// Find style for audio controls
|
206 |
switch ( $type ) {
|
207 |
case 'sphoto':
|
208 |
-
$pad = ( wppa_opt( 'fullimage_border_width' ) === '' ) ? 0 : wppa_opt( 'fullimage_border_width' )
|
209 |
-
$bot = ( wppa_opt( 'fullimage_border_width' ) === '' ) ? 0 : wppa_opt( 'fullimage_border_width' )
|
210 |
|
211 |
$style = 'margin:0;' .
|
212 |
'padding:0 ' . $pad . 'px;' .
|
@@ -244,6 +246,8 @@ function wppa_get_picture_html( $args ) {
|
|
244 |
$result .= '</div>';
|
245 |
}
|
246 |
|
|
|
|
|
247 |
// Update statistics
|
248 |
if ( ! wppa_in_widget() ) {
|
249 |
wppa_bump_viewcount( 'photo', $id );
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Make the picture html
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
122 |
$title = wppa_zoom_in( $id );
|
123 |
}
|
124 |
|
125 |
+
// Create the html. To prevent mis-alignment of the audio control bar
|
126 |
+
// on theme Twenty Seventeen, we wrap it in a div with zero fontsize.
|
127 |
+
$result = '<div style="font-size:0;" >';
|
128 |
|
129 |
// The link
|
130 |
if ( $link ) {
|
156 |
else {
|
157 |
$result .=
|
158 |
'<a' .
|
159 |
+
( wppa_is_mobile() ?
|
160 |
+
' ontouchstart="wppaStartTime();" ontouchend="wppaTapLink(\'' . $id . '\',\'' . $link['url'] . '\');" ' :
|
161 |
+
' onclick="_bumpClickCount( \'' . $id . '\' );window.open(\'' . $link['url'] . '\', \'' . $link['target'] . '\' )"'
|
162 |
) .
|
163 |
' title="' . $link['title'] . '"' .
|
164 |
' class="thumb-img"' .
|
165 |
' id="a-' . $id . '-' . wppa( 'mocc' ) . '"' .
|
166 |
+
' style="cursor:pointer;"' .
|
167 |
' >';
|
168 |
}
|
169 |
}
|
207 |
// Find style for audio controls
|
208 |
switch ( $type ) {
|
209 |
case 'sphoto':
|
210 |
+
$pad = ( wppa_opt( 'fullimage_border_width' ) === '' ) ? 0 : wppa_opt( 'fullimage_border_width' );
|
211 |
+
$bot = ( wppa_opt( 'fullimage_border_width' ) === '' ) ? 0 : wppa_opt( 'fullimage_border_width' );
|
212 |
|
213 |
$style = 'margin:0;' .
|
214 |
'padding:0 ' . $pad . 'px;' .
|
246 |
$result .= '</div>';
|
247 |
}
|
248 |
|
249 |
+
$result .= '</div>';
|
250 |
+
|
251 |
// Update statistics
|
252 |
if ( ! wppa_in_widget() ) {
|
253 |
wppa_bump_viewcount( 'photo', $id );
|
wppa-settings-autosave.php
CHANGED
@@ -8972,15 +8972,6 @@ global $wp_version;
|
|
8972 |
$tags = 'system,upload';
|
8973 |
wppa_setting($slug, '15', $name, $desc, $html, $help, $clas, $tags);
|
8974 |
|
8975 |
-
$name = __('IPTC need utf8 conversion', 'wp-photo-album-plus');
|
8976 |
-
$desc = __('This setting converts iso to utf8 in iptc text.', 'wp-photo-album-plus');
|
8977 |
-
$help = esc_js(__('Untick if you have funny characters in iptc data', 'wp-photo-album-plus') );
|
8978 |
-
$slug = 'wppa_iptc_need_utf8';
|
8979 |
-
$html = wppa_checkbox($slug);
|
8980 |
-
$clas = '';
|
8981 |
-
$tags = 'system,upload,meta';
|
8982 |
-
wppa_setting($slug, '16', $name, $desc, $html, $help, $clas, $tags);
|
8983 |
-
|
8984 |
$name = __('Keep dir to album files', 'wp-photo-album-plus');
|
8985 |
$desc = __('Keep imported files after dir to album import', 'wp-photo-album-plus');
|
8986 |
$help = '';
|
8972 |
$tags = 'system,upload';
|
8973 |
wppa_setting($slug, '15', $name, $desc, $html, $help, $clas, $tags);
|
8974 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8975 |
$name = __('Keep dir to album files', 'wp-photo-album-plus');
|
8976 |
$desc = __('Keep imported files after dir to album import', 'wp-photo-album-plus');
|
8977 |
$help = '';
|
wppa-setup.php
CHANGED
@@ -1602,8 +1602,7 @@ Hide Camera info
|
|
1602 |
'wppa_newpag_status' => 'publish',
|
1603 |
'wppa_pl_dirname' => 'wppa-pl',
|
1604 |
'wppa_import_parent_check' => 'yes',
|
1605 |
-
'
|
1606 |
-
'wppa_keep_import_files' => 'no',
|
1607 |
|
1608 |
// J Other plugins
|
1609 |
'wppa_cp_points_comment' => '0',
|
1602 |
'wppa_newpag_status' => 'publish',
|
1603 |
'wppa_pl_dirname' => 'wppa-pl',
|
1604 |
'wppa_import_parent_check' => 'yes',
|
1605 |
+
'wppa_keep_import_files' => 'no',
|
|
|
1606 |
|
1607 |
// J Other plugins
|
1608 |
'wppa_cp_points_comment' => '0',
|
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.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1169,9 +1169,9 @@ function wppa_slide_filmstrip( $opt = '' ) {
|
|
1169 |
' style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;"' .
|
1170 |
' >' .
|
1171 |
'<span' .
|
1172 |
-
' class="wppa-
|
1173 |
' style="'.__wcs('wppa-arrow').'"' .
|
1174 |
-
' id="
|
1175 |
' onclick="wppaFirst('.wppa( 'mocc' ).');"' .
|
1176 |
' title="'.__('First', 'wp-photo-album-plus').'"' .
|
1177 |
' >' .
|
@@ -1183,9 +1183,9 @@ function wppa_slide_filmstrip( $opt = '' ) {
|
|
1183 |
' style="float:right; text-align:right; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;"' .
|
1184 |
' >' .
|
1185 |
'<span' .
|
1186 |
-
' class="wppa-
|
1187 |
' style="'.__wcs('wppa-arrow').'"' .
|
1188 |
-
' id="
|
1189 |
' onclick="wppaLast('.wppa( 'mocc' ).');"' .
|
1190 |
' title="'.__('Last', 'wp-photo-album-plus').'"' .
|
1191 |
' >' .
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the slideshow high level functions
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
1169 |
' style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;"' .
|
1170 |
' >' .
|
1171 |
'<span' .
|
1172 |
+
' class="wppa-first-'.wppa( 'mocc' ).' wppa-arrow"' .
|
1173 |
' style="'.__wcs('wppa-arrow').'"' .
|
1174 |
+
' id="first-film-arrow-'.wppa( 'mocc' ).'"' .
|
1175 |
' onclick="wppaFirst('.wppa( 'mocc' ).');"' .
|
1176 |
' title="'.__('First', 'wp-photo-album-plus').'"' .
|
1177 |
' >' .
|
1183 |
' style="float:right; text-align:right; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;"' .
|
1184 |
' >' .
|
1185 |
'<span' .
|
1186 |
+
' class="wppa-last-'.wppa( 'mocc' ).' wppa-arrow"' .
|
1187 |
' style="'.__wcs('wppa-arrow').'"' .
|
1188 |
+
' id="last-film-arrow-'.wppa( 'mocc' ).'"' .
|
1189 |
' onclick="wppaLast('.wppa( 'mocc' ).');"' .
|
1190 |
' title="'.__('Last', 'wp-photo-album-plus').'"' .
|
1191 |
' >' .
|
wppa-styles.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/* Package: wp-photo-album-plus
|
4 |
/*
|
5 |
/* Various style computation routines
|
6 |
-
/* Version 6.6.
|
7 |
/*
|
8 |
*/
|
9 |
|
@@ -475,8 +475,8 @@ function wppa_get_imgstyle_a( $id, $file, $xmax_size, $xvalign = '', $type = ''
|
|
475 |
case 'twthumb': // Thumbnail widget
|
476 |
case 'ltthumb': // Lasten widget
|
477 |
case 'albthumb': // Album widget
|
478 |
-
if ( $type == 'thumb' && wppa_get_get( 'hilite' ) == $id ) {
|
479 |
-
$result['style'] .= ' border:
|
480 |
}
|
481 |
else {
|
482 |
$result['style'] .= ' border-width: 0px;';
|
3 |
/* Package: wp-photo-album-plus
|
4 |
/*
|
5 |
/* Various style computation routines
|
6 |
+
/* Version 6.6.08
|
7 |
/*
|
8 |
*/
|
9 |
|
475 |
case 'twthumb': // Thumbnail widget
|
476 |
case 'ltthumb': // Lasten widget
|
477 |
case 'albthumb': // Album widget
|
478 |
+
if ( $type == 'thumb' && wppa_get_get( 'hilite' ) && wppa_decrypt_photo( wppa_get_get( 'hilite' ) ) == $id ) {
|
479 |
+
$result['style'] .= ' border:3px solid orange;box-sizing:border-box;';
|
480 |
}
|
481 |
else {
|
482 |
$result['style'] .= ' border-width: 0px;';
|
wppa-utils.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level utility routines
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -3002,8 +3002,13 @@ function wppa_in_widget() {
|
|
3002 |
if ( wppa( 'in_widget' ) ) {
|
3003 |
return wppa( 'in_widget' );
|
3004 |
}
|
3005 |
-
$stack =
|
3006 |
-
|
|
|
|
|
|
|
|
|
|
|
3007 |
}
|
3008 |
|
3009 |
function wppa_bump_mocc() {
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level utility routines
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
3002 |
if ( wppa( 'in_widget' ) ) {
|
3003 |
return wppa( 'in_widget' );
|
3004 |
}
|
3005 |
+
$stack = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS );
|
3006 |
+
if ( is_array( $stack ) ) foreach( $stack as $item ) {
|
3007 |
+
if ( isset( $item['class'] ) && $item['class'] == 'WP_Widget' ) {
|
3008 |
+
return true;
|
3009 |
+
}
|
3010 |
+
}
|
3011 |
+
return false;
|
3012 |
}
|
3013 |
|
3014 |
function wppa_bump_mocc() {
|
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.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -424,19 +424,21 @@ global $wpdb;
|
|
424 |
// and thereby making it impossible to add a next record.
|
425 |
// This happens when a time-out occurs during an insert query.
|
426 |
// This is not theoretical, i have seen it happen two times on different installations.
|
427 |
-
// This routine will find a free keyvalue larger than any key used, ignoring the fact that the MAXINT key may be used.
|
428 |
function wppa_nextkey( $table ) {
|
429 |
global $wpdb;
|
430 |
|
431 |
-
$name = 'wppa_'
|
432 |
$lastkey = get_option( $name, 'nil' );
|
433 |
|
434 |
if ( $lastkey == 'nil' ) { // Init option
|
435 |
$lastkey = $wpdb->get_var( "SELECT `id` FROM `".$table."` WHERE `id` < '9223372036854775806' ORDER BY `id` DESC LIMIT 1" );
|
436 |
-
if ( ! is_numeric( $lastkey )
|
437 |
-
|
|
|
|
|
438 |
}
|
439 |
-
wppa_dbg_msg('Lastkey in '
|
440 |
|
441 |
$result = $lastkey + '1';
|
442 |
while ( ! wppa_is_id_free( $table, $result ) ) {
|
@@ -447,23 +449,19 @@ global $wpdb;
|
|
447 |
}
|
448 |
|
449 |
// Check whether a given id value is not used
|
450 |
-
function wppa_is_id_free( $
|
451 |
global $wpdb;
|
452 |
|
453 |
-
if ( ! is_numeric($id) ) return false;
|
454 |
-
if ( $id
|
|
|
455 |
|
456 |
-
$table
|
457 |
-
if ( $type == 'album' ) $table = WPPA_ALBUMS;
|
458 |
-
elseif ( $type == 'photo' ) $table = WPPA_PHOTOS;
|
459 |
-
else $table = $type; // $type may be the tablename itsself
|
460 |
-
|
461 |
-
if ( $table == '' ) {
|
462 |
echo 'Unexpected error in wppa_is_id_free()';
|
463 |
-
|
464 |
}
|
465 |
|
466 |
-
$exists = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM
|
467 |
if ( $exists ) return false;
|
468 |
return true;
|
469 |
}
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that add new records
|
6 |
+
* Version 6.6.08
|
7 |
*
|
8 |
*/
|
9 |
|
424 |
// and thereby making it impossible to add a next record.
|
425 |
// This happens when a time-out occurs during an insert query.
|
426 |
// This is not theoretical, i have seen it happen two times on different installations.
|
427 |
+
// This routine will find a free positive keyvalue larger than any key used, ignoring the fact that the MAXINT key may be used.
|
428 |
function wppa_nextkey( $table ) {
|
429 |
global $wpdb;
|
430 |
|
431 |
+
$name = 'wppa_' . $table . '_lastkey';
|
432 |
$lastkey = get_option( $name, 'nil' );
|
433 |
|
434 |
if ( $lastkey == 'nil' ) { // Init option
|
435 |
$lastkey = $wpdb->get_var( "SELECT `id` FROM `".$table."` WHERE `id` < '9223372036854775806' ORDER BY `id` DESC LIMIT 1" );
|
436 |
+
if ( ! is_numeric( $lastkey ) || $lastkey <= '0' ) {
|
437 |
+
$lastkey = '0';
|
438 |
+
}
|
439 |
+
update_option( $name, $lastkey );
|
440 |
}
|
441 |
+
// wppa_dbg_msg( 'Lastkey in ' . $table . ' = ' . $lastkey );
|
442 |
|
443 |
$result = $lastkey + '1';
|
444 |
while ( ! wppa_is_id_free( $table, $result ) ) {
|
449 |
}
|
450 |
|
451 |
// Check whether a given id value is not used
|
452 |
+
function wppa_is_id_free( $table, $id ) {
|
453 |
global $wpdb;
|
454 |
|
455 |
+
if ( ! is_numeric( $id ) ) return false;
|
456 |
+
if ( ! wppa_is_int( $id ) ) return false;
|
457 |
+
if ( $id <= '0' ) return false;
|
458 |
|
459 |
+
if ( ! in_array( $table, array( WPPA_ALBUMS, WPPA_PHOTOS, WPPA_COMMENTS, WPPA_RATING, WPPA_EXIF, WPPA_IPTC, WPPA_INDEX, WPPA_SESSION ) ) ) {
|
|
|
|
|
|
|
|
|
|
|
460 |
echo 'Unexpected error in wppa_is_id_free()';
|
461 |
+
exit();
|
462 |
}
|
463 |
|
464 |
+
$exists = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM `$table` WHERE `id` = %s", $id ), ARRAY_A );
|
465 |
if ( $exists ) return false;
|
466 |
return true;
|
467 |
}
|
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.
|
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-6-
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|
2 |
/*
|
3 |
* Plugin Name: WP Photo Album Plus
|
4 |
* Description: Easily manage and display your photo albums and slideshows within your WordPress site.
|
5 |
+
* Version: 6.6.08
|
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 = '6608'; // WPPA db version
|
26 |
+
global $wppa_api_version; $wppa_api_version = '6-6-08-005'; // WPPA software version
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|