Version Description
Download this release
Release Info
Developer | opajaap |
Plugin | WP Photo Album Plus |
Version | 6.6.17 |
Comparing to | |
See all releases |
Code changes from version 6.6.15 to 6.6.17
- img/audiostub.jpg +0 -0
- js/wppa-admin-scripts.js +36 -2
- js/wppa-slideshow.js +9 -5
- js/wppa-slideshow.min.js +3 -2
- languages/wp-photo-album-plus-fr_FR.mo +0 -0
- languages/wp-photo-album-plus-fr_FR.po +2951 -2937
- readme.txt +39 -4
- wppa-admin-functions.php +97 -111
- wppa-adminbar.php +3 -3
- wppa-ajax.php +169 -4
- wppa-album-admin-autosave.php +21 -45
- wppa-album-covers.php +4 -3
- wppa-boxes-html.php +6 -1
- wppa-cron.php +44 -1
- wppa-functions.php +11 -2
- wppa-index.php +5 -5
- wppa-maintenance.php +3 -3
- wppa-photo-admin-autosave.php +361 -34
- wppa-photo-files.php +326 -258
- wppa-settings-autosave.php +24 -13
- wppa-setup.php +5 -3
- wppa-stereo.php +10 -7
- wppa-upload.php +32 -26
- wppa-utils.php +68 -5
- wppa-watermark.php +22 -1
- wppa-wpdb-insert.php +8 -5
- wppa-wpdb-update.php +4 -1
- wppa.php +3 -3
img/audiostub.jpg
ADDED
Binary file
|
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 |
|
@@ -1282,6 +1282,40 @@ function _wppaAjaxUpdatePhoto( photo, actionslug, value, refresh, bef, aft ) {
|
|
1282 |
else {
|
1283 |
jQuery('#photostatus-'+photo).html( 'Working, please wait... (' + wppaAjaxPhotoCount[photo] + ')' );
|
1284 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
break;
|
1286 |
case '99': // Photo is gone
|
1287 |
jQuery( '#photoitem-' + photo ).html( bef+'<span style="color:red">' + ArrValues[2] + '</span>'+aft );
|
@@ -1324,7 +1358,7 @@ function _wppaAjaxUpdatePhoto( photo, actionslug, value, refresh, bef, aft ) {
|
|
1324 |
if ( refresh && ArrValues[1] == '0' ) {
|
1325 |
jQuery( '#photostatus-' + photo ).after( '<span style="color:blue;font-weight:bold;"> Reloading...</span>' );
|
1326 |
jQuery( '#wppa-photo-spin-' + photo ).css( { visibility: 'visible' } );
|
1327 |
-
setTimeout( function() { wppaReload( '#photo_'+photo ) },
|
1328 |
return;
|
1329 |
}
|
1330 |
},
|
1 |
/* admin-scripts.js */
|
2 |
/* Package: wp-photo-album-plus
|
3 |
/*
|
4 |
+
/* Version 6.6.17
|
5 |
/* Various js routines used in admin pages
|
6 |
*/
|
7 |
|
1282 |
else {
|
1283 |
jQuery('#photostatus-'+photo).html( 'Working, please wait... (' + wppaAjaxPhotoCount[photo] + ')' );
|
1284 |
}
|
1285 |
+
|
1286 |
+
// Increment photo version no
|
1287 |
+
if ( ArrValues[3] ) {
|
1288 |
+
var href = jQuery( '#fs-a-' + photo ).attr( 'href' );
|
1289 |
+
var arr = href.split( '=' );
|
1290 |
+
arr[1] = parseInt( arr[1] ) + 1;
|
1291 |
+
jQuery( '#fs-a-' + photo ).attr( 'href', arr[0] + '=' + arr[1] );
|
1292 |
+
jQuery( '#fs-img-' + photo ).attr( 'src', arr[0] + '=' + arr[1] );
|
1293 |
+
}
|
1294 |
+
|
1295 |
+
// Increment thumbnail version
|
1296 |
+
if ( ArrValues[4] ) {
|
1297 |
+
var src = jQuery( '#tnp-' + photo ).attr( 'src' );
|
1298 |
+
var arr = src.split( '=' );
|
1299 |
+
arr[1] = parseInt( arr[1] ) + 1;
|
1300 |
+
jQuery( '#tnp-' + photo ).attr( 'src', arr[0] + '=' + arr[1] );
|
1301 |
+
}
|
1302 |
+
|
1303 |
+
// Update Magic stack
|
1304 |
+
if ( typeof( ArrValues[5] ) != 'undefined' ) {
|
1305 |
+
jQuery( '#imstack-' + photo ).html( ArrValues[5] );
|
1306 |
+
if ( ArrValues[5].length > 0 ) {
|
1307 |
+
jQuery( '#imstackbutton-' + photo ).css( 'display', '' );
|
1308 |
+
}
|
1309 |
+
else {
|
1310 |
+
jQuery( '#imstackbutton-' + photo ).css( 'display', 'none' );
|
1311 |
+
}
|
1312 |
+
}
|
1313 |
+
|
1314 |
+
// Update display file sizes
|
1315 |
+
if ( typeof( ArrValues[6] ) != 'undefined' ) {
|
1316 |
+
jQuery( '#dispfileinfo-' + photo ).html( ArrValues[6] );
|
1317 |
+
}
|
1318 |
+
|
1319 |
break;
|
1320 |
case '99': // Photo is gone
|
1321 |
jQuery( '#photoitem-' + photo ).html( bef+'<span style="color:red">' + ArrValues[2] + '</span>'+aft );
|
1358 |
if ( refresh && ArrValues[1] == '0' ) {
|
1359 |
jQuery( '#photostatus-' + photo ).after( '<span style="color:blue;font-weight:bold;"> Reloading...</span>' );
|
1360 |
jQuery( '#wppa-photo-spin-' + photo ).css( { visibility: 'visible' } );
|
1361 |
+
setTimeout( function() { wppaReload( '#photo_'+photo ) }, 1000 );
|
1362 |
return;
|
1363 |
}
|
1364 |
},
|
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(
|
@@ -1678,7 +1678,7 @@ function wppaGetDislikeText( dsc,myr,incmine ) {
|
|
1678 |
|
1679 |
function _wppaSetRd( mocc, avg, where ) {
|
1680 |
|
1681 |
-
|
1682 |
var idx1 = parseInt( avg );
|
1683 |
var idx2 = idx1 + 1;
|
1684 |
var frac = avg - idx1;
|
@@ -1687,9 +1687,13 @@ function _wppaSetRd( mocc, avg, where ) {
|
|
1687 |
var ihigh = wppaRatingMax;
|
1688 |
|
1689 |
for ( idx=ilow;idx<=ihigh;idx++ ) {
|
1690 |
-
|
1691 |
-
|
1692 |
-
//
|
|
|
|
|
|
|
|
|
1693 |
if ( idx <= idx1 ) {
|
1694 |
jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, 1.0 );
|
1695 |
}
|
3 |
// Contains slideshow modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaJsSlideshowVersion = '6.6.16';
|
7 |
|
8 |
// This is an entrypoint to load the slide data
|
9 |
function wppaStoreSlideInfo(
|
1678 |
|
1679 |
function _wppaSetRd( mocc, avg, where ) {
|
1680 |
|
1681 |
+
wppaConsoleLog( '_wppaSetRd() called with args:'+mocc+' '+avg+' '+where, 'force' );
|
1682 |
var idx1 = parseInt( avg );
|
1683 |
var idx2 = idx1 + 1;
|
1684 |
var frac = avg - idx1;
|
1687 |
var ihigh = wppaRatingMax;
|
1688 |
|
1689 |
for ( idx=ilow;idx<=ihigh;idx++ ) {
|
1690 |
+
if ( where == '#wppa-rate-' || where == '.wppa-rate-' ) {
|
1691 |
+
|
1692 |
+
// Replace V by *
|
1693 |
+
if ( jQuery( where+mocc+'-'+idx ).attr( 'src' ) != wppaImageDirectory+'star.ico' ) {
|
1694 |
+
jQuery( where+mocc+'-'+idx ).attr( 'src', wppaImageDirectory+'star.ico' );
|
1695 |
+
}
|
1696 |
+
}
|
1697 |
if ( idx <= idx1 ) {
|
1698 |
jQuery( where+mocc+'-'+idx ).stop().fadeTo( 100, 1.0 );
|
1699 |
}
|
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 ';}
|
@@ -190,7 +190,8 @@ if(myr==0){jQuery('#wppa-vote-button-'+mocc).val(wppaVoteForMe);}
|
|
190 |
else{jQuery('#wppa-vote-button-'+mocc).val(wppaVotedForMe);}
|
191 |
jQuery('#wppa-vote-count-'+mocc).html(cnt);}
|
192 |
function wppaGetDislikeText(dsc,myr,incmine){return dsc;}
|
193 |
-
function _wppaSetRd(mocc,avg,where){var idx1=parseInt(avg);var idx2=idx1+1;var frac=avg-idx1;var opac=wppaStarOpacity+frac*(1.0-wppaStarOpacity);var ilow=1;var ihigh=wppaRatingMax;for(idx=ilow;idx<=ihigh;idx++){if(
|
|
|
194 |
else if(idx==idx2){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,opac);}
|
195 |
else{jQuery(where+mocc+'-'+idx).stop().fadeTo(100,wppaStarOpacity);}}}
|
196 |
function _wppaFollowMe(mocc,idx){if(_wppaSSRuns[mocc])return;if(_wppaMyr[mocc][_wppaCurIdx[mocc]]!=0&&wppaRatingOnce)return;if(_wppaMyr[mocc][_wppaCurIdx[mocc]]<0)return;if(_wppaVoteInProgress)return;_wppaSetRd(mocc,idx,'#wppa-rate-');}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaJsSlideshowVersion='6.6.16';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 ';}
|
190 |
else{jQuery('#wppa-vote-button-'+mocc).val(wppaVotedForMe);}
|
191 |
jQuery('#wppa-vote-count-'+mocc).html(cnt);}
|
192 |
function wppaGetDislikeText(dsc,myr,incmine){return dsc;}
|
193 |
+
function _wppaSetRd(mocc,avg,where){wppaConsoleLog('_wppaSetRd() called with args:'+mocc+' '+avg+' '+where,'force');var idx1=parseInt(avg);var idx2=idx1+1;var frac=avg-idx1;var opac=wppaStarOpacity+frac*(1.0-wppaStarOpacity);var ilow=1;var ihigh=wppaRatingMax;for(idx=ilow;idx<=ihigh;idx++){if(where=='#wppa-rate-'||where=='.wppa-rate-'){if(jQuery(where+mocc+'-'+idx).attr('src')!=wppaImageDirectory+'star.ico'){jQuery(where+mocc+'-'+idx).attr('src',wppaImageDirectory+'star.ico');}}
|
194 |
+
if(idx<=idx1){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,1.0);}
|
195 |
else if(idx==idx2){jQuery(where+mocc+'-'+idx).stop().fadeTo(100,opac);}
|
196 |
else{jQuery(where+mocc+'-'+idx).stop().fadeTo(100,wppaStarOpacity);}}}
|
197 |
function _wppaFollowMe(mocc,idx){if(_wppaSSRuns[mocc])return;if(_wppaMyr[mocc][_wppaCurIdx[mocc]]!=0&&wppaRatingOnce)return;if(_wppaMyr[mocc][_wppaCurIdx[mocc]]<0)return;if(_wppaVoteInProgress)return;_wppaSetRd(mocc,idx,'#wppa-rate-');}
|
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -32,7 +32,7 @@ msgstr "Pages:"
|
|
32 |
#: wppa-album-admin-autosave.php:1433 wppa-album-admin-autosave.php:1471
|
33 |
#: wppa-album-admin-autosave.php:1570 wppa-album-admin-autosave.php:1805
|
34 |
#: wppa-album-admin-autosave.php:1900 wppa-album-admin-autosave.php:1974
|
35 |
-
#: wppa-album-admin-autosave.php:2116 wppa-album-admin-autosave.php:
|
36 |
#: wppa-comment-admin.php:318 wppa-comment-admin.php:387
|
37 |
#: wppa-comment-admin.php:405 wppa-setup.php:1389 wppa-thumbnails.php:685
|
38 |
msgid "Edit"
|
@@ -43,7 +43,7 @@ msgid "Warning. No page defined for search results!"
|
|
43 |
msgstr "Attention. Aucune page définie pour les résultats de recherche!"
|
44 |
|
45 |
#: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
|
46 |
-
#: wppa-settings-autosave.php:
|
47 |
msgid "Search"
|
48 |
msgstr "Chercher"
|
49 |
|
@@ -74,8 +74,8 @@ msgstr "Page précédente"
|
|
74 |
msgid "Next page"
|
75 |
msgstr "Page suiv."
|
76 |
|
77 |
-
#: theme/search-2016.php:48 wppa-settings-autosave.php:
|
78 |
-
#: wppa-settings-autosave.php:
|
79 |
msgid "Page"
|
80 |
msgstr "Page"
|
81 |
|
@@ -238,11 +238,11 @@ msgstr ""
|
|
238 |
msgid "Could not insert photo."
|
239 |
msgstr "Impossible d'insérer la photo."
|
240 |
|
241 |
-
#: wppa-admin-functions.php:
|
242 |
msgid "ERROR: Unknown file or album."
|
243 |
msgstr "ERREUR: Album ou fichier inconnu."
|
244 |
|
245 |
-
#: wppa-admin-functions.php:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
|
@@ -251,28 +251,28 @@ msgstr ""
|
|
251 |
"Il y a <strong>%d</strong> albums et <strong>%d</strong> photos dans le "
|
252 |
"système."
|
253 |
|
254 |
-
#: wppa-admin-functions.php:
|
255 |
#, php-format
|
256 |
msgid "<strong>%d</strong> photos are pending moderation."
|
257 |
msgstr "<strong>%d</strong> photos attendent une modération."
|
258 |
|
259 |
-
#: wppa-admin-functions.php:
|
260 |
#, php-format
|
261 |
msgid "<strong>%d</strong> photos are scheduled for later publishing."
|
262 |
msgstr ""
|
263 |
"<strong>%d</strong> photos sont programmées pour publication ultérieure."
|
264 |
|
265 |
-
#: wppa-admin-functions.php:
|
266 |
#, php-format
|
267 |
msgid "The most recently added album is <strong>%s</strong> (%d)."
|
268 |
msgstr "L'album le plus récemment ajoutée est <strong>%s</strong> (%d)."
|
269 |
|
270 |
-
#: wppa-admin-functions.php:
|
271 |
#, php-format
|
272 |
msgid "The most recently added photo is <strong>%s</strong> (%d)"
|
273 |
msgstr "La photo la plus récemment ajoutée est <strong>%s</strong> (%d)"
|
274 |
|
275 |
-
#: wppa-admin-functions.php:
|
276 |
#, php-format
|
277 |
msgid "in album <strong>%s</strong> (%d)."
|
278 |
msgstr "dans l'album <strong>%s</strong> (%d)."
|
@@ -281,11 +281,11 @@ msgstr "dans l'album <strong>%s</strong> (%d)."
|
|
281 |
msgid "Photo Albums"
|
282 |
msgstr "Albums Photo"
|
283 |
|
284 |
-
#: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:
|
285 |
msgid "Album Admin"
|
286 |
msgstr "Administration de l'album"
|
287 |
|
288 |
-
#: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:
|
289 |
#: wppa-upload-widget.php:79 wppa-upload.php:119
|
290 |
msgid "Upload Photos"
|
291 |
msgstr "Charger des photos"
|
@@ -295,7 +295,7 @@ msgid "Edit Photos"
|
|
295 |
msgstr "Modifier les photos"
|
296 |
|
297 |
#: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
|
298 |
-
#: wppa-settings-autosave.php:
|
299 |
msgid "Import Photos"
|
300 |
msgstr "Importer des photos"
|
301 |
|
@@ -304,12 +304,12 @@ msgid "Moderate Photos"
|
|
304 |
msgstr "Modérez les photos"
|
305 |
|
306 |
#: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
|
307 |
-
#: wppa-settings-autosave.php:
|
308 |
msgid "Export Photos"
|
309 |
msgstr "Exporter des photos"
|
310 |
|
311 |
#: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
312 |
-
#: wppa-settings-autosave.php:
|
313 |
msgid "Settings"
|
314 |
msgstr "Réglages"
|
315 |
|
@@ -318,7 +318,7 @@ msgid "Photo of the day Widget"
|
|
318 |
msgstr "Widget \"Photo du jour\""
|
319 |
|
320 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
321 |
-
#: wppa-settings-autosave.php:
|
322 |
msgid "Photo of the day"
|
323 |
msgstr "Photo du jour"
|
324 |
|
@@ -326,9 +326,9 @@ msgstr "Photo du jour"
|
|
326 |
msgid "Manage comments"
|
327 |
msgstr "Gérer les commentaires"
|
328 |
|
329 |
-
#: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:
|
330 |
-
#: wppa-settings-autosave.php:
|
331 |
-
#: wppa-settings-autosave.php:
|
332 |
msgid "Comments"
|
333 |
msgstr "Commentaires"
|
334 |
|
@@ -356,7 +356,7 @@ msgstr "L’importation est désactivé temporaire pour vous"
|
|
356 |
msgid "Import"
|
357 |
msgstr "Importer"
|
358 |
|
359 |
-
#: wppa-admin.php:128 wppa-settings-autosave.php:
|
360 |
msgid "Update"
|
361 |
msgstr "Mettre à jour"
|
362 |
|
@@ -650,18 +650,18 @@ msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à %s"
|
|
650 |
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:2019
|
651 |
#: wppa-photo-admin-autosave.php:2195 wppa-photo-admin-autosave.php:2612
|
652 |
#: wppa-potd-admin.php:71 wppa-potd-admin.php:358
|
653 |
-
#: wppa-settings-autosave.php:
|
654 |
-
#: wppa-settings-autosave.php:
|
655 |
-
#: wppa-settings-autosave.php:
|
656 |
-
#: wppa-settings-autosave.php:
|
657 |
-
#: wppa-settings-autosave.php:
|
658 |
-
#: wppa-settings-autosave.php:
|
659 |
-
#: wppa-settings-autosave.php:
|
660 |
-
#: wppa-settings-autosave.php:
|
661 |
-
#: wppa-settings-autosave.php:
|
662 |
-
#: wppa-settings-autosave.php:
|
663 |
-
#: wppa-settings-autosave.php:
|
664 |
-
#: wppa-settings-autosave.php:
|
665 |
#: wppa-thumbnail-widget.php:202 wppa-upload.php:281
|
666 |
msgid "Name"
|
667 |
msgstr "Nom"
|
@@ -671,19 +671,19 @@ msgstr "Nom"
|
|
671 |
#: wppa-album-admin-autosave.php:1857 wppa-photo-admin-autosave.php:2020
|
672 |
#: wppa-photo-admin-autosave.php:2196 wppa-photo-admin-autosave.php:2613
|
673 |
#: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
|
674 |
-
#: wppa-settings-autosave.php:
|
675 |
-
#: wppa-settings-autosave.php:
|
676 |
-
#: wppa-settings-autosave.php:
|
677 |
-
#: wppa-settings-autosave.php:
|
678 |
-
#: wppa-settings-autosave.php:
|
679 |
-
#: wppa-settings-autosave.php:
|
680 |
-
#: wppa-settings-autosave.php:
|
681 |
-
#: wppa-settings-autosave.php:
|
682 |
-
#: wppa-settings-autosave.php:
|
683 |
-
#: wppa-settings-autosave.php:
|
684 |
-
#: wppa-settings-autosave.php:
|
685 |
-
#: wppa-settings-autosave.php:
|
686 |
-
#: wppa-settings-autosave.php:
|
687 |
msgid "Description"
|
688 |
msgstr "Description"
|
689 |
|
@@ -703,7 +703,7 @@ msgstr "Photo de couverture"
|
|
703 |
msgid "Parent album"
|
704 |
msgstr "Album Parent"
|
705 |
|
706 |
-
#: wppa-ajax.php:1138 wppa-settings-autosave.php:
|
707 |
msgid "Photo order"
|
708 |
msgstr "Ordre des photos"
|
709 |
|
@@ -715,8 +715,8 @@ msgstr "Utiliser taille de vignette alternative"
|
|
715 |
msgid "Cover Type"
|
716 |
msgstr "Type de couverture"
|
717 |
|
718 |
-
#: wppa-ajax.php:1147 wppa-settings-autosave.php:
|
719 |
-
#: wppa-settings-autosave.php:
|
720 |
msgid "Link type"
|
721 |
msgstr "Type de lien"
|
722 |
|
@@ -869,8 +869,8 @@ msgstr "Vignettes recréées"
|
|
869 |
msgid "Could not remake thumbnail"
|
870 |
msgstr "Impossible de recréer les vignette"
|
871 |
|
872 |
-
#: wppa-ajax.php:1468 wppa-potd-admin.php:100 wppa-settings-autosave.php:
|
873 |
-
#: wppa-settings-autosave.php:
|
874 |
msgid "left"
|
875 |
msgstr "gauche"
|
876 |
|
@@ -878,8 +878,8 @@ msgstr "gauche"
|
|
878 |
msgid "180°"
|
879 |
msgstr "180°"
|
880 |
|
881 |
-
#: wppa-ajax.php:1474 wppa-potd-admin.php:100 wppa-settings-autosave.php:
|
882 |
-
#: wppa-settings-autosave.php:
|
883 |
msgid "right"
|
884 |
msgstr "droite"
|
885 |
|
@@ -961,9 +961,9 @@ msgstr "Tags de la photo"
|
|
961 |
|
962 |
#: wppa-ajax.php:1618 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
963 |
#: wppa-photo-admin-autosave.php:2021 wppa-photo-admin-autosave.php:2197
|
964 |
-
#: wppa-settings-autosave.php:
|
965 |
-
#: wppa-settings-autosave.php:
|
966 |
-
#: wppa-settings-autosave.php:
|
967 |
msgid "Status"
|
968 |
msgstr "Statut"
|
969 |
|
@@ -1095,7 +1095,7 @@ msgstr "Nombre du TopTen des photos"
|
|
1095 |
msgid "Widget image thumbnail size"
|
1096 |
msgstr "Taille de la vignette dans le widget"
|
1097 |
|
1098 |
-
#: wppa-ajax.php:1985 wppa-settings-autosave.php:
|
1099 |
msgid "Max Cover width"
|
1100 |
msgstr "Largeur maximum de la couverture"
|
1101 |
|
@@ -1111,20 +1111,20 @@ msgstr "Hauteur minimale de la couverture"
|
|
1111 |
msgid "Minimal text frame height"
|
1112 |
msgstr "Hauteur minimale du cadre de texte"
|
1113 |
|
1114 |
-
#: wppa-ajax.php:1997 wppa-settings-autosave.php:
|
1115 |
msgid "Border width"
|
1116 |
msgstr "Largeur de bordure"
|
1117 |
|
1118 |
-
#: wppa-ajax.php:2000 wppa-settings-autosave.php:
|
1119 |
-
#: wppa-settings-autosave.php:
|
1120 |
msgid "Border radius"
|
1121 |
msgstr "Rayon de bordure"
|
1122 |
|
1123 |
-
#: wppa-ajax.php:2003 wppa-settings-autosave.php:
|
1124 |
msgid "Box spacing"
|
1125 |
msgstr "Espacement boîtes"
|
1126 |
|
1127 |
-
#: wppa-ajax.php:2009 wppa-settings-autosave.php:
|
1128 |
msgid "Popup size"
|
1129 |
msgstr "Taille du popup"
|
1130 |
|
@@ -1156,7 +1156,7 @@ msgstr "Taille de vignette du widget commentaire"
|
|
1156 |
msgid "Opacity."
|
1157 |
msgstr "Opacité."
|
1158 |
|
1159 |
-
#: wppa-ajax.php:2045 wppa-settings-autosave.php:
|
1160 |
msgid "Avatar size"
|
1161 |
msgstr "Taille de l'avatar"
|
1162 |
|
@@ -1164,19 +1164,19 @@ msgstr "Taille de l'avatar"
|
|
1164 |
msgid "Watermark opacity"
|
1165 |
msgstr "Opacité du filigrane"
|
1166 |
|
1167 |
-
#: wppa-ajax.php:2054 wppa-settings-autosave.php:
|
1168 |
msgid "Number of text lines"
|
1169 |
msgstr "Nombre de lignes de texte"
|
1170 |
|
1171 |
-
#: wppa-ajax.php:2057 wppa-settings-autosave.php:
|
1172 |
msgid "Overlay opacity"
|
1173 |
msgstr "Opacité de l'overlay"
|
1174 |
|
1175 |
-
#: wppa-ajax.php:2060 wppa-settings-autosave.php:
|
1176 |
msgid "Upload limit"
|
1177 |
msgstr "Limite d'upload"
|
1178 |
|
1179 |
-
#: wppa-ajax.php:2063 wppa-settings-autosave.php:
|
1180 |
msgid "Notify inappropriate"
|
1181 |
msgstr "Notifier inapproprié"
|
1182 |
|
@@ -1188,7 +1188,7 @@ msgstr "Avis négatif en attente"
|
|
1188 |
msgid "Dislike delete"
|
1189 |
msgstr "Effacer les avis négatifs"
|
1190 |
|
1191 |
-
#: wppa-ajax.php:2072 wppa-settings-autosave.php:
|
1192 |
msgid "Max execution time"
|
1193 |
msgstr "Temps d'exécution maximum"
|
1194 |
|
@@ -1200,27 +1200,27 @@ msgstr "Points myCRED / Cube"
|
|
1200 |
msgid "JPG Image quality"
|
1201 |
msgstr "Qualité d'image JPG"
|
1202 |
|
1203 |
-
#: wppa-ajax.php:2087 wppa-settings-autosave.php:
|
1204 |
msgid "Number of coverphotos"
|
1205 |
msgstr "Nombre de photos de couverture"
|
1206 |
|
1207 |
-
#: wppa-ajax.php:2090 wppa-settings-autosave.php:
|
1208 |
msgid "Dislike value"
|
1209 |
msgstr "Valeur du vote négatif"
|
1210 |
|
1211 |
-
#: wppa-ajax.php:2093 wppa-settings-autosave.php:
|
1212 |
msgid "Slideshow pagesize"
|
1213 |
msgstr "Taille de page du diaporama"
|
1214 |
|
1215 |
-
#: wppa-ajax.php:2096 wppa-settings-autosave.php:
|
1216 |
msgid "Slideonly max"
|
1217 |
msgstr "Slideonly max"
|
1218 |
|
1219 |
-
#: wppa-ajax.php:2099 wppa-settings-autosave.php:
|
1220 |
msgid "Max Pagelinks"
|
1221 |
msgstr "Nb max. de liens de page"
|
1222 |
|
1223 |
-
#: wppa-ajax.php:2116 wppa-settings-autosave.php:
|
1224 |
msgid "Sticky header size"
|
1225 |
msgstr "Taille d'en-tête fixe"
|
1226 |
|
@@ -1447,7 +1447,7 @@ msgid "Top of page"
|
|
1447 |
msgstr "Haut de page"
|
1448 |
|
1449 |
#: wppa-album-admin-autosave.php:120 wppa-functions.php:4122
|
1450 |
-
#: wppa-settings-autosave.php:
|
1451 |
msgid "New Album"
|
1452 |
msgstr "Nouvel album"
|
1453 |
|
@@ -1596,61 +1596,61 @@ msgid "--- default --- See Table IV-C1"
|
|
1596 |
msgstr "--- Défaut --- Voir le tableau IV-C1"
|
1597 |
|
1598 |
#: wppa-album-admin-autosave.php:452 wppa-album-admin-autosave.php:500
|
1599 |
-
#: wppa-settings-autosave.php:
|
1600 |
#: wppa-thumbnail-widget.php:201
|
1601 |
msgid "Order #"
|
1602 |
msgstr "Ordre #"
|
1603 |
|
1604 |
#: wppa-album-admin-autosave.php:454 wppa-album-admin-autosave.php:499
|
1605 |
-
#: wppa-potd-admin.php:249 wppa-settings-autosave.php:
|
1606 |
-
#: wppa-settings-autosave.php:
|
1607 |
msgid "Random"
|
1608 |
msgstr "Aléatoire"
|
1609 |
|
1610 |
-
#: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:
|
1611 |
msgid "Rating mean value"
|
1612 |
msgstr "Valeur moyenne des notes"
|
1613 |
|
1614 |
#: wppa-album-admin-autosave.php:456 wppa-bestof-widget.php:170
|
1615 |
-
#: wppa-settings-autosave.php:
|
1616 |
msgid "Number of votes"
|
1617 |
msgstr "Nombre de votes"
|
1618 |
|
1619 |
#: wppa-album-admin-autosave.php:457 wppa-album-admin-autosave.php:504
|
1620 |
-
#: wppa-settings-autosave.php:
|
1621 |
msgid "Timestamp"
|
1622 |
msgstr "Timstamp"
|
1623 |
|
1624 |
-
#: wppa-album-admin-autosave.php:458 wppa-settings-autosave.php:
|
1625 |
msgid "EXIF Date"
|
1626 |
msgstr "Date EXIF"
|
1627 |
|
1628 |
-
#: wppa-album-admin-autosave.php:459 wppa-settings-autosave.php:
|
1629 |
-
#: wppa-settings-autosave.php:
|
1630 |
msgid "Order # desc"
|
1631 |
msgstr "Ordre # desc"
|
1632 |
|
1633 |
-
#: wppa-album-admin-autosave.php:460 wppa-settings-autosave.php:
|
1634 |
-
#: wppa-settings-autosave.php:
|
1635 |
msgid "Name desc"
|
1636 |
msgstr "Nom desc"
|
1637 |
|
1638 |
-
#: wppa-album-admin-autosave.php:461 wppa-settings-autosave.php:
|
1639 |
#: wppa-thumbnail-widget.php:204
|
1640 |
msgid "Rating mean value desc"
|
1641 |
msgstr "Description valeur moyenne des notes"
|
1642 |
|
1643 |
-
#: wppa-album-admin-autosave.php:462 wppa-settings-autosave.php:
|
1644 |
#: wppa-thumbnail-widget.php:205
|
1645 |
msgid "Number of votes desc"
|
1646 |
msgstr "Description nombre de votes"
|
1647 |
|
1648 |
-
#: wppa-album-admin-autosave.php:463 wppa-settings-autosave.php:
|
1649 |
-
#: wppa-settings-autosave.php:
|
1650 |
msgid "Timestamp desc"
|
1651 |
msgstr "Description timestamp"
|
1652 |
|
1653 |
-
#: wppa-album-admin-autosave.php:464 wppa-settings-autosave.php:
|
1654 |
msgid "EXIF Date desc"
|
1655 |
msgstr "Description date EXIF"
|
1656 |
|
@@ -1680,14 +1680,14 @@ msgstr "Utiliser taille alternative de vignette:"
|
|
1680 |
|
1681 |
#: wppa-album-admin-autosave.php:515 wppa-bestof-widget.php:182
|
1682 |
#: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
|
1683 |
-
#: wppa-lasten-widget.php:219 wppa-settings-autosave.php:
|
1684 |
-
#: wppa-settings-autosave.php:
|
1685 |
-
#: wppa-settings-autosave.php:
|
1686 |
-
#: wppa-settings-autosave.php:
|
1687 |
-
#: wppa-settings-autosave.php:
|
1688 |
-
#: wppa-settings-autosave.php:
|
1689 |
-
#: wppa-settings-autosave.php:
|
1690 |
-
#: wppa-settings-autosave.php:
|
1691 |
#: wppa-topten-widget.php:372 wppa-topten-widget.php:380
|
1692 |
#: wppa-topten-widget.php:385 wppa-topten-widget.php:390
|
1693 |
#: wppa-topten-widget.php:395 wppa-topten-widget.php:400
|
@@ -1696,14 +1696,14 @@ msgstr "non"
|
|
1696 |
|
1697 |
#: wppa-album-admin-autosave.php:518 wppa-bestof-widget.php:181
|
1698 |
#: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
|
1699 |
-
#: wppa-lasten-widget.php:220 wppa-settings-autosave.php:
|
1700 |
-
#: wppa-settings-autosave.php:
|
1701 |
-
#: wppa-settings-autosave.php:
|
1702 |
-
#: wppa-settings-autosave.php:
|
1703 |
-
#: wppa-settings-autosave.php:
|
1704 |
-
#: wppa-settings-autosave.php:
|
1705 |
-
#: wppa-settings-autosave.php:
|
1706 |
-
#: wppa-settings-autosave.php:
|
1707 |
#: wppa-super-view-widget.php:85 wppa-topten-widget.php:364
|
1708 |
#: wppa-topten-widget.php:371 wppa-topten-widget.php:379
|
1709 |
#: wppa-topten-widget.php:384 wppa-topten-widget.php:389
|
@@ -1719,28 +1719,28 @@ msgstr "Type de couverture:"
|
|
1719 |
msgid "--- default --- See Table IV-D6"
|
1720 |
msgstr "--- Défaut --- Voir le tableau IV-D6"
|
1721 |
|
1722 |
-
#: wppa-album-admin-autosave.php:536 wppa-settings-autosave.php:
|
1723 |
-
#: wppa-settings-autosave.php:
|
1724 |
msgid "Standard"
|
1725 |
msgstr "Standard"
|
1726 |
|
1727 |
-
#: wppa-album-admin-autosave.php:539 wppa-settings-autosave.php:
|
1728 |
msgid "Long Descriptions"
|
1729 |
msgstr "Description longues"
|
1730 |
|
1731 |
-
#: wppa-album-admin-autosave.php:542 wppa-settings-autosave.php:
|
1732 |
msgid "Image Factory"
|
1733 |
msgstr "Image Factory"
|
1734 |
|
1735 |
-
#: wppa-album-admin-autosave.php:545 wppa-settings-autosave.php:
|
1736 |
msgid "Standard mcr"
|
1737 |
msgstr "Standard mcr"
|
1738 |
|
1739 |
-
#: wppa-album-admin-autosave.php:548 wppa-settings-autosave.php:
|
1740 |
msgid "Long Descriptions mcr"
|
1741 |
msgstr "Descriptions longues mcr"
|
1742 |
|
1743 |
-
#: wppa-album-admin-autosave.php:551 wppa-settings-autosave.php:
|
1744 |
msgid "Image Factory mcr"
|
1745 |
msgstr "Image Factory mcr"
|
1746 |
|
@@ -1756,33 +1756,33 @@ msgstr "Limite d'upload:"
|
|
1756 |
msgid "Set the upload limit (0 means unlimited)."
|
1757 |
msgstr "Régler la limite de téléchargement (0 signifie illimité)."
|
1758 |
|
1759 |
-
#: wppa-album-admin-autosave.php:581 wppa-settings-autosave.php:
|
1760 |
-
#: wppa-settings-autosave.php:
|
1761 |
msgid "for ever"
|
1762 |
msgstr "illimité"
|
1763 |
|
1764 |
#: wppa-album-admin-autosave.php:582 wppa-album-admin-autosave.php:594
|
1765 |
-
#: wppa-settings-autosave.php:
|
1766 |
msgid "per hour"
|
1767 |
msgstr "par heure"
|
1768 |
|
1769 |
#: wppa-album-admin-autosave.php:583 wppa-album-admin-autosave.php:595
|
1770 |
-
#: wppa-settings-autosave.php:
|
1771 |
msgid "per day"
|
1772 |
msgstr "par jour"
|
1773 |
|
1774 |
#: wppa-album-admin-autosave.php:584 wppa-album-admin-autosave.php:596
|
1775 |
-
#: wppa-settings-autosave.php:
|
1776 |
msgid "per week"
|
1777 |
msgstr "par semaine"
|
1778 |
|
1779 |
#: wppa-album-admin-autosave.php:585 wppa-album-admin-autosave.php:597
|
1780 |
-
#: wppa-settings-autosave.php:
|
1781 |
msgid "per month"
|
1782 |
msgstr "par mois"
|
1783 |
|
1784 |
#: wppa-album-admin-autosave.php:586 wppa-album-admin-autosave.php:598
|
1785 |
-
#: wppa-settings-autosave.php:
|
1786 |
msgid "per year"
|
1787 |
msgstr "par an"
|
1788 |
|
@@ -1854,19 +1854,19 @@ msgstr ""
|
|
1854 |
msgid "Link type:"
|
1855 |
msgstr "Type de lien:"
|
1856 |
|
1857 |
-
#: wppa-album-admin-autosave.php:839 wppa-settings-autosave.php:
|
1858 |
msgid "the sub-albums and thumbnails"
|
1859 |
msgstr "les albums fils et vignettes"
|
1860 |
|
1861 |
-
#: wppa-album-admin-autosave.php:840 wppa-settings-autosave.php:
|
1862 |
msgid "the sub-albums"
|
1863 |
msgstr "les albums fils"
|
1864 |
|
1865 |
-
#: wppa-album-admin-autosave.php:841 wppa-settings-autosave.php:
|
1866 |
msgid "the thumbnails"
|
1867 |
msgstr "les vignettes"
|
1868 |
|
1869 |
-
#: wppa-album-admin-autosave.php:842 wppa-settings-autosave.php:
|
1870 |
msgid "the album photos as slideshow"
|
1871 |
msgstr "les photos de l'album comme diaporama"
|
1872 |
|
@@ -1874,7 +1874,7 @@ msgstr "les photos de l'album comme diaporama"
|
|
1874 |
msgid "the link page with a clean url"
|
1875 |
msgstr "la page de lien avec une URL claire"
|
1876 |
|
1877 |
-
#: wppa-album-admin-autosave.php:844 wppa-settings-autosave.php:
|
1878 |
msgid "no link at all"
|
1879 |
msgstr "Pas de lien du tout"
|
1880 |
|
@@ -1900,8 +1900,8 @@ msgstr ""
|
|
1900 |
msgid "Link to:"
|
1901 |
msgstr "Lien vers:"
|
1902 |
|
1903 |
-
#: wppa-album-admin-autosave.php:872 wppa-settings-autosave.php:
|
1904 |
-
#: wppa-settings-autosave.php:
|
1905 |
msgid "There are no pages (yet) to link to."
|
1906 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1907 |
|
@@ -2025,7 +2025,7 @@ msgstr "Supprimer l'album"
|
|
2025 |
#: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
|
2026 |
#: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:338
|
2027 |
#: wppa-upload-widget.php:85 wppa-upload.php:180 wppa-upload.php:321
|
2028 |
-
#: wppa-upload.php:
|
2029 |
msgid "Album:"
|
2030 |
msgstr "Album:"
|
2031 |
|
@@ -2060,7 +2060,7 @@ msgid "Move to:"
|
|
2060 |
msgstr "Déplacer vers:"
|
2061 |
|
2062 |
#: wppa-album-admin-autosave.php:1134 wppa-photo-admin-autosave.php:2743
|
2063 |
-
#: wppa-settings-autosave.php:
|
2064 |
msgid "Cancel"
|
2065 |
msgstr "Annuler"
|
2066 |
|
@@ -2199,66 +2199,60 @@ msgstr "Rechercher"
|
|
2199 |
msgid "Unable to move photos to album %s. Album not deleted."
|
2200 |
msgstr "Impossible de déplacer les photos vers l'album %s. Album pas effacé."
|
2201 |
|
2202 |
-
#: wppa-album-admin-autosave.php:
|
2203 |
-
#, php-format
|
2204 |
-
msgid "Time is out after %d photo deletes. Please redo this operation"
|
2205 |
-
msgstr ""
|
2206 |
-
"Délai dépassé après %d effacement de photos. Veuillez recommencer l'opération"
|
2207 |
-
|
2208 |
-
#: wppa-album-admin-autosave.php:2220
|
2209 |
msgid "Album Deleted."
|
2210 |
msgstr "Album effacé."
|
2211 |
|
2212 |
-
#: wppa-album-admin-autosave.php:
|
2213 |
#, php-format
|
2214 |
msgid "auto select max %s random"
|
2215 |
msgstr "Sélection auto max %s aléatoire"
|
2216 |
|
2217 |
-
#: wppa-album-admin-autosave.php:
|
2218 |
#, php-format
|
2219 |
msgid "auto select max %s featured"
|
2220 |
msgstr "Sélection auto max %s recommandé"
|
2221 |
|
2222 |
-
#: wppa-album-admin-autosave.php:
|
2223 |
#, php-format
|
2224 |
msgid "max %s most recent added"
|
2225 |
msgstr "max %s ajoutés le plus récemment"
|
2226 |
|
2227 |
-
#: wppa-album-admin-autosave.php:
|
2228 |
#, php-format
|
2229 |
msgid "max %s from (grand)child albums"
|
2230 |
msgstr "max %s parmi les albums fils"
|
2231 |
|
2232 |
-
#: wppa-album-admin-autosave.php:
|
2233 |
#, php-format
|
2234 |
msgid "max %s most recent from (grand)child albums"
|
2235 |
msgstr "max %s plus récents parmi albums (petit)fils"
|
2236 |
|
2237 |
-
#: wppa-album-admin-autosave.php:
|
2238 |
msgid "--- random ---"
|
2239 |
msgstr "--- aléatoire ---"
|
2240 |
|
2241 |
-
#: wppa-album-admin-autosave.php:
|
2242 |
msgid "--- random featured ---"
|
2243 |
msgstr "--- aléatoire recommandé ---"
|
2244 |
|
2245 |
-
#: wppa-album-admin-autosave.php:
|
2246 |
msgid "--- most recent added ---"
|
2247 |
msgstr "--- ajouter le plus récemment ---"
|
2248 |
|
2249 |
-
#: wppa-album-admin-autosave.php:
|
2250 |
msgid "--- random from (grand)children ---"
|
2251 |
msgstr "--- aléatoire parmi les albums fils ---"
|
2252 |
|
2253 |
-
#: wppa-album-admin-autosave.php:
|
2254 |
msgid "--- most recent from (grand)children ---"
|
2255 |
msgstr "--- le plus récent du (petit)fils ---"
|
2256 |
|
2257 |
-
#: wppa-album-admin-autosave.php:
|
2258 |
msgid "Nameless, filename = "
|
2259 |
msgstr "Sans nom, nom du fichier = "
|
2260 |
|
2261 |
-
#: wppa-album-admin-autosave.php:
|
2262 |
msgid ""
|
2263 |
"You can edit top-level album sequence order here when you set the album "
|
2264 |
"order to \"Order #\" or \"Order # desc\" in Table IV-D1."
|
@@ -2267,7 +2261,7 @@ msgstr ""
|
|
2267 |
"l'ordre de tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la table IV-"
|
2268 |
"D1."
|
2269 |
|
2270 |
-
#: wppa-album-admin-autosave.php:
|
2271 |
msgid ""
|
2272 |
"You can edit sub-album sequence order here when you set the album order to "
|
2273 |
"\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
|
@@ -2277,67 +2271,67 @@ msgstr ""
|
|
2277 |
"tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la boîte de sélection "
|
2278 |
"\"Ordre de tri des albums fils:\" ci-dessus."
|
2279 |
|
2280 |
-
#: wppa-album-admin-autosave.php:
|
2281 |
msgid "Manage album order"
|
2282 |
msgstr "Gérer album ordre"
|
2283 |
|
2284 |
-
#: wppa-album-admin-autosave.php:
|
2285 |
msgid "Change sequence order by drag and drop, or use the up/down arrows."
|
2286 |
msgstr ""
|
2287 |
"Changer l'ordre de séquence par glisser-déposer, ou utilisez les flèches "
|
2288 |
"haut / bas."
|
2289 |
|
2290 |
-
#: wppa-album-admin-autosave.php:
|
2291 |
msgid "Do not leave this page unless the bar is entirely green."
|
2292 |
msgstr "Ne pas laisser cette page à moins que le bar est entièrement verte."
|
2293 |
|
2294 |
-
#: wppa-album-admin-autosave.php:
|
2295 |
-
#: wppa-settings-autosave.php:
|
2296 |
msgid "Color"
|
2297 |
msgstr "Couleur"
|
2298 |
|
2299 |
-
#: wppa-album-admin-autosave.php:
|
2300 |
msgid "Meaning"
|
2301 |
msgstr "Signification"
|
2302 |
|
2303 |
-
#: wppa-album-admin-autosave.php:
|
2304 |
msgid "Up to date"
|
2305 |
msgstr "A jour"
|
2306 |
|
2307 |
-
#: wppa-album-admin-autosave.php:
|
2308 |
msgid "Updating"
|
2309 |
msgstr "Mise à jour "
|
2310 |
|
2311 |
-
#: wppa-album-admin-autosave.php:
|
2312 |
msgid "Needs update"
|
2313 |
msgstr "Nécessite une mise à jour"
|
2314 |
|
2315 |
-
#: wppa-album-admin-autosave.php:
|
2316 |
-
#: wppa-upload.php:
|
2317 |
msgid "Error"
|
2318 |
msgstr "Erreur"
|
2319 |
|
2320 |
-
#: wppa-album-admin-autosave.php:
|
2321 |
msgid "To top"
|
2322 |
msgstr "En haut"
|
2323 |
|
2324 |
-
#: wppa-album-admin-autosave.php:
|
2325 |
msgid "One up"
|
2326 |
msgstr "Un haut"
|
2327 |
|
2328 |
-
#: wppa-album-admin-autosave.php:
|
2329 |
msgid "One down"
|
2330 |
msgstr "Un vers le bas"
|
2331 |
|
2332 |
-
#: wppa-album-admin-autosave.php:
|
2333 |
msgid "To bottom"
|
2334 |
msgstr "En bas"
|
2335 |
|
2336 |
-
#: wppa-album-admin-autosave.php:
|
2337 |
msgid "Id:"
|
2338 |
msgstr "ID:"
|
2339 |
|
2340 |
-
#: wppa-album-admin-autosave.php:
|
2341 |
msgid "Ord:"
|
2342 |
msgstr "Ord:"
|
2343 |
|
@@ -2354,7 +2348,7 @@ msgid "Views:"
|
|
2354 |
msgstr "Vues :"
|
2355 |
|
2356 |
#: wppa-album-covers.php:1427 wppa-album-covers.php:1503
|
2357 |
-
#: wppa-album-covers.php:1511 wppa-album-covers.php:
|
2358 |
msgid "View the album"
|
2359 |
msgstr "Visualiser l'album"
|
2360 |
|
@@ -2364,52 +2358,52 @@ msgid_plural "View the cover photos"
|
|
2364 |
msgstr[0] "Voir la photo de couverture"
|
2365 |
msgstr[1] "Visualiser les photos de couverture"
|
2366 |
|
2367 |
-
#: wppa-album-covers.php:
|
2368 |
msgid "View"
|
2369 |
msgstr "Visualiser"
|
2370 |
|
2371 |
-
#: wppa-album-covers.php:
|
2372 |
#, php-format
|
2373 |
msgid "%d album"
|
2374 |
msgid_plural "%d albums"
|
2375 |
msgstr[0] "%d album"
|
2376 |
msgstr[1] "%d albums"
|
2377 |
|
2378 |
-
#: wppa-album-covers.php:
|
2379 |
#, php-format
|
2380 |
msgid "%d photo"
|
2381 |
msgid_plural "%d photos"
|
2382 |
msgstr[0] "%d photo"
|
2383 |
msgstr[1] "%d photos"
|
2384 |
|
2385 |
-
#: wppa-album-covers.php:
|
2386 |
#: wppa-breadcrumb.php:175 wppa-breadcrumb.php:181 wppa-breadcrumb.php:188
|
2387 |
#: wppa-breadcrumb.php:412 wppa-breadcrumb.php:414 wppa-breadcrumb.php:420
|
2388 |
#: wppa-breadcrumb.php:422 wppa-breadcrumb.php:430 wppa-breadcrumb.php:446
|
2389 |
-
#: wppa-breadcrumb.php:459 wppa-breadcrumb.php:465 wppa-utils.php:
|
2390 |
-
#: wppa-utils.php:
|
2391 |
msgid "and"
|
2392 |
msgstr "et"
|
2393 |
|
2394 |
-
#: wppa-album-covers.php:
|
2395 |
msgid "New!"
|
2396 |
msgstr "Nouveau!"
|
2397 |
|
2398 |
-
#: wppa-album-covers.php:
|
2399 |
msgid "New"
|
2400 |
msgstr "Nouveau"
|
2401 |
|
2402 |
-
#: wppa-album-covers.php:
|
2403 |
-
#: wppa-settings-autosave.php:
|
2404 |
-
#: wppa-settings-autosave.php:
|
2405 |
msgid "Slideshow"
|
2406 |
msgstr "Diaporama"
|
2407 |
|
2408 |
-
#: wppa-album-covers.php:
|
2409 |
msgid "Browse photos"
|
2410 |
msgstr "Visualiser les photos"
|
2411 |
|
2412 |
-
#: wppa-album-covers.php:
|
2413 |
#: wppa-breadcrumb.php:459 wppa-breadcrumb.php:465
|
2414 |
msgid "Category:"
|
2415 |
msgid_plural "Categories:"
|
@@ -2574,16 +2568,16 @@ msgstr "Nombre de notes:"
|
|
2574 |
|
2575 |
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1704
|
2576 |
#: wppa-import.php:1639 wppa-items.php:461 wppa-potd-admin.php:100
|
2577 |
-
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:
|
2578 |
-
#: wppa-settings-autosave.php:
|
2579 |
-
#: wppa-settings-autosave.php:
|
2580 |
-
#: wppa-settings-autosave.php:
|
2581 |
-
#: wppa-settings-autosave.php:
|
2582 |
-
#: wppa-settings-autosave.php:
|
2583 |
-
#: wppa-settings-autosave.php:
|
2584 |
-
#: wppa-settings-autosave.php:
|
2585 |
-
#: wppa-settings-autosave.php:
|
2586 |
-
#: wppa-settings-autosave.php:
|
2587 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-shortcodes.php:626
|
2588 |
#: wppa-watermark.php:572
|
2589 |
msgid "--- none ---"
|
@@ -2614,7 +2608,7 @@ msgid "Photo search results"
|
|
2614 |
msgstr "Résultats de recherche photos"
|
2615 |
|
2616 |
#: wppa-boxes-html.php:383 wppa-breadcrumb.php:163
|
2617 |
-
#: wppa-settings-autosave.php:
|
2618 |
msgid "Albums"
|
2619 |
msgstr "Albums"
|
2620 |
|
@@ -2627,8 +2621,8 @@ msgid "Category"
|
|
2627 |
msgstr "Catégorie"
|
2628 |
|
2629 |
#: wppa-boxes-html.php:421 wppa-boxes-html.php:554
|
2630 |
-
#: wppa-settings-autosave.php:
|
2631 |
-
#: wppa-settings-autosave.php:
|
2632 |
msgid "Text"
|
2633 |
msgstr "Texte"
|
2634 |
|
@@ -2642,9 +2636,9 @@ msgstr "CTRL+Clic pour ajouter/supprimer des options."
|
|
2642 |
msgid "Items must meet all selected options."
|
2643 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2644 |
|
2645 |
-
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:
|
2646 |
-
#: wppa-settings-autosave.php:
|
2647 |
-
#: wppa-settings-autosave.php:
|
2648 |
msgid "Tag"
|
2649 |
msgstr "Tag"
|
2650 |
|
@@ -2665,8 +2659,8 @@ msgstr "Valider"
|
|
2665 |
msgid "Super View Photos"
|
2666 |
msgstr "Photos en Super View"
|
2667 |
|
2668 |
-
#: wppa-boxes-html.php:836 wppa-settings-autosave.php:
|
2669 |
-
#: wppa-settings-autosave.php:
|
2670 |
msgid "Thumbnails"
|
2671 |
msgstr "Vignettes"
|
2672 |
|
@@ -2718,7 +2712,7 @@ msgstr "Trouver!"
|
|
2718 |
msgid "Social media landing page"
|
2719 |
msgstr "Social media landing page"
|
2720 |
|
2721 |
-
#: wppa-boxes-html.php:1283 wppa-utils.php:
|
2722 |
#, php-format
|
2723 |
msgid "See this image on %s"
|
2724 |
msgstr "Voir cette image sur %s"
|
@@ -2779,7 +2773,7 @@ msgstr "Créer un album"
|
|
2779 |
msgid "Enter album name."
|
2780 |
msgstr "Entrer un nom d'album."
|
2781 |
|
2782 |
-
#: wppa-boxes-html.php:1999 wppa-boxes-html.php:
|
2783 |
msgid "Don't leave this blank!"
|
2784 |
msgstr "Ne laissez pas ceci vide !"
|
2785 |
|
@@ -2835,7 +2829,7 @@ msgstr "Sélectionnez Photos / Vidéo"
|
|
2835 |
msgid "Select Photos"
|
2836 |
msgstr "Sélectionnez Photos"
|
2837 |
|
2838 |
-
#: wppa-boxes-html.php:
|
2839 |
#, php-format
|
2840 |
msgid "You may upload %d photo"
|
2841 |
msgid_plural ""
|
@@ -2846,22 +2840,22 @@ msgstr[1] ""
|
|
2846 |
"Vous pouvez charger jusqu'à %d photos à la fois si votre navigateur supporte "
|
2847 |
"la fonction HTML-5 multiple file upload"
|
2848 |
|
2849 |
-
#: wppa-boxes-html.php:
|
2850 |
#, php-format
|
2851 |
msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
|
2852 |
msgstr "Taille photo max: %d x %d (%2.1f MegaPixel)"
|
2853 |
|
2854 |
-
#: wppa-boxes-html.php:
|
2855 |
-
#: wppa-upload.php:331 wppa-upload.php:
|
2856 |
msgid "Apply watermark file:"
|
2857 |
msgstr "Appliquer le filigrane:"
|
2858 |
|
2859 |
-
#: wppa-boxes-html.php:
|
2860 |
-
#: wppa-upload.php:335 wppa-upload.php:
|
2861 |
msgid "Position:"
|
2862 |
msgstr "Position:"
|
2863 |
|
2864 |
-
#: wppa-boxes-html.php:
|
2865 |
msgid ""
|
2866 |
"If you leave this blank, iptc tag 005 (Graphic name) will be used as "
|
2867 |
"photoname if available, else the original filename will be used as photo "
|
@@ -2871,7 +2865,7 @@ msgstr ""
|
|
2871 |
"nom de photo si disponible sinon le nom original du fichier sera utilisé "
|
2872 |
"comme nom de photo. "
|
2873 |
|
2874 |
-
#: wppa-boxes-html.php:
|
2875 |
msgid ""
|
2876 |
"If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
|
2877 |
"available, else the original filename will be used as photo name."
|
@@ -2880,204 +2874,204 @@ msgstr ""
|
|
2880 |
"photo si disponible sinon le nom de fichier original sera utilisé comme nom "
|
2881 |
"de photo."
|
2882 |
|
2883 |
-
#: wppa-boxes-html.php:
|
2884 |
msgid "If you leave this blank, \"Photo photoid\" will be used as photo name."
|
2885 |
msgstr ""
|
2886 |
"Si vous laissez ce champ vide, « Photo photoid » servira comme nom de la "
|
2887 |
"photo."
|
2888 |
|
2889 |
-
#: wppa-boxes-html.php:
|
2890 |
msgid ""
|
2891 |
"If you leave this blank, the original filename will be used as photo name."
|
2892 |
msgstr ""
|
2893 |
"Si vous laisser cela vide, le nom de fichier original sera utilisé comme nom "
|
2894 |
"de photo."
|
2895 |
|
2896 |
-
#: wppa-boxes-html.php:
|
2897 |
msgid "Photo name"
|
2898 |
msgstr "Nom de la photo"
|
2899 |
|
2900 |
-
#: wppa-boxes-html.php:
|
2901 |
msgid "Photo description"
|
2902 |
msgstr "Description de la photo"
|
2903 |
|
2904 |
-
#: wppa-boxes-html.php:
|
2905 |
msgid "hidden"
|
2906 |
msgstr "caché"
|
2907 |
|
2908 |
-
#: wppa-boxes-html.php:
|
2909 |
msgid "Preview tags:"
|
2910 |
msgstr "Aperçu tags:"
|
2911 |
|
2912 |
-
#: wppa-boxes-html.php:
|
2913 |
msgid "Blog it?"
|
2914 |
msgstr "Blog it?"
|
2915 |
|
2916 |
-
#: wppa-boxes-html.php:
|
2917 |
msgid "Upload and blog"
|
2918 |
msgstr "Upload et blog"
|
2919 |
|
2920 |
-
#: wppa-boxes-html.php:
|
2921 |
msgid "Upload photo"
|
2922 |
msgstr "Uploader une photo"
|
2923 |
|
2924 |
-
#: wppa-boxes-html.php:
|
2925 |
msgid "Post title:"
|
2926 |
msgstr "Titre du post:"
|
2927 |
|
2928 |
-
#: wppa-boxes-html.php:
|
2929 |
msgid "Text BEFORE the image:"
|
2930 |
msgstr "Texte AVANT l'image:"
|
2931 |
|
2932 |
-
#: wppa-boxes-html.php:
|
2933 |
msgid "Text AFTER the image:"
|
2934 |
msgstr "Texte APRÈS l'image:"
|
2935 |
|
2936 |
-
#: wppa-boxes-html.php:
|
2937 |
msgid "Please select an album and try again"
|
2938 |
msgstr "Veuillez sélectionner un album et recommencer"
|
2939 |
|
2940 |
-
#: wppa-boxes-html.php:
|
2941 |
msgid "Processing..."
|
2942 |
msgstr "En cours..."
|
2943 |
|
2944 |
-
#: wppa-boxes-html.php:
|
2945 |
msgid "Done!"
|
2946 |
msgstr "Fait!"
|
2947 |
|
2948 |
-
#: wppa-boxes-html.php:
|
2949 |
msgid "ERROR: unable to upload files."
|
2950 |
msgstr "Erreur: impossible de télécharger des fichiers."
|
2951 |
|
2952 |
-
#: wppa-boxes-html.php:
|
2953 |
msgid "Edit Album Info"
|
2954 |
msgstr "Modifier l’album"
|
2955 |
|
2956 |
-
#: wppa-boxes-html.php:
|
2957 |
msgid "Enter album name"
|
2958 |
msgstr "Entrer un nom d'album"
|
2959 |
|
2960 |
-
#: wppa-boxes-html.php:
|
2961 |
msgid "Album description:"
|
2962 |
msgstr "Description de l'album:"
|
2963 |
|
2964 |
-
#: wppa-boxes-html.php:
|
2965 |
msgid "Update album"
|
2966 |
msgstr "Update album"
|
2967 |
|
2968 |
-
#: wppa-boxes-html.php:
|
2969 |
msgid "wrote:"
|
2970 |
msgstr "a écrit:"
|
2971 |
|
2972 |
-
#: wppa-boxes-html.php:
|
2973 |
msgid "Avatar"
|
2974 |
msgstr "Avatar"
|
2975 |
|
2976 |
-
#: wppa-boxes-html.php:
|
2977 |
msgid "Awaiting moderation"
|
2978 |
msgstr "En attente de modération"
|
2979 |
|
2980 |
-
#: wppa-boxes-html.php:
|
2981 |
msgid "Marked as spam"
|
2982 |
msgstr "Marqué comme indésirable"
|
2983 |
|
2984 |
-
#: wppa-boxes-html.php:
|
2985 |
msgid "Edit!"
|
2986 |
msgstr "Éditer !"
|
2987 |
|
2988 |
-
#: wppa-boxes-html.php:
|
2989 |
msgid "Send!"
|
2990 |
msgstr "Transmettre !"
|
2991 |
|
2992 |
-
#: wppa-boxes-html.php:
|
2993 |
msgid "Your name:"
|
2994 |
msgstr "Votre nom:"
|
2995 |
|
2996 |
-
#: wppa-boxes-html.php:
|
2997 |
msgid "Your email:"
|
2998 |
msgstr "Votre email:"
|
2999 |
|
3000 |
-
#: wppa-boxes-html.php:
|
3001 |
msgid "Your comment:"
|
3002 |
msgstr "Votre commentaire:"
|
3003 |
|
3004 |
-
#: wppa-boxes-html.php:
|
3005 |
#, php-format
|
3006 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
3007 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
3008 |
|
3009 |
-
#: wppa-boxes-html.php:
|
3010 |
msgid "You must login to enter a comment"
|
3011 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
3012 |
|
3013 |
-
#: wppa-boxes-html.php:
|
3014 |
#, php-format
|
3015 |
msgid "%d comment"
|
3016 |
msgid_plural "%d comments"
|
3017 |
msgstr[0] "%d commentaire"
|
3018 |
msgstr[1] "%d commentaires"
|
3019 |
|
3020 |
-
#: wppa-boxes-html.php:
|
3021 |
msgid "Leave a comment"
|
3022 |
msgstr "Laisser un commentaire"
|
3023 |
|
3024 |
-
#: wppa-boxes-html.php:
|
3025 |
msgid "Show IPTC data"
|
3026 |
msgstr "Afficher les données IPTC"
|
3027 |
|
3028 |
-
#: wppa-boxes-html.php:
|
3029 |
msgid "Hide IPTC data"
|
3030 |
msgstr "Cacher les données IPTC"
|
3031 |
|
3032 |
-
#: wppa-boxes-html.php:
|
3033 |
msgid "No IPTC data"
|
3034 |
msgstr "Pas de données IPTC"
|
3035 |
|
3036 |
-
#: wppa-boxes-html.php:
|
3037 |
msgid "Show EXIF data"
|
3038 |
msgstr "Afficher les données EXIF"
|
3039 |
|
3040 |
-
#: wppa-boxes-html.php:
|
3041 |
msgid "Hide EXIF data"
|
3042 |
msgstr "Cacher les données EXIF"
|
3043 |
|
3044 |
-
#: wppa-boxes-html.php:
|
3045 |
msgid "No EXIF data"
|
3046 |
msgstr "Pas de données EXIF"
|
3047 |
|
3048 |
-
#: wppa-boxes-html.php:
|
3049 |
msgid "< Previous"
|
3050 |
msgstr "< Préc."
|
3051 |
|
3052 |
-
#: wppa-boxes-html.php:
|
3053 |
msgid "Next >"
|
3054 |
msgstr "Suiv. >"
|
3055 |
|
3056 |
-
#: wppa-boxes-html.php:
|
3057 |
msgid "See the authors albums"
|
3058 |
msgstr "Voir les albums des auteurs"
|
3059 |
|
3060 |
-
#: wppa-boxes-html.php:
|
3061 |
msgid "See the authors photos"
|
3062 |
msgstr "Voir les photos des auteurs"
|
3063 |
|
3064 |
-
#: wppa-boxes-html.php:
|
3065 |
msgid "See all the authors photos"
|
3066 |
msgstr "Voir toutes les photos des auteurs"
|
3067 |
|
3068 |
-
#: wppa-boxes-html.php:
|
3069 |
#, php-format
|
3070 |
msgid "Photo by: %s"
|
3071 |
msgstr "Photo par: %s"
|
3072 |
|
3073 |
-
#: wppa-boxes-html.php:
|
3074 |
#, php-format
|
3075 |
msgid "%d max rating"
|
3076 |
msgid_plural "%d max ratings"
|
3077 |
msgstr[0] "%d max note"
|
3078 |
msgstr[1] "%d max notes"
|
3079 |
|
3080 |
-
#: wppa-boxes-html.php:
|
3081 |
#: wppa-topten-widget.php:208 wppa-topten-widget.php:225
|
3082 |
#: wppa-topten-widget.php:261
|
3083 |
#, php-format
|
@@ -3086,22 +3080,22 @@ msgid_plural "%d votes"
|
|
3086 |
msgstr[0] "%d vote"
|
3087 |
msgstr[1] "%d votes"
|
3088 |
|
3089 |
-
#: wppa-boxes-html.php:
|
3090 |
#, php-format
|
3091 |
msgid "Rating: %4.2f."
|
3092 |
msgstr "Vote: %4.2f."
|
3093 |
|
3094 |
-
#: wppa-boxes-html.php:
|
3095 |
#, php-format
|
3096 |
msgid "Photo %s not found."
|
3097 |
msgstr "Photo %s non trouvée."
|
3098 |
|
3099 |
-
#: wppa-boxes-html.php:
|
3100 |
#, php-format
|
3101 |
msgid "Mean value: %4.2f."
|
3102 |
msgstr "Valeur moyenne: %4.2f."
|
3103 |
|
3104 |
-
#: wppa-boxes-html.php:
|
3105 |
msgid "Refresh"
|
3106 |
msgstr "Rafraichir"
|
3107 |
|
@@ -3293,7 +3287,7 @@ msgstr "Utilisateur:"
|
|
3293 |
msgid "Email:"
|
3294 |
msgstr "Email:"
|
3295 |
|
3296 |
-
#: wppa-comment-admin.php:80 wppa-utils.php:
|
3297 |
msgid "Comment:"
|
3298 |
msgstr "Commentaire:"
|
3299 |
|
@@ -3359,8 +3353,8 @@ msgstr "Spam effacé auto:"
|
|
3359 |
msgid "Linkpage:"
|
3360 |
msgstr "Page lien:"
|
3361 |
|
3362 |
-
#: wppa-comment-admin.php:231 wppa-settings-autosave.php:
|
3363 |
-
#: wppa-settings-autosave.php:
|
3364 |
msgid "--- Please select a page ---"
|
3365 |
msgstr "--- Choisir une page ---"
|
3366 |
|
@@ -3376,7 +3370,7 @@ msgstr ""
|
|
3376 |
msgid "Display status:"
|
3377 |
msgstr "Statut affichage:"
|
3378 |
|
3379 |
-
#: wppa-comment-admin.php:252 wppa-settings-autosave.php:
|
3380 |
msgid "all"
|
3381 |
msgstr "tous"
|
3382 |
|
@@ -3433,18 +3427,18 @@ msgid "(Album)"
|
|
3433 |
msgstr "(Album)"
|
3434 |
|
3435 |
#: wppa-comment-admin.php:311 wppa-comment-admin.php:398 wppa-potd-admin.php:70
|
3436 |
-
#: wppa-potd-admin.php:357 wppa-settings-autosave.php:
|
3437 |
-
#: wppa-settings-autosave.php:
|
3438 |
-
#: wppa-settings-autosave.php:
|
3439 |
-
#: wppa-settings-autosave.php:
|
3440 |
-
#: wppa-settings-autosave.php:
|
3441 |
-
#: wppa-settings-autosave.php:
|
3442 |
-
#: wppa-settings-autosave.php:
|
3443 |
-
#: wppa-settings-autosave.php:
|
3444 |
-
#: wppa-settings-autosave.php:
|
3445 |
-
#: wppa-settings-autosave.php:
|
3446 |
-
#: wppa-settings-autosave.php:
|
3447 |
-
#: wppa-settings-autosave.php:
|
3448 |
msgid "#"
|
3449 |
msgstr "#"
|
3450 |
|
@@ -3530,64 +3524,64 @@ msgstr "Photo non trouvée"
|
|
3530 |
msgid "There are no commented photos (yet)"
|
3531 |
msgstr "Il n'y pas encore de photos commentariés"
|
3532 |
|
3533 |
-
#: wppa-common-functions.php:608 wppa-functions.php:
|
3534 |
#, php-format
|
3535 |
msgid "%d second"
|
3536 |
msgid_plural "%d seconds"
|
3537 |
msgstr[0] "%d seconde"
|
3538 |
msgstr[1] "%d secondes"
|
3539 |
|
3540 |
-
#: wppa-common-functions.php:612 wppa-functions.php:
|
3541 |
-
#: wppa-settings-autosave.php:
|
3542 |
#, php-format
|
3543 |
msgid "%d minute"
|
3544 |
msgid_plural "%d minutes"
|
3545 |
msgstr[0] "%d minute"
|
3546 |
msgstr[1] "%d minutes"
|
3547 |
|
3548 |
-
#: wppa-common-functions.php:616 wppa-functions.php:
|
3549 |
-
#: wppa-settings-autosave.php:
|
3550 |
#, php-format
|
3551 |
msgid "%d hour"
|
3552 |
msgid_plural "%d hours"
|
3553 |
msgstr[0] "%d heure"
|
3554 |
msgstr[1] "%d heures"
|
3555 |
|
3556 |
-
#: wppa-common-functions.php:620 wppa-functions.php:
|
3557 |
-
#: wppa-settings-autosave.php:
|
3558 |
-
#: wppa-settings-autosave.php:
|
3559 |
-
#: wppa-settings-autosave.php:
|
3560 |
-
#: wppa-settings-autosave.php:
|
3561 |
-
#: wppa-settings-autosave.php:
|
3562 |
-
#: wppa-settings-autosave.php:
|
3563 |
#, php-format
|
3564 |
msgid "%d day"
|
3565 |
msgid_plural "%d days"
|
3566 |
msgstr[0] "%d jour"
|
3567 |
msgstr[1] "%d jours"
|
3568 |
|
3569 |
-
#: wppa-common-functions.php:624 wppa-functions.php:
|
3570 |
-
#: wppa-settings-autosave.php:
|
3571 |
-
#: wppa-settings-autosave.php:
|
3572 |
-
#: wppa-settings-autosave.php:
|
3573 |
#, php-format
|
3574 |
msgid "%d week"
|
3575 |
msgid_plural "%d weeks"
|
3576 |
msgstr[0] "%d semaine"
|
3577 |
msgstr[1] "%d semaines"
|
3578 |
|
3579 |
-
#: wppa-common-functions.php:628 wppa-settings-autosave.php:
|
3580 |
-
#: wppa-settings-autosave.php:
|
3581 |
-
#: wppa-settings-autosave.php:
|
3582 |
-
#: wppa-settings-autosave.php:
|
3583 |
#, php-format
|
3584 |
msgid "%d month"
|
3585 |
msgid_plural "%d months"
|
3586 |
msgstr[0] "%d mois"
|
3587 |
msgstr[1] "%d mois"
|
3588 |
|
3589 |
-
#: wppa-common-functions.php:631 wppa-settings-autosave.php:
|
3590 |
-
#: wppa-settings-autosave.php:
|
3591 |
#, php-format
|
3592 |
msgid "%d year"
|
3593 |
msgid_plural "%d years"
|
@@ -3628,7 +3622,7 @@ msgid "--- a selection box ---"
|
|
3628 |
msgstr "--- une sélection ---"
|
3629 |
|
3630 |
#: wppa-common-functions.php:1790 wppa-import.php:1640 wppa-items.php:470
|
3631 |
-
#: wppa-settings-autosave.php:
|
3632 |
msgid "--- separate ---"
|
3633 |
msgstr "--- séparé ---"
|
3634 |
|
@@ -3704,180 +3698,180 @@ msgstr "Identifiant d'album incorrect"
|
|
3704 |
msgid "n.a."
|
3705 |
msgstr "Non applicable"
|
3706 |
|
3707 |
-
#: wppa-exif-iptc-common.php:239 wppa-utils.php:
|
3708 |
msgid "Not Defined"
|
3709 |
msgstr "Non défini"
|
3710 |
|
3711 |
-
#: wppa-exif-iptc-common.php:240 wppa-utils.php:
|
3712 |
msgid "Manual"
|
3713 |
msgstr "Manuel"
|
3714 |
|
3715 |
-
#: wppa-exif-iptc-common.php:241 wppa-utils.php:
|
3716 |
msgid "Program AE"
|
3717 |
msgstr "Programme AE"
|
3718 |
|
3719 |
-
#: wppa-exif-iptc-common.php:242 wppa-utils.php:
|
3720 |
msgid "Aperture-priority AE"
|
3721 |
msgstr "Priorité ouverture AE"
|
3722 |
|
3723 |
-
#: wppa-exif-iptc-common.php:243 wppa-utils.php:
|
3724 |
msgid "Shutter speed priority AE"
|
3725 |
msgstr "Priorité vitesse d'obturation AE"
|
3726 |
|
3727 |
-
#: wppa-exif-iptc-common.php:244 wppa-utils.php:
|
3728 |
msgid "Creative (Slow speed)"
|
3729 |
msgstr "Créatif (vitesse lente)"
|
3730 |
|
3731 |
-
#: wppa-exif-iptc-common.php:245 wppa-utils.php:
|
3732 |
msgid "Action (High speed)"
|
3733 |
msgstr "Action (vitesse haute)"
|
3734 |
|
3735 |
-
#: wppa-exif-iptc-common.php:246 wppa-utils.php:
|
3736 |
msgid "Portrait"
|
3737 |
msgstr "Portrait"
|
3738 |
|
3739 |
-
#: wppa-exif-iptc-common.php:247 wppa-utils.php:
|
3740 |
msgid "Landscape"
|
3741 |
msgstr "Paysage"
|
3742 |
|
3743 |
-
#: wppa-exif-iptc-common.php:248 wppa-utils.php:
|
3744 |
msgid "Bulb"
|
3745 |
msgstr "Ampoule électrique"
|
3746 |
|
3747 |
-
#: wppa-exif-iptc-common.php:270 wppa-utils.php:
|
3748 |
msgid "Average"
|
3749 |
msgstr "Moyen"
|
3750 |
|
3751 |
-
#: wppa-exif-iptc-common.php:271 wppa-utils.php:
|
3752 |
msgid "Center-weighted average"
|
3753 |
msgstr "Mesure centrale pondérée"
|
3754 |
|
3755 |
-
#: wppa-exif-iptc-common.php:272 wppa-utils.php:
|
3756 |
msgid "Spot"
|
3757 |
msgstr "Spot"
|
3758 |
|
3759 |
-
#: wppa-exif-iptc-common.php:273 wppa-utils.php:
|
3760 |
msgid "Multi-spot"
|
3761 |
msgstr "Multi-spot"
|
3762 |
|
3763 |
-
#: wppa-exif-iptc-common.php:274 wppa-utils.php:
|
3764 |
msgid "Multi-segment"
|
3765 |
msgstr "Multi-segments"
|
3766 |
|
3767 |
-
#: wppa-exif-iptc-common.php:275 wppa-utils.php:
|
3768 |
msgid "Partial"
|
3769 |
msgstr "Partiel"
|
3770 |
|
3771 |
-
#: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:
|
3772 |
-
#: wppa-utils.php:
|
3773 |
msgid "Other"
|
3774 |
msgstr "Autre"
|
3775 |
|
3776 |
-
#: wppa-exif-iptc-common.php:312 wppa-utils.php:
|
3777 |
msgid "No Flash"
|
3778 |
msgstr "Pas de flash"
|
3779 |
|
3780 |
-
#: wppa-exif-iptc-common.php:314 wppa-utils.php:
|
3781 |
msgid "Fired"
|
3782 |
msgstr "Fired"
|
3783 |
|
3784 |
-
#: wppa-exif-iptc-common.php:316 wppa-utils.php:
|
3785 |
msgid "Fired, Return not detected"
|
3786 |
msgstr "Fired, Retour non détecté"
|
3787 |
|
3788 |
-
#: wppa-exif-iptc-common.php:318 wppa-utils.php:
|
3789 |
msgid "Fired, Return detected"
|
3790 |
msgstr "Fired, Retour détecté"
|
3791 |
|
3792 |
-
#: wppa-exif-iptc-common.php:320 wppa-utils.php:
|
3793 |
msgid "On, Did not fire"
|
3794 |
msgstr "Activé, Did not fire"
|
3795 |
|
3796 |
-
#: wppa-exif-iptc-common.php:322 wppa-utils.php:
|
3797 |
msgid "On, Fired"
|
3798 |
msgstr "Activé, Fired"
|
3799 |
|
3800 |
-
#: wppa-exif-iptc-common.php:324 wppa-utils.php:
|
3801 |
msgid "On, Return not detected"
|
3802 |
msgstr "Activé, Retour non détecté"
|
3803 |
|
3804 |
-
#: wppa-exif-iptc-common.php:326 wppa-utils.php:
|
3805 |
msgid "On, Return detected"
|
3806 |
msgstr "Activé, Retour détecté"
|
3807 |
|
3808 |
-
#: wppa-exif-iptc-common.php:328 wppa-utils.php:
|
3809 |
msgid "Off, Did not fire"
|
3810 |
msgstr "Désactivé, Did not fire"
|
3811 |
|
3812 |
-
#: wppa-exif-iptc-common.php:330 wppa-utils.php:
|
3813 |
msgid "Off, Did not fire, Return not detected"
|
3814 |
msgstr "Désactivé, Did not fire, Retour non détecté"
|
3815 |
|
3816 |
-
#: wppa-exif-iptc-common.php:332 wppa-utils.php:
|
3817 |
msgid "Auto, Did not fire"
|
3818 |
msgstr "Auto, Did not fire"
|
3819 |
|
3820 |
-
#: wppa-exif-iptc-common.php:334 wppa-utils.php:
|
3821 |
msgid "Auto, Fired"
|
3822 |
msgstr "Auto, Fired"
|
3823 |
|
3824 |
-
#: wppa-exif-iptc-common.php:336 wppa-utils.php:
|
3825 |
msgid "Auto, Fired, Return not detected"
|
3826 |
msgstr "Auto, Fired, Retour non détecté"
|
3827 |
|
3828 |
-
#: wppa-exif-iptc-common.php:338 wppa-utils.php:
|
3829 |
msgid "Auto, Fired, Return detected"
|
3830 |
msgstr "Auto, Fired, Retour détecté"
|
3831 |
|
3832 |
-
#: wppa-exif-iptc-common.php:340 wppa-utils.php:
|
3833 |
msgid "No flash function"
|
3834 |
msgstr "Pas de fonction flash"
|
3835 |
|
3836 |
-
#: wppa-exif-iptc-common.php:342 wppa-utils.php:
|
3837 |
msgid "Off, No flash function"
|
3838 |
msgstr "Désactivé, Pas de fonction flash"
|
3839 |
|
3840 |
-
#: wppa-exif-iptc-common.php:344 wppa-utils.php:
|
3841 |
msgid "Fired, Red-eye reduction"
|
3842 |
msgstr "Fired, Réduction yeux rouges"
|
3843 |
|
3844 |
-
#: wppa-exif-iptc-common.php:346 wppa-utils.php:
|
3845 |
msgid "Fired, Red-eye reduction, Return not detected"
|
3846 |
msgstr "Fired, Réduction yeux rouges, Retour non détecté"
|
3847 |
|
3848 |
-
#: wppa-exif-iptc-common.php:348 wppa-utils.php:
|
3849 |
msgid "Fired, Red-eye reduction, Return detected"
|
3850 |
msgstr "Fired, Réduction yeux rouges, Retour détecté"
|
3851 |
|
3852 |
-
#: wppa-exif-iptc-common.php:350 wppa-utils.php:
|
3853 |
msgid "On, Red-eye reduction"
|
3854 |
msgstr "Activé, Réduction yeux rouges"
|
3855 |
|
3856 |
-
#: wppa-exif-iptc-common.php:352 wppa-utils.php:
|
3857 |
msgid "Red-eye reduction, Return not detected"
|
3858 |
msgstr "Réduction yeux rouges, Retour non détecté"
|
3859 |
|
3860 |
-
#: wppa-exif-iptc-common.php:354 wppa-utils.php:
|
3861 |
msgid "On, Red-eye reduction, Return detected"
|
3862 |
msgstr "Activé, Réduction yeux rouges, Retour détecté"
|
3863 |
|
3864 |
-
#: wppa-exif-iptc-common.php:356 wppa-utils.php:
|
3865 |
msgid "Off, Red-eye reduction"
|
3866 |
msgstr "Désactivé, Réduction yeux rouges"
|
3867 |
|
3868 |
-
#: wppa-exif-iptc-common.php:358 wppa-utils.php:
|
3869 |
msgid "Auto, Did not fire, Red-eye reduction"
|
3870 |
msgstr "Auto, Did not fire, Réduction yeux rouges"
|
3871 |
|
3872 |
-
#: wppa-exif-iptc-common.php:360 wppa-utils.php:
|
3873 |
msgid "Auto, Fired, Red-eye reduction"
|
3874 |
msgstr "Auto, Fired, Réduction yeux rouges"
|
3875 |
|
3876 |
-
#: wppa-exif-iptc-common.php:362 wppa-utils.php:
|
3877 |
msgid "Auto, Fired, Red-eye reduction, Return not detected"
|
3878 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour non détecté"
|
3879 |
|
3880 |
-
#: wppa-exif-iptc-common.php:364 wppa-utils.php:
|
3881 |
msgid "Auto, Fired, Red-eye reduction, Return detected"
|
3882 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour détecté"
|
3883 |
|
@@ -4061,8 +4055,8 @@ msgstr "écrit sur les photos"
|
|
4061 |
msgid "Moderate comment admin"
|
4062 |
msgstr "Moderate comment admin"
|
4063 |
|
4064 |
-
#: wppa-functions.php:2403 wppa-functions.php:
|
4065 |
-
#: wppa-upload.php:
|
4066 |
msgid "Moderate manage photo"
|
4067 |
msgstr "Moderate manage photo"
|
4068 |
|
@@ -4209,59 +4203,59 @@ msgstr "L'image est trop grande. Taille max photo: %d x %d (%2.1f MegaPixel)"
|
|
4209 |
msgid "Could not insert photo into db."
|
4210 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4211 |
|
4212 |
-
#: wppa-functions.php:
|
4213 |
#, php-format
|
4214 |
msgid "New photo uploaded: %s"
|
4215 |
msgstr "Nouvelle photo chargée: %s"
|
4216 |
|
4217 |
-
#: wppa-functions.php:
|
4218 |
#, php-format
|
4219 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4220 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4221 |
|
4222 |
-
#: wppa-functions.php:
|
4223 |
msgid "This upload requires moderation"
|
4224 |
msgstr "Cet upload nécessite une modération"
|
4225 |
|
4226 |
-
#: wppa-functions.php:
|
4227 |
msgid "Details:"
|
4228 |
msgstr "Détails:"
|
4229 |
|
4230 |
-
#: wppa-functions.php:
|
4231 |
#: wppa-utils.php:779 wppa-utils.php:791
|
4232 |
msgid "Manage photo"
|
4233 |
msgstr "Gérer photo"
|
4234 |
|
4235 |
-
#: wppa-functions.php:
|
4236 |
msgid "You can upload after"
|
4237 |
msgstr "Vous pouvez charger après"
|
4238 |
|
4239 |
-
#: wppa-functions.php:
|
4240 |
-
#: wppa-functions.php:
|
4241 |
-
#: wppa-settings-autosave.php:
|
4242 |
-
#: wppa-settings-autosave.php:
|
4243 |
-
#: wppa-settings-autosave.php:
|
4244 |
-
#: wppa-settings-autosave.php:
|
4245 |
msgid "Download"
|
4246 |
msgstr "Télécharger"
|
4247 |
|
4248 |
-
#: wppa-functions.php:
|
4249 |
msgid "Zoom in"
|
4250 |
msgstr "Zoom in"
|
4251 |
|
4252 |
-
#: wppa-functions.php:
|
4253 |
#, php-format
|
4254 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4255 |
msgstr ""
|
4256 |
"Vous pouvez voter à nouveau après %s jours, %s heures, %s minutes et %s "
|
4257 |
"secondes"
|
4258 |
|
4259 |
-
#: wppa-functions.php:
|
4260 |
#, php-format
|
4261 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4262 |
msgstr "Vous pouvez voter à nouveau après %s heures, %s minutes et %s secondes"
|
4263 |
|
4264 |
-
#: wppa-functions.php:
|
4265 |
#, php-format
|
4266 |
msgid "You can vote again after %s minutes and %s seconds"
|
4267 |
msgstr "Vous pouvez voter à nouveau après %s minutes et %s secondes"
|
@@ -4679,7 +4673,7 @@ msgstr "La photo %s existe déjà dans l'album %s. (1)"
|
|
4679 |
msgid "Duplicate"
|
4680 |
msgstr "Doublon"
|
4681 |
|
4682 |
-
#: wppa-import.php:1873 wppa-upload.php:
|
4683 |
msgid "Error inserting photo"
|
4684 |
msgstr "Erreur pendant l'insertion de la photo"
|
4685 |
|
@@ -5027,9 +5021,9 @@ msgstr "Médaille de bronze"
|
|
5027 |
msgid "Bronze"
|
5028 |
msgstr "Bronze"
|
5029 |
|
5030 |
-
#: wppa-items.php:364 wppa-items.php:665 wppa-settings-autosave.php:
|
5031 |
-
#: wppa-settings-autosave.php:
|
5032 |
-
#: wppa-settings-autosave.php:
|
5033 |
msgid "none"
|
5034 |
msgstr "aucun"
|
5035 |
|
@@ -5291,7 +5285,7 @@ msgstr "Touches: f = mode suiv.; q,x = sortir; d = abandonner cette note."
|
|
5291 |
msgid "Toggle fullscreen"
|
5292 |
msgstr "Tasculer en plein écran"
|
5293 |
|
5294 |
-
#: wppa-non-admin.php:799 wppa-settings-autosave.php:
|
5295 |
#: wppa-slideshow.php:328
|
5296 |
msgid "Start"
|
5297 |
msgstr "Démarrer"
|
@@ -5812,7 +5806,7 @@ msgstr "Supprimer la photo"
|
|
5812 |
msgid "Re-upload file"
|
5813 |
msgstr "Re-téléchargement"
|
5814 |
|
5815 |
-
#: wppa-photo-admin-autosave.php:1192 wppa-settings-autosave.php:
|
5816 |
msgid "Upload"
|
5817 |
msgstr "Charger"
|
5818 |
|
@@ -5856,8 +5850,8 @@ msgstr "Photo lien spécifique url:"
|
|
5856 |
msgid "Same tab"
|
5857 |
msgstr "Même onglet"
|
5858 |
|
5859 |
-
#: wppa-photo-admin-autosave.php:1441 wppa-settings-autosave.php:
|
5860 |
-
#: wppa-settings-autosave.php:
|
5861 |
msgid "New tab"
|
5862 |
msgstr "Nouvel onglet"
|
5863 |
|
@@ -6001,7 +5995,7 @@ msgid "Confirm move"
|
|
6001 |
msgstr "Confirmer le déplacement"
|
6002 |
|
6003 |
#: wppa-photo-admin-autosave.php:2018 wppa-photo-admin-autosave.php:2194
|
6004 |
-
#: wppa-potd-admin.php:321 wppa-settings-autosave.php:
|
6005 |
msgid "Preview"
|
6006 |
msgstr "Prévisualiser"
|
6007 |
|
@@ -6034,11 +6028,11 @@ msgstr ""
|
|
6034 |
msgid "Id: "
|
6035 |
msgstr "ID:"
|
6036 |
|
6037 |
-
#: wppa-photo-admin-autosave.php:2402 wppa-settings-autosave.php:
|
6038 |
msgid "Video"
|
6039 |
msgstr "Vidéo"
|
6040 |
|
6041 |
-
#: wppa-photo-admin-autosave.php:2403 wppa-settings-autosave.php:
|
6042 |
msgid "Audio"
|
6043 |
msgstr "Audio"
|
6044 |
|
@@ -6051,7 +6045,7 @@ msgid "The album is empty."
|
|
6051 |
msgstr "Cet album est vide."
|
6052 |
|
6053 |
#: wppa-photo-admin-autosave.php:2475 wppa-photo-admin-autosave.php:2496
|
6054 |
-
#: wppa-settings-autosave.php:
|
6055 |
msgid "Required"
|
6056 |
msgstr "requis"
|
6057 |
|
@@ -6067,7 +6061,7 @@ msgstr "Mot"
|
|
6067 |
msgid "Count"
|
6068 |
msgstr "Compteur"
|
6069 |
|
6070 |
-
#: wppa-photo-admin-autosave.php:2614 wppa-settings-autosave.php:
|
6071 |
msgid "Tags"
|
6072 |
msgstr "Tags"
|
6073 |
|
@@ -6080,7 +6074,7 @@ msgstr "Envoyer"
|
|
6080 |
msgid "ERROR: File %s is not a valid picture file."
|
6081 |
msgstr "ERREUR: Le fichier %s n'est pas un fichier image valide."
|
6082 |
|
6083 |
-
#: wppa-photo-files.php:
|
6084 |
msgid "ERROR: Resized or copied image could not be created."
|
6085 |
msgstr "ERREUR: L'image copiée ou redimensionnée ne peut être créée."
|
6086 |
|
@@ -6095,28 +6089,28 @@ msgstr ""
|
|
6095 |
"nécessaire."
|
6096 |
|
6097 |
#: wppa-potd-admin.php:73 wppa-potd-admin.php:360
|
6098 |
-
#: wppa-settings-autosave.php:
|
6099 |
-
#: wppa-settings-autosave.php:
|
6100 |
-
#: wppa-settings-autosave.php:
|
6101 |
-
#: wppa-settings-autosave.php:
|
6102 |
-
#: wppa-settings-autosave.php:
|
6103 |
-
#: wppa-settings-autosave.php:
|
6104 |
msgid "Setting"
|
6105 |
msgstr "Réglages"
|
6106 |
|
6107 |
#: wppa-potd-admin.php:74 wppa-potd-admin.php:361
|
6108 |
-
#: wppa-settings-autosave.php:
|
6109 |
-
#: wppa-settings-autosave.php:
|
6110 |
-
#: wppa-settings-autosave.php:
|
6111 |
-
#: wppa-settings-autosave.php:
|
6112 |
-
#: wppa-settings-autosave.php:
|
6113 |
-
#: wppa-settings-autosave.php:
|
6114 |
-
#: wppa-settings-autosave.php:
|
6115 |
-
#: wppa-settings-autosave.php:
|
6116 |
-
#: wppa-settings-autosave.php:
|
6117 |
-
#: wppa-settings-autosave.php:
|
6118 |
-
#: wppa-settings-autosave.php:
|
6119 |
-
#: wppa-settings-autosave.php:
|
6120 |
msgid "Help"
|
6121 |
msgstr "Aide"
|
6122 |
|
@@ -6146,9 +6140,9 @@ msgstr ""
|
|
6146 |
"Saisissez la largeur d'affichage souhaitée de la photo dans la barre "
|
6147 |
"latérale."
|
6148 |
|
6149 |
-
#: wppa-potd-admin.php:93 wppa-settings-autosave.php:
|
6150 |
-
#: wppa-settings-autosave.php:
|
6151 |
-
#: wppa-settings-autosave.php:
|
6152 |
msgid "pixels wide"
|
6153 |
msgstr "pixels en largeur"
|
6154 |
|
@@ -6161,9 +6155,9 @@ msgid "Enter the desired display alignment of the photo in the sidebar."
|
|
6161 |
msgstr ""
|
6162 |
"Entrez l'alignement d'affichage souhaité de la photo dans la barre latérale."
|
6163 |
|
6164 |
-
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:
|
6165 |
-
#: wppa-settings-autosave.php:
|
6166 |
-
#: wppa-settings-autosave.php:
|
6167 |
#: wppa-tinymce-shortcodes.php:628
|
6168 |
msgid "center"
|
6169 |
msgstr "Centre"
|
@@ -6205,14 +6199,14 @@ msgstr "Afficher un compteur d'autres photos de l'album."
|
|
6205 |
msgid "The counter links to."
|
6206 |
msgstr "Le compteur des liens vers."
|
6207 |
|
6208 |
-
#: wppa-potd-admin.php:156 wppa-settings-autosave.php:
|
6209 |
-
#: wppa-settings-autosave.php:
|
6210 |
-
#: wppa-settings-autosave.php:
|
6211 |
msgid "thumbnails"
|
6212 |
msgstr "vignettes"
|
6213 |
|
6214 |
-
#: wppa-potd-admin.php:156 wppa-settings-autosave.php:
|
6215 |
-
#: wppa-settings-autosave.php:
|
6216 |
msgid "slideshow"
|
6217 |
msgstr "diaporama"
|
6218 |
|
@@ -6245,16 +6239,16 @@ msgid "Select the albums to use for the photo of the day."
|
|
6245 |
msgstr "Sélectionnez les albums à utiliser pour la photo du jour."
|
6246 |
|
6247 |
#: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
|
6248 |
-
#: wppa-potd-admin.php:707 wppa-settings-autosave.php:
|
6249 |
-
#: wppa-settings-autosave.php:
|
6250 |
-
#: wppa-settings-autosave.php:
|
6251 |
-
#: wppa-settings-autosave.php:
|
6252 |
-
#: wppa-settings-autosave.php:
|
6253 |
-
#: wppa-settings-autosave.php:
|
6254 |
-
#: wppa-settings-autosave.php:
|
6255 |
-
#: wppa-settings-autosave.php:
|
6256 |
-
#: wppa-settings-autosave.php:
|
6257 |
-
#: wppa-settings-autosave.php:
|
6258 |
msgid "Setting unmodified"
|
6259 |
msgstr "Configuration inchangée"
|
6260 |
|
@@ -6423,106 +6417,106 @@ msgstr ""
|
|
6423 |
"Il y a trop de photos dans la sélection pour pouvoir afficher une "
|
6424 |
"prévisualisation ( %d )"
|
6425 |
|
6426 |
-
#: wppa-potd-admin.php:573 wppa-settings-autosave.php:
|
6427 |
msgid "The default for this setting is:"
|
6428 |
msgstr "Le réglage par défaut pour cette option est:"
|
6429 |
|
6430 |
-
#: wppa-potd-admin.php:590 wppa-settings-autosave.php:
|
6431 |
msgid "Click for help"
|
6432 |
msgstr "Cliquer pour l'aide"
|
6433 |
|
6434 |
-
#: wppa-potd-admin.php:614 wppa-settings-autosave.php:
|
6435 |
msgid "Checked"
|
6436 |
msgstr "Coché"
|
6437 |
|
6438 |
-
#: wppa-potd-admin.php:615 wppa-settings-autosave.php:
|
6439 |
msgid "Unchecked"
|
6440 |
msgstr "Décoché"
|
6441 |
|
6442 |
-
#: wppa-potd-admin.php:616 wppa-settings-autosave.php:
|
6443 |
-
#: wppa-settings-autosave.php:
|
6444 |
-
#: wppa-settings-autosave.php:
|
6445 |
-
#: wppa-settings-autosave.php:
|
6446 |
-
#: wppa-settings-autosave.php:
|
6447 |
-
#: wppa-settings-autosave.php:
|
6448 |
-
#: wppa-settings-autosave.php:
|
6449 |
-
#: wppa-settings-autosave.php:
|
6450 |
msgid "no link at all."
|
6451 |
msgstr "pas de lien du tout."
|
6452 |
|
6453 |
-
#: wppa-potd-admin.php:617 wppa-settings-autosave.php:
|
6454 |
-
#: wppa-settings-autosave.php:
|
6455 |
-
#: wppa-settings-autosave.php:
|
6456 |
-
#: wppa-settings-autosave.php:
|
6457 |
-
#: wppa-settings-autosave.php:
|
6458 |
-
#: wppa-settings-autosave.php:
|
6459 |
-
#: wppa-settings-autosave.php:
|
6460 |
-
#: wppa-settings-autosave.php:
|
6461 |
msgid "the plain photo (file)."
|
6462 |
msgstr "la photo originale (fichier)."
|
6463 |
|
6464 |
-
#: wppa-potd-admin.php:618 wppa-settings-autosave.php:
|
6465 |
-
#: wppa-settings-autosave.php:
|
6466 |
-
#: wppa-settings-autosave.php:
|
6467 |
-
#: wppa-settings-autosave.php:
|
6468 |
-
#: wppa-settings-autosave.php:
|
6469 |
-
#: wppa-settings-autosave.php:
|
6470 |
-
#: wppa-settings-autosave.php:
|
6471 |
msgid "the full size photo in a slideshow."
|
6472 |
msgstr "la photo pleine grandeur dans un diaporama."
|
6473 |
|
6474 |
-
#: wppa-potd-admin.php:619 wppa-settings-autosave.php:
|
6475 |
-
#: wppa-settings-autosave.php:
|
6476 |
-
#: wppa-settings-autosave.php:
|
6477 |
-
#: wppa-settings-autosave.php:
|
6478 |
-
#: wppa-settings-autosave.php:
|
6479 |
-
#: wppa-settings-autosave.php:
|
6480 |
-
#: wppa-settings-autosave.php:
|
6481 |
msgid "the fullsize photo on its own."
|
6482 |
msgstr "la photo pleine grandeur à lui seul."
|
6483 |
|
6484 |
-
#: wppa-potd-admin.php:620 wppa-settings-autosave.php:
|
6485 |
msgid "the photo specific link."
|
6486 |
msgstr "le lien spécifique de la photo."
|
6487 |
|
6488 |
-
#: wppa-potd-admin.php:621 wppa-settings-autosave.php:
|
6489 |
-
#: wppa-settings-autosave.php:
|
6490 |
-
#: wppa-settings-autosave.php:
|
6491 |
-
#: wppa-settings-autosave.php:
|
6492 |
msgid "the content of the album."
|
6493 |
msgstr "le contenu de l'album."
|
6494 |
|
6495 |
-
#: wppa-potd-admin.php:622 wppa-settings-autosave.php:
|
6496 |
-
#: wppa-settings-autosave.php:
|
6497 |
msgid "defined at widget activation."
|
6498 |
msgstr "défini à l'activation du widget."
|
6499 |
|
6500 |
-
#: wppa-potd-admin.php:623 wppa-settings-autosave.php:
|
6501 |
-
#: wppa-settings-autosave.php:
|
6502 |
msgid "defined on widget admin page."
|
6503 |
msgstr "réglages sur la page d'admin des widgets."
|
6504 |
|
6505 |
-
#: wppa-potd-admin.php:624 wppa-settings-autosave.php:
|
6506 |
-
#: wppa-settings-autosave.php:
|
6507 |
msgid "same as title."
|
6508 |
msgstr "identique au titre."
|
6509 |
|
6510 |
#: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
|
6511 |
-
#: wppa-settings-autosave.php:
|
6512 |
-
#: wppa-settings-autosave.php:
|
6513 |
-
#: wppa-settings-autosave.php:
|
6514 |
-
#: wppa-settings-autosave.php:
|
6515 |
-
#: wppa-settings-autosave.php:
|
6516 |
msgid "Slug ="
|
6517 |
msgstr "Slug ="
|
6518 |
|
6519 |
-
#: wppa-potd-admin.php:636 wppa-settings-autosave.php:
|
6520 |
-
#: wppa-settings-autosave.php:
|
6521 |
-
#: wppa-settings-autosave.php:
|
6522 |
msgid "Values = yes, no"
|
6523 |
msgstr "Valeurs=oui,non"
|
6524 |
|
6525 |
-
#: wppa-potd-admin.php:680 wppa-settings-autosave.php:
|
6526 |
msgid "Values = "
|
6527 |
msgstr "Values = "
|
6528 |
|
@@ -6603,7 +6597,7 @@ msgstr ""
|
|
6603 |
msgid "Enable subsearch"
|
6604 |
msgstr "Activer subsearch"
|
6605 |
|
6606 |
-
#: wppa-search-widget.php:134 wppa-settings-autosave.php:
|
6607 |
msgid "Landing page"
|
6608 |
msgstr "Page de destination"
|
6609 |
|
@@ -6714,27 +6708,27 @@ msgstr "Multisite activé."
|
|
6714 |
msgid "Blogid ="
|
6715 |
msgstr "Blogid ="
|
6716 |
|
6717 |
-
#: wppa-settings-autosave.php:
|
6718 |
msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
|
6719 |
msgstr "Veuillez désactiver le greffon (plugin) <i style=\"font-size:14px;\">"
|
6720 |
|
6721 |
-
#: wppa-settings-autosave.php:
|
6722 |
msgid ". </i>This plugin will cause wppa+ to function not properly."
|
6723 |
msgstr ""
|
6724 |
". </i>Ce greffon (plugin) risque fortement d'empêcher WPPA+ de fonctionner "
|
6725 |
"correctement."
|
6726 |
|
6727 |
-
#: wppa-settings-autosave.php:
|
6728 |
msgid "Please note that plugin <i style=\"font-size:14px;\">"
|
6729 |
msgstr "Veuillez noter que ce greffon (plugin) <i style=\"font-size:14px;\">"
|
6730 |
|
6731 |
-
#: wppa-settings-autosave.php:
|
6732 |
msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
|
6733 |
msgstr ""
|
6734 |
"</i> peut provoquer de sérieux dysfonctionnements de WPPA+ si mal il est mal "
|
6735 |
"configuré."
|
6736 |
|
6737 |
-
#: wppa-settings-autosave.php:
|
6738 |
msgid ""
|
6739 |
"There is a serious misconfiguration in your servers PHP config. Function "
|
6740 |
"wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
|
@@ -6748,50 +6742,50 @@ msgstr ""
|
|
6748 |
"fournisseur d’hébergement pour ajouter le support de GD avec une version "
|
6749 |
"minimale de 1.8."
|
6750 |
|
6751 |
-
#: wppa-settings-autosave.php:
|
6752 |
msgid "Rebuilding the Album index needs completion. See Table VIII"
|
6753 |
msgstr ""
|
6754 |
"Reconstruire l'index des albums nécessite une finalisation. Voir table VIII"
|
6755 |
|
6756 |
-
#: wppa-settings-autosave.php:
|
6757 |
msgid "Rebuilding the Photo index needs completion. See Table VIII"
|
6758 |
msgstr ""
|
6759 |
"Reconstruire l'index des photos nécessite une finalisation. Voir table VIII"
|
6760 |
|
6761 |
-
#: wppa-settings-autosave.php:
|
6762 |
msgid "Remove empty albums needs completion. See Table VIII"
|
6763 |
msgstr "Retirer les albums vides nécessite une finalisation. Voir table VIII"
|
6764 |
|
6765 |
-
#: wppa-settings-autosave.php:
|
6766 |
msgid "Applying new photo description needs completion. See Table VIII"
|
6767 |
msgstr ""
|
6768 |
"Appliquer la nouvelle description de photo nécessite une finalisation. Voir "
|
6769 |
"table VIII"
|
6770 |
|
6771 |
-
#: wppa-settings-autosave.php:
|
6772 |
msgid "Appending to photo description needs completion. See Table VIII"
|
6773 |
msgstr ""
|
6774 |
"Ajouter à la description de photo nécessite une finalisation. Voir table VIII"
|
6775 |
|
6776 |
-
#: wppa-settings-autosave.php:
|
6777 |
msgid "Removing from photo description needs completion. See Table VIII"
|
6778 |
msgstr ""
|
6779 |
"Retirer de la description photo nécessite une finalisation. Voir table VIII"
|
6780 |
|
6781 |
-
#: wppa-settings-autosave.php:
|
6782 |
msgid "Removing file extensions needs completion. See Table VIII"
|
6783 |
msgstr ""
|
6784 |
"Retirer les extensions de fichier nécessite une finalisation. Voir table VIII"
|
6785 |
|
6786 |
-
#: wppa-settings-autosave.php:
|
6787 |
msgid "Regenerating the Thumbnails needs completion. See Table VIII"
|
6788 |
msgstr "Régénérer les vignettes nécessite une finalisation. Voir table VIII"
|
6789 |
|
6790 |
-
#: wppa-settings-autosave.php:
|
6791 |
msgid "Rerating needs completion. See Table VIII"
|
6792 |
msgstr "Le recalcul des notes nécessite une finalisation. Voir table VIII"
|
6793 |
|
6794 |
-
#: wppa-settings-autosave.php:
|
6795 |
msgid ""
|
6796 |
"A thumbframe width or height should not be smaller than a thumbnail size. "
|
6797 |
"Please correct the corresponding setting(s) in Table I-C"
|
@@ -6800,162 +6794,166 @@ msgstr ""
|
|
6800 |
"de la vignette. Veuillez corriger le(s) réglage(s) correspondants dans la "
|
6801 |
"table I-C"
|
6802 |
|
6803 |
-
#: wppa-settings-autosave.php:
|
6804 |
msgid "Show legenda"
|
6805 |
msgstr "Montrer la légende"
|
6806 |
|
6807 |
-
#: wppa-settings-autosave.php:
|
6808 |
msgid "Legenda:"
|
6809 |
msgstr "Légende:"
|
6810 |
|
6811 |
-
#: wppa-settings-autosave.php:
|
6812 |
-
#: wppa-settings-autosave.php:
|
6813 |
msgid "Button"
|
6814 |
msgstr "Bouton"
|
6815 |
|
6816 |
-
#: wppa-settings-autosave.php:
|
6817 |
msgid "action that causes page reload."
|
6818 |
msgstr "action qui provoque le rechargement de la page."
|
6819 |
|
6820 |
-
#: wppa-settings-autosave.php:
|
6821 |
-
#: wppa-settings-autosave.php:
|
6822 |
msgid "Are you sure?"
|
6823 |
msgstr "Êtes-vous sûr ?"
|
6824 |
|
6825 |
-
#: wppa-settings-autosave.php:
|
6826 |
msgid "action that does not cause page reload."
|
6827 |
msgstr "action qui ne provoque pas le rechargement de la page."
|
6828 |
|
6829 |
-
#: wppa-settings-autosave.php:
|
6830 |
msgid "Update in progress"
|
6831 |
msgstr "Mise à jour en cours"
|
6832 |
|
6833 |
-
#: wppa-settings-autosave.php:
|
6834 |
msgid "Setting updated"
|
6835 |
msgstr "Réglages mis à jour"
|
6836 |
|
6837 |
-
#: wppa-settings-autosave.php:
|
6838 |
msgid "Update failed"
|
6839 |
msgstr "Mise à jour échouée"
|
6840 |
|
6841 |
-
#: wppa-settings-autosave.php:
|
6842 |
msgid "Hide this"
|
6843 |
msgstr "Cacher"
|
6844 |
|
6845 |
-
#: wppa-settings-autosave.php:
|
6846 |
msgid "System"
|
6847 |
msgstr "Système"
|
6848 |
|
6849 |
-
#: wppa-settings-autosave.php:
|
6850 |
msgid "Access"
|
6851 |
msgstr "Accès"
|
6852 |
|
6853 |
-
#: wppa-settings-autosave.php:
|
6854 |
msgid "Counts"
|
6855 |
msgstr "Compteur"
|
6856 |
|
6857 |
-
#: wppa-settings-autosave.php:
|
6858 |
msgid "Covers"
|
6859 |
msgstr "Couvertures"
|
6860 |
|
6861 |
-
#: wppa-settings-autosave.php:
|
6862 |
msgid "Layout"
|
6863 |
msgstr "Disposition"
|
6864 |
|
6865 |
-
#: wppa-settings-autosave.php:
|
6866 |
msgid "Lightbox"
|
6867 |
msgstr "Lightbox"
|
6868 |
|
6869 |
-
#: wppa-settings-autosave.php:
|
6870 |
msgid "Links"
|
6871 |
msgstr "Liens"
|
6872 |
|
6873 |
-
#: wppa-settings-autosave.php:
|
|
|
|
|
|
|
|
|
6874 |
msgid "Metadata"
|
6875 |
msgstr "Métadonnée"
|
6876 |
|
6877 |
-
#: wppa-settings-autosave.php:
|
6878 |
msgid "Navigation"
|
6879 |
msgstr "Navigation"
|
6880 |
|
6881 |
-
#: wppa-settings-autosave.php:
|
6882 |
-
#: wppa-settings-autosave.php:
|
6883 |
msgid "Rating"
|
6884 |
msgstr "Note"
|
6885 |
|
6886 |
-
#: wppa-settings-autosave.php:
|
6887 |
msgid "Sizes"
|
6888 |
msgstr "Tailles"
|
6889 |
|
6890 |
-
#: wppa-settings-autosave.php:
|
6891 |
msgid "Slideshows"
|
6892 |
msgstr "Diaporamas"
|
6893 |
|
6894 |
-
#: wppa-settings-autosave.php:
|
6895 |
msgid "Social Media"
|
6896 |
msgstr "Réseaux sociaux"
|
6897 |
|
6898 |
-
#: wppa-settings-autosave.php:
|
6899 |
msgid "Uploads"
|
6900 |
msgstr "Chargements"
|
6901 |
|
6902 |
-
#: wppa-settings-autosave.php:
|
6903 |
msgid "Widgets"
|
6904 |
msgstr "Widgets"
|
6905 |
|
6906 |
-
#: wppa-settings-autosave.php:
|
6907 |
msgid "Watermark"
|
6908 |
msgstr "Filigrane"
|
6909 |
|
6910 |
-
#: wppa-settings-autosave.php:
|
6911 |
msgid "Click on the banner of a (sub)table to open/close it, or"
|
6912 |
msgstr "Cliquer sur la bannière d'un (sous)table pour l'ouvrir/la fermer, ou"
|
6913 |
|
6914 |
-
#: wppa-settings-autosave.php:
|
6915 |
msgid "Show settings related to:"
|
6916 |
msgstr "Montrer les réglages associés à:"
|
6917 |
|
6918 |
-
#: wppa-settings-autosave.php:
|
6919 |
msgid "and ( optionally ) to:"
|
6920 |
msgstr "et (optionnellement) à:"
|
6921 |
|
6922 |
-
#: wppa-settings-autosave.php:
|
6923 |
msgid "Quick setup"
|
6924 |
msgstr "Config. rapide"
|
6925 |
|
6926 |
-
#: wppa-settings-autosave.php:
|
6927 |
msgid "Do a quick initial setup"
|
6928 |
msgstr "Config. rapide initiale"
|
6929 |
|
6930 |
-
#: wppa-settings-autosave.php:
|
6931 |
msgid "Close quick setup"
|
6932 |
msgstr "Fermer config. rapide"
|
6933 |
|
6934 |
-
#: wppa-settings-autosave.php:
|
6935 |
msgid "--- The same post or page ---"
|
6936 |
msgstr "--- Même article ou page ---"
|
6937 |
|
6938 |
-
#: wppa-settings-autosave.php:
|
6939 |
msgid "--- No page to link to (yet) ---"
|
6940 |
msgstr "- Pas de page à lier (pour le moment) -"
|
6941 |
|
6942 |
-
#: wppa-settings-autosave.php:
|
6943 |
msgid "--- Will be auto created ---"
|
6944 |
msgstr "--- Sera créé automatiquement ---"
|
6945 |
|
6946 |
-
#: wppa-settings-autosave.php:
|
6947 |
msgid "Table O:"
|
6948 |
msgstr "Table O:"
|
6949 |
|
6950 |
-
#: wppa-settings-autosave.php:
|
6951 |
msgid "Quick Setup:"
|
6952 |
msgstr "Configuration rapide:"
|
6953 |
|
6954 |
-
#: wppa-settings-autosave.php:
|
6955 |
msgid "This table enables you to quickly do an inital setup."
|
6956 |
msgstr "Cette table permet de faire une configuration initiale rapide."
|
6957 |
|
6958 |
-
#: wppa-settings-autosave.php:
|
6959 |
msgid ""
|
6960 |
"To quickly setup WPPA+ please answer the following questions. You can alway "
|
6961 |
"change any setting later. <a>Click on me!</a>"
|
@@ -6964,11 +6962,11 @@ msgstr ""
|
|
6964 |
"suivantes. Vous pouvez toujours modifier n’importe quel réglage plus tard. "
|
6965 |
"<a>Cliquez sur moi !</a>"
|
6966 |
|
6967 |
-
#: wppa-settings-autosave.php:
|
6968 |
msgid "Is your theme <i>responsive</i>?"
|
6969 |
msgstr "Votre thème est-il <i>adaptatif</i>?"
|
6970 |
|
6971 |
-
#: wppa-settings-autosave.php:
|
6972 |
msgid ""
|
6973 |
"Responsive themes have a layout that varies with the size of the browser "
|
6974 |
"window."
|
@@ -6976,7 +6974,7 @@ msgstr ""
|
|
6976 |
"Les thèmes adaptatifs ont une disposition qui varie avec la taille de la "
|
6977 |
"fenêtre du navigateur."
|
6978 |
|
6979 |
-
#: wppa-settings-autosave.php:
|
6980 |
msgid ""
|
6981 |
"WPPA+ needs to know this to automaticly adept the width of the display to "
|
6982 |
"the available width on the page."
|
@@ -6984,11 +6982,11 @@ msgstr ""
|
|
6984 |
"WPPA+ a besoin de cette information pour adapter la largeur de l'affichage a "
|
6985 |
"celle de la page."
|
6986 |
|
6987 |
-
#: wppa-settings-autosave.php:
|
6988 |
msgid "Do you want to downsize photos during upload?"
|
6989 |
msgstr "Voulez vous réduire la taille des photos pendant le chargement?"
|
6990 |
|
6991 |
-
#: wppa-settings-autosave.php:
|
6992 |
msgid ""
|
6993 |
"Downsizing photos make them load faster to the visitor, without loosing "
|
6994 |
"display quality"
|
@@ -6996,7 +6994,7 @@ msgstr ""
|
|
6996 |
"Réduire la taille des photos rend leur affichage plus rapide, sans perte de "
|
6997 |
"qualité de rendu"
|
6998 |
|
6999 |
-
#: wppa-settings-autosave.php:
|
7000 |
msgid ""
|
7001 |
"If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
|
7002 |
"You can change this later, if you like"
|
@@ -7004,15 +7002,15 @@ msgstr ""
|
|
7004 |
"Si vous répondez oui, les photos seront redimensionnées au max à 1024x768 "
|
7005 |
"pixels. Vous pourrez changer cela plus tard, si vous voulez"
|
7006 |
|
7007 |
-
#: wppa-settings-autosave.php:
|
7008 |
msgid "Do you want to save the original photofiles?"
|
7009 |
msgstr "Êtes-vous sûr de vouloir sauvegarder les photos originales?"
|
7010 |
|
7011 |
-
#: wppa-settings-autosave.php:
|
7012 |
msgid "This will require considerable disk space on the server."
|
7013 |
msgstr "Ceci va demander un espace disque important sur le serveur."
|
7014 |
|
7015 |
-
#: wppa-settings-autosave.php:
|
7016 |
msgid ""
|
7017 |
"If you answer yes, you will be able to remove watermarks you applied with "
|
7018 |
"wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
|
@@ -7023,18 +7021,18 @@ msgstr ""
|
|
7023 |
"taille supérieure après coup, et fournir des images téléchargeables en "
|
7024 |
"pleine taille."
|
7025 |
|
7026 |
-
#: wppa-settings-autosave.php:
|
7027 |
msgid "May visitors upload photos?"
|
7028 |
msgstr "Les visiteurs peuvent-ils charger des photos?"
|
7029 |
|
7030 |
-
#: wppa-settings-autosave.php:
|
7031 |
msgid ""
|
7032 |
"It is safe to do so, but i will have to do some settings to keep it safe!"
|
7033 |
msgstr ""
|
7034 |
"Faire de cette manière est sûr, mais Je vais devoir faire certains réglages "
|
7035 |
"pour que cela soit ok!"
|
7036 |
|
7037 |
-
#: wppa-settings-autosave.php:
|
7038 |
msgid ""
|
7039 |
"If you answer yes, i will assume you want to enable logged in users to "
|
7040 |
"upload photos at the front-end of the website and allow them to edit their "
|
@@ -7044,14 +7042,14 @@ msgstr ""
|
|
7044 |
"connectés à charger des photos via le site et à modifier le nom et la "
|
7045 |
"description de leurs photos."
|
7046 |
|
7047 |
-
#: wppa-settings-autosave.php:
|
7048 |
msgid ""
|
7049 |
"The photos will be hold for moderation, the admin will get notified by email."
|
7050 |
msgstr ""
|
7051 |
"Les photos seront mises en attente de libération, l'administrateur sera "
|
7052 |
"notifié par mail."
|
7053 |
|
7054 |
-
#: wppa-settings-autosave.php:
|
7055 |
msgid ""
|
7056 |
"Each user will get his own album to upload to. These settings can be changed "
|
7057 |
"later."
|
@@ -7059,42 +7057,42 @@ msgstr ""
|
|
7059 |
"Chaque utilisateur aura son propre album à compléter. Ces réglages peuvent "
|
7060 |
"être modifiés après coup."
|
7061 |
|
7062 |
-
#: wppa-settings-autosave.php:
|
7063 |
msgid "Do you want the rating system active?"
|
7064 |
msgstr "Voulez vous que le système de notation soit activé?"
|
7065 |
|
7066 |
-
#: wppa-settings-autosave.php:
|
7067 |
msgid "Enable the rating system and show the votes in the slideshow."
|
7068 |
msgstr "Activer le système de notation et montrer les votes dans le diaporama."
|
7069 |
|
7070 |
-
#: wppa-settings-autosave.php:
|
7071 |
msgid "You can configure the details of the rating system later"
|
7072 |
msgstr "Vous pouvez configurer les détails du système de notation plus tard."
|
7073 |
|
7074 |
-
#: wppa-settings-autosave.php:
|
7075 |
msgid "Do you want the comment system active?"
|
7076 |
msgstr "Voulez vous que le système de commentaire soit activé?"
|
7077 |
|
7078 |
-
#: wppa-settings-autosave.php:
|
7079 |
msgid "Enable the comment system and show the comments in the slideshow."
|
7080 |
msgstr ""
|
7081 |
"Activer le système de commentaire et montrer les commentaires dans le "
|
7082 |
"diaporama."
|
7083 |
|
7084 |
-
#: wppa-settings-autosave.php:
|
7085 |
msgid "You can configure the details of the comment system later"
|
7086 |
msgstr "Vous pouvez configurer les détails du système de commentaire plus tard"
|
7087 |
|
7088 |
-
#: wppa-settings-autosave.php:
|
7089 |
msgid "Do you want the social media share buttons displayed?"
|
7090 |
msgstr ""
|
7091 |
"Voulez vous que le bouton de partage sur les réseaux sociaux soit affiché?"
|
7092 |
|
7093 |
-
#: wppa-settings-autosave.php:
|
7094 |
msgid "Display the social media buttons in the slideshow"
|
7095 |
msgstr "Afficher les boutons de réseaux sociaux dans le diaporama"
|
7096 |
|
7097 |
-
#: wppa-settings-autosave.php:
|
7098 |
msgid ""
|
7099 |
"These buttons share the specific photo rather than the page where it is "
|
7100 |
"displayed on"
|
@@ -7102,29 +7100,29 @@ msgstr ""
|
|
7102 |
"Ces boutons partagent une photo spécifique plutôt que la page où celle ci "
|
7103 |
"est affichée"
|
7104 |
|
7105 |
-
#: wppa-settings-autosave.php:
|
7106 |
msgid "Are you going to use IPTC data?"
|
7107 |
msgstr "Voulez vous utiliser les données IPTC ?"
|
7108 |
|
7109 |
-
#: wppa-settings-autosave.php:
|
7110 |
msgid ""
|
7111 |
"IPTC data is information you may have added in a photo manipulation program."
|
7112 |
msgstr ""
|
7113 |
"Les données IPTC sont les informations que vous avez éventuellement ajoutées "
|
7114 |
"dans un programme de retouche d'image."
|
7115 |
|
7116 |
-
#: wppa-settings-autosave.php:
|
7117 |
msgid ""
|
7118 |
"The information can be displayed in slideshows and in photo descriptions."
|
7119 |
msgstr ""
|
7120 |
"Cette information peut être affichée dans les diaporama et dans la "
|
7121 |
"description des photos."
|
7122 |
|
7123 |
-
#: wppa-settings-autosave.php:
|
7124 |
msgid "Are you going to use EXIF data?"
|
7125 |
msgstr "Voulez vous utiliser les données EXIF ?"
|
7126 |
|
7127 |
-
#: wppa-settings-autosave.php:
|
7128 |
msgid ""
|
7129 |
"EXIF data is information from the camera like model no, focal distance and "
|
7130 |
"aperture used."
|
@@ -7133,11 +7131,11 @@ msgstr ""
|
|
7133 |
"numérique. Par exemple le numéro de modèle, la focale et l'ouverture "
|
7134 |
"utilisées."
|
7135 |
|
7136 |
-
#: wppa-settings-autosave.php:
|
7137 |
msgid "Are you going to use GPX data?"
|
7138 |
msgstr "Voulez vous utiliser les données GPX ?"
|
7139 |
|
7140 |
-
#: wppa-settings-autosave.php:
|
7141 |
msgid ""
|
7142 |
"Some cameras and mobile devices save the geographic location where the photo "
|
7143 |
"is taken."
|
@@ -7145,15 +7143,15 @@ msgstr ""
|
|
7145 |
"Certains appareils enregistrent la position géographique lors de la prise de "
|
7146 |
"la photo."
|
7147 |
|
7148 |
-
#: wppa-settings-autosave.php:
|
7149 |
msgid "A Google map can be displayed in slideshows."
|
7150 |
msgstr "Une carte Google peut être affichée dans les diaporamas."
|
7151 |
|
7152 |
-
#: wppa-settings-autosave.php:
|
7153 |
msgid "Are you going to use Fotomoto?"
|
7154 |
msgstr "Voulez vous utiliser Fotomoto?"
|
7155 |
|
7156 |
-
#: wppa-settings-autosave.php:
|
7157 |
msgid ""
|
7158 |
"<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
|
7159 |
"on-line print service."
|
@@ -7161,50 +7159,50 @@ msgstr ""
|
|
7161 |
"<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> est un "
|
7162 |
"service d'impression en ligne."
|
7163 |
|
7164 |
-
#: wppa-settings-autosave.php:
|
7165 |
msgid "If you answer Yes, you will have to open an account on Fotomoto."
|
7166 |
msgstr ""
|
7167 |
"Si vous répondez oui, vous devrez créer un compte sur le site web de "
|
7168 |
"Fotomoto."
|
7169 |
|
7170 |
-
#: wppa-settings-autosave.php:
|
7171 |
msgid "Are you going to add videofiles?"
|
7172 |
msgstr "Allez vous charger des fichiers vidéo?"
|
7173 |
|
7174 |
-
#: wppa-settings-autosave.php:
|
7175 |
msgid "You can mix videos and photos in any album."
|
7176 |
msgstr "Vous pouvez mélanger des photos et des vidéos dans les albums."
|
7177 |
|
7178 |
-
#: wppa-settings-autosave.php:
|
7179 |
-
#: wppa-settings-autosave.php:
|
7180 |
msgid "You can configure the details later"
|
7181 |
msgstr "Vous pouvez configurer les détails plus tard"
|
7182 |
|
7183 |
-
#: wppa-settings-autosave.php:
|
7184 |
msgid "Are you going to add audiofiles?"
|
7185 |
msgstr "Allez vous charger des fichiers audio?"
|
7186 |
|
7187 |
-
#: wppa-settings-autosave.php:
|
7188 |
msgid "You can add audio to photos in any album."
|
7189 |
msgstr "Vous pouvez ajouter de l'audio aux photos dans les albums."
|
7190 |
|
7191 |
-
#: wppa-settings-autosave.php:
|
7192 |
msgid "Are you going to upload 3D stereo photos?"
|
7193 |
msgstr "Allez vous charger des photo en 3D stéréo?"
|
7194 |
|
7195 |
-
#: wppa-settings-autosave.php:
|
7196 |
msgid "You can add l-r and r-l stereo photo pairs."
|
7197 |
msgstr "Vous pouvez ajouter des paires de photos stéréo g-d et d-g."
|
7198 |
|
7199 |
-
#: wppa-settings-autosave.php:
|
7200 |
msgid "Done?"
|
7201 |
msgstr "Fait?"
|
7202 |
|
7203 |
-
#: wppa-settings-autosave.php:
|
7204 |
msgid "If you are ready answering these questions, select <b>yes</b>"
|
7205 |
msgstr "Si vous êtes prêt(e) répondre à ces questions, choisissez <b>oui</b>"
|
7206 |
|
7207 |
-
#: wppa-settings-autosave.php:
|
7208 |
msgid ""
|
7209 |
"You can change any setting later, and be more specific and add a lot of "
|
7210 |
"settings. For now it is enough, go create albums and upload photos!"
|
@@ -7213,7 +7211,7 @@ msgstr ""
|
|
7213 |
"de nombreuses options. Pour le moment, c'est suffisant, aller créer des "
|
7214 |
"albums et charger des photos!"
|
7215 |
|
7216 |
-
#: wppa-settings-autosave.php:
|
7217 |
msgid ""
|
7218 |
"Thank you!. The most important settings are done now. You can refine your "
|
7219 |
"settings, the behaviour and appearance of WPPA+ in the Tables below."
|
@@ -7222,15 +7220,15 @@ msgstr ""
|
|
7222 |
"affiner vos réglages, le comportement et l'apparence de WPPA+ dans les "
|
7223 |
"tables ci dessous."
|
7224 |
|
7225 |
-
#: wppa-settings-autosave.php:
|
7226 |
msgid "Table I:"
|
7227 |
msgstr "Table I:"
|
7228 |
|
7229 |
-
#: wppa-settings-autosave.php:
|
7230 |
msgid "Sizes:"
|
7231 |
msgstr "Tailles:"
|
7232 |
|
7233 |
-
#: wppa-settings-autosave.php:
|
7234 |
msgid ""
|
7235 |
"This table describes all the sizes and size options (except fontsizes) for "
|
7236 |
"the generation and display of the WPPA+ elements."
|
@@ -7239,26 +7237,26 @@ msgstr ""
|
|
7239 |
"(excepté les tailles de police) pour la génération et affichage des élément "
|
7240 |
"de WPPA+."
|
7241 |
|
7242 |
-
#: wppa-settings-autosave.php:
|
7243 |
msgid "WPPA+ global system related size settings"
|
7244 |
msgstr "Réglages systèmes globaux de WPPA+ liés aux tailles"
|
7245 |
|
7246 |
-
#: wppa-settings-autosave.php:
|
7247 |
msgid "Column Width"
|
7248 |
msgstr "Largeur de colonne"
|
7249 |
|
7250 |
-
#: wppa-settings-autosave.php:
|
7251 |
msgid "The width of the main column in your theme's display area."
|
7252 |
msgstr ""
|
7253 |
"La largeur de la colonne principale dans la zone d’affichage de votre thème."
|
7254 |
|
7255 |
-
#: wppa-settings-autosave.php:
|
7256 |
msgid "Enter the width of the main column in your theme's display area."
|
7257 |
msgstr ""
|
7258 |
"Entrer la largeur de la colonne principale dans la zone d’affichage de votre "
|
7259 |
"thème."
|
7260 |
|
7261 |
-
#: wppa-settings-autosave.php:
|
7262 |
msgid ""
|
7263 |
"You should set this value correctly to make sure the fullsize images are "
|
7264 |
"properly aligned horizontally."
|
@@ -7266,28 +7264,28 @@ msgstr ""
|
|
7266 |
"Vous devriez régler cette valeur correctement pour vous assurer que les "
|
7267 |
"images pleine taille soient correctement alignées horizontalement."
|
7268 |
|
7269 |
-
#: wppa-settings-autosave.php:
|
7270 |
msgid ""
|
7271 |
"You may enter 'auto' for use in themes that have a floating content column."
|
7272 |
msgstr ""
|
7273 |
"Vous devriez entrer 'auto'' si vous utilisez un thème qui a une colonne avec "
|
7274 |
"contenu flottant."
|
7275 |
|
7276 |
-
#: wppa-settings-autosave.php:
|
7277 |
msgid "The use of 'auto' is required for responsive themes."
|
7278 |
msgstr ""
|
7279 |
"L'utilisation du paramètre 'auto' est requis pour les thèmes adaptatifs."
|
7280 |
|
7281 |
-
#: wppa-settings-autosave.php:
|
7282 |
msgid "Initial Width"
|
7283 |
msgstr "Largeur initiale"
|
7284 |
|
7285 |
-
#: wppa-settings-autosave.php:
|
7286 |
msgid "The most often displayed colun width in responsive theme"
|
7287 |
msgstr ""
|
7288 |
"La largeur de la colonne la plus souvent affichée dans un thème adaptatif"
|
7289 |
|
7290 |
-
#: wppa-settings-autosave.php:
|
7291 |
msgid ""
|
7292 |
"Change this value only if your responsive theme shows initially a wrong "
|
7293 |
"column width."
|
@@ -7295,16 +7293,16 @@ msgstr ""
|
|
7295 |
"Changer cette valeur uniquement si votre thème adaptatif affiche "
|
7296 |
"initialement une largeur de colonne incorrecte."
|
7297 |
|
7298 |
-
#: wppa-settings-autosave.php:
|
7299 |
msgid "Resize on Upload"
|
7300 |
msgstr "Redimensionner au chargement"
|
7301 |
|
7302 |
-
#: wppa-settings-autosave.php:
|
7303 |
msgid "Indicate if the photos should be resized during upload."
|
7304 |
msgstr ""
|
7305 |
"Indiquez si les photos doivent être redimensionnées lors du chargement."
|
7306 |
|
7307 |
-
#: wppa-settings-autosave.php:
|
7308 |
msgid ""
|
7309 |
"If you check this item, the size of the photos will be reduced to the "
|
7310 |
"dimension specified in the next item during the upload/import process."
|
@@ -7312,25 +7310,25 @@ msgstr ""
|
|
7312 |
"Si vous cochez cet item, la taille des photos sera réduite aux dimensions "
|
7313 |
"spécifiées dans l'item suivant pendant le processus de chargement/import."
|
7314 |
|
7315 |
-
#: wppa-settings-autosave.php:
|
7316 |
msgid "The photos will never be stretched during upload if they are smaller."
|
7317 |
msgstr ""
|
7318 |
"Les photos ne seront jamais étirées pendant le chargement si elles ont plus "
|
7319 |
"petites."
|
7320 |
|
7321 |
-
#: wppa-settings-autosave.php:
|
7322 |
msgid "Resize to"
|
7323 |
msgstr "Redimensionner à"
|
7324 |
|
7325 |
-
#: wppa-settings-autosave.php:
|
7326 |
msgid "Resize photos to fit within a given area."
|
7327 |
msgstr "Redimensionner les photos pour s'adapter à unr zone donnée."
|
7328 |
|
7329 |
-
#: wppa-settings-autosave.php:
|
7330 |
msgid "Specify the screensize for the unscaled photos."
|
7331 |
msgstr "Spécifier la taille écran pour les photos non mises à l'échelle."
|
7332 |
|
7333 |
-
#: wppa-settings-autosave.php:
|
7334 |
msgid ""
|
7335 |
"The use of a non-default value is particularly usefull when you make use of "
|
7336 |
"lightbox functionality."
|
@@ -7338,47 +7336,47 @@ msgstr ""
|
|
7338 |
"L'utilisation de valeurs personnalisées est préférable lorsque vous utilisez "
|
7339 |
"la fonctionnalité Lightbox."
|
7340 |
|
7341 |
-
#: wppa-settings-autosave.php:
|
7342 |
-
#: wppa-settings-autosave.php:
|
7343 |
-
#: wppa-settings-autosave.php:
|
7344 |
-
#: wppa-settings-autosave.php:
|
7345 |
-
#: wppa-settings-autosave.php:
|
7346 |
-
#: wppa-settings-autosave.php:
|
7347 |
-
#: wppa-settings-autosave.php:
|
7348 |
-
#: wppa-settings-autosave.php:
|
7349 |
-
#: wppa-settings-autosave.php:
|
7350 |
-
#: wppa-settings-autosave.php:
|
7351 |
-
#: wppa-settings-autosave.php:
|
7352 |
-
#: wppa-settings-autosave.php:
|
7353 |
-
#: wppa-settings-autosave.php:
|
7354 |
-
#: wppa-settings-autosave.php:
|
7355 |
-
#: wppa-settings-autosave.php:
|
7356 |
-
#: wppa-settings-autosave.php:
|
7357 |
-
#: wppa-settings-autosave.php:
|
7358 |
-
#: wppa-settings-autosave.php:
|
7359 |
-
#: wppa-settings-autosave.php:
|
7360 |
-
#: wppa-settings-autosave.php:
|
7361 |
-
#: wppa-settings-autosave.php:
|
7362 |
-
#: wppa-settings-autosave.php:
|
7363 |
-
#: wppa-settings-autosave.php:
|
7364 |
-
#: wppa-settings-autosave.php:
|
7365 |
-
#: wppa-settings-autosave.php:
|
7366 |
msgid "pixels"
|
7367 |
msgstr "pixels"
|
7368 |
|
7369 |
-
#: wppa-settings-autosave.php:
|
7370 |
msgid "Fit within rectangle as set in Table I-B1,2"
|
7371 |
msgstr "Ajuster au rectangle comme réglé dans la table I-B1,2"
|
7372 |
|
7373 |
-
#: wppa-settings-autosave.php:
|
7374 |
msgid "Photocount threshold"
|
7375 |
msgstr "Seuil de comptage photo"
|
7376 |
|
7377 |
-
#: wppa-settings-autosave.php:
|
7378 |
msgid "Number of photos in an album must exceed."
|
7379 |
msgstr "Le nombre de photos dans un album doit excéder."
|
7380 |
|
7381 |
-
#: wppa-settings-autosave.php:
|
7382 |
msgid ""
|
7383 |
"Photos do not show up in the album unless there are more than this number of "
|
7384 |
"photos in the album. This allows you to have cover photos on an album that "
|
@@ -7391,23 +7389,23 @@ msgstr ""
|
|
7391 |
"fils. Généralement réglé à 0 (toujours montrer) ou 1 (pour une photo de "
|
7392 |
"couverture)."
|
7393 |
|
7394 |
-
#: wppa-settings-autosave.php:
|
7395 |
-
#: wppa-settings-autosave.php:
|
7396 |
-
#: wppa-settings-autosave.php:
|
7397 |
-
#: wppa-settings-autosave.php:
|
7398 |
-
#: wppa-settings-autosave.php:
|
7399 |
msgid "photos"
|
7400 |
msgstr "photos"
|
7401 |
|
7402 |
-
#: wppa-settings-autosave.php:
|
7403 |
msgid "Border thickness"
|
7404 |
msgstr "Épaisseur de bordure"
|
7405 |
|
7406 |
-
#: wppa-settings-autosave.php:
|
7407 |
msgid "Thickness of wppa+ box borders."
|
7408 |
msgstr "Épaisseur de la bordure pour la boîte WPPA+"
|
7409 |
|
7410 |
-
#: wppa-settings-autosave.php:
|
7411 |
msgid ""
|
7412 |
"Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
|
7413 |
"no border."
|
@@ -7415,15 +7413,15 @@ msgstr ""
|
|
7415 |
"Entrer l'épaisseur des bordures des boîtes WPPA+. Une valeur à 0 veut dire: "
|
7416 |
"pas de bordure."
|
7417 |
|
7418 |
-
#: wppa-settings-autosave.php:
|
7419 |
msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
|
7420 |
msgstr "Les boîtes WPPA+ sont: les barres de navigation et le filmstrip."
|
7421 |
|
7422 |
-
#: wppa-settings-autosave.php:
|
7423 |
msgid "Radius of wppa+ box borders."
|
7424 |
msgstr "Rayon de la bordure pour la boîte WPPA+"
|
7425 |
|
7426 |
-
#: wppa-settings-autosave.php:
|
7427 |
msgid ""
|
7428 |
"Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
|
7429 |
"means: no rounded corners."
|
@@ -7431,25 +7429,25 @@ msgstr ""
|
|
7431 |
"Entrer le rayon de l'arrondi de bordure des boîtes WPPA+. Une valeur à 0 "
|
7432 |
"veut dire: pas de coins arrondis."
|
7433 |
|
7434 |
-
#: wppa-settings-autosave.php:
|
7435 |
msgid "Note that rounded corners are only supported by modern browsers."
|
7436 |
msgstr ""
|
7437 |
"Noter que les coins arrondis sont seulement supportés dans les navigateurs "
|
7438 |
"modernes."
|
7439 |
|
7440 |
-
#: wppa-settings-autosave.php:
|
7441 |
msgid "Distance between wppa+ boxes."
|
7442 |
msgstr "Distance entre les boîtes WPPA+"
|
7443 |
|
7444 |
-
#: wppa-settings-autosave.php:
|
7445 |
msgid "Related count"
|
7446 |
msgstr "Comptage lié"
|
7447 |
|
7448 |
-
#: wppa-settings-autosave.php:
|
7449 |
msgid "The default maximum number of related photos to find."
|
7450 |
msgstr "La valeur par défaut du nombre max de photos concernées à trouver."
|
7451 |
|
7452 |
-
#: wppa-settings-autosave.php:
|
7453 |
msgid ""
|
7454 |
"When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
|
7455 |
"wppa], the maximum number is 23. Omitting the number gives the maximum of "
|
@@ -7459,82 +7457,82 @@ msgstr ""
|
|
7459 |
"\"#related,desc,23\"][/wppa], le nombre maximum autorisé est 23. Omettre le "
|
7460 |
"nombre règle la valeur au maximum."
|
7461 |
|
7462 |
-
#: wppa-settings-autosave.php:
|
7463 |
msgid "The maximum number of pagelinks to be displayed."
|
7464 |
msgstr "Le nombre maximum de liens de page pouvant être affichés."
|
7465 |
|
7466 |
-
#: wppa-settings-autosave.php:
|
7467 |
msgid "pages"
|
7468 |
msgstr "pages"
|
7469 |
|
7470 |
-
#: wppa-settings-autosave.php:
|
7471 |
msgid "Max file name length"
|
7472 |
msgstr "Longueur max. du nom de fichier"
|
7473 |
|
7474 |
-
#: wppa-settings-autosave.php:
|
7475 |
msgid "The max length of a photo file name excluding the extension."
|
7476 |
msgstr ""
|
7477 |
"La longueur maximum d'un nom de fichier photo (sans excluant l'extension)."
|
7478 |
|
7479 |
-
#: wppa-settings-autosave.php:
|
7480 |
msgid "A setting of 0 means: unlimited."
|
7481 |
msgstr "Réglage à 0 veut dire: pas de limite."
|
7482 |
|
7483 |
-
#: wppa-settings-autosave.php:
|
7484 |
msgid "chars"
|
7485 |
msgstr "caractères"
|
7486 |
|
7487 |
-
#: wppa-settings-autosave.php:
|
7488 |
msgid "Max photo name length"
|
7489 |
msgstr "Longueur max. du nom de photo"
|
7490 |
|
7491 |
-
#: wppa-settings-autosave.php:
|
7492 |
msgid "The max length of a photo name."
|
7493 |
msgstr "La longueur maximum d'un nom de photo."
|
7494 |
|
7495 |
-
#: wppa-settings-autosave.php:
|
7496 |
msgid "The height of your sticky header."
|
7497 |
msgstr "La hauteur de votre tête de collant."
|
7498 |
|
7499 |
-
#: wppa-settings-autosave.php:
|
7500 |
msgid "If your theme has a sticky header, enter its height here."
|
7501 |
msgstr "Si votre thème a un tête de collant, entrez sa hauteur ici."
|
7502 |
|
7503 |
-
#: wppa-settings-autosave.php:
|
7504 |
msgid "Slideshow related size settings"
|
7505 |
msgstr "Réglages de taille pour le diaporama"
|
7506 |
|
7507 |
-
#: wppa-settings-autosave.php:
|
7508 |
msgid "Maximum Width"
|
7509 |
msgstr "Largeur maximum"
|
7510 |
|
7511 |
-
#: wppa-settings-autosave.php:
|
7512 |
msgid "The maximum width photos will be displayed in slideshows."
|
7513 |
msgstr "La largeur maximum des photos affichées dans les diaporamas."
|
7514 |
|
7515 |
-
#: wppa-settings-autosave.php:
|
7516 |
msgid ""
|
7517 |
"Enter the largest size in pixels as how you want your photos to be displayed."
|
7518 |
msgstr ""
|
7519 |
"Entrez la plus grande taille en pixels que vous souhaiteriez pour "
|
7520 |
"l’affichage de vos photos. "
|
7521 |
|
7522 |
-
#: wppa-settings-autosave.php:
|
7523 |
msgid ""
|
7524 |
"This is usually the same as the Column Width (Table I-A1), but it may differ."
|
7525 |
msgstr ""
|
7526 |
"C'est généralement la même que la largeur de colonne (Table I-A1), mais cela "
|
7527 |
"peut varier."
|
7528 |
|
7529 |
-
#: wppa-settings-autosave.php:
|
7530 |
msgid "Maximum Height"
|
7531 |
msgstr "Hauteur maximum"
|
7532 |
|
7533 |
-
#: wppa-settings-autosave.php:
|
7534 |
msgid "The maximum height photos will be displayed in slideshows."
|
7535 |
msgstr "La hauteur maximum des photos affichées dans les diaporamas."
|
7536 |
|
7537 |
-
#: wppa-settings-autosave.php:
|
7538 |
msgid ""
|
7539 |
"This setting defines the height of the space reserved for photos in "
|
7540 |
"slideshows."
|
@@ -7542,7 +7540,7 @@ msgstr ""
|
|
7542 |
"Ces réglages définissent la hauteur de l'espace réservé pour les photos dans "
|
7543 |
"les diaporamas."
|
7544 |
|
7545 |
-
#: wppa-settings-autosave.php:
|
7546 |
msgid ""
|
7547 |
"If you change the width of a display by the size=\"..\" shortcode attribute, "
|
7548 |
"this value changes proportionally to match the aspect ratio as defined by "
|
@@ -7552,20 +7550,20 @@ msgstr ""
|
|
7552 |
"shortcode, cette valeur change proportionnellement pour correspondre au "
|
7553 |
"rapport d'aspect tel que défini par le présent et le réglage précédent."
|
7554 |
|
7555 |
-
#: wppa-settings-autosave.php:
|
7556 |
-
#: wppa-settings-autosave.php:
|
7557 |
msgid "pixels high"
|
7558 |
msgstr "pixels en hauteur"
|
7559 |
|
7560 |
-
#: wppa-settings-autosave.php:
|
7561 |
msgid "Stretch to fit"
|
7562 |
msgstr "Etirer pour adapter"
|
7563 |
|
7564 |
-
#: wppa-settings-autosave.php:
|
7565 |
msgid "Stretch photos that are too small."
|
7566 |
msgstr "Etirer les photos qui sont trop petites."
|
7567 |
|
7568 |
-
#: wppa-settings-autosave.php:
|
7569 |
msgid ""
|
7570 |
"Images will be stretched to the Maximum Size at display time if they are "
|
7571 |
"smaller. Leaving unchecked is recommended. It is better to upload photos "
|
@@ -7575,15 +7573,15 @@ msgstr ""
|
|
7575 |
"elles sont plus petites. Laisser décoché est recommandé. C'est mieux de "
|
7576 |
"charger des photos qui sont adaptées à la taille que vous utilisez!"
|
7577 |
|
7578 |
-
#: wppa-settings-autosave.php:
|
7579 |
msgid "Slideshow borderwidth"
|
7580 |
msgstr "Épaisseur de bordure du diaporama"
|
7581 |
|
7582 |
-
#: wppa-settings-autosave.php:
|
7583 |
msgid "The width of the border around slideshow images."
|
7584 |
msgstr "La largeur de la bordure autour des images du diaporama."
|
7585 |
|
7586 |
-
#: wppa-settings-autosave.php:
|
7587 |
msgid ""
|
7588 |
"The border is made by the image background being larger than the image "
|
7589 |
"itsself (padding)."
|
@@ -7591,7 +7589,7 @@ msgstr ""
|
|
7591 |
"La bordure est faite avec l'image d'arrière plan plus grande que l'image "
|
7592 |
"elle-même (padding)."
|
7593 |
|
7594 |
-
#: wppa-settings-autosave.php:
|
7595 |
msgid ""
|
7596 |
"Additionally there may be a one pixel outline of a different color. See "
|
7597 |
"Table III-A2."
|
@@ -7599,24 +7597,24 @@ msgstr ""
|
|
7599 |
"Additionnellement il peut y avoir un surlignement de un pixel d'une couleur "
|
7600 |
"différente. Voir table III-A2."
|
7601 |
|
7602 |
-
#: wppa-settings-autosave.php:
|
7603 |
msgid "The number you enter here is exclusive the one pixel outline."
|
7604 |
msgstr ""
|
7605 |
"Le nombre que vous entrez ici est exclusif au surlignement de un pixel."
|
7606 |
|
7607 |
-
#: wppa-settings-autosave.php:
|
7608 |
msgid "If you leave this entry empty, there will be no outline either."
|
7609 |
msgstr "Si vous laissez cela vide, il n'y aura aucun surlignage."
|
7610 |
|
7611 |
-
#: wppa-settings-autosave.php:
|
7612 |
msgid "Numbar Max"
|
7613 |
msgstr "Numbar Max"
|
7614 |
|
7615 |
-
#: wppa-settings-autosave.php:
|
7616 |
msgid "Maximum numbers to display."
|
7617 |
msgstr "Le nombre maximum à afficher"
|
7618 |
|
7619 |
-
#: wppa-settings-autosave.php:
|
7620 |
msgid ""
|
7621 |
"In order to attemt to fit on one line, the numbers will be replaced by dots "
|
7622 |
"- except the current - when there are more than this number of photos in a "
|
@@ -7626,27 +7624,27 @@ msgstr ""
|
|
7626 |
"- excepté celui qui est courant - quand il y a plus que ce nombre de photos "
|
7627 |
"dans un diaporama."
|
7628 |
|
7629 |
-
#: wppa-settings-autosave.php:
|
7630 |
msgid "numbers"
|
7631 |
msgstr "nombres"
|
7632 |
|
7633 |
-
#: wppa-settings-autosave.php:
|
7634 |
msgid "Share button size"
|
7635 |
msgstr "Taille du bouton de partage"
|
7636 |
|
7637 |
-
#: wppa-settings-autosave.php:
|
7638 |
msgid "The size of the social media icons in the Share box"
|
7639 |
msgstr "La taille des icônes des réseaux sociaux dans la boite de partage"
|
7640 |
|
7641 |
-
#: wppa-settings-autosave.php:
|
7642 |
msgid "Mini Treshold"
|
7643 |
msgstr "Seuil min."
|
7644 |
|
7645 |
-
#: wppa-settings-autosave.php:
|
7646 |
msgid "Show mini text at slideshow smaller then."
|
7647 |
msgstr "Montrer mini texte pendant le diaporama plus petit ensuite."
|
7648 |
|
7649 |
-
#: wppa-settings-autosave.php:
|
7650 |
msgid ""
|
7651 |
"Display Next and Prev. as opposed to Next photo and Previous photo when the "
|
7652 |
"cotainer is smaller than this size."
|
@@ -7654,39 +7652,39 @@ msgstr ""
|
|
7654 |
"Afficher Suiv. et Préc. à la place de Photo suivante et photo précédente "
|
7655 |
"quand le container est plus petit que cette taille."
|
7656 |
|
7657 |
-
#: wppa-settings-autosave.php:
|
7658 |
msgid "Special use in responsive themes."
|
7659 |
msgstr "Utilisation spéciale dans les thèmes adaptatifs."
|
7660 |
|
7661 |
-
#: wppa-settings-autosave.php:
|
7662 |
msgid "The maximum number of slides in a certain view. 0 means no pagination"
|
7663 |
msgstr ""
|
7664 |
"Le nombre maximum de diapos dans une certaine vue. 0 signifie pas de "
|
7665 |
"pagination"
|
7666 |
|
7667 |
-
#: wppa-settings-autosave.php:
|
7668 |
msgid "slides"
|
7669 |
msgstr "diapos"
|
7670 |
|
7671 |
-
#: wppa-settings-autosave.php:
|
7672 |
msgid "Filmstrip Thumbnail Size"
|
7673 |
msgstr "Filmstrip Taille des vignettes"
|
7674 |
|
7675 |
-
#: wppa-settings-autosave.php:
|
7676 |
msgid "The size of the filmstrip images."
|
7677 |
msgstr "La taille des images filmstrip."
|
7678 |
|
7679 |
-
#: wppa-settings-autosave.php:
|
7680 |
-
#: wppa-settings-autosave.php:
|
7681 |
-
#: wppa-settings-autosave.php:
|
7682 |
-
#: wppa-settings-autosave.php:
|
7683 |
msgid "This size applies to the width or height, whichever is the largest."
|
7684 |
msgstr ""
|
7685 |
"Cette taille s'applique à la largeur ou hauteur, peu importe laquelle est la "
|
7686 |
"plus grande."
|
7687 |
|
7688 |
-
#: wppa-settings-autosave.php:
|
7689 |
-
#: wppa-settings-autosave.php:
|
7690 |
msgid ""
|
7691 |
"Changing the thumbnail size may result in all thumbnails being regenerated. "
|
7692 |
"this may take a while."
|
@@ -7694,111 +7692,111 @@ msgstr ""
|
|
7694 |
"Modifier la taille des vignettes peut nécessiter qu'elles soient toutes "
|
7695 |
"régénérées. Cela peut prendre du temps."
|
7696 |
|
7697 |
-
#: wppa-settings-autosave.php:
|
7698 |
msgid "The max number of slides in a slideonly display"
|
7699 |
msgstr "Le nombre maximum des diapositives dans une présentation slideonly"
|
7700 |
|
7701 |
-
#: wppa-settings-autosave.php:
|
7702 |
msgid "Thumbnail photos related size settings"
|
7703 |
msgstr "Réglages liés à la taille des vignettes"
|
7704 |
|
7705 |
-
#: wppa-settings-autosave.php:
|
7706 |
msgid "Thumbnail Size"
|
7707 |
msgstr "Taille vignette"
|
7708 |
|
7709 |
-
#: wppa-settings-autosave.php:
|
7710 |
msgid "The size of the thumbnail images."
|
7711 |
msgstr "La taille des vignettes"
|
7712 |
|
7713 |
-
#: wppa-settings-autosave.php:
|
7714 |
msgid "Thumbnail Size Alt"
|
7715 |
msgstr "Taille vignette alt."
|
7716 |
|
7717 |
-
#: wppa-settings-autosave.php:
|
7718 |
msgid "The alternative size of the thumbnail images."
|
7719 |
msgstr "La taille alternative des vignettes"
|
7720 |
|
7721 |
-
#: wppa-settings-autosave.php:
|
7722 |
msgid "Thumbnail Aspect"
|
7723 |
msgstr "Aspect vignette"
|
7724 |
|
7725 |
-
#: wppa-settings-autosave.php:
|
7726 |
msgid "Aspect ration of thumbnail image"
|
7727 |
msgstr "Aspect ratio de la vignette"
|
7728 |
|
7729 |
-
#: wppa-settings-autosave.php:
|
7730 |
msgid "--- same as fullsize ---"
|
7731 |
msgstr "--- Identique pleine taille ---"
|
7732 |
|
7733 |
-
#: wppa-settings-autosave.php:
|
7734 |
msgid "--- square clipped ---"
|
7735 |
msgstr "--- rogné : dalle ---"
|
7736 |
|
7737 |
-
#: wppa-settings-autosave.php:
|
7738 |
msgid "4:5 landscape clipped"
|
7739 |
msgstr "rogné : paysage 4:5"
|
7740 |
|
7741 |
-
#: wppa-settings-autosave.php:
|
7742 |
msgid "3:4 landscape clipped"
|
7743 |
msgstr "rogné : paysage 3:4"
|
7744 |
|
7745 |
-
#: wppa-settings-autosave.php:
|
7746 |
msgid "2:3 landscape clipped"
|
7747 |
msgstr "rogné : paysage 2:3"
|
7748 |
|
7749 |
-
#: wppa-settings-autosave.php:
|
7750 |
msgid "9:16 landscape clipped"
|
7751 |
msgstr "rogné : paysage 9:16"
|
7752 |
|
7753 |
-
#: wppa-settings-autosave.php:
|
7754 |
msgid "1:2 landscape clipped"
|
7755 |
msgstr "rogné : paysage 1:2"
|
7756 |
|
7757 |
-
#: wppa-settings-autosave.php:
|
7758 |
msgid "--- square padded ---"
|
7759 |
msgstr "--- padded : dalle ---"
|
7760 |
|
7761 |
-
#: wppa-settings-autosave.php:
|
7762 |
msgid "4:5 landscape padded"
|
7763 |
msgstr "padded : paysage 4:5"
|
7764 |
|
7765 |
-
#: wppa-settings-autosave.php:
|
7766 |
msgid "3:4 landscape padded"
|
7767 |
msgstr "padded : paysage 3:4"
|
7768 |
|
7769 |
-
#: wppa-settings-autosave.php:
|
7770 |
msgid "2:3 landscape padded"
|
7771 |
msgstr "padded : paysage 2:3"
|
7772 |
|
7773 |
-
#: wppa-settings-autosave.php:
|
7774 |
msgid "9:16 landscape padded"
|
7775 |
msgstr "padded : paysage 9:16"
|
7776 |
|
7777 |
-
#: wppa-settings-autosave.php:
|
7778 |
msgid "1:2 landscape padded"
|
7779 |
msgstr "padded : paysage 1:2"
|
7780 |
|
7781 |
-
#: wppa-settings-autosave.php:
|
7782 |
msgid "Thumbframe width"
|
7783 |
msgstr "Largeur cadre vignettes"
|
7784 |
|
7785 |
-
#: wppa-settings-autosave.php:
|
7786 |
msgid "The width of the thumbnail frame."
|
7787 |
msgstr "La largeur du cadre des vignettes."
|
7788 |
|
7789 |
-
#: wppa-settings-autosave.php:
|
7790 |
msgid "Set the width of the thumbnail frame."
|
7791 |
msgstr "La largeur du cadre de vignettes."
|
7792 |
|
7793 |
-
#: wppa-settings-autosave.php:
|
7794 |
-
#: wppa-settings-autosave.php:
|
7795 |
-
#: wppa-settings-autosave.php:
|
7796 |
msgid "Set width, height and spacing for the thumbnail frames."
|
7797 |
msgstr "Régler largeur, hauteur et espacement pour les cadres vignettes."
|
7798 |
|
7799 |
-
#: wppa-settings-autosave.php:
|
7800 |
-
#: wppa-settings-autosave.php:
|
7801 |
-
#: wppa-settings-autosave.php:
|
7802 |
msgid ""
|
7803 |
"These sizes should be large enough for a thumbnail image and - optionally - "
|
7804 |
"the text under it."
|
@@ -7806,55 +7804,55 @@ msgstr ""
|
|
7806 |
"Ces tailles doivent être suffisamment grandes pour une vignette et - "
|
7807 |
"optionnellement - le texte en dessous."
|
7808 |
|
7809 |
-
#: wppa-settings-autosave.php:
|
7810 |
msgid "Thumbframe width Alt"
|
7811 |
msgstr "Largeur cadre vignettes alt."
|
7812 |
|
7813 |
-
#: wppa-settings-autosave.php:
|
7814 |
msgid "The width of the alternative thumbnail frame."
|
7815 |
msgstr "La largeur du cadre de vignettes alternatif."
|
7816 |
|
7817 |
-
#: wppa-settings-autosave.php:
|
7818 |
msgid "Thumbframe height"
|
7819 |
msgstr "Hauteur cadre vignettes"
|
7820 |
|
7821 |
-
#: wppa-settings-autosave.php:
|
7822 |
msgid "The height of the thumbnail frame."
|
7823 |
msgstr "La hauteur du cadre de vignettes."
|
7824 |
|
7825 |
-
#: wppa-settings-autosave.php:
|
7826 |
msgid "Set the height of the thumbnail frame."
|
7827 |
msgstr "La hauteur du cadre des vignettes."
|
7828 |
|
7829 |
-
#: wppa-settings-autosave.php:
|
7830 |
msgid "Thumbframe height Alt"
|
7831 |
msgstr "Hauteur cadre vignettes alt."
|
7832 |
|
7833 |
-
#: wppa-settings-autosave.php:
|
7834 |
msgid "The height of the alternative thumbnail frame."
|
7835 |
msgstr "La hauteur du cadre de vignettes alternatif."
|
7836 |
|
7837 |
-
#: wppa-settings-autosave.php:
|
7838 |
msgid "Thumbnail spacing"
|
7839 |
msgstr "Espacement vignettes"
|
7840 |
|
7841 |
-
#: wppa-settings-autosave.php:
|
7842 |
msgid "The spacing between adjacent thumbnail frames."
|
7843 |
msgstr "L'espacement entre des cadres de vignettes adjacents."
|
7844 |
|
7845 |
-
#: wppa-settings-autosave.php:
|
7846 |
msgid "Set the minimal spacing between the adjacent thumbnail frames"
|
7847 |
msgstr "Règle l'espacement minimal entre deux cadres de vignette"
|
7848 |
|
7849 |
-
#: wppa-settings-autosave.php:
|
7850 |
msgid "Auto spacing"
|
7851 |
msgstr "Espacement automatique"
|
7852 |
|
7853 |
-
#: wppa-settings-autosave.php:
|
7854 |
msgid "Space the thumbnail frames automatic."
|
7855 |
msgstr "Espace les cadres de vignette automatiquement."
|
7856 |
|
7857 |
-
#: wppa-settings-autosave.php:
|
7858 |
msgid ""
|
7859 |
"If you check this box, the thumbnail images will be evenly distributed over "
|
7860 |
"the available width."
|
@@ -7862,7 +7860,7 @@ msgstr ""
|
|
7862 |
"Si vous cochez cette case, les vignettes seront distribuées de façon égale "
|
7863 |
"sur la largeur disponible."
|
7864 |
|
7865 |
-
#: wppa-settings-autosave.php:
|
7866 |
msgid ""
|
7867 |
"In this case, the thumbnail spacing value (setting I-9) will be regarded as "
|
7868 |
"a minimum value."
|
@@ -7870,15 +7868,15 @@ msgstr ""
|
|
7870 |
"Dans ce cas, l'espacement des vignettes (réglage I-9) sera considéré comme "
|
7871 |
"une valeur minimum."
|
7872 |
|
7873 |
-
#: wppa-settings-autosave.php:
|
7874 |
msgid "Page size"
|
7875 |
msgstr "Taille de la page"
|
7876 |
|
7877 |
-
#: wppa-settings-autosave.php:
|
7878 |
msgid "Max number of thumbnails per page."
|
7879 |
msgstr "Nombre maximum de vignettes par page."
|
7880 |
|
7881 |
-
#: wppa-settings-autosave.php:
|
7882 |
msgid ""
|
7883 |
"Enter the maximum number of thumbnail images per page. A value of 0 "
|
7884 |
"indicates no pagination."
|
@@ -7886,11 +7884,11 @@ msgstr ""
|
|
7886 |
"Entrer le nombre maximum de vignettes par page. Une valeur de 0 indique pas "
|
7887 |
"de pagination."
|
7888 |
|
7889 |
-
#: wppa-settings-autosave.php:
|
7890 |
msgid "The size of the thumbnail popup images."
|
7891 |
msgstr "La taille du popup vignettes."
|
7892 |
|
7893 |
-
#: wppa-settings-autosave.php:
|
7894 |
msgid ""
|
7895 |
"Enter the size of the popup images. This size should be larger than the "
|
7896 |
"thumbnail size."
|
@@ -7898,11 +7896,11 @@ msgstr ""
|
|
7898 |
"Entrer la taille du popup vignettes. Cette taille doit être plus grande que "
|
7899 |
"la taille des vignettes."
|
7900 |
|
7901 |
-
#: wppa-settings-autosave.php:
|
7902 |
msgid "This size should also be at least the cover image size."
|
7903 |
msgstr "Cette taille doit aussi être au moins celle de l'image de couverture."
|
7904 |
|
7905 |
-
#: wppa-settings-autosave.php:
|
7906 |
msgid ""
|
7907 |
"Changing the popup size may result in all thumbnails being regenerated. this "
|
7908 |
"may take a while."
|
@@ -7910,7 +7908,7 @@ msgstr ""
|
|
7910 |
"Modifier la taille du popup peut entraîner la régénération de toutes les "
|
7911 |
"vignettes. Ceci peut prendre du temps."
|
7912 |
|
7913 |
-
#: wppa-settings-autosave.php:
|
7914 |
msgid ""
|
7915 |
"Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
|
7916 |
"C8) is checked,"
|
@@ -7918,7 +7916,7 @@ msgstr ""
|
|
7918 |
"Bien que ce réglage n'influe que sur le rendu visuel, si \"Popup vignette"
|
7919 |
"\" (table IV-C8) est coché,"
|
7920 |
|
7921 |
-
#: wppa-settings-autosave.php:
|
7922 |
msgid ""
|
7923 |
"the value must be right as it is the physical size of the thumbnail and "
|
7924 |
"coverphoto images."
|
@@ -7926,20 +7924,20 @@ msgstr ""
|
|
7926 |
"la valeur doit être valide car c'est la taille physique de la vignette et "
|
7927 |
"des photos de couvertures."
|
7928 |
|
7929 |
-
#: wppa-settings-autosave.php:
|
7930 |
msgid "Use thumbs if fit"
|
7931 |
msgstr "Utiliser les vignettes si adapté"
|
7932 |
|
7933 |
-
#: wppa-settings-autosave.php:
|
7934 |
msgid "Use the thumbnail image files if they are large enough."
|
7935 |
msgstr "Utiliser les fichiers de vignette si ils sont assez grands."
|
7936 |
|
7937 |
-
#: wppa-settings-autosave.php:
|
7938 |
msgid "This setting speeds up page loading for small photos."
|
7939 |
msgstr ""
|
7940 |
"Ces réglages accélèrent le chargement de la page pour de petites photos."
|
7941 |
|
7942 |
-
#: wppa-settings-autosave.php:
|
7943 |
msgid ""
|
7944 |
"Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
|
7945 |
"I-C2 is set to anything different from --- same as fullsize ---)"
|
@@ -7947,15 +7945,15 @@ msgstr ""
|
|
7947 |
"Ne PAS utiliser ceci quand vos vignettes ont un ratio forcé (quand le "
|
7948 |
"réglage table I-C2 est réglé différemment de --- même que pleine taille ---)"
|
7949 |
|
7950 |
-
#: wppa-settings-autosave.php:
|
7951 |
msgid "Album cover related size settings"
|
7952 |
msgstr "Réglages de taille concernant la couverture de l'album"
|
7953 |
|
7954 |
-
#: wppa-settings-autosave.php:
|
7955 |
msgid "Maximum width for a album cover display."
|
7956 |
msgstr "Largeur maximum pour l’affichage d'une couverture d'album."
|
7957 |
|
7958 |
-
#: wppa-settings-autosave.php:
|
7959 |
msgid ""
|
7960 |
"Display covers in 2 or more columns if the display area is wider than the "
|
7961 |
"given width."
|
@@ -7963,7 +7961,7 @@ msgstr ""
|
|
7963 |
"Affiche les couvertures en 2 colonnes ou plus si la zone d'affichage est "
|
7964 |
"plus grande que la largeur donnée."
|
7965 |
|
7966 |
-
#: wppa-settings-autosave.php:
|
7967 |
msgid ""
|
7968 |
"This also applies for 'thumbnails as covers', and will NOT apply to single "
|
7969 |
"items."
|
@@ -7971,15 +7969,15 @@ msgstr ""
|
|
7971 |
"Cela s'applique aussi à 'vignettes comme couvertures', et ne s'appliquera "
|
7972 |
"PAS à des items uniques."
|
7973 |
|
7974 |
-
#: wppa-settings-autosave.php:
|
7975 |
msgid "Min Cover height"
|
7976 |
msgstr "Hauteur minimum de la couverture"
|
7977 |
|
7978 |
-
#: wppa-settings-autosave.php:
|
7979 |
msgid "Minimal height of an album cover."
|
7980 |
msgstr "Hauteur minimale d'une couverture d'album."
|
7981 |
|
7982 |
-
#: wppa-settings-autosave.php:
|
7983 |
msgid ""
|
7984 |
"If you use this setting to make the albums the same height and you are not "
|
7985 |
"satisfied about the lay-out, try increasing the value in the next setting"
|
@@ -7988,15 +7986,15 @@ msgstr ""
|
|
7988 |
"n'êtes pas satisfaits de la disposition, essayer d'augmenter la valeur du "
|
7989 |
"réglage suivant"
|
7990 |
|
7991 |
-
#: wppa-settings-autosave.php:
|
7992 |
msgid "Min Text frame height"
|
7993 |
msgstr "Hateur minimum du cadre de texte"
|
7994 |
|
7995 |
-
#: wppa-settings-autosave.php:
|
7996 |
msgid "The minimal cover text frame height incl header."
|
7997 |
msgstr "La hauteur minimale du cadre de texte de couverture entête incluse."
|
7998 |
|
7999 |
-
#: wppa-settings-autosave.php:
|
8000 |
msgid ""
|
8001 |
"The height starting with the album title up to and including the view- and "
|
8002 |
"the slideshow- links."
|
@@ -8004,7 +8002,7 @@ msgstr ""
|
|
8004 |
"La hauteur à partir du titre de l'album jusqu'aux liens de la vue et du "
|
8005 |
"diaporama inclus."
|
8006 |
|
8007 |
-
#: wppa-settings-autosave.php:
|
8008 |
msgid ""
|
8009 |
"This setting enables you to give the album covers the same height while the "
|
8010 |
"title does not need to fit on one line."
|
@@ -8012,23 +8010,23 @@ msgstr ""
|
|
8012 |
"Ce réglage vous permet de donner aux couvertures d'album une hauteur "
|
8013 |
"identique alors que le titre peut faire plus d'une ligne."
|
8014 |
|
8015 |
-
#: wppa-settings-autosave.php:
|
8016 |
msgid "This is the recommended setting to line-up your covers!"
|
8017 |
msgstr "Ceci est le réglage recommandé pour aligner vos couvertures!"
|
8018 |
|
8019 |
-
#: wppa-settings-autosave.php:
|
8020 |
msgid "Min Description height"
|
8021 |
msgstr "Hauteur minimum de la description"
|
8022 |
|
8023 |
-
#: wppa-settings-autosave.php:
|
8024 |
msgid "The minimal height of the album description text frame."
|
8025 |
msgstr "La hauteur minimale du cadre de texte de description de l'album."
|
8026 |
|
8027 |
-
#: wppa-settings-autosave.php:
|
8028 |
msgid "The minimal height of the description field in an album cover display."
|
8029 |
msgstr "La hauteur minimale du champ de description de la couverture d'album."
|
8030 |
|
8031 |
-
#: wppa-settings-autosave.php:
|
8032 |
msgid ""
|
8033 |
"This setting enables you to give the album covers the same height provided "
|
8034 |
"that the cover images are equally sized and the titles fit on one line."
|
@@ -8037,14 +8035,14 @@ msgstr ""
|
|
8037 |
"identique alors que les images de couverture sont de taille égale et que les "
|
8038 |
"titres tiennent sur une ligne."
|
8039 |
|
8040 |
-
#: wppa-settings-autosave.php:
|
8041 |
msgid ""
|
8042 |
"To force the coverphotos have equal heights, tick the box in Table I-D7."
|
8043 |
msgstr ""
|
8044 |
"Pour forcer une hauteur identique pour les photos de couverture, cocher la "
|
8045 |
"case dans la table I-D7."
|
8046 |
|
8047 |
-
#: wppa-settings-autosave.php:
|
8048 |
msgid ""
|
8049 |
"You may need this setting if changing the previous setting is not sufficient "
|
8050 |
"to line-up the covers."
|
@@ -8052,24 +8050,24 @@ msgstr ""
|
|
8052 |
"Ce réglage peut être nécessaire si la modification du réglage précédent "
|
8053 |
"n'est pas suffisant pour aligner les couvertures."
|
8054 |
|
8055 |
-
#: wppa-settings-autosave.php:
|
8056 |
msgid "Coverphoto responsive"
|
8057 |
msgstr "Photo de couverture réactive"
|
8058 |
|
8059 |
-
#: wppa-settings-autosave.php:
|
8060 |
msgid "Check this box if you want a responsive coverphoto."
|
8061 |
msgstr "Cochez cette case si vous voulez une photo de couverture réactive."
|
8062 |
|
8063 |
-
#: wppa-settings-autosave.php:
|
8064 |
msgid "Coverphoto size"
|
8065 |
msgstr "Taille de la photo de couverture"
|
8066 |
|
8067 |
-
#: wppa-settings-autosave.php:
|
8068 |
msgid "The size of the coverphoto."
|
8069 |
msgstr "La taille de la photo de couverture."
|
8070 |
|
8071 |
-
#: wppa-settings-autosave.php:
|
8072 |
-
#: wppa-settings-autosave.php:
|
8073 |
msgid ""
|
8074 |
"Changing the coverphoto size may result in all thumbnails being regenerated. "
|
8075 |
"this may take a while."
|
@@ -8077,27 +8075,27 @@ msgstr ""
|
|
8077 |
"Changer la photo de couverture peut entraîner la régénération de toutes les "
|
8078 |
"vignettes. Cela peut prendre du temps."
|
8079 |
|
8080 |
-
#: wppa-settings-autosave.php:
|
8081 |
msgid "percent"
|
8082 |
msgstr "pourcent"
|
8083 |
|
8084 |
-
#: wppa-settings-autosave.php:
|
8085 |
msgid "Coverphoto size multi"
|
8086 |
msgstr "Taille de la photo de couverture (multi)"
|
8087 |
|
8088 |
-
#: wppa-settings-autosave.php:
|
8089 |
msgid "The size of coverphotos if more than one."
|
8090 |
msgstr "La taille des photos de couverture si il y en a plus d'une."
|
8091 |
|
8092 |
-
#: wppa-settings-autosave.php:
|
8093 |
msgid "Size is height"
|
8094 |
msgstr "La taille correspond à la hauteur"
|
8095 |
|
8096 |
-
#: wppa-settings-autosave.php:
|
8097 |
msgid "The size of the coverphoto is the height of it."
|
8098 |
msgstr "La taille de la photo de couverture est sa hauteur."
|
8099 |
|
8100 |
-
#: wppa-settings-autosave.php:
|
8101 |
msgid ""
|
8102 |
"If set: the previous setting is the height, if unset: the largest of width "
|
8103 |
"and height."
|
@@ -8105,7 +8103,7 @@ msgstr ""
|
|
8105 |
"Si réglé: le précédent réglage est la hauteur, si non réglé: la plus grande "
|
8106 |
"de ces deux valeurs: hauteur, largeur."
|
8107 |
|
8108 |
-
#: wppa-settings-autosave.php:
|
8109 |
msgid ""
|
8110 |
"This setting applies for coverphoto position top or bottom only (Table IV-"
|
8111 |
"D3)."
|
@@ -8113,16 +8111,16 @@ msgstr ""
|
|
8113 |
"Ce réglage s'applique à la position de la photo de couverture pour haut ou "
|
8114 |
"bas uniquement (table IV-D3)."
|
8115 |
|
8116 |
-
#: wppa-settings-autosave.php:
|
8117 |
msgid "This makes it easyer to make the covers of equal height."
|
8118 |
msgstr ""
|
8119 |
"Ceci permet de plus facilement rendre identique la hauteur des couvertures."
|
8120 |
|
8121 |
-
#: wppa-settings-autosave.php:
|
8122 |
msgid "Max number of covers per page."
|
8123 |
msgstr "Nombre maximum de couvertures par page."
|
8124 |
|
8125 |
-
#: wppa-settings-autosave.php:
|
8126 |
msgid ""
|
8127 |
"Enter the maximum number of album covers per page. A value of 0 indicates no "
|
8128 |
"pagination."
|
@@ -8130,75 +8128,75 @@ msgstr ""
|
|
8130 |
"Entrer le nombre maximum de couvertures d'album par page. Une valeur de 0 "
|
8131 |
"signifie pas de pagination."
|
8132 |
|
8133 |
-
#: wppa-settings-autosave.php:
|
8134 |
msgid "covers"
|
8135 |
msgstr "Couvertures"
|
8136 |
|
8137 |
-
#: wppa-settings-autosave.php:
|
8138 |
msgid "Rating and comment related size settings"
|
8139 |
msgstr "Réglages de tailles pour les notes et commentaires"
|
8140 |
|
8141 |
-
#: wppa-settings-autosave.php:
|
8142 |
msgid "Rating size"
|
8143 |
msgstr "Taille note"
|
8144 |
|
8145 |
-
#: wppa-settings-autosave.php:
|
8146 |
msgid "Select the number of voting stars."
|
8147 |
msgstr "Choisir le nombre d'étoiles pour le vote."
|
8148 |
|
8149 |
-
#: wppa-settings-autosave.php:
|
8150 |
msgid "Standard: 5 stars"
|
8151 |
msgstr "Standard: 5 étoiles"
|
8152 |
|
8153 |
-
#: wppa-settings-autosave.php:
|
8154 |
msgid "Extended: 10 stars"
|
8155 |
msgstr "Étendu: 10 étoiles"
|
8156 |
|
8157 |
-
#: wppa-settings-autosave.php:
|
8158 |
msgid "One button vote"
|
8159 |
msgstr "One button vote"
|
8160 |
|
8161 |
-
#: wppa-settings-autosave.php:
|
8162 |
msgid "Display precision"
|
8163 |
msgstr "Précision d'affichage"
|
8164 |
|
8165 |
-
#: wppa-settings-autosave.php:
|
8166 |
msgid "Select the desired rating display precision."
|
8167 |
msgstr "Choisir la précision désirée pour l'affichage des notes."
|
8168 |
|
8169 |
-
#: wppa-settings-autosave.php:
|
8170 |
msgid "decimal places"
|
8171 |
msgstr "emplacement des décimales"
|
8172 |
|
8173 |
-
#: wppa-settings-autosave.php:
|
8174 |
msgid "Size of Avatar images."
|
8175 |
msgstr "Taille des images avatar."
|
8176 |
|
8177 |
-
#: wppa-settings-autosave.php:
|
8178 |
msgid "The size of the square avatar; must be > 0 and < 256"
|
8179 |
msgstr "La taille du carré d'avatar doit être >0 et <256"
|
8180 |
|
8181 |
-
#: wppa-settings-autosave.php:
|
8182 |
msgid "Rating space"
|
8183 |
msgstr "Espacement note"
|
8184 |
|
8185 |
-
#: wppa-settings-autosave.php:
|
8186 |
msgid "Space between avg and my rating stars"
|
8187 |
msgstr "Espace entre moyenne et mes notes (étoiles)"
|
8188 |
|
8189 |
-
#: wppa-settings-autosave.php:
|
8190 |
msgid "Widget related size settings"
|
8191 |
msgstr "Réglages de taille pour les widgets"
|
8192 |
|
8193 |
-
#: wppa-settings-autosave.php:
|
8194 |
msgid "Widget width"
|
8195 |
msgstr "Largeur du widget"
|
8196 |
|
8197 |
-
#: wppa-settings-autosave.php:
|
8198 |
msgid "The useable width within widgets."
|
8199 |
msgstr "La largeur utilisable dans le widget"
|
8200 |
|
8201 |
-
#: wppa-settings-autosave.php:
|
8202 |
msgid ""
|
8203 |
"Widget width for photo of the day, general purpose (default), slideshow "
|
8204 |
"(default) and upload widgets."
|
@@ -8206,195 +8204,195 @@ msgstr ""
|
|
8206 |
"Largeur pour les widgets Photo du Jour, usage général (défault), diaporama "
|
8207 |
"(défault) et Chargement."
|
8208 |
|
8209 |
-
#: wppa-settings-autosave.php:
|
8210 |
msgid "TopTen count"
|
8211 |
msgstr "Comptage TopTen"
|
8212 |
|
8213 |
-
#: wppa-settings-autosave.php:
|
8214 |
msgid "Number of photos in TopTen widget."
|
8215 |
msgstr "Nombre de photos dans le widget TopTen."
|
8216 |
|
8217 |
-
#: wppa-settings-autosave.php:
|
8218 |
msgid "Enter the maximum number of rated photos in the TopTen widget."
|
8219 |
msgstr "Entrez le nombre maximum de photos avec votes dans le widget TopTen."
|
8220 |
|
8221 |
-
#: wppa-settings-autosave.php:
|
8222 |
msgid "TopTen size"
|
8223 |
msgstr "Taille TopTen"
|
8224 |
|
8225 |
-
#: wppa-settings-autosave.php:
|
8226 |
msgid "Size of thumbnails in TopTen widget."
|
8227 |
msgstr "Taille des vignettes dans le widget TopTen."
|
8228 |
|
8229 |
-
#: wppa-settings-autosave.php:
|
8230 |
msgid "Enter the size for the mini photos in the TopTen widget."
|
8231 |
msgstr "Entrer la taille pour les mini photos dans le widget TopTen."
|
8232 |
|
8233 |
-
#: wppa-settings-autosave.php:
|
8234 |
-
#: wppa-settings-autosave.php:
|
8235 |
-
#: wppa-settings-autosave.php:
|
8236 |
msgid "The size applies to the width or height, whatever is the largest."
|
8237 |
msgstr ""
|
8238 |
"La taille s'applique à la largeur ou la hauteur, peu importe laquelle est la "
|
8239 |
"plus grande."
|
8240 |
|
8241 |
-
#: wppa-settings-autosave.php:
|
8242 |
-
#: wppa-settings-autosave.php:
|
8243 |
-
#: wppa-settings-autosave.php:
|
8244 |
msgid ""
|
8245 |
"Recommended values: 86 for a two column and 56 for a three column display."
|
8246 |
msgstr ""
|
8247 |
"Valeurs recommandées: 86 pour un affichage deux colonnes et 56 pour trois "
|
8248 |
"colonnes."
|
8249 |
|
8250 |
-
#: wppa-settings-autosave.php:
|
8251 |
msgid "Comment count"
|
8252 |
msgstr "Comptage Commentaires"
|
8253 |
|
8254 |
-
#: wppa-settings-autosave.php:
|
8255 |
msgid "Number of entries in Comment widget."
|
8256 |
msgstr "Nombre d'entrées dans le widget Commentaires."
|
8257 |
|
8258 |
-
#: wppa-settings-autosave.php:
|
8259 |
msgid "Enter the maximum number of entries in the Comment widget."
|
8260 |
msgstr "Entrez le nombre maximum d'entrées dans le widget Commentaires."
|
8261 |
|
8262 |
-
#: wppa-settings-autosave.php:
|
8263 |
msgid "entries"
|
8264 |
msgstr "entrées"
|
8265 |
|
8266 |
-
#: wppa-settings-autosave.php:
|
8267 |
msgid "Comment size"
|
8268 |
msgstr "Taille de Commentaires"
|
8269 |
|
8270 |
-
#: wppa-settings-autosave.php:
|
8271 |
msgid "Size of thumbnails in Comment widget."
|
8272 |
msgstr "Taille des vignettes dans le widget Commentaires."
|
8273 |
|
8274 |
-
#: wppa-settings-autosave.php:
|
8275 |
msgid "Enter the size for the mini photos in the Comment widget."
|
8276 |
msgstr "Entrer la taille pour les mini photos dans le widget Commentaires."
|
8277 |
|
8278 |
-
#: wppa-settings-autosave.php:
|
8279 |
msgid "Thumbnail count"
|
8280 |
msgstr "Comptage Vignettes"
|
8281 |
|
8282 |
-
#: wppa-settings-autosave.php:
|
8283 |
msgid "Number of photos in Thumbnail widget."
|
8284 |
msgstr "Nombre de photos dans le widget Vignettes."
|
8285 |
|
8286 |
-
#: wppa-settings-autosave.php:
|
8287 |
msgid "Enter the maximum number of rated photos in the Thumbnail widget."
|
8288 |
msgstr ""
|
8289 |
"Entrer le nombre maximum de photos avec votes dans le widget Vignettes."
|
8290 |
|
8291 |
-
#: wppa-settings-autosave.php:
|
8292 |
msgid "Thumbnail widget size"
|
8293 |
msgstr "Taille du widget Vignettes"
|
8294 |
|
8295 |
-
#: wppa-settings-autosave.php:
|
8296 |
msgid "Size of thumbnails in Thumbnail widget."
|
8297 |
msgstr "Taille des vignettes dans le widget Vignettes."
|
8298 |
|
8299 |
-
#: wppa-settings-autosave.php:
|
8300 |
msgid "Enter the size for the mini photos in the Thumbnail widget."
|
8301 |
msgstr "Entrer la taille pour les mini photos dans le widget Vignettes."
|
8302 |
|
8303 |
-
#: wppa-settings-autosave.php:
|
8304 |
msgid "LasTen count"
|
8305 |
msgstr "Comptage LastTen"
|
8306 |
|
8307 |
-
#: wppa-settings-autosave.php:
|
8308 |
msgid "Number of photos in Last Ten widget."
|
8309 |
msgstr "Nombre de photos dans le widget LastTen."
|
8310 |
|
8311 |
-
#: wppa-settings-autosave.php:
|
8312 |
msgid "Enter the maximum number of photos in the LasTen widget."
|
8313 |
msgstr "Entrer la nombre maximum de photos dans le widget LastTen."
|
8314 |
|
8315 |
-
#: wppa-settings-autosave.php:
|
8316 |
msgid "LasTen size"
|
8317 |
msgstr "Taille de LastTen"
|
8318 |
|
8319 |
-
#: wppa-settings-autosave.php:
|
8320 |
msgid "Size of thumbnails in Last Ten widget."
|
8321 |
msgstr "Taille des vignettes dans le widget LastTen."
|
8322 |
|
8323 |
-
#: wppa-settings-autosave.php:
|
8324 |
msgid "Enter the size for the mini photos in the LasTen widget."
|
8325 |
msgstr "Entrer la taille pour les mini photos dans le widget LastTen."
|
8326 |
|
8327 |
-
#: wppa-settings-autosave.php:
|
8328 |
msgid "Album widget count"
|
8329 |
msgstr "Comptage widget Album"
|
8330 |
|
8331 |
-
#: wppa-settings-autosave.php:
|
8332 |
msgid "Number of albums in Album widget."
|
8333 |
msgstr "Nombre d'albums dans le widget Albums."
|
8334 |
|
8335 |
-
#: wppa-settings-autosave.php:
|
8336 |
msgid ""
|
8337 |
"Enter the maximum number of thumbnail photos of albums in the Album widget."
|
8338 |
msgstr ""
|
8339 |
"Entrer le nombre maximum de vignettes photo d'albums dans le widget Albums."
|
8340 |
|
8341 |
-
#: wppa-settings-autosave.php:
|
8342 |
msgid "albums"
|
8343 |
msgstr "albums"
|
8344 |
|
8345 |
-
#: wppa-settings-autosave.php:
|
8346 |
msgid "Album widget size"
|
8347 |
msgstr "Taille du widget Album"
|
8348 |
|
8349 |
-
#: wppa-settings-autosave.php:
|
8350 |
msgid "Size of thumbnails in Album widget."
|
8351 |
msgstr "Taille des vignettes dans le widget Albums."
|
8352 |
|
8353 |
-
#: wppa-settings-autosave.php:
|
8354 |
msgid "Enter the size for the mini photos in the Album widget."
|
8355 |
msgstr "Entrer la taille pour les mini photos dans le widget Albums."
|
8356 |
|
8357 |
-
#: wppa-settings-autosave.php:
|
8358 |
msgid "FeaTen count"
|
8359 |
msgstr "Comptage FeaTen"
|
8360 |
|
8361 |
-
#: wppa-settings-autosave.php:
|
8362 |
msgid "Number of photos in Featured Ten widget."
|
8363 |
msgstr "Nombre de photos dans le widget Featured Ten."
|
8364 |
|
8365 |
-
#: wppa-settings-autosave.php:
|
8366 |
msgid "Enter the maximum number of photos in the FeaTen widget."
|
8367 |
msgstr "Entrer le nombre maximum de photos dans le widget FeaTen."
|
8368 |
|
8369 |
-
#: wppa-settings-autosave.php:
|
8370 |
msgid "FeaTen size"
|
8371 |
msgstr "Taille FeaTen"
|
8372 |
|
8373 |
-
#: wppa-settings-autosave.php:
|
8374 |
msgid "Size of thumbnails in Featured Ten widget."
|
8375 |
msgstr "Taille des vignettes dans le widget FeaTen."
|
8376 |
|
8377 |
-
#: wppa-settings-autosave.php:
|
8378 |
msgid "Enter the size for the mini photos in the FeaTen widget."
|
8379 |
msgstr "Entrer la taille pour les mini photos dans le widget FeaTen."
|
8380 |
|
8381 |
-
#: wppa-settings-autosave.php:
|
8382 |
msgid "Tagcloud min size"
|
8383 |
msgstr "Taille minimum du Nuage de tags"
|
8384 |
|
8385 |
-
#: wppa-settings-autosave.php:
|
8386 |
msgid "Minimal fontsize in tagclouds"
|
8387 |
msgstr "Taille de police minimale dans les nuages de tags"
|
8388 |
|
8389 |
-
#: wppa-settings-autosave.php:
|
8390 |
msgid "Tagcloud max size"
|
8391 |
msgstr "Taille maximum du nuage de tags"
|
8392 |
|
8393 |
-
#: wppa-settings-autosave.php:
|
8394 |
msgid "Maximal fontsize in tagclouds"
|
8395 |
msgstr "Taille de police maximale dans les nuages de tags"
|
8396 |
|
8397 |
-
#: wppa-settings-autosave.php:
|
8398 |
msgid ""
|
8399 |
"Lightbox related size settings. These settings have effect only when Table "
|
8400 |
"IX-J3 is set to wppa"
|
@@ -8402,111 +8400,111 @@ msgstr ""
|
|
8402 |
"Réglages de taille pour Lightbox. Ces réglages n'ont d'effet que lorsque "
|
8403 |
"table IX-J3 est réglé à WPPA"
|
8404 |
|
8405 |
-
#: wppa-settings-autosave.php:
|
8406 |
msgid ""
|
8407 |
"Number of lines on the lightbox description area, exclusive the n/m line."
|
8408 |
msgstr ""
|
8409 |
"Nombre de lignes dans la zone de description de Lightbox, en excluant la "
|
8410 |
"ligne n/m."
|
8411 |
|
8412 |
-
#: wppa-settings-autosave.php:
|
8413 |
msgid "Enter a number in the range from 0 to 24 or auto"
|
8414 |
msgstr "Entrer un nombre dans une plage allant de 0 à 24 ou auto"
|
8415 |
|
8416 |
-
#: wppa-settings-autosave.php:
|
8417 |
msgid "lines"
|
8418 |
msgstr "lignes"
|
8419 |
|
8420 |
-
#: wppa-settings-autosave.php:
|
8421 |
msgid "Magnifier cursor size"
|
8422 |
msgstr "Taille du curseur loupe"
|
8423 |
|
8424 |
-
#: wppa-settings-autosave.php:
|
8425 |
msgid "Select the size of the magnifier cursor."
|
8426 |
msgstr "Choisir la taille du curseur loupe."
|
8427 |
|
8428 |
-
#: wppa-settings-autosave.php:
|
8429 |
msgid "small"
|
8430 |
msgstr "petit"
|
8431 |
|
8432 |
-
#: wppa-settings-autosave.php:
|
8433 |
msgid "medium"
|
8434 |
msgstr "moyen"
|
8435 |
|
8436 |
-
#: wppa-settings-autosave.php:
|
8437 |
msgid "large"
|
8438 |
msgstr "grand"
|
8439 |
|
8440 |
-
#: wppa-settings-autosave.php:
|
8441 |
msgid "Border width for lightbox display."
|
8442 |
msgstr "Largeur de bordure de Lightbox."
|
8443 |
|
8444 |
-
#: wppa-settings-autosave.php:
|
8445 |
msgid "Border radius for lightbox display."
|
8446 |
msgstr "Rayon de bordure de Lightbox."
|
8447 |
|
8448 |
-
#: wppa-settings-autosave.php:
|
8449 |
msgid "Video related size settings"
|
8450 |
msgstr "Réglages liés à la taille des vidéos"
|
8451 |
|
8452 |
-
#: wppa-settings-autosave.php:
|
8453 |
msgid "Default width"
|
8454 |
msgstr "Largeur par défaut"
|
8455 |
|
8456 |
-
#: wppa-settings-autosave.php:
|
8457 |
msgid "The width of most videos"
|
8458 |
msgstr "La largeur de la plupart des vidéos"
|
8459 |
|
8460 |
-
#: wppa-settings-autosave.php:
|
8461 |
msgid "Default height"
|
8462 |
msgstr "Hauteur par défaut"
|
8463 |
|
8464 |
-
#: wppa-settings-autosave.php:
|
8465 |
msgid "The height of most videos"
|
8466 |
msgstr "La hauteur de la plupart des vidéos"
|
8467 |
|
8468 |
-
#: wppa-settings-autosave.php:
|
8469 |
msgid "Table II:"
|
8470 |
msgstr "Table II:"
|
8471 |
|
8472 |
-
#: wppa-settings-autosave.php:
|
8473 |
msgid "Visibility:"
|
8474 |
msgstr "Visibilité:"
|
8475 |
|
8476 |
-
#: wppa-settings-autosave.php:
|
8477 |
msgid "This table describes the visibility of certain wppa+ elements."
|
8478 |
msgstr "Cette table décrit la visibilité de certains éléments de WPPA+."
|
8479 |
|
8480 |
-
#: wppa-settings-autosave.php:
|
8481 |
msgid "Breadcrumb related visibility settings"
|
8482 |
msgstr "Réglage pour l'affichage du chemin de fer"
|
8483 |
|
8484 |
-
#: wppa-settings-autosave.php:
|
8485 |
msgid "Breadcrumb on posts"
|
8486 |
msgstr "Chemin de fer sur les articles"
|
8487 |
|
8488 |
-
#: wppa-settings-autosave.php:
|
8489 |
msgid "Show breadcrumb navigation bars."
|
8490 |
msgstr "Montrer les chemins de fer."
|
8491 |
|
8492 |
-
#: wppa-settings-autosave.php:
|
8493 |
msgid "Indicate whether a breadcrumb navigation should be displayed"
|
8494 |
msgstr "Indique si une barre de chemin de fer doit être affichée"
|
8495 |
|
8496 |
-
#: wppa-settings-autosave.php:
|
8497 |
msgid "Breadcrumb on pages"
|
8498 |
msgstr "Chemin de fer sur les pages"
|
8499 |
|
8500 |
-
#: wppa-settings-autosave.php:
|
8501 |
msgid "Breadcrumb on search results"
|
8502 |
msgstr "Chemin de fer pour les résultats de recherche"
|
8503 |
|
8504 |
-
#: wppa-settings-autosave.php:
|
8505 |
msgid "Show breadcrumb navigation bars on the search results page."
|
8506 |
msgstr ""
|
8507 |
"Montrer les barres de chemin de fer dans la page des résultats de recherche."
|
8508 |
|
8509 |
-
#: wppa-settings-autosave.php:
|
8510 |
msgid ""
|
8511 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8512 |
"search results."
|
@@ -8514,15 +8512,15 @@ msgstr ""
|
|
8514 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8515 |
"résultats de recherche."
|
8516 |
|
8517 |
-
#: wppa-settings-autosave.php:
|
8518 |
msgid "Breadcrumb on topten displays"
|
8519 |
msgstr "Chemin de fer dans les affichages de TopTen"
|
8520 |
|
8521 |
-
#: wppa-settings-autosave.php:
|
8522 |
msgid "Show breadcrumb navigation bars on topten displays."
|
8523 |
msgstr "Montrer les barres de chemin de fer dans les affichages TopTen."
|
8524 |
|
8525 |
-
#: wppa-settings-autosave.php:
|
8526 |
msgid ""
|
8527 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8528 |
"topten displays."
|
@@ -8530,15 +8528,15 @@ msgstr ""
|
|
8530 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8531 |
"affichages TopTen"
|
8532 |
|
8533 |
-
#: wppa-settings-autosave.php:
|
8534 |
msgid "Breadcrumb on last ten displays"
|
8535 |
msgstr "Chemin de fer dans les affichages de LastTen"
|
8536 |
|
8537 |
-
#: wppa-settings-autosave.php:
|
8538 |
msgid "Show breadcrumb navigation bars on last ten displays."
|
8539 |
msgstr "Montrer les chemins de fer dans les affichages de LastTen."
|
8540 |
|
8541 |
-
#: wppa-settings-autosave.php:
|
8542 |
msgid ""
|
8543 |
"Indicate whether a breadcrumb navigation should be displayed above the last "
|
8544 |
"ten displays."
|
@@ -8546,15 +8544,15 @@ msgstr ""
|
|
8546 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8547 |
"affichages LastTen."
|
8548 |
|
8549 |
-
#: wppa-settings-autosave.php:
|
8550 |
msgid "Breadcrumb on comment ten displays"
|
8551 |
msgstr "Chemin de fer dans les affichages CommentTen"
|
8552 |
|
8553 |
-
#: wppa-settings-autosave.php:
|
8554 |
msgid "Show breadcrumb navigation bars on comment ten displays."
|
8555 |
msgstr "Montrer les barres de chemin de fer dans les affichages de CommentTen."
|
8556 |
|
8557 |
-
#: wppa-settings-autosave.php:
|
8558 |
msgid ""
|
8559 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8560 |
"comment ten displays."
|
@@ -8562,15 +8560,15 @@ msgstr ""
|
|
8562 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8563 |
"affichages CommentTen."
|
8564 |
|
8565 |
-
#: wppa-settings-autosave.php:
|
8566 |
msgid "Breadcrumb on tag result displays"
|
8567 |
msgstr "Chemin de fer dans les affichages TagResult"
|
8568 |
|
8569 |
-
#: wppa-settings-autosave.php:
|
8570 |
msgid "Show breadcrumb navigation bars on tag result displays."
|
8571 |
msgstr "Montrer les barres de chemin de fer dans les affichages TagResult."
|
8572 |
|
8573 |
-
#: wppa-settings-autosave.php:
|
8574 |
msgid ""
|
8575 |
"Indicate whether a breadcrumb navigation should be displayed above the tag "
|
8576 |
"result displays."
|
@@ -8578,15 +8576,15 @@ msgstr ""
|
|
8578 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8579 |
"affichages TagResult."
|
8580 |
|
8581 |
-
#: wppa-settings-autosave.php:
|
8582 |
msgid "Breadcrumb on featured ten displays"
|
8583 |
msgstr "Chemin de fer dans les affichages FeaTen"
|
8584 |
|
8585 |
-
#: wppa-settings-autosave.php:
|
8586 |
msgid "Show breadcrumb navigation bars on featured ten displays."
|
8587 |
msgstr "Montrer les barres de chemin de fer dans les affichages FeaTen."
|
8588 |
|
8589 |
-
#: wppa-settings-autosave.php:
|
8590 |
msgid ""
|
8591 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8592 |
"featured ten displays."
|
@@ -8594,16 +8592,16 @@ msgstr ""
|
|
8594 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8595 |
"affichages FeaTen."
|
8596 |
|
8597 |
-
#: wppa-settings-autosave.php:
|
8598 |
msgid "Breadcrumb on related photos displays"
|
8599 |
msgstr "Chemin de fer dans les affichages Related Photos"
|
8600 |
|
8601 |
-
#: wppa-settings-autosave.php:
|
8602 |
msgid "Show breadcrumb navigation bars on related photos displays."
|
8603 |
msgstr ""
|
8604 |
"\"Montrer les barres de chemin de fer dans les affichages Related Photos."
|
8605 |
|
8606 |
-
#: wppa-settings-autosave.php:
|
8607 |
msgid ""
|
8608 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8609 |
"related photos displays."
|
@@ -8611,81 +8609,81 @@ msgstr ""
|
|
8611 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8612 |
"affichages Related Photos."
|
8613 |
|
8614 |
-
#: wppa-settings-autosave.php:
|
8615 |
msgid "Home"
|
8616 |
msgstr "Accueil"
|
8617 |
|
8618 |
-
#: wppa-settings-autosave.php:
|
8619 |
msgid "Show \"Home\" in breadcrumb."
|
8620 |
msgstr "Montrer \"Accueil\" dans le chemin de fer."
|
8621 |
|
8622 |
-
#: wppa-settings-autosave.php:
|
8623 |
msgid ""
|
8624 |
"Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
|
8625 |
msgstr "Indique si le chemin de fer doit commencer avec un lien \"Accueil\""
|
8626 |
|
8627 |
-
#: wppa-settings-autosave.php:
|
8628 |
msgid "Home text"
|
8629 |
msgstr "Texte d'accueil"
|
8630 |
|
8631 |
-
#: wppa-settings-autosave.php:
|
8632 |
msgid "The text to use as \"Home\""
|
8633 |
msgstr "Le texte à utiliser comme \"Accueil\""
|
8634 |
|
8635 |
-
#: wppa-settings-autosave.php:
|
8636 |
msgid "Show the page(s) in breadcrumb."
|
8637 |
msgstr "Montrer le(s) page(s) dans le chemin de fer."
|
8638 |
|
8639 |
-
#: wppa-settings-autosave.php:
|
8640 |
msgid ""
|
8641 |
"Indicate whether the breadcrumb navigation should show the page(hierarchy)"
|
8642 |
msgstr "Indique si le chemin de fer doit montrer la hiérarchie des pages"
|
8643 |
|
8644 |
-
#: wppa-settings-autosave.php:
|
8645 |
msgid "Separator"
|
8646 |
msgstr "Séparateur"
|
8647 |
|
8648 |
-
#: wppa-settings-autosave.php:
|
8649 |
msgid "Breadcrumb separator symbol."
|
8650 |
msgstr "Symbole de séparation du chemin de fer."
|
8651 |
|
8652 |
-
#: wppa-settings-autosave.php:
|
8653 |
msgid "Select the desired breadcrumb separator element."
|
8654 |
msgstr "Choisir le symbole séparateur du chemin de fer."
|
8655 |
|
8656 |
-
#: wppa-settings-autosave.php:
|
8657 |
msgid "A text string may contain valid html."
|
8658 |
msgstr "Une chaîne de texte peut contenir du HTML valide."
|
8659 |
|
8660 |
-
#: wppa-settings-autosave.php:
|
8661 |
msgid ""
|
8662 |
"An image will be scaled automatically if you set the navigation font size."
|
8663 |
msgstr ""
|
8664 |
"Une image sera mise à l’échelle automatiquement si vous réglez la tailles "
|
8665 |
"des police de navigation."
|
8666 |
|
8667 |
-
#: wppa-settings-autosave.php:
|
8668 |
msgid "Text (html):"
|
8669 |
msgstr "Texte (html):"
|
8670 |
|
8671 |
-
#: wppa-settings-autosave.php:
|
8672 |
msgid "Image (url):"
|
8673 |
msgstr "Image (url):"
|
8674 |
|
8675 |
-
#: wppa-settings-autosave.php:
|
8676 |
msgid "Html"
|
8677 |
msgstr "HTML"
|
8678 |
|
8679 |
-
#: wppa-settings-autosave.php:
|
8680 |
msgid "Breadcrumb separator text."
|
8681 |
msgstr "Texte du séparateur du chemin de fer."
|
8682 |
|
8683 |
-
#: wppa-settings-autosave.php:
|
8684 |
msgid "Enter the HTML code that produces the separator symbol you want."
|
8685 |
msgstr ""
|
8686 |
"Entrez le code HTML qui correspond au symbole séparateur que vous voulez."
|
8687 |
|
8688 |
-
#: wppa-settings-autosave.php:
|
8689 |
msgid ""
|
8690 |
"It may be as simple as '-' (without the quotes) or as complex as a tag like "
|
8691 |
"<div>..</div>."
|
@@ -8693,82 +8691,82 @@ msgstr ""
|
|
8693 |
"Cela peut être aussi simple que '-' (sans les apostrophes) ou complexe qu'un "
|
8694 |
"tag comme <DIV>..</DIV>."
|
8695 |
|
8696 |
-
#: wppa-settings-autosave.php:
|
8697 |
msgid "Image Url"
|
8698 |
msgstr "URL de l'image"
|
8699 |
|
8700 |
-
#: wppa-settings-autosave.php:
|
8701 |
msgid "Full url to separator image."
|
8702 |
msgstr "URL complète du séparateur d'image."
|
8703 |
|
8704 |
-
#: wppa-settings-autosave.php:
|
8705 |
msgid ""
|
8706 |
"Enter the full url to the image you want to use for the separator symbol."
|
8707 |
msgstr ""
|
8708 |
"Entrez l'URL complète de l'image que vous voulez utiliser comme symbole de "
|
8709 |
"séparation."
|
8710 |
|
8711 |
-
#: wppa-settings-autosave.php:
|
8712 |
msgid "Pagelink position"
|
8713 |
msgstr "Position du lien de page"
|
8714 |
|
8715 |
-
#: wppa-settings-autosave.php:
|
8716 |
msgid "The location for the pagelinks bar."
|
8717 |
msgstr "L'emplacement pour la barre des liens de page."
|
8718 |
|
8719 |
-
#: wppa-settings-autosave.php:
|
8720 |
msgid "Top"
|
8721 |
msgstr "Haut"
|
8722 |
|
8723 |
-
#: wppa-settings-autosave.php:
|
8724 |
msgid "Bottom"
|
8725 |
msgstr "Bas"
|
8726 |
|
8727 |
-
#: wppa-settings-autosave.php:
|
8728 |
msgid "Both"
|
8729 |
msgstr "Les deux"
|
8730 |
|
8731 |
-
#: wppa-settings-autosave.php:
|
8732 |
msgid "Thumblink on slideshow"
|
8733 |
msgstr "Lien vignette sur le diaporama"
|
8734 |
|
8735 |
-
#: wppa-settings-autosave.php:
|
8736 |
msgid "Show a thumb link on slideshow bc."
|
8737 |
msgstr "Montrer un lien vignette sur le chemin de fer du diaporama."
|
8738 |
|
8739 |
-
#: wppa-settings-autosave.php:
|
8740 |
msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
|
8741 |
msgstr "Montrer un lien vignette dans un chemin de fer au dessus du diaporama"
|
8742 |
|
8743 |
-
#: wppa-settings-autosave.php:
|
8744 |
msgid "Slideshow related visibility settings"
|
8745 |
msgstr "Réglages d'affichage pour le diaporama"
|
8746 |
|
8747 |
-
#: wppa-settings-autosave.php:
|
8748 |
msgid "Navigation type"
|
8749 |
msgstr "Type de navigation"
|
8750 |
|
8751 |
-
#: wppa-settings-autosave.php:
|
8752 |
msgid "Select the type of navigation you want."
|
8753 |
msgstr "Sélectionnez le type de navigation souhaitée."
|
8754 |
|
8755 |
-
#: wppa-settings-autosave.php:
|
8756 |
msgid "Icons"
|
8757 |
msgstr "Icônes"
|
8758 |
|
8759 |
-
#: wppa-settings-autosave.php:
|
8760 |
msgid "Icons on mobile, text on pc"
|
8761 |
msgstr "Icônes sur mobile, texte sur pc"
|
8762 |
|
8763 |
-
#: wppa-settings-autosave.php:
|
8764 |
msgid "Start/stop"
|
8765 |
msgstr "Lancer/Arrêter"
|
8766 |
|
8767 |
-
#: wppa-settings-autosave.php:
|
8768 |
msgid "Show the Start/Stop slideshow bar."
|
8769 |
msgstr "Montrer la barre Lancer/Arrêter diaporama."
|
8770 |
|
8771 |
-
#: wppa-settings-autosave.php:
|
8772 |
msgid ""
|
8773 |
"If checked: display the start/stop slideshow navigation bar above the full-"
|
8774 |
"size images and slideshow"
|
@@ -8776,15 +8774,15 @@ msgstr ""
|
|
8776 |
"Si coché: affiche la barre de navigation Démarrer/Arrêter au dessus des "
|
8777 |
"images pleine taille et du diaporama"
|
8778 |
|
8779 |
-
#: wppa-settings-autosave.php:
|
8780 |
msgid "Browse bar"
|
8781 |
msgstr "Barre de navigation"
|
8782 |
|
8783 |
-
#: wppa-settings-autosave.php:
|
8784 |
msgid "Show Browse photos bar."
|
8785 |
msgstr "Montrer barre de navigation photos."
|
8786 |
|
8787 |
-
#: wppa-settings-autosave.php:
|
8788 |
msgid ""
|
8789 |
"If checked: display the preveous/next navigation bar under the full-size "
|
8790 |
"images and slideshow"
|
@@ -8792,15 +8790,15 @@ msgstr ""
|
|
8792 |
"Si coché: affaiche la barre de navigation Précédent/Suivant sous les images "
|
8793 |
"pleine taille et diaporama"
|
8794 |
|
8795 |
-
#: wppa-settings-autosave.php:
|
8796 |
msgid "Filmstrip"
|
8797 |
msgstr "Filmstrip"
|
8798 |
|
8799 |
-
#: wppa-settings-autosave.php:
|
8800 |
msgid "Show Filmstrip navigation bar."
|
8801 |
msgstr "Montrer la barre de navigation Filmstrip"
|
8802 |
|
8803 |
-
#: wppa-settings-autosave.php:
|
8804 |
msgid ""
|
8805 |
"If checked: display the filmstrip navigation bar under the full_size images "
|
8806 |
"and slideshow"
|
@@ -8808,79 +8806,79 @@ msgstr ""
|
|
8808 |
"Si coché: affiche la barre de navigation Filmstrip sous les images pleine "
|
8809 |
"taille et diaporama"
|
8810 |
|
8811 |
-
#: wppa-settings-autosave.php:
|
8812 |
msgid "Film seam"
|
8813 |
msgstr "Film seam"
|
8814 |
|
8815 |
-
#: wppa-settings-autosave.php:
|
8816 |
msgid "Show seam between end and start of film."
|
8817 |
msgstr "Montrer Seam entre la fin et le débit du film."
|
8818 |
|
8819 |
-
#: wppa-settings-autosave.php:
|
8820 |
msgid "If checked: display the wrap-around point in the filmstrip"
|
8821 |
msgstr "Si coché: affiche le point wrap-around dans le filmstrip"
|
8822 |
|
8823 |
-
#: wppa-settings-autosave.php:
|
8824 |
msgid "Display photo name."
|
8825 |
msgstr "Afficher le nom de la photo."
|
8826 |
|
8827 |
-
#: wppa-settings-autosave.php:
|
8828 |
msgid "If checked: display the name of the photo under the slideshow image."
|
8829 |
msgstr "Si coché: affiche le nom de la photo sous l'image dans le diaporama."
|
8830 |
|
8831 |
-
#: wppa-settings-autosave.php:
|
8832 |
msgid "Add (Owner)"
|
8833 |
msgstr "Ajouter (Propriétaire)"
|
8834 |
|
8835 |
-
#: wppa-settings-autosave.php:
|
8836 |
msgid "Add the uploaders display name in parenthesis to the name."
|
8837 |
msgstr ""
|
8838 |
"Ajouter le nom de l'utilisateur qui a chargé la photo - entre parenthèses "
|
8839 |
"après le nom de la photo."
|
8840 |
|
8841 |
-
#: wppa-settings-autosave.php:
|
8842 |
msgid "Photo desc"
|
8843 |
msgstr "Description photo"
|
8844 |
|
8845 |
-
#: wppa-settings-autosave.php:
|
8846 |
msgid "Display Photo description."
|
8847 |
msgstr "Afficher la description de la photo."
|
8848 |
|
8849 |
-
#: wppa-settings-autosave.php:
|
8850 |
msgid ""
|
8851 |
"If checked: display the description of the photo under the slideshow image."
|
8852 |
msgstr ""
|
8853 |
"Si coché: affiche la description de la photo sous l'image dans le diaporama."
|
8854 |
|
8855 |
-
#: wppa-settings-autosave.php:
|
8856 |
msgid "Hide when empty"
|
8857 |
msgstr "Cacher quand vide"
|
8858 |
|
8859 |
-
#: wppa-settings-autosave.php:
|
8860 |
msgid "Hide the descriptionbox when empty."
|
8861 |
msgstr "Cache la boîte de description quand vide."
|
8862 |
|
8863 |
-
#: wppa-settings-autosave.php:
|
8864 |
msgid "Rating system"
|
8865 |
msgstr "Système de notation"
|
8866 |
|
8867 |
-
#: wppa-settings-autosave.php:
|
8868 |
msgid "Enable the rating system."
|
8869 |
msgstr "Activer le système de notation."
|
8870 |
|
8871 |
-
#: wppa-settings-autosave.php:
|
8872 |
msgid "If checked, the photo rating system will be enabled."
|
8873 |
msgstr "Si coché, le système de notation sera activé pour les photos."
|
8874 |
|
8875 |
-
#: wppa-settings-autosave.php:
|
8876 |
msgid "Comments system"
|
8877 |
msgstr "Système de commentaires"
|
8878 |
|
8879 |
-
#: wppa-settings-autosave.php:
|
8880 |
msgid "Enable the comments system."
|
8881 |
msgstr "Activer le système de commentaires."
|
8882 |
|
8883 |
-
#: wppa-settings-autosave.php:
|
8884 |
msgid ""
|
8885 |
"Display the comments box under the fullsize images and let users enter their "
|
8886 |
"comments on individual photos."
|
@@ -8888,57 +8886,57 @@ msgstr ""
|
|
8888 |
"Afficher la boîte de commentaires sous les images pleine taille et autoriser "
|
8889 |
"les utilisateurs commenter des photos individuellement."
|
8890 |
|
8891 |
-
#: wppa-settings-autosave.php:
|
8892 |
msgid "Comment Avatar default"
|
8893 |
msgstr "Comment Avatar default"
|
8894 |
|
8895 |
-
#: wppa-settings-autosave.php:
|
8896 |
msgid "Show Avatars with the comments if not --- none ---"
|
8897 |
msgstr ""
|
8898 |
"Montrer les avatars avec les commentaires, --- aucun --- dans le cas "
|
8899 |
"contraire"
|
8900 |
|
8901 |
-
#: wppa-settings-autosave.php:
|
8902 |
msgid "mystery man"
|
8903 |
msgstr "homme mystère"
|
8904 |
|
8905 |
-
#: wppa-settings-autosave.php:
|
8906 |
msgid "identicon"
|
8907 |
msgstr "Identicon"
|
8908 |
|
8909 |
-
#: wppa-settings-autosave.php:
|
8910 |
msgid "monsterid"
|
8911 |
msgstr "Monsterid"
|
8912 |
|
8913 |
-
#: wppa-settings-autosave.php:
|
8914 |
msgid "wavatar"
|
8915 |
msgstr "Wavatar"
|
8916 |
|
8917 |
-
#: wppa-settings-autosave.php:
|
8918 |
msgid "retro"
|
8919 |
msgstr "retro"
|
8920 |
|
8921 |
-
#: wppa-settings-autosave.php:
|
8922 |
msgid "--- url ---"
|
8923 |
msgstr "--- URL ---"
|
8924 |
|
8925 |
-
#: wppa-settings-autosave.php:
|
8926 |
msgid "Comment Avatar url"
|
8927 |
msgstr "URL de l'avatar de commentaire"
|
8928 |
|
8929 |
-
#: wppa-settings-autosave.php:
|
8930 |
msgid "Comment Avatar default url."
|
8931 |
msgstr "URL par défaut de l'avatar de commentaire."
|
8932 |
|
8933 |
-
#: wppa-settings-autosave.php:
|
8934 |
msgid "Big Browse Buttons"
|
8935 |
msgstr "Gros boutons de navigation"
|
8936 |
|
8937 |
-
#: wppa-settings-autosave.php:
|
8938 |
msgid "Enable invisible browsing buttons."
|
8939 |
msgstr "Activer les boutons de navigation invisibles."
|
8940 |
|
8941 |
-
#: wppa-settings-autosave.php:
|
8942 |
msgid ""
|
8943 |
"If checked, the fullsize image is covered by two invisible areas that act as "
|
8944 |
"browse buttons."
|
@@ -8946,8 +8944,8 @@ msgstr ""
|
|
8946 |
"Si coché, l'image pleine taille est recouverte de deux zones invisibles qui "
|
8947 |
"fonctionnent comme des boutons de navigation."
|
8948 |
|
8949 |
-
#: wppa-settings-autosave.php:
|
8950 |
-
#: wppa-settings-autosave.php:
|
8951 |
msgid ""
|
8952 |
"Make sure the Full height (Table I-B2) is properly configured to prevent "
|
8953 |
"these areas to overlap unwanted space."
|
@@ -8955,37 +8953,37 @@ msgstr ""
|
|
8955 |
"Assurez vous que la pleine taille (table I-B2) est correctement configurée "
|
8956 |
"pour éviter que ces zones ne recouvrent d'autres espaces d’affichage."
|
8957 |
|
8958 |
-
#: wppa-settings-autosave.php:
|
8959 |
msgid "Ugly Browse Buttons"
|
8960 |
msgstr "Boutons de navigation rudimentaires"
|
8961 |
|
8962 |
-
#: wppa-settings-autosave.php:
|
8963 |
msgid "Enable the ugly browsing buttons."
|
8964 |
msgstr "Activer les boutons de navigation rudimentaires."
|
8965 |
|
8966 |
-
#: wppa-settings-autosave.php:
|
8967 |
msgid "If checked, the fullsize image is covered by two browse buttons."
|
8968 |
msgstr ""
|
8969 |
"Si coché: deux boutons de navigation seront affichés sur l'image pleine "
|
8970 |
"taille."
|
8971 |
|
8972 |
-
#: wppa-settings-autosave.php:
|
8973 |
msgid "Start/stop icons"
|
8974 |
msgstr "Icônes Start/Stop"
|
8975 |
|
8976 |
-
#: wppa-settings-autosave.php:
|
8977 |
msgid "Show start and stop icons at the center of the slide"
|
8978 |
msgstr "Montrer les icônes Démarrer et Arrêter au centre de la diapositive"
|
8979 |
|
8980 |
-
#: wppa-settings-autosave.php:
|
8981 |
msgid "Show custom box"
|
8982 |
msgstr "Montrer boîte personnalisée"
|
8983 |
|
8984 |
-
#: wppa-settings-autosave.php:
|
8985 |
msgid "Display the custom box in the slideshow"
|
8986 |
msgstr "Afficher la boîte personnalisée dans le diaporama"
|
8987 |
|
8988 |
-
#: wppa-settings-autosave.php:
|
8989 |
msgid ""
|
8990 |
"You can fill the custom box with any html you like. It will not be checked, "
|
8991 |
"so it is your own responsability to close tags properly."
|
@@ -8993,109 +8991,109 @@ msgstr ""
|
|
8993 |
"Vous pouvez remplir la boîte personnalisée avec du code HTML. Il ne sera pas "
|
8994 |
"vérifié, c'est à vous de fermer les balises HTML correctement."
|
8995 |
|
8996 |
-
#: wppa-settings-autosave.php:
|
8997 |
msgid "The position of the box can be defined in Table IX-E."
|
8998 |
msgstr "La position de la boîte peut être réglée dans la table IX-E."
|
8999 |
|
9000 |
-
#: wppa-settings-autosave.php:
|
9001 |
msgid "Custom content"
|
9002 |
msgstr "Contenu personnalisé"
|
9003 |
|
9004 |
-
#: wppa-settings-autosave.php:
|
9005 |
msgid "The content (html) of the custom box."
|
9006 |
msgstr "Le contenu (HTML) de la boîte personnalisée."
|
9007 |
|
9008 |
-
#: wppa-settings-autosave.php:
|
9009 |
msgid "Slideshow/Number bar"
|
9010 |
msgstr "Barre menu Diaporama/Numéro"
|
9011 |
|
9012 |
-
#: wppa-settings-autosave.php:
|
9013 |
msgid "Display the Slideshow / Number bar."
|
9014 |
msgstr "Afficher la barre Diaporama / Numérotation."
|
9015 |
|
9016 |
-
#: wppa-settings-autosave.php:
|
9017 |
msgid "If checked: display the number boxes on slideshow"
|
9018 |
msgstr "Si coché: affiche les boites de numérotation dans le diaporama"
|
9019 |
|
9020 |
-
#: wppa-settings-autosave.php:
|
9021 |
msgid "IPTC system"
|
9022 |
msgstr "Système IPTC"
|
9023 |
|
9024 |
-
#: wppa-settings-autosave.php:
|
9025 |
msgid "Enable the iptc system."
|
9026 |
msgstr "Activer le système IPTC."
|
9027 |
|
9028 |
-
#: wppa-settings-autosave.php:
|
9029 |
msgid "Display the iptc box under the fullsize images."
|
9030 |
msgstr "Affiche la boîte IPTC sous les images pleine taille."
|
9031 |
|
9032 |
-
#: wppa-settings-autosave.php:
|
9033 |
msgid "IPTC open"
|
9034 |
msgstr "IPTC ouvert"
|
9035 |
|
9036 |
-
#: wppa-settings-autosave.php:
|
9037 |
msgid "Display the iptc box initially opened."
|
9038 |
msgstr "Affiche la boîte IPTC initialement ouverte."
|
9039 |
|
9040 |
-
#: wppa-settings-autosave.php:
|
9041 |
msgid "Display the iptc box under the fullsize images initially open."
|
9042 |
msgstr ""
|
9043 |
"Affiche la boîte IPTC sous les images pleine taille initialement ouvertes."
|
9044 |
|
9045 |
-
#: wppa-settings-autosave.php:
|
9046 |
msgid "EXIF system"
|
9047 |
msgstr "Système EXIF"
|
9048 |
|
9049 |
-
#: wppa-settings-autosave.php:
|
9050 |
msgid "Enable the exif system."
|
9051 |
msgstr "Activer le système EXIF."
|
9052 |
|
9053 |
-
#: wppa-settings-autosave.php:
|
9054 |
msgid "Display the exif box under the fullsize images."
|
9055 |
msgstr "Affiche la boîte EXIF sous les images pleine taille."
|
9056 |
|
9057 |
-
#: wppa-settings-autosave.php:
|
9058 |
msgid "EXIF open"
|
9059 |
msgstr "EXIF ouvert"
|
9060 |
|
9061 |
-
#: wppa-settings-autosave.php:
|
9062 |
msgid "Display the exif box initially opened."
|
9063 |
msgstr "Affiche la boîte EXIF initialement ouverte."
|
9064 |
|
9065 |
-
#: wppa-settings-autosave.php:
|
9066 |
msgid "Display the exif box under the fullsize images initially open."
|
9067 |
msgstr ""
|
9068 |
"Affiche la boîte EXIF sous les images pleine taille initialement ouvertes."
|
9069 |
|
9070 |
-
#: wppa-settings-autosave.php:
|
9071 |
msgid "Social media share box related visibility settings"
|
9072 |
msgstr "Réglages d’affichage de la boîte de réseaux sociaux"
|
9073 |
|
9074 |
-
#: wppa-settings-autosave.php:
|
9075 |
msgid "Show Share Box"
|
9076 |
msgstr "Montrer la boîte de partage"
|
9077 |
|
9078 |
-
#: wppa-settings-autosave.php:
|
9079 |
msgid "Display the share social media buttons box."
|
9080 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
9081 |
|
9082 |
-
#: wppa-settings-autosave.php:
|
9083 |
msgid "Hide when running"
|
9084 |
msgstr "Cacher lorsqu'en fonctionnement"
|
9085 |
|
9086 |
-
#: wppa-settings-autosave.php:
|
9087 |
msgid "Hide the SM box when slideshow runs."
|
9088 |
msgstr "Cacher la boîte de partage lorsque le diaporama tourne."
|
9089 |
|
9090 |
-
#: wppa-settings-autosave.php:
|
9091 |
msgid "Show Share Box Widget"
|
9092 |
msgstr "Montrer les boutons de partage: widgets"
|
9093 |
|
9094 |
-
#: wppa-settings-autosave.php:
|
9095 |
msgid "Display the share social media buttons box in widgets."
|
9096 |
msgstr "Afficher les boutons de partage sociaux dans les widgets."
|
9097 |
|
9098 |
-
#: wppa-settings-autosave.php:
|
9099 |
msgid ""
|
9100 |
"This setting applies to normal slideshows in widgets, not to the "
|
9101 |
"slideshowwidget as that is a slideonly display."
|
@@ -9103,71 +9101,71 @@ msgstr ""
|
|
9103 |
"Ce réglage s'applique aux diaporamas normaux dans les widgets, pas au widget "
|
9104 |
"Slideshow car il a un affichage spécifique."
|
9105 |
|
9106 |
-
#: wppa-settings-autosave.php:
|
9107 |
msgid "Show Share Buttons Thumbs"
|
9108 |
msgstr "Montrer les boutons de partage: vignettes"
|
9109 |
|
9110 |
-
#: wppa-settings-autosave.php:
|
9111 |
msgid "Display the share social media buttons under thumbnails."
|
9112 |
msgstr "Afficher les boutons de réseaux sociaux sous les vignettes."
|
9113 |
|
9114 |
-
#: wppa-settings-autosave.php:
|
9115 |
msgid "Show Share Buttons Lightbox"
|
9116 |
msgstr "Montrer les boutons de partage: Lightbox"
|
9117 |
|
9118 |
-
#: wppa-settings-autosave.php:
|
9119 |
msgid "Display the share social media buttons on lightbox displays."
|
9120 |
msgstr "Afficher les boutons de partage sociaux dans les affichages Lightbox."
|
9121 |
|
9122 |
-
#: wppa-settings-autosave.php:
|
9123 |
msgid "Show Share Buttons Mphoto"
|
9124 |
msgstr "Montrer boutons de partage: Mphoto"
|
9125 |
|
9126 |
-
#: wppa-settings-autosave.php:
|
9127 |
msgid "Display the share social media buttons on mphoto displays."
|
9128 |
msgstr "Afficher les boutons de réseaux sociaux dans les affichages mphoto."
|
9129 |
|
9130 |
-
#: wppa-settings-autosave.php:
|
9131 |
msgid "Void pages share"
|
9132 |
msgstr "Void pages share"
|
9133 |
|
9134 |
-
#: wppa-settings-autosave.php:
|
9135 |
msgid "Do not show share on these pages"
|
9136 |
msgstr "Ne montrez pas d’action sur ces pages"
|
9137 |
|
9138 |
-
#: wppa-settings-autosave.php:
|
9139 |
msgid "Use this for pages that require the user is logged in"
|
9140 |
msgstr "Utilisez les pages qui nécessitent l'utilisateur est connecté"
|
9141 |
|
9142 |
-
#: wppa-settings-autosave.php:
|
9143 |
msgid "--- Select one or more pages ---"
|
9144 |
msgstr "---Sélectionnez une ou plusieurs pages---"
|
9145 |
|
9146 |
-
#: wppa-settings-autosave.php:
|
9147 |
msgid "Show QR Code"
|
9148 |
msgstr "Montrer le QR code"
|
9149 |
|
9150 |
-
#: wppa-settings-autosave.php:
|
9151 |
msgid "Display the QR code in the share box."
|
9152 |
msgstr "Afficher le QR code dans la boîte de partage."
|
9153 |
|
9154 |
-
#: wppa-settings-autosave.php:
|
9155 |
msgid "Show Twitter button"
|
9156 |
msgstr "Montrer bouton Twitter"
|
9157 |
|
9158 |
-
#: wppa-settings-autosave.php:
|
9159 |
msgid "Display the Twitter button in the share box."
|
9160 |
msgstr "Afficher le bouton Twitter dans la boîte de partage."
|
9161 |
|
9162 |
-
#: wppa-settings-autosave.php:
|
9163 |
msgid "The creator's Twitter account"
|
9164 |
msgstr "L’identifiant du compte Twitter du créateur"
|
9165 |
|
9166 |
-
#: wppa-settings-autosave.php:
|
9167 |
msgid "The Twitter @username a twitter card should be attributed to."
|
9168 |
msgstr "Le Twitter @UserName une carte twitter devrait être attribuée à."
|
9169 |
|
9170 |
-
#: wppa-settings-autosave.php:
|
9171 |
msgid ""
|
9172 |
"If you want to share the image directly - by a so called twitter card - you "
|
9173 |
"must enter your twitter account name here"
|
@@ -9175,96 +9173,96 @@ msgstr ""
|
|
9175 |
"Si vous souhaitez partager l’image directement - par une carte dite de "
|
9176 |
"twitter - vous devez entrer votre nom de compte twitter ici"
|
9177 |
|
9178 |
-
#: wppa-settings-autosave.php:
|
9179 |
msgid "Show Google+ button"
|
9180 |
msgstr "Montrer bouton Google+"
|
9181 |
|
9182 |
-
#: wppa-settings-autosave.php:
|
9183 |
msgid "Display the Google+ button in the share box."
|
9184 |
msgstr "Afficher le bouton Google+ dans la boîte de partage."
|
9185 |
|
9186 |
-
#: wppa-settings-autosave.php:
|
9187 |
msgid "Show Pinterest button"
|
9188 |
msgstr "Montrer bouton Pinterest"
|
9189 |
|
9190 |
-
#: wppa-settings-autosave.php:
|
9191 |
msgid "Display the Pintrest button in the share box."
|
9192 |
msgstr "Afficher le bouton Pinterest dans la boîte de partage."
|
9193 |
|
9194 |
-
#: wppa-settings-autosave.php:
|
9195 |
msgid "Show LinkedIn button"
|
9196 |
msgstr "Montrer bouton LinkedIn"
|
9197 |
|
9198 |
-
#: wppa-settings-autosave.php:
|
9199 |
msgid "Display the LinkedIn button in the share box."
|
9200 |
msgstr "Afficher le bouton LinkedIn dans la boîte de partage."
|
9201 |
|
9202 |
-
#: wppa-settings-autosave.php:
|
9203 |
msgid "Show Facebook share button"
|
9204 |
msgstr "Montrer bouton Facebook share"
|
9205 |
|
9206 |
-
#: wppa-settings-autosave.php:
|
9207 |
msgid "Display the Facebook button in the share box."
|
9208 |
msgstr "Afficher le bouton Facebook dans la boîte de partage."
|
9209 |
|
9210 |
-
#: wppa-settings-autosave.php:
|
9211 |
msgid "Show Facebook like button"
|
9212 |
msgstr "Montrer bouton Facebook like"
|
9213 |
|
9214 |
-
#: wppa-settings-autosave.php:
|
9215 |
msgid "Display type"
|
9216 |
msgstr "Type d’affichage"
|
9217 |
|
9218 |
-
#: wppa-settings-autosave.php:
|
9219 |
msgid "Select the Facebook button display type."
|
9220 |
msgstr "Choisir le type d’affichage du bouton Facebook."
|
9221 |
|
9222 |
-
#: wppa-settings-autosave.php:
|
9223 |
msgid "Button with counter"
|
9224 |
msgstr "Bouton avec compteur"
|
9225 |
|
9226 |
-
#: wppa-settings-autosave.php:
|
9227 |
msgid "Box with counter"
|
9228 |
msgstr "Boîte avec compteur"
|
9229 |
|
9230 |
-
#: wppa-settings-autosave.php:
|
9231 |
msgid "Show Facebook comment box"
|
9232 |
msgstr "Montrer la boîte de commentaire Facebook"
|
9233 |
|
9234 |
-
#: wppa-settings-autosave.php:
|
9235 |
msgid "Display the Facebook comment dialog box in the share box."
|
9236 |
msgstr ""
|
9237 |
"Afficher la boîte de saisie de commentaire Facebook dans la boîte de partage."
|
9238 |
|
9239 |
-
#: wppa-settings-autosave.php:
|
9240 |
msgid "Facebook User Id"
|
9241 |
msgstr "ID utilisateur Facebook"
|
9242 |
|
9243 |
-
#: wppa-settings-autosave.php:
|
9244 |
msgid "Enter your facebook user id to be able to moderate comments and sends"
|
9245 |
msgstr ""
|
9246 |
"Entrez votre ID d'utilisateur Facebook pour pouvoir modérer les commentaires "
|
9247 |
"et envois"
|
9248 |
|
9249 |
-
#: wppa-settings-autosave.php:
|
9250 |
msgid "Facebook App Id"
|
9251 |
msgstr "ID d'application Facebook"
|
9252 |
|
9253 |
-
#: wppa-settings-autosave.php:
|
9254 |
msgid "Enter your facebook app id to be able to moderate comments and sends"
|
9255 |
msgstr ""
|
9256 |
"Entrer votre ID d'application Facebook pour pouvoir modérer les commentaires "
|
9257 |
"et envois"
|
9258 |
|
9259 |
-
#: wppa-settings-autosave.php:
|
9260 |
msgid "Facebook js SDK"
|
9261 |
msgstr "SDK Facebook js"
|
9262 |
|
9263 |
-
#: wppa-settings-autosave.php:
|
9264 |
msgid "Load Facebook js SDK"
|
9265 |
msgstr "Charger le SDK Facebook js"
|
9266 |
|
9267 |
-
#: wppa-settings-autosave.php:
|
9268 |
msgid ""
|
9269 |
"Uncheck this box only when there is a conflict with an other plugin that "
|
9270 |
"also loads the Facebook js SDK."
|
@@ -9272,15 +9270,15 @@ msgstr ""
|
|
9272 |
"Décochez cette case seulement quand il y a un conflit avec un autre plugin "
|
9273 |
"(greffon) qui charge le SDK Facebook js."
|
9274 |
|
9275 |
-
#: wppa-settings-autosave.php:
|
9276 |
msgid "Share single image"
|
9277 |
msgstr "Partager image"
|
9278 |
|
9279 |
-
#: wppa-settings-autosave.php:
|
9280 |
msgid "Share a link to a single image, not the slideshow."
|
9281 |
msgstr "Partager un lien vers une image, pas vers le diaporama."
|
9282 |
|
9283 |
-
#: wppa-settings-autosave.php:
|
9284 |
msgid ""
|
9285 |
"The sharelink points to a page with a single image rather than to the page "
|
9286 |
"with the photo in the slideshow."
|
@@ -9288,79 +9286,79 @@ msgstr ""
|
|
9288 |
"Le lien de partage pointe vers une page avec une image seule plutôt que vers "
|
9289 |
"la page avec la photo dans le diaporama."
|
9290 |
|
9291 |
-
#: wppa-settings-autosave.php:
|
9292 |
msgid "Thumbnail display related visibility settings"
|
9293 |
msgstr "Réglages pour l'affichage des vignettes"
|
9294 |
|
9295 |
-
#: wppa-settings-autosave.php:
|
9296 |
msgid "Thumbnail name"
|
9297 |
msgstr "Vignettes, nom"
|
9298 |
|
9299 |
-
#: wppa-settings-autosave.php:
|
9300 |
msgid "Display Thumbnail name."
|
9301 |
msgstr "Afficher le nom de la vignette."
|
9302 |
|
9303 |
-
#: wppa-settings-autosave.php:
|
9304 |
msgid "Display photo name under thumbnail images."
|
9305 |
msgstr "Afficher le nom de la photo sous les vignettes."
|
9306 |
|
9307 |
-
#: wppa-settings-autosave.php:
|
9308 |
msgid "Thumbnail desc"
|
9309 |
msgstr "Vignettes, description"
|
9310 |
|
9311 |
-
#: wppa-settings-autosave.php:
|
9312 |
msgid "Display Thumbnail description."
|
9313 |
msgstr "Affichage vignette, description."
|
9314 |
|
9315 |
-
#: wppa-settings-autosave.php:
|
9316 |
msgid "Display description of the photo under thumbnail images."
|
9317 |
msgstr "Afficher la description de la photo sous les vignettes."
|
9318 |
|
9319 |
-
#: wppa-settings-autosave.php:
|
9320 |
msgid "Thumbnail rating"
|
9321 |
msgstr "Vignettes, note"
|
9322 |
|
9323 |
-
#: wppa-settings-autosave.php:
|
9324 |
msgid "Display Thumbnail Rating."
|
9325 |
msgstr "Affichage vignette, note."
|
9326 |
|
9327 |
-
#: wppa-settings-autosave.php:
|
9328 |
msgid "Display the rating of the photo under the thumbnail image."
|
9329 |
msgstr "Afficher la note de la photo sous la vignette."
|
9330 |
|
9331 |
-
#: wppa-settings-autosave.php:
|
9332 |
msgid "Thumbnail comcount"
|
9333 |
msgstr "Vignettes, compteur commentaires"
|
9334 |
|
9335 |
-
#: wppa-settings-autosave.php:
|
9336 |
msgid "Display Thumbnail Comment count."
|
9337 |
msgstr "Affichage vignette, compteur commentaires."
|
9338 |
|
9339 |
-
#: wppa-settings-autosave.php:
|
9340 |
msgid "Display the number of comments to the photo under the thumbnail image."
|
9341 |
msgstr "Afficher le nombre de commentaires de la photo sous la vignette."
|
9342 |
|
9343 |
-
#: wppa-settings-autosave.php:
|
9344 |
msgid "Thumbnail viewcount"
|
9345 |
msgstr "Vignettes, compteur de vues"
|
9346 |
|
9347 |
-
#: wppa-settings-autosave.php:
|
9348 |
msgid "Display the number of views."
|
9349 |
msgstr "Affichage vignette, compteur de vues."
|
9350 |
|
9351 |
-
#: wppa-settings-autosave.php:
|
9352 |
msgid "Display the number of views under the thumbnail image."
|
9353 |
msgstr "Afficher le nombre de vues sous la vignette."
|
9354 |
|
9355 |
-
#: wppa-settings-autosave.php:
|
9356 |
msgid "Thumbnail virt album"
|
9357 |
msgstr "Vignettes, album virtuel"
|
9358 |
|
9359 |
-
#: wppa-settings-autosave.php:
|
9360 |
msgid "Display the real album name on virtual album display."
|
9361 |
msgstr "Affiche le nom d'album réel dans l'album virtuel."
|
9362 |
|
9363 |
-
#: wppa-settings-autosave.php:
|
9364 |
msgid ""
|
9365 |
"Display the album name of the photo in parenthesis under the thumbnail on "
|
9366 |
"virtual album displays like search results etc."
|
@@ -9368,15 +9366,15 @@ msgstr ""
|
|
9368 |
"Afficher le nom de l'album (entre parenthèses) auquel appartient la photo "
|
9369 |
"sous la vignette dans l'album virtuel (comme résultats de recherches etc.)"
|
9370 |
|
9371 |
-
#: wppa-settings-autosave.php:
|
9372 |
msgid "Thumbnail video"
|
9373 |
msgstr "Vignettes, vidéo"
|
9374 |
|
9375 |
-
#: wppa-settings-autosave.php:
|
9376 |
msgid "Show video controls on thumbnail displays."
|
9377 |
msgstr "Montrer les contrôles vidéo dans les affichages vignettes."
|
9378 |
|
9379 |
-
#: wppa-settings-autosave.php:
|
9380 |
msgid ""
|
9381 |
"Works on default thumbnail type only. You can play the video only when the "
|
9382 |
"link is set to no link at all."
|
@@ -9384,101 +9382,101 @@ msgstr ""
|
|
9384 |
"Marche seulement pour les vignettes par défaut. Vous pouvez lancer la vidéo "
|
9385 |
"seulement lorsque le lien est réglé à pas de lien."
|
9386 |
|
9387 |
-
#: wppa-settings-autosave.php:
|
9388 |
msgid "Thumbnail audio"
|
9389 |
msgstr "Vignettes, audio"
|
9390 |
|
9391 |
-
#: wppa-settings-autosave.php:
|
9392 |
msgid "Show audio controls on thumbnail displays."
|
9393 |
msgstr "Montrer les contrôles audio dans les affichages vignettes."
|
9394 |
|
9395 |
-
#: wppa-settings-autosave.php:
|
9396 |
msgid "Popup name"
|
9397 |
msgstr "Popups, nom"
|
9398 |
|
9399 |
-
#: wppa-settings-autosave.php:
|
9400 |
msgid "Display Thumbnail name on popup."
|
9401 |
msgstr "Affiche le nom de la vignette dans le popup."
|
9402 |
|
9403 |
-
#: wppa-settings-autosave.php:
|
9404 |
msgid "Display photo name under thumbnail images on the popup."
|
9405 |
msgstr "Afficher le nom de la photo sous les vignettes dans le popup."
|
9406 |
|
9407 |
-
#: wppa-settings-autosave.php:
|
9408 |
msgid "Popup (owner)"
|
9409 |
msgstr "Popup (propriétaire)"
|
9410 |
|
9411 |
-
#: wppa-settings-autosave.php:
|
9412 |
msgid "Display owner on popup."
|
9413 |
msgstr "Popup, affichage du nom du propriétaire."
|
9414 |
|
9415 |
-
#: wppa-settings-autosave.php:
|
9416 |
msgid "Display photo owner under thumbnail images on the popup."
|
9417 |
msgstr "Afficher le propriétaire de la photo sous les vignettes dans le popup."
|
9418 |
|
9419 |
-
#: wppa-settings-autosave.php:
|
9420 |
msgid "Popup desc"
|
9421 |
msgstr "Popups, description"
|
9422 |
|
9423 |
-
#: wppa-settings-autosave.php:
|
9424 |
msgid "Display Thumbnail description on popup."
|
9425 |
msgstr "Popup, affichage de la description de la photo."
|
9426 |
|
9427 |
-
#: wppa-settings-autosave.php:
|
9428 |
msgid "Display description of the photo under thumbnail images on the popup."
|
9429 |
msgstr "Afficher la description de la photo sous les vignettes dans le popup."
|
9430 |
|
9431 |
-
#: wppa-settings-autosave.php:
|
9432 |
msgid "Popup desc no links"
|
9433 |
msgstr "Popups, pas de lien dans la description"
|
9434 |
|
9435 |
-
#: wppa-settings-autosave.php:
|
9436 |
msgid "Strip html anchor tags from descriptions on popups"
|
9437 |
msgstr "Enlève "
|
9438 |
|
9439 |
-
#: wppa-settings-autosave.php:
|
9440 |
msgid ""
|
9441 |
"Use this option to prevent the display of links that cannot be activated."
|
9442 |
msgstr ""
|
9443 |
"Utiliser ce réglage pour éviter l'affichage de liens qui ne peuvent être "
|
9444 |
"utilisés."
|
9445 |
|
9446 |
-
#: wppa-settings-autosave.php:
|
9447 |
msgid "Popup rating"
|
9448 |
msgstr "Popups, note"
|
9449 |
|
9450 |
-
#: wppa-settings-autosave.php:
|
9451 |
msgid "Display Thumbnail Rating on popup."
|
9452 |
msgstr "Afficher la note de la vignette sur le popup."
|
9453 |
|
9454 |
-
#: wppa-settings-autosave.php:
|
9455 |
msgid "Display the rating of the photo under the thumbnail image on the popup."
|
9456 |
msgstr "Afficher la note de la photo sous la vignette sur le popup."
|
9457 |
|
9458 |
-
#: wppa-settings-autosave.php:
|
9459 |
msgid "Popup comcount"
|
9460 |
msgstr "Popups, ComCount"
|
9461 |
|
9462 |
-
#: wppa-settings-autosave.php:
|
9463 |
msgid "Display Thumbnail Comment count on popup."
|
9464 |
msgstr "Afficher le nombre de commentaires de la vignette sur le popup."
|
9465 |
|
9466 |
-
#: wppa-settings-autosave.php:
|
9467 |
msgid ""
|
9468 |
"Display the number of comments of the photo under the thumbnail image on the "
|
9469 |
"popup."
|
9470 |
msgstr ""
|
9471 |
"Afficher le nombre de commentaires de la photo sous la vignette sur le popup."
|
9472 |
|
9473 |
-
#: wppa-settings-autosave.php:
|
9474 |
msgid "Show rating count"
|
9475 |
msgstr "Montrer le nombre de notes"
|
9476 |
|
9477 |
-
#: wppa-settings-autosave.php:
|
9478 |
msgid "Display the number of votes along with average ratings."
|
9479 |
msgstr "Afficher le nombre de votes avec les notes moyennes."
|
9480 |
|
9481 |
-
#: wppa-settings-autosave.php:
|
9482 |
msgid ""
|
9483 |
"If checked, the number of votes is displayed along with average rating "
|
9484 |
"displays on thumbnail and popup displays."
|
@@ -9486,36 +9484,36 @@ msgstr ""
|
|
9486 |
"Si coché, le nombre de votes est affiché avec la note moyenne sur la "
|
9487 |
"vignette et le popup."
|
9488 |
|
9489 |
-
#: wppa-settings-autosave.php:
|
9490 |
msgid "Show name on thumb area"
|
9491 |
msgstr "Montrer le nom sur la zone vignette"
|
9492 |
|
9493 |
-
#: wppa-settings-autosave.php:
|
9494 |
msgid "Select if and where to display the album name on the thumbnail display."
|
9495 |
msgstr ""
|
9496 |
"Choisir si le nom de l'album est affiché sur la vignette ainsi que sa "
|
9497 |
"position."
|
9498 |
|
9499 |
-
#: wppa-settings-autosave.php:
|
9500 |
-
#: wppa-settings-autosave.php:
|
9501 |
msgid "None"
|
9502 |
msgstr "Aucun"
|
9503 |
|
9504 |
-
#: wppa-settings-autosave.php:
|
9505 |
-
#: wppa-settings-autosave.php:
|
9506 |
msgid "At the top"
|
9507 |
msgstr "En haut"
|
9508 |
|
9509 |
-
#: wppa-settings-autosave.php:
|
9510 |
-
#: wppa-settings-autosave.php:
|
9511 |
msgid "At the bottom"
|
9512 |
msgstr "En bas"
|
9513 |
|
9514 |
-
#: wppa-settings-autosave.php:
|
9515 |
msgid "Show desc on thumb area"
|
9516 |
msgstr "Montrer la description sur la vignette"
|
9517 |
|
9518 |
-
#: wppa-settings-autosave.php:
|
9519 |
msgid ""
|
9520 |
"Select if and where to display the album description on the thumbnail "
|
9521 |
"display."
|
@@ -9523,55 +9521,55 @@ msgstr ""
|
|
9523 |
"Choisir si la description de l'album est affiché sur la vignette ainsi que "
|
9524 |
"sa position."
|
9525 |
|
9526 |
-
#: wppa-settings-autosave.php:
|
9527 |
msgid "Show Edit/Delete links"
|
9528 |
msgstr "Montrer liens Modifier/Effacer"
|
9529 |
|
9530 |
-
#: wppa-settings-autosave.php:
|
9531 |
msgid "Show these links under default thumbnails for owner and admin."
|
9532 |
msgstr ""
|
9533 |
"Montrer ces liens sous la vignette par défaut pour propriétaire et "
|
9534 |
"administrateur."
|
9535 |
|
9536 |
-
#: wppa-settings-autosave.php:
|
9537 |
msgid "Show empty thumbnail area"
|
9538 |
msgstr "Montrer zone de vignette vide"
|
9539 |
|
9540 |
-
#: wppa-settings-autosave.php:
|
9541 |
msgid "Display thumbnail areas with upload link only for empty albums."
|
9542 |
msgstr ""
|
9543 |
"Afficher les zones de vignette avec le lien de chargement seulement pour les "
|
9544 |
"albums vides."
|
9545 |
|
9546 |
-
#: wppa-settings-autosave.php:
|
9547 |
msgid "Upload/create link on thumbnail area"
|
9548 |
msgstr "Télécharger/créer un lien sur la zone de vignette"
|
9549 |
|
9550 |
-
#: wppa-settings-autosave.php:
|
9551 |
msgid "Select the location of the upload and crete links."
|
9552 |
msgstr "Sélectionnez l’emplacement des liens upload et Creer."
|
9553 |
|
9554 |
-
#: wppa-settings-autosave.php:
|
9555 |
msgid "Album cover related visibility settings"
|
9556 |
msgstr "Réglages pour l'affichage des couvertures d'album"
|
9557 |
|
9558 |
-
#: wppa-settings-autosave.php:
|
9559 |
msgid "Covertext"
|
9560 |
msgstr "Texte de couverture"
|
9561 |
|
9562 |
-
#: wppa-settings-autosave.php:
|
9563 |
msgid "Show the text on the album cover."
|
9564 |
msgstr "Montrer le texte sur la couverture de l'album."
|
9565 |
|
9566 |
-
#: wppa-settings-autosave.php:
|
9567 |
msgid "Display the album decription on the album cover"
|
9568 |
msgstr "Afficher la description de l'album sur la couverture"
|
9569 |
|
9570 |
-
#: wppa-settings-autosave.php:
|
9571 |
msgid "Enable the slideshow."
|
9572 |
msgstr "Activer le diaporama."
|
9573 |
|
9574 |
-
#: wppa-settings-autosave.php:
|
9575 |
msgid ""
|
9576 |
"If you do not want slideshows: uncheck this box. Browsing full size images "
|
9577 |
"will remain possible."
|
@@ -9579,23 +9577,23 @@ msgstr ""
|
|
9579 |
"Si vous ne voulez pas de diaporamas: décochez cette case. Naviguer dans les "
|
9580 |
"images pleine taille sera toujours possible."
|
9581 |
|
9582 |
-
#: wppa-settings-autosave.php:
|
9583 |
msgid "Slideshow/Browse"
|
9584 |
msgstr "Diaporama/Naviguer"
|
9585 |
|
9586 |
-
#: wppa-settings-autosave.php:
|
9587 |
msgid "Display the Slideshow / Browse photos link on album covers"
|
9588 |
msgstr ""
|
9589 |
"Afficher le lien photo Diaporama / Naviguer sur les couvertures d'album"
|
9590 |
|
9591 |
-
#: wppa-settings-autosave.php:
|
9592 |
msgid ""
|
9593 |
"This setting causes the Slideshow link to be displayed on the album cover."
|
9594 |
msgstr ""
|
9595 |
"Ce réglage permet l’affichage du lien du diaporama sur la couverture de "
|
9596 |
"l'album."
|
9597 |
|
9598 |
-
#: wppa-settings-autosave.php:
|
9599 |
msgid ""
|
9600 |
"If slideshows are disabled in item 2 in this table, you will see a browse "
|
9601 |
"link to fullsize images."
|
@@ -9603,30 +9601,30 @@ msgstr ""
|
|
9603 |
"Si les diaporamas sont désactivés dans l'item 2 de cette table, vous verrez "
|
9604 |
"un lien vers les images pleine taille."
|
9605 |
|
9606 |
-
#: wppa-settings-autosave.php:
|
9607 |
msgid "If you do not want the browse link either, uncheck this item."
|
9608 |
msgstr ""
|
9609 |
"Si vous ne voulez pas non plus du lien de navigation, décochez cet item."
|
9610 |
|
9611 |
-
#: wppa-settings-autosave.php:
|
9612 |
msgid "View ..."
|
9613 |
msgstr "Voir..."
|
9614 |
|
9615 |
-
#: wppa-settings-autosave.php:
|
9616 |
msgid "Display the View xx albums and yy photos link on album covers"
|
9617 |
msgstr ""
|
9618 |
"Afficher le lien Voir xx albums et yy photos sur les couvertures d'album"
|
9619 |
|
9620 |
-
#: wppa-settings-autosave.php:
|
9621 |
msgid "Treecount"
|
9622 |
msgstr "Treecount"
|
9623 |
|
9624 |
-
#: wppa-settings-autosave.php:
|
9625 |
msgid "Disaplay the total number of (sub)albums and photos in subalbums"
|
9626 |
msgstr ""
|
9627 |
"Afficher le nombre total d'albums fils et des photos qui y sont contenues"
|
9628 |
|
9629 |
-
#: wppa-settings-autosave.php:
|
9630 |
msgid ""
|
9631 |
"Displays the total number of sub albums and photos in the entire album tree "
|
9632 |
"in parenthesis if the numbers differ from the direct content of the album."
|
@@ -9634,94 +9632,94 @@ msgstr ""
|
|
9634 |
"Affiche le nombre total d'albums fils et de photos dans l'arborescence "
|
9635 |
"entière entre parenthèses si le nombre diffère du contenu direct de l'album."
|
9636 |
|
9637 |
-
#: wppa-settings-autosave.php:
|
9638 |
msgid "detailed"
|
9639 |
msgstr "détaillé"
|
9640 |
|
9641 |
-
#: wppa-settings-autosave.php:
|
9642 |
msgid "totals only"
|
9643 |
msgstr "totaux seulement"
|
9644 |
|
9645 |
-
#: wppa-settings-autosave.php:
|
9646 |
msgid "Show categories"
|
9647 |
msgstr "Montrer catégories"
|
9648 |
|
9649 |
-
#: wppa-settings-autosave.php:
|
9650 |
msgid "Display the album categories on the covers."
|
9651 |
msgstr "Afficher les catégories d'album sur les couvertures."
|
9652 |
|
9653 |
-
#: wppa-settings-autosave.php:
|
9654 |
msgid "Skip empty albums"
|
9655 |
msgstr "Ignorer les albums vides"
|
9656 |
|
9657 |
-
#: wppa-settings-autosave.php:
|
9658 |
msgid "Do not show empty albums, except for admin and owner."
|
9659 |
msgstr ""
|
9660 |
"Ne pas montrer les albums vides, sauf pour administrateur et propriétaire."
|
9661 |
|
9662 |
-
#: wppa-settings-autosave.php:
|
9663 |
msgid "Count on title"
|
9664 |
msgstr "Compte sur le titre"
|
9665 |
|
9666 |
-
#: wppa-settings-autosave.php:
|
9667 |
msgid "Show photocount along with album title. "
|
9668 |
msgstr "Afficher nombre des photos avec titre de l'album."
|
9669 |
|
9670 |
-
#: wppa-settings-autosave.php:
|
9671 |
msgid "top album only"
|
9672 |
msgstr "top album seulement"
|
9673 |
|
9674 |
-
#: wppa-settings-autosave.php:
|
9675 |
msgid "total tree"
|
9676 |
msgstr "arbre totale"
|
9677 |
|
9678 |
-
#: wppa-settings-autosave.php:
|
9679 |
msgid "Viewcount on cover"
|
9680 |
msgstr "Compteur vues sur couverture"
|
9681 |
|
9682 |
-
#: wppa-settings-autosave.php:
|
9683 |
msgid "Show total photo viewcount on album covers."
|
9684 |
msgstr "Afficher nombre total de vues photo sur les pochettes d'albums."
|
9685 |
|
9686 |
-
#: wppa-settings-autosave.php:
|
9687 |
msgid "Widget related visibility settings"
|
9688 |
msgstr "Réglages pour l'affichage des widgets"
|
9689 |
|
9690 |
-
#: wppa-settings-autosave.php:
|
9691 |
msgid "Big Browse Buttons in widget"
|
9692 |
msgstr "Gros boutons de navigation dans le widget"
|
9693 |
|
9694 |
-
#: wppa-settings-autosave.php:
|
9695 |
msgid "Enable invisible browsing buttons in widget slideshows."
|
9696 |
msgstr ""
|
9697 |
"Activer les boutons de navigation invisibles dans les diaporamas de widget."
|
9698 |
|
9699 |
-
#: wppa-settings-autosave.php:
|
9700 |
msgid "Ugly Browse Buttons in widget"
|
9701 |
msgstr "Boutons de navigation rudimentaires dans le widget"
|
9702 |
|
9703 |
-
#: wppa-settings-autosave.php:
|
9704 |
msgid "Enable ugly browsing buttons in widget slideshows."
|
9705 |
msgstr ""
|
9706 |
"Activer les boutons de navigation rudimentaires dans les diaporamas de "
|
9707 |
"widget."
|
9708 |
|
9709 |
-
#: wppa-settings-autosave.php:
|
9710 |
msgid "If checked, the fullsize image is covered by browse buttons."
|
9711 |
msgstr ""
|
9712 |
"Si coché, l'image pleine taille est recouverte par le boutons de navigation."
|
9713 |
|
9714 |
-
#: wppa-settings-autosave.php:
|
9715 |
msgid "Album widget tooltip"
|
9716 |
msgstr "Tooltip dans le widget album"
|
9717 |
|
9718 |
-
#: wppa-settings-autosave.php:
|
9719 |
msgid "Show the album description on hoovering thumbnail in album widget"
|
9720 |
msgstr ""
|
9721 |
"Montrer la description de l'album en survolant la vignette dans le widget "
|
9722 |
"album"
|
9723 |
|
9724 |
-
#: wppa-settings-autosave.php:
|
9725 |
msgid ""
|
9726 |
"Lightbox related settings. These settings have effect only when Table IX-J3 "
|
9727 |
"is set to wppa"
|
@@ -9729,46 +9727,46 @@ msgstr ""
|
|
9729 |
"Réglages pour Lightbox. Ces réglages n'ont d'effet que si table IX-J3 est "
|
9730 |
"réglé à WPPA"
|
9731 |
|
9732 |
-
#: wppa-settings-autosave.php:
|
9733 |
msgid "Overlay theme color"
|
9734 |
msgstr "Couleur de l'overlay du thème"
|
9735 |
|
9736 |
-
#: wppa-settings-autosave.php:
|
9737 |
msgid "The color of the image border and text background."
|
9738 |
msgstr "La couleur de la bordure de l'image et de l'arrière plan du texte."
|
9739 |
|
9740 |
-
#: wppa-settings-autosave.php:
|
9741 |
msgid "Black"
|
9742 |
msgstr "Noir"
|
9743 |
|
9744 |
-
#: wppa-settings-autosave.php:
|
9745 |
msgid "White"
|
9746 |
msgstr "Blanc"
|
9747 |
|
9748 |
-
#: wppa-settings-autosave.php:
|
9749 |
msgid "Overlay background color"
|
9750 |
msgstr "Couleur d'arrière plan de l'overlay"
|
9751 |
|
9752 |
-
#: wppa-settings-autosave.php:
|
9753 |
msgid "The color of the outer background."
|
9754 |
msgstr "La couleur du dernier arrière plan."
|
9755 |
|
9756 |
-
#: wppa-settings-autosave.php:
|
9757 |
msgid "Overlay slide name"
|
9758 |
msgstr "Nom de la diapositive d'overlay"
|
9759 |
|
9760 |
-
#: wppa-settings-autosave.php:
|
9761 |
msgid "Show name if from slide."
|
9762 |
msgstr "Montrer le nom si celui venant de la diapositive."
|
9763 |
|
9764 |
-
#: wppa-settings-autosave.php:
|
9765 |
msgid ""
|
9766 |
"Shows the photos name on a lightbox display when initiated from a slide."
|
9767 |
msgstr ""
|
9768 |
"Montrer le nom des photos dans un affichage Lightbox si lancé à partir d'une "
|
9769 |
"diapositive."
|
9770 |
|
9771 |
-
#: wppa-settings-autosave.php:
|
9772 |
msgid ""
|
9773 |
"This setting also applies to film thumbnails if Table VI-11 is set to "
|
9774 |
"lightbox overlay."
|
@@ -9776,15 +9774,15 @@ msgstr ""
|
|
9776 |
"Ce réglage s'applique aussi aux vignettes de film si table VI-11 est réglé à "
|
9777 |
"Lightbox overlay."
|
9778 |
|
9779 |
-
#: wppa-settings-autosave.php:
|
9780 |
msgid "Overlay slide desc"
|
9781 |
msgstr "Description diapositive overlay"
|
9782 |
|
9783 |
-
#: wppa-settings-autosave.php:
|
9784 |
msgid "Show description if from slide."
|
9785 |
msgstr "Montrer la description si celle venant de la diapositive."
|
9786 |
|
9787 |
-
#: wppa-settings-autosave.php:
|
9788 |
msgid ""
|
9789 |
"Shows the photos description on a lightbox display when initiated from a "
|
9790 |
"slide."
|
@@ -9792,15 +9790,15 @@ msgstr ""
|
|
9792 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9793 |
"depuis une diapositive."
|
9794 |
|
9795 |
-
#: wppa-settings-autosave.php:
|
9796 |
msgid "Overlay thumb name"
|
9797 |
msgstr "Nom vignette overlay"
|
9798 |
|
9799 |
-
#: wppa-settings-autosave.php:
|
9800 |
msgid "Show the photos name if from thumb."
|
9801 |
msgstr "Montrer le nom des photos si celle venant de la vignette."
|
9802 |
|
9803 |
-
#: wppa-settings-autosave.php:
|
9804 |
msgid ""
|
9805 |
"Shows the name on a lightbox display when initiated from a standard "
|
9806 |
"thumbnail or a widget thumbnail."
|
@@ -9808,7 +9806,7 @@ msgstr ""
|
|
9808 |
"Montre le nom dans un affichage Lightbox quand lancé depuis une vignette "
|
9809 |
"standard ou widget Thumbnail."
|
9810 |
|
9811 |
-
#: wppa-settings-autosave.php:
|
9812 |
msgid ""
|
9813 |
"This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
|
9814 |
"and lasten-widget."
|
@@ -9816,15 +9814,15 @@ msgstr ""
|
|
9816 |
"Ce réglage s'applique aux vignettes standard, widget-Thumbnail, -Comment, -"
|
9817 |
"TopTen et -LastTen."
|
9818 |
|
9819 |
-
#: wppa-settings-autosave.php:
|
9820 |
msgid "Overlay thumb desc"
|
9821 |
msgstr "Description vignette overlay"
|
9822 |
|
9823 |
-
#: wppa-settings-autosave.php:
|
9824 |
msgid "Show description if from thumb."
|
9825 |
msgstr "Montrer la description si celle venant de la vignette."
|
9826 |
|
9827 |
-
#: wppa-settings-autosave.php:
|
9828 |
msgid ""
|
9829 |
"Shows the photos description on a lightbox display when initiated from a "
|
9830 |
"standard thumbnail or a widget thumbnail."
|
@@ -9832,30 +9830,30 @@ msgstr ""
|
|
9832 |
"Montre la description des photos dans un affichage Lightbox quand lancé à "
|
9833 |
"partir d'une vignette standard ou d'un widget Thumbnail."
|
9834 |
|
9835 |
-
#: wppa-settings-autosave.php:
|
9836 |
msgid "Overlay potd name"
|
9837 |
msgstr "Nom PhotoOfTheDay overlay"
|
9838 |
|
9839 |
-
#: wppa-settings-autosave.php:
|
9840 |
msgid "Show the photos name if from photo of the day."
|
9841 |
msgstr "Montrer le nom des photos si celle venant de PhotoOfTheDay."
|
9842 |
|
9843 |
-
#: wppa-settings-autosave.php:
|
9844 |
msgid ""
|
9845 |
"Shows the name on a lightbox display when initiated from the photo of the "
|
9846 |
"day."
|
9847 |
msgstr ""
|
9848 |
"Montre le nom sur un affichage Lightbox quand lancé depuis PhotoOfTheDay."
|
9849 |
|
9850 |
-
#: wppa-settings-autosave.php:
|
9851 |
msgid "Overlay potd desc"
|
9852 |
msgstr "Description PhotoOfTheDay overlay"
|
9853 |
|
9854 |
-
#: wppa-settings-autosave.php:
|
9855 |
msgid "Show description if from from photo of the day."
|
9856 |
msgstr "Montrer description si celle venant de PhotoOfTheDay."
|
9857 |
|
9858 |
-
#: wppa-settings-autosave.php:
|
9859 |
msgid ""
|
9860 |
"Shows the photos description on a lightbox display when initiated from the "
|
9861 |
"photo of the day."
|
@@ -9863,29 +9861,29 @@ msgstr ""
|
|
9863 |
"Montre la description des photos sur un affichage Lightbox quand lancé "
|
9864 |
"depuis PhotoOfTheDay."
|
9865 |
|
9866 |
-
#: wppa-settings-autosave.php:
|
9867 |
msgid "Overlay sphoto name"
|
9868 |
msgstr "Nom single photo overlay"
|
9869 |
|
9870 |
-
#: wppa-settings-autosave.php:
|
9871 |
msgid "Show the photos name if from a single photo."
|
9872 |
msgstr "Montrer le nom des photos si celui venant d'une photo unique."
|
9873 |
|
9874 |
-
#: wppa-settings-autosave.php:
|
9875 |
msgid ""
|
9876 |
"Shows the name on a lightbox display when initiated from a single photo."
|
9877 |
msgstr ""
|
9878 |
"Montre le nom dans un affichage Lightbox quand lancé depuis une photo unique."
|
9879 |
|
9880 |
-
#: wppa-settings-autosave.php:
|
9881 |
msgid "Overlay sphoto desc"
|
9882 |
msgstr "Description single photo overlay"
|
9883 |
|
9884 |
-
#: wppa-settings-autosave.php:
|
9885 |
msgid "Show description if from from a single photo."
|
9886 |
msgstr "Montrer la description si celle venant d'une photo unique."
|
9887 |
|
9888 |
-
#: wppa-settings-autosave.php:
|
9889 |
msgid ""
|
9890 |
"Shows the photos description on a lightbox display when initiated from a "
|
9891 |
"single photo."
|
@@ -9893,16 +9891,16 @@ msgstr ""
|
|
9893 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9894 |
"depuis une photo unique."
|
9895 |
|
9896 |
-
#: wppa-settings-autosave.php:
|
9897 |
msgid "Overlay mphoto name"
|
9898 |
msgstr "Nom media photo overlay"
|
9899 |
|
9900 |
-
#: wppa-settings-autosave.php:
|
9901 |
msgid "Show the photos name if from a single media style photo."
|
9902 |
msgstr ""
|
9903 |
"Montrer le nom des photos si celui venant d'une photo single media style."
|
9904 |
|
9905 |
-
#: wppa-settings-autosave.php:
|
9906 |
msgid ""
|
9907 |
"Shows the name on a lightbox display when initiated from a single media "
|
9908 |
"style photo."
|
@@ -9910,15 +9908,15 @@ msgstr ""
|
|
9910 |
"Montre le nom de la photo dans un afficahge Lightbox quand lancé depuis une "
|
9911 |
"photo single media style."
|
9912 |
|
9913 |
-
#: wppa-settings-autosave.php:
|
9914 |
msgid "Overlay mphoto desc"
|
9915 |
msgstr "Description media photo overlay"
|
9916 |
|
9917 |
-
#: wppa-settings-autosave.php:
|
9918 |
msgid "Show description if from from a media style photo."
|
9919 |
msgstr "Montrer la description si celle venant d'une photo single media style."
|
9920 |
|
9921 |
-
#: wppa-settings-autosave.php:
|
9922 |
msgid ""
|
9923 |
"Shows the photos description on a lightbox display when initiated from a "
|
9924 |
"single media style photo."
|
@@ -9926,29 +9924,29 @@ msgstr ""
|
|
9926 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9927 |
"depuis une photo single media style."
|
9928 |
|
9929 |
-
#: wppa-settings-autosave.php:
|
9930 |
msgid "Overlay albumwidget name"
|
9931 |
msgstr "Nom widget Album overlay"
|
9932 |
|
9933 |
-
#: wppa-settings-autosave.php:
|
9934 |
msgid "Show the photos name if from the album widget."
|
9935 |
msgstr "Montrer le nom des photos si celui venant du widget Album."
|
9936 |
|
9937 |
-
#: wppa-settings-autosave.php:
|
9938 |
msgid ""
|
9939 |
"Shows the name on a lightbox display when initiated from the album widget."
|
9940 |
msgstr ""
|
9941 |
"Montre le nom sur un affichage Lightbox quand lancé depuis le widget Album."
|
9942 |
|
9943 |
-
#: wppa-settings-autosave.php:
|
9944 |
msgid "Overlay albumwidget desc"
|
9945 |
msgstr "Description widget Album overlay"
|
9946 |
|
9947 |
-
#: wppa-settings-autosave.php:
|
9948 |
msgid "Show description if from from the album widget."
|
9949 |
msgstr "Montrer la description si celle venant du widget Album."
|
9950 |
|
9951 |
-
#: wppa-settings-autosave.php:
|
9952 |
msgid ""
|
9953 |
"Shows the photos description on a lightbox display when initiated from the "
|
9954 |
"album widget."
|
@@ -9956,15 +9954,15 @@ msgstr ""
|
|
9956 |
"Montre la description des photos saur un affichage Lightbox quand lancé "
|
9957 |
"depuis le widget Album."
|
9958 |
|
9959 |
-
#: wppa-settings-autosave.php:
|
9960 |
msgid "Overlay coverphoto name"
|
9961 |
msgstr "Nom CoverPhoto overlay"
|
9962 |
|
9963 |
-
#: wppa-settings-autosave.php:
|
9964 |
msgid "Show the photos name if from the album cover."
|
9965 |
msgstr "Montrer le nom des photos si venant de la couverture d'album."
|
9966 |
|
9967 |
-
#: wppa-settings-autosave.php:
|
9968 |
msgid ""
|
9969 |
"Shows the name on a lightbox display when initiated from the album "
|
9970 |
"coverphoto."
|
@@ -9972,15 +9970,15 @@ msgstr ""
|
|
9972 |
"Montre le nom sur un affichage lightbox quand lancé depuis la couverture de "
|
9973 |
"l'album."
|
9974 |
|
9975 |
-
#: wppa-settings-autosave.php:
|
9976 |
msgid "Overlay coverphoto desc"
|
9977 |
msgstr "Description CoverPhoto overlay"
|
9978 |
|
9979 |
-
#: wppa-settings-autosave.php:
|
9980 |
msgid "Show description if from from the album cover."
|
9981 |
msgstr "Montrer la description si celle venant de la couverture de l'album."
|
9982 |
|
9983 |
-
#: wppa-settings-autosave.php:
|
9984 |
msgid ""
|
9985 |
"Shows the photos description on a lightbox display when initiated from the "
|
9986 |
"album coverphoto."
|
@@ -9988,83 +9986,83 @@ msgstr ""
|
|
9988 |
"Montre la description dans un affichage Lightbox quand lancé depuis la photo "
|
9989 |
"de couverture de l'album."
|
9990 |
|
9991 |
-
#: wppa-settings-autosave.php:
|
9992 |
msgid "Overlay add owner"
|
9993 |
msgstr "Propriétaire ajout overlay"
|
9994 |
|
9995 |
-
#: wppa-settings-autosave.php:
|
9996 |
msgid "Add the owner to the photo name on lightbox displays."
|
9997 |
msgstr "Ajouter le propriétaire de la photo sur les affichages Lightbox."
|
9998 |
|
9999 |
-
#: wppa-settings-autosave.php:
|
10000 |
msgid ""
|
10001 |
"This setting is independant of the show name switches and is a global "
|
10002 |
"setting."
|
10003 |
msgstr "Ce réglage est indépendant des boutons Show name et est global."
|
10004 |
|
10005 |
-
#: wppa-settings-autosave.php:
|
10006 |
msgid "Overlay show start/stop"
|
10007 |
msgstr "Montrer Démarrer/Arrêter overlay"
|
10008 |
|
10009 |
-
#: wppa-settings-autosave.php:
|
10010 |
msgid "Show Start and Stop for running slideshow on lightbox."
|
10011 |
msgstr "Montrer Démarrer et Arrêter pour lancer le diaporama sur Lightbox."
|
10012 |
|
10013 |
-
#: wppa-settings-autosave.php:
|
10014 |
msgid "Overlay show legenda"
|
10015 |
msgstr "Montrer légende overlay"
|
10016 |
|
10017 |
-
#: wppa-settings-autosave.php:
|
10018 |
msgid "Show \"Press f for fullsize\" etc. on lightbox."
|
10019 |
msgstr "Montrer \"Appuyez sur f pour plein écran\" etc. sur Lightbox."
|
10020 |
|
10021 |
-
#: wppa-settings-autosave.php:
|
10022 |
msgid "Independant of this setting, it will not show up on mobile devices."
|
10023 |
msgstr ""
|
10024 |
"Indépendant de ce réglage, ne sera pas affiché sur les terminaux mobiles."
|
10025 |
|
10026 |
-
#: wppa-settings-autosave.php:
|
10027 |
msgid "Show fullscreen icons"
|
10028 |
msgstr "Montrer les icônes plein écran"
|
10029 |
|
10030 |
-
#: wppa-settings-autosave.php:
|
10031 |
msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
|
10032 |
msgstr ""
|
10033 |
"Montre les boutons icônes plein écran et retour à l’affichage fenêtré dans "
|
10034 |
"le coin haut droit"
|
10035 |
|
10036 |
-
#: wppa-settings-autosave.php:
|
10037 |
msgid "Show rating"
|
10038 |
msgstr "Afficher la note"
|
10039 |
|
10040 |
-
#: wppa-settings-autosave.php:
|
10041 |
msgid "Shows and enables rating on lightbox."
|
10042 |
msgstr "Affiche et permet Note sur la visionneuse."
|
10043 |
|
10044 |
-
#: wppa-settings-autosave.php:
|
10045 |
msgid ""
|
10046 |
"This works for 5 and 10 stars only, not for single votes or numerical display"
|
10047 |
msgstr ""
|
10048 |
"Cela fonctionne pour 5 et 10 étoiles, et non pour des votes simples ou "
|
10049 |
"affichage numérique"
|
10050 |
|
10051 |
-
#: wppa-settings-autosave.php:
|
10052 |
msgid "Overlay show counter"
|
10053 |
msgstr "Montrer compteur overlay"
|
10054 |
|
10055 |
-
#: wppa-settings-autosave.php:
|
10056 |
msgid "Show the x/y counter below the image."
|
10057 |
msgstr "Montrer le compteur x/y au dessous de l'image."
|
10058 |
|
10059 |
-
#: wppa-settings-autosave.php:
|
10060 |
msgid "Show Zoom in"
|
10061 |
msgstr "Montrer Zoom in"
|
10062 |
|
10063 |
-
#: wppa-settings-autosave.php:
|
10064 |
msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
|
10065 |
msgstr "Afficher le tooltip \"Zoom in\" avec le curseur loupe."
|
10066 |
|
10067 |
-
#: wppa-settings-autosave.php:
|
10068 |
msgid ""
|
10069 |
"If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
|
10070 |
"contains the photo name."
|
@@ -10072,19 +10070,19 @@ msgstr ""
|
|
10072 |
"Si vous choisissez --- Aucun --- dans table I-G2 pour la taille de la loupe, "
|
10073 |
"le tooltip contient le nom de la photo."
|
10074 |
|
10075 |
-
#: wppa-settings-autosave.php:
|
10076 |
msgid "Frontend upload configuration settings"
|
10077 |
msgstr "Réglages pour le chargement (upload) par le frontend"
|
10078 |
|
10079 |
-
#: wppa-settings-autosave.php:
|
10080 |
msgid "User upload Photos"
|
10081 |
msgstr "Photos chargées par l'utilisateur"
|
10082 |
|
10083 |
-
#: wppa-settings-autosave.php:
|
10084 |
msgid "Enable frontend upload."
|
10085 |
msgstr "Permettre chargement via le frontend."
|
10086 |
|
10087 |
-
#: wppa-settings-autosave.php:
|
10088 |
msgid ""
|
10089 |
"If you check this item, frontend upload will be enabled according to the "
|
10090 |
"rules set in the following items of this table."
|
@@ -10092,35 +10090,35 @@ msgstr ""
|
|
10092 |
"Si vous cochez cet item, le chargement par le frontend sera activé en accord "
|
10093 |
"avec les règles définies dans les items suivants de cette table."
|
10094 |
|
10095 |
-
#: wppa-settings-autosave.php:
|
10096 |
msgid "User upload Video"
|
10097 |
msgstr "Envoyer une vidéo"
|
10098 |
|
10099 |
-
#: wppa-settings-autosave.php:
|
10100 |
msgid "Enable frontend upload of video."
|
10101 |
msgstr "Activez le frontend upload de la vidéo."
|
10102 |
|
10103 |
-
#: wppa-settings-autosave.php:
|
10104 |
msgid "Requires Table II-H1 to be ticked."
|
10105 |
msgstr "Nécessite le Table II-H1 être cochée."
|
10106 |
|
10107 |
-
#: wppa-settings-autosave.php:
|
10108 |
msgid "User upload Audio"
|
10109 |
msgstr "Télécharger un fichier Audio"
|
10110 |
|
10111 |
-
#: wppa-settings-autosave.php:
|
10112 |
msgid "Enable frontend upload of audio."
|
10113 |
msgstr "Activez le frontend Télécharger audio."
|
10114 |
|
10115 |
-
#: wppa-settings-autosave.php:
|
10116 |
msgid "User upload Photos login"
|
10117 |
msgstr "Login de chargement photos utilisateur"
|
10118 |
|
10119 |
-
#: wppa-settings-autosave.php:
|
10120 |
msgid "Frontend upload requires the user is logged in."
|
10121 |
msgstr "Le chargement via frontend nécessite que l'utilisateur soit connecté."
|
10122 |
|
10123 |
-
#: wppa-settings-autosave.php:
|
10124 |
msgid ""
|
10125 |
"If you uncheck this box, make sure you check the item Owners only in Table "
|
10126 |
"VII-D1."
|
@@ -10128,7 +10126,7 @@ msgstr ""
|
|
10128 |
"Si vous décochez cette case, assurez vous de cocher l'item Propriétaires "
|
10129 |
"uniquement dans table VII-D1."
|
10130 |
|
10131 |
-
#: wppa-settings-autosave.php:
|
10132 |
msgid ""
|
10133 |
"Also: set the owner to ---public--- of the albums that are allowed to be "
|
10134 |
"uploaded to."
|
@@ -10136,42 +10134,42 @@ msgstr ""
|
|
10136 |
"Aussi: régler propriétaire à --- public --- \" dans les albums pour lesquels "
|
10137 |
"il sera autorisé de charger des média."
|
10138 |
|
10139 |
-
#: wppa-settings-autosave.php:
|
10140 |
msgid "User upload Ajax"
|
10141 |
msgstr "Chargement AJAX utilisateur"
|
10142 |
|
10143 |
-
#: wppa-settings-autosave.php:
|
10144 |
msgid "Shows the upload progression bar."
|
10145 |
msgstr "Montrer la barre progression du chargement."
|
10146 |
|
10147 |
-
#: wppa-settings-autosave.php:
|
10148 |
msgid "Show Copyright"
|
10149 |
msgstr "Montrer Copyright"
|
10150 |
|
10151 |
-
#: wppa-settings-autosave.php:
|
10152 |
msgid "Show a copyright warning on frontend upload locations."
|
10153 |
msgstr ""
|
10154 |
"Montrer un avertissement de copyright à l'endroit du chargement via le "
|
10155 |
"frontend."
|
10156 |
|
10157 |
-
#: wppa-settings-autosave.php:
|
10158 |
msgid "Copyright notice"
|
10159 |
msgstr "Note Copyright"
|
10160 |
|
10161 |
-
#: wppa-settings-autosave.php:
|
10162 |
msgid "The message to be displayed."
|
10163 |
msgstr "Le message a afficher."
|
10164 |
|
10165 |
-
#: wppa-settings-autosave.php:
|
10166 |
msgid "User Watermark"
|
10167 |
msgstr "Filigrane utilisateur"
|
10168 |
|
10169 |
-
#: wppa-settings-autosave.php:
|
10170 |
msgid "Uploading users may select watermark settings"
|
10171 |
msgstr ""
|
10172 |
"Les utilisateurs autorisés à charger peuvent gérer les options de filigrane"
|
10173 |
|
10174 |
-
#: wppa-settings-autosave.php:
|
10175 |
msgid ""
|
10176 |
"If checked, anyone who can upload and/or import photos can overrule the "
|
10177 |
"default watermark settings."
|
@@ -10179,15 +10177,15 @@ msgstr ""
|
|
10179 |
"Si coché, les utilisateurs autorisés à charger et/ou importer des photos "
|
10180 |
"peuvent passer outre les options par défaut du filigrane."
|
10181 |
|
10182 |
-
#: wppa-settings-autosave.php:
|
10183 |
msgid "User name"
|
10184 |
msgstr "Nom utilisateur"
|
10185 |
|
10186 |
-
#: wppa-settings-autosave.php:
|
10187 |
msgid "Uploading users may overrule the default name."
|
10188 |
msgstr "L'utilisateur autorisé à charger peut passer outre le nom par défaut."
|
10189 |
|
10190 |
-
#: wppa-settings-autosave.php:
|
10191 |
msgid ""
|
10192 |
"If checked, the default photo name as defined in Table IX-D13 may be "
|
10193 |
"overruled by the user."
|
@@ -10195,17 +10193,17 @@ msgstr ""
|
|
10195 |
"Si coché, le nom par défaut de la photo comme défini dans table IX-D13 ne "
|
10196 |
"s'applique pas pour l'utilisateur."
|
10197 |
|
10198 |
-
#: wppa-settings-autosave.php:
|
10199 |
msgid "Apply Newphoto desc user"
|
10200 |
msgstr "Appliquer la description utilisateur pour la nouvelle photo"
|
10201 |
|
10202 |
-
#: wppa-settings-autosave.php:
|
10203 |
msgid "Give each new frontend uploaded photo a standard description."
|
10204 |
msgstr ""
|
10205 |
"Donne à chaque nouvelle photo chargée par le frontend une description "
|
10206 |
"standard."
|
10207 |
|
10208 |
-
#: wppa-settings-autosave.php:
|
10209 |
msgid ""
|
10210 |
"If checked, each new photo will get the description (template) as specified "
|
10211 |
"in Table IX-D5."
|
@@ -10213,81 +10211,81 @@ msgstr ""
|
|
10213 |
"Si coché, chaque nouvelle photo recevra une description selon un modèle "
|
10214 |
"comme spécifié dans table IX-D5."
|
10215 |
|
10216 |
-
#: wppa-settings-autosave.php:
|
10217 |
msgid "User desc"
|
10218 |
msgstr "Description utilisateur"
|
10219 |
|
10220 |
-
#: wppa-settings-autosave.php:
|
10221 |
msgid "Uploading users may overrule the default description."
|
10222 |
msgstr ""
|
10223 |
"Les utilisateurs autoriser à charger des fichiers peuvent passer outre la "
|
10224 |
"description par défaut."
|
10225 |
|
10226 |
-
#: wppa-settings-autosave.php:
|
10227 |
msgid "User upload custom"
|
10228 |
msgstr "Personnalisation pour les utilisateurs autorisés à charger"
|
10229 |
|
10230 |
-
#: wppa-settings-autosave.php:
|
10231 |
msgid "Frontend upload can fill in custom data fields."
|
10232 |
msgstr ""
|
10233 |
"Possibilité de remplir des champ de donnée personnalisés lors du chargement "
|
10234 |
"frontend."
|
10235 |
|
10236 |
-
#: wppa-settings-autosave.php:
|
10237 |
msgid "User upload tags"
|
10238 |
msgstr "Tags chargement utilisateur"
|
10239 |
|
10240 |
-
#: wppa-settings-autosave.php:
|
10241 |
msgid "Frontend upload can add tags."
|
10242 |
msgstr "Possibilité d'ajouter des tag lors du chargement frontend."
|
10243 |
|
10244 |
-
#: wppa-settings-autosave.php:
|
10245 |
msgid "You can configure the details of tag addition in Table IX-D18.x"
|
10246 |
msgstr ""
|
10247 |
"Vous pouvez configurer les détails pour l'ajout de tag dans table IX-D18.x"
|
10248 |
|
10249 |
-
#: wppa-settings-autosave.php:
|
10250 |
-
#: wppa-settings-autosave.php:
|
10251 |
msgid "Tag selection box"
|
10252 |
msgstr "Boîte de sélection de tag"
|
10253 |
|
10254 |
-
#: wppa-settings-autosave.php:
|
10255 |
-
#: wppa-settings-autosave.php:
|
10256 |
msgid "Front-end upload tags selecion box."
|
10257 |
msgstr "Boîte de sélection des tags de chargement par frontend."
|
10258 |
|
10259 |
-
#: wppa-settings-autosave.php:
|
10260 |
-
#: wppa-settings-autosave.php:
|
10261 |
msgid "On:"
|
10262 |
msgstr "Sur:"
|
10263 |
|
10264 |
-
#: wppa-settings-autosave.php:
|
10265 |
-
#: wppa-settings-autosave.php:
|
10266 |
msgid "Multi:"
|
10267 |
msgstr "Multi:"
|
10268 |
|
10269 |
-
#: wppa-settings-autosave.php:
|
10270 |
-
#: wppa-settings-autosave.php:
|
10271 |
msgid "Caption box"
|
10272 |
msgstr "Boîte de légende"
|
10273 |
|
10274 |
-
#: wppa-settings-autosave.php:
|
10275 |
-
#: wppa-settings-autosave.php:
|
10276 |
msgid "The title of the tag selection box."
|
10277 |
msgstr "Le titre de la boîte de sélection de tag."
|
10278 |
|
10279 |
-
#: wppa-settings-autosave.php:
|
10280 |
-
#: wppa-settings-autosave.php:
|
10281 |
msgid "Tags box"
|
10282 |
msgstr "Boîte de tags"
|
10283 |
|
10284 |
-
#: wppa-settings-autosave.php:
|
10285 |
-
#: wppa-settings-autosave.php:
|
10286 |
msgid "The tags in the selection box."
|
10287 |
msgstr "Les tags dans la boîte de sélection."
|
10288 |
|
10289 |
-
#: wppa-settings-autosave.php:
|
10290 |
-
#: wppa-settings-autosave.php:
|
10291 |
msgid ""
|
10292 |
"Enter the tags you want to appear in the selection box. Empty means: all "
|
10293 |
"existing tags"
|
@@ -10295,156 +10293,156 @@ msgstr ""
|
|
10295 |
"Entrez les tags que vous désirez voir apparaître dans la boîte de sélection. "
|
10296 |
"Laisser vide signifie: tous les tags existants"
|
10297 |
|
10298 |
-
#: wppa-settings-autosave.php:
|
10299 |
msgid "New tags"
|
10300 |
msgstr "Nouveaux tags:"
|
10301 |
|
10302 |
-
#: wppa-settings-autosave.php:
|
10303 |
msgid "Input field for any user defined tags."
|
10304 |
msgstr "Champ de saisie pour les tags définis par l'utilisateur."
|
10305 |
|
10306 |
-
#: wppa-settings-autosave.php:
|
10307 |
msgid "New tags caption"
|
10308 |
msgstr "Nouvelle légende pour les tags"
|
10309 |
|
10310 |
-
#: wppa-settings-autosave.php:
|
10311 |
msgid "The caption above the tags input field."
|
10312 |
msgstr "La légende au dessus du champ de saisie des tags."
|
10313 |
|
10314 |
-
#: wppa-settings-autosave.php:
|
10315 |
msgid "Preview tags"
|
10316 |
msgstr "Aperçu tags"
|
10317 |
|
10318 |
-
#: wppa-settings-autosave.php:
|
10319 |
msgid "Show a preview of all tags that will be added to the photo info."
|
10320 |
msgstr ""
|
10321 |
"Montre une prévisualisation de tous les tags qui seront ajoutés aux "
|
10322 |
"informations de la photo."
|
10323 |
|
10324 |
-
#: wppa-settings-autosave.php:
|
10325 |
msgid "Camera connect"
|
10326 |
msgstr "Caméra connecter"
|
10327 |
|
10328 |
-
#: wppa-settings-autosave.php:
|
10329 |
msgid "Connect frontend upload to camara on mobile devices with camera"
|
10330 |
msgstr ""
|
10331 |
"Se connecter frontend télécharger à camara sur les appareils mobiles avec "
|
10332 |
"appareil photo"
|
10333 |
|
10334 |
-
#: wppa-settings-autosave.php:
|
10335 |
msgid "Blog It!"
|
10336 |
msgstr "Blog It!"
|
10337 |
|
10338 |
-
#: wppa-settings-autosave.php:
|
10339 |
msgid "Enable blogging photos."
|
10340 |
msgstr "Activer les blogs de photos."
|
10341 |
|
10342 |
-
#: wppa-settings-autosave.php:
|
10343 |
msgid "Users need the capability edit_posts to directly blog photos."
|
10344 |
msgstr ""
|
10345 |
"Les utilisateurs ont besoin les edit_posts de capacité de blog directement "
|
10346 |
"des photos."
|
10347 |
|
10348 |
-
#: wppa-settings-autosave.php:
|
10349 |
msgid "disabled"
|
10350 |
msgstr "désactivé"
|
10351 |
|
10352 |
-
#: wppa-settings-autosave.php:
|
10353 |
msgid "optional"
|
10354 |
msgstr "optionnel"
|
10355 |
|
10356 |
-
#: wppa-settings-autosave.php:
|
10357 |
msgid "always"
|
10358 |
msgstr "toujours"
|
10359 |
|
10360 |
-
#: wppa-settings-autosave.php:
|
10361 |
msgid "Blog It need moderation"
|
10362 |
msgstr "Blog Il faut modération"
|
10363 |
|
10364 |
-
#: wppa-settings-autosave.php:
|
10365 |
msgid "Posts with blogged photos need moderation."
|
10366 |
msgstr "Messages avec photos Blogs ont besoin de modération."
|
10367 |
|
10368 |
-
#: wppa-settings-autosave.php:
|
10369 |
msgid "Blog It shortcode"
|
10370 |
msgstr "Blog Il shortcode"
|
10371 |
|
10372 |
-
#: wppa-settings-autosave.php:
|
10373 |
msgid "Shortcode to be used on the blog post"
|
10374 |
msgstr "Shortcode à utiliser sur le message de blog"
|
10375 |
|
10376 |
-
#: wppa-settings-autosave.php:
|
10377 |
msgid "Make sure it contains photo=\"#id\""
|
10378 |
msgstr "Assurez-vous qu'il contient photo=\"#id\""
|
10379 |
|
10380 |
-
#: wppa-settings-autosave.php:
|
10381 |
msgid "Miscellaneous visibility settings"
|
10382 |
msgstr "Réglages divers pour l'apparence"
|
10383 |
|
10384 |
-
#: wppa-settings-autosave.php:
|
10385 |
msgid "Frontend ending label"
|
10386 |
msgstr "Texte de fin du frontend"
|
10387 |
|
10388 |
-
#: wppa-settings-autosave.php:
|
10389 |
msgid "Frontend upload / create / edit dialog closing label text."
|
10390 |
msgstr ""
|
10391 |
"Texte de fermeture de la boîte de dialogue Charger / Créer / Modifier du "
|
10392 |
"frontend."
|
10393 |
|
10394 |
-
#: wppa-settings-autosave.php:
|
10395 |
msgid "Abort"
|
10396 |
msgstr "Abandonner"
|
10397 |
|
10398 |
-
#: wppa-settings-autosave.php:
|
10399 |
msgid "Close"
|
10400 |
msgstr "Fermer"
|
10401 |
|
10402 |
-
#: wppa-settings-autosave.php:
|
10403 |
msgid "Exit"
|
10404 |
msgstr "Sortir"
|
10405 |
|
10406 |
-
#: wppa-settings-autosave.php:
|
10407 |
msgid "Quit"
|
10408 |
msgstr "Quitter"
|
10409 |
|
10410 |
-
#: wppa-settings-autosave.php:
|
10411 |
msgid "Widget thumbs fontsize"
|
10412 |
msgstr "Taille de police de caractère pour les vignettes des widgets"
|
10413 |
|
10414 |
-
#: wppa-settings-autosave.php:
|
10415 |
msgid "Font size for thumbnail subtext in widgets."
|
10416 |
msgstr ""
|
10417 |
"Taille de la police de caractère du sous texte des vignettes dans les "
|
10418 |
"widgets."
|
10419 |
|
10420 |
-
#: wppa-settings-autosave.php:
|
10421 |
msgid "Owner on new line"
|
10422 |
msgstr "Propriétaire sur nouvelle ligne"
|
10423 |
|
10424 |
-
#: wppa-settings-autosave.php:
|
10425 |
msgid "Place the (owner) text on a new line."
|
10426 |
msgstr "Place le texte (du propriétaire) sur une nouvelle ligne."
|
10427 |
|
10428 |
-
#: wppa-settings-autosave.php:
|
10429 |
msgid "Custom datafields albums"
|
10430 |
msgstr "Champ de données personnalisés albums"
|
10431 |
|
10432 |
-
#: wppa-settings-autosave.php:
|
10433 |
msgid "Define up to 10 custom data fields for albums."
|
10434 |
msgstr "Définir jusqu'à 10 champs de données personnalisés pour les albums."
|
10435 |
|
10436 |
-
#: wppa-settings-autosave.php:
|
10437 |
#, php-format
|
10438 |
msgid "Name, vis, edit %s"
|
10439 |
msgstr "Nom, vis, mod. %s"
|
10440 |
|
10441 |
-
#: wppa-settings-autosave.php:
|
10442 |
#, php-format
|
10443 |
msgid "The caption for field %s, visibility and editability at frontend."
|
10444 |
msgstr ""
|
10445 |
"La légende de champ %s, de visibilité et de caractère modifiable à frontend."
|
10446 |
|
10447 |
-
#: wppa-settings-autosave.php:
|
10448 |
#, php-format
|
10449 |
msgid ""
|
10450 |
"If you check the first box, the value of this field is displayable in photo "
|
@@ -10453,7 +10451,7 @@ msgstr ""
|
|
10453 |
"Si vous cochez la première case, la valeur de ce champ est affichable dans "
|
10454 |
"les descriptions de photo à l’interface avec le mot clé w#c%s"
|
10455 |
|
10456 |
-
#: wppa-settings-autosave.php:
|
10457 |
msgid ""
|
10458 |
"If you check the second box, the value of this field is editable at the "
|
10459 |
"frontend new style dialog."
|
@@ -10461,222 +10459,222 @@ msgstr ""
|
|
10461 |
"Si vous cochez la deuxième case, la valeur de ce champ est modifiable dans "
|
10462 |
"la boîte de dialogue style nouveau frontend."
|
10463 |
|
10464 |
-
#: wppa-settings-autosave.php:
|
10465 |
msgid "Custom datafields photos"
|
10466 |
msgstr "Champ de données personnalisés Photos"
|
10467 |
|
10468 |
-
#: wppa-settings-autosave.php:
|
10469 |
msgid "Define up to 10 custom data fields for photos."
|
10470 |
msgstr "Définir jusqu'à 10 champs personnalisés pour les photos."
|
10471 |
|
10472 |
-
#: wppa-settings-autosave.php:
|
10473 |
msgid "Navigation symbols style"
|
10474 |
msgstr "Style de navigation symboles"
|
10475 |
|
10476 |
-
#: wppa-settings-autosave.php:
|
10477 |
msgid "The corner rounding size of navigation icons."
|
10478 |
msgstr "La taille coin arrondi des icônes de navigation."
|
10479 |
|
10480 |
-
#: wppa-settings-autosave.php:
|
10481 |
msgid "light"
|
10482 |
msgstr "léger"
|
10483 |
|
10484 |
-
#: wppa-settings-autosave.php:
|
10485 |
msgid "heavy"
|
10486 |
msgstr "Intense"
|
10487 |
|
10488 |
-
#: wppa-settings-autosave.php:
|
10489 |
msgid "Table III:"
|
10490 |
msgstr "Table III:"
|
10491 |
|
10492 |
-
#: wppa-settings-autosave.php:
|
10493 |
msgid "Backgrounds:"
|
10494 |
msgstr "Arrière plans:"
|
10495 |
|
10496 |
-
#: wppa-settings-autosave.php:
|
10497 |
msgid "This table describes the backgrounds of wppa+ elements."
|
10498 |
msgstr "Cette table décrit l'arrière plan des éléments de WPPA+."
|
10499 |
|
10500 |
-
#: wppa-settings-autosave.php:
|
10501 |
-
#: wppa-settings-autosave.php:
|
10502 |
msgid "Background color"
|
10503 |
msgstr "Couleur d'arrière plan"
|
10504 |
|
10505 |
-
#: wppa-settings-autosave.php:
|
10506 |
-
#: wppa-settings-autosave.php:
|
10507 |
msgid "Sample"
|
10508 |
msgstr "Echantillon"
|
10509 |
|
10510 |
-
#: wppa-settings-autosave.php:
|
10511 |
msgid "Border color"
|
10512 |
msgstr "Couleur de bordure"
|
10513 |
|
10514 |
-
#: wppa-settings-autosave.php:
|
10515 |
msgid "Slideshow elements backgrounds"
|
10516 |
msgstr "Arrière plan des éléments du diaporama"
|
10517 |
|
10518 |
-
#: wppa-settings-autosave.php:
|
10519 |
msgid "Nav"
|
10520 |
msgstr "Nav"
|
10521 |
|
10522 |
-
#: wppa-settings-autosave.php:
|
10523 |
msgid "Navigation bars."
|
10524 |
msgstr "Barres de navigation."
|
10525 |
|
10526 |
-
#: wppa-settings-autosave.php:
|
10527 |
msgid "Enter valid CSS colors for navigation backgrounds and borders."
|
10528 |
msgstr ""
|
10529 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10530 |
"plan et des bordures de navigation."
|
10531 |
|
10532 |
-
#: wppa-settings-autosave.php:
|
10533 |
msgid "SlideImg"
|
10534 |
msgstr "SlideImg"
|
10535 |
|
10536 |
-
#: wppa-settings-autosave.php:
|
10537 |
msgid "Fullsize Slideshow Photos."
|
10538 |
msgstr "Photos diaporama en taille max."
|
10539 |
|
10540 |
-
#: wppa-settings-autosave.php:
|
10541 |
msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
|
10542 |
msgstr ""
|
10543 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10544 |
"plan et des bordures des photos pleine taille."
|
10545 |
|
10546 |
-
#: wppa-settings-autosave.php:
|
10547 |
msgid "The colors may be equal or \"transparent\""
|
10548 |
msgstr "Les couleurs peuvent être égales ou \"transparentes\""
|
10549 |
|
10550 |
-
#: wppa-settings-autosave.php:
|
10551 |
msgid ""
|
10552 |
"For more information about slideshow image borders see the help on Table I-B4"
|
10553 |
msgstr ""
|
10554 |
"Pour plus d'informations sur les bordures d'images du diaporama, voir "
|
10555 |
"l'aide: table I-B4\""
|
10556 |
|
10557 |
-
#: wppa-settings-autosave.php:
|
10558 |
msgid "Numbar"
|
10559 |
msgstr "Numbar"
|
10560 |
|
10561 |
-
#: wppa-settings-autosave.php:
|
10562 |
msgid "Number bar box background."
|
10563 |
msgstr "Arrière plan de Numbar"
|
10564 |
|
10565 |
-
#: wppa-settings-autosave.php:
|
10566 |
msgid "Enter valid CSS colors for numbar box backgrounds and borders."
|
10567 |
msgstr ""
|
10568 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10569 |
"plan et des bordures de Numbar."
|
10570 |
|
10571 |
-
#: wppa-settings-autosave.php:
|
10572 |
msgid "Numbar active"
|
10573 |
msgstr "Numbar activée"
|
10574 |
|
10575 |
-
#: wppa-settings-autosave.php:
|
10576 |
msgid "Number bar active box background."
|
10577 |
msgstr "Arrière plan de la boîte Numbar active."
|
10578 |
|
10579 |
-
#: wppa-settings-autosave.php:
|
10580 |
msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
|
10581 |
msgstr ""
|
10582 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10583 |
"plan et des bordures de la boîte Numbar active."
|
10584 |
|
10585 |
-
#: wppa-settings-autosave.php:
|
10586 |
msgid "Name/desc"
|
10587 |
msgstr "Nom/desc"
|
10588 |
|
10589 |
-
#: wppa-settings-autosave.php:
|
10590 |
msgid "Name and Description bars."
|
10591 |
msgstr "Barres nom et decription."
|
10592 |
|
10593 |
-
#: wppa-settings-autosave.php:
|
10594 |
msgid ""
|
10595 |
"Enter valid CSS colors for name and description box backgrounds and borders."
|
10596 |
msgstr ""
|
10597 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10598 |
"plan et des bordures des boîtes nom et description."
|
10599 |
|
10600 |
-
#: wppa-settings-autosave.php:
|
10601 |
msgid "Comment input and display areas."
|
10602 |
msgstr "Zones d'entrée et d'affichage de commentaires"
|
10603 |
|
10604 |
-
#: wppa-settings-autosave.php:
|
10605 |
msgid "Enter valid CSS colors for comment box backgrounds and borders."
|
10606 |
msgstr ""
|
10607 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10608 |
"plan et des bordures de la boîte commentaires."
|
10609 |
|
10610 |
-
#: wppa-settings-autosave.php:
|
10611 |
-
#: wppa-settings-autosave.php:
|
10612 |
msgid "Custom"
|
10613 |
msgstr "Personalisé"
|
10614 |
|
10615 |
-
#: wppa-settings-autosave.php:
|
10616 |
msgid "Custom box background."
|
10617 |
msgstr "Arrière plan de la boîte personnalisée."
|
10618 |
|
10619 |
-
#: wppa-settings-autosave.php:
|
10620 |
msgid "Enter valid CSS colors for custom box backgrounds and borders."
|
10621 |
msgstr ""
|
10622 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10623 |
"plan et des bordures de la boîte pesonnalisée."
|
10624 |
|
10625 |
-
#: wppa-settings-autosave.php:
|
10626 |
msgid "IPTC"
|
10627 |
msgstr "IPTC"
|
10628 |
|
10629 |
-
#: wppa-settings-autosave.php:
|
10630 |
msgid "IPTC display box background."
|
10631 |
msgstr "Arrière plan de la boîte IPTC."
|
10632 |
|
10633 |
-
#: wppa-settings-autosave.php:
|
10634 |
msgid "Enter valid CSS colors for iptc box backgrounds and borders."
|
10635 |
msgstr ""
|
10636 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10637 |
"plan et des bordures de la boîte IPTC."
|
10638 |
|
10639 |
-
#: wppa-settings-autosave.php:
|
10640 |
msgid "EXIF"
|
10641 |
msgstr "EXIF"
|
10642 |
|
10643 |
-
#: wppa-settings-autosave.php:
|
10644 |
msgid "EXIF display box background."
|
10645 |
msgstr "Arrière plan de la boîte EXIF."
|
10646 |
|
10647 |
-
#: wppa-settings-autosave.php:
|
10648 |
msgid "Enter valid CSS colors for exif box backgrounds and borders."
|
10649 |
msgstr ""
|
10650 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10651 |
"plan et des bordures de la boîte EXIF."
|
10652 |
|
10653 |
-
#: wppa-settings-autosave.php:
|
10654 |
msgid "Share"
|
10655 |
msgstr "Partager"
|
10656 |
|
10657 |
-
#: wppa-settings-autosave.php:
|
10658 |
msgid "Share box display background."
|
10659 |
msgstr "Arrière plan de la boîte de partage."
|
10660 |
|
10661 |
-
#: wppa-settings-autosave.php:
|
10662 |
msgid "Enter valid CSS colors for share box backgrounds and borders."
|
10663 |
msgstr ""
|
10664 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10665 |
"plan et des bordures de la boîte de partage."
|
10666 |
|
10667 |
-
#: wppa-settings-autosave.php:
|
10668 |
msgid "Other backgrounds and colors"
|
10669 |
msgstr "Autres plans arrière et des couleurs"
|
10670 |
|
10671 |
-
#: wppa-settings-autosave.php:
|
10672 |
msgid "Even"
|
10673 |
msgstr "Pair"
|
10674 |
|
10675 |
-
#: wppa-settings-autosave.php:
|
10676 |
msgid "Even background."
|
10677 |
msgstr "Arrière plan identique."
|
10678 |
|
10679 |
-
#: wppa-settings-autosave.php:
|
10680 |
msgid ""
|
10681 |
"Enter valid CSS colors for even numbered backgrounds and borders of album "
|
10682 |
"covers and thumbnail displays 'As covers'."
|
@@ -10685,15 +10683,15 @@ msgstr ""
|
|
10685 |
"plan et des bordures des couvertures d'album (et des vignettes affichées "
|
10686 |
"'comme couverture') paires."
|
10687 |
|
10688 |
-
#: wppa-settings-autosave.php:
|
10689 |
msgid "Odd"
|
10690 |
msgstr "Impair"
|
10691 |
|
10692 |
-
#: wppa-settings-autosave.php:
|
10693 |
msgid "Odd background."
|
10694 |
msgstr "Arrière plan impair."
|
10695 |
|
10696 |
-
#: wppa-settings-autosave.php:
|
10697 |
msgid ""
|
10698 |
"Enter valid CSS colors for odd numbered backgrounds and borders of album "
|
10699 |
"covers and thumbnail displays 'As covers'."
|
@@ -10702,17 +10700,17 @@ msgstr ""
|
|
10702 |
"plan et des bordures des couvertures d'album (et des vignettes affichées "
|
10703 |
"'comme couverture') impaires."
|
10704 |
|
10705 |
-
#: wppa-settings-autosave.php:
|
10706 |
msgid "Thumbnail padding"
|
10707 |
msgstr "Remplissage vignettes"
|
10708 |
|
10709 |
-
#: wppa-settings-autosave.php:
|
10710 |
msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
|
10711 |
msgstr ""
|
10712 |
"Couleur de remplissage vignettes si l'aspect de la vignette est réglé sur "
|
10713 |
"remplit (padded)."
|
10714 |
|
10715 |
-
#: wppa-settings-autosave.php:
|
10716 |
msgid ""
|
10717 |
"Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
|
10718 |
"white for the padded thumbnails."
|
@@ -10720,194 +10718,194 @@ msgstr ""
|
|
10720 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs comme #000000 "
|
10721 |
"pour le noir ou #ffffff pour le blanc pour le remplissage des vignettes."
|
10722 |
|
10723 |
-
#: wppa-settings-autosave.php:
|
10724 |
msgid "Img"
|
10725 |
msgstr "IMG"
|
10726 |
|
10727 |
-
#: wppa-settings-autosave.php:
|
10728 |
msgid "Cover Photos and popups."
|
10729 |
msgstr "Photos de couverture et popups."
|
10730 |
|
10731 |
-
#: wppa-settings-autosave.php:
|
10732 |
msgid ""
|
10733 |
"Enter valid CSS colors for Cover photo and popup backgrounds and borders."
|
10734 |
msgstr ""
|
10735 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10736 |
"plan et des bordures pour les photos de couvertures et popups."
|
10737 |
|
10738 |
-
#: wppa-settings-autosave.php:
|
10739 |
msgid "Upload box background."
|
10740 |
msgstr "Arrière plan de la boîte de chargement."
|
10741 |
|
10742 |
-
#: wppa-settings-autosave.php:
|
10743 |
msgid "Enter valid CSS colors for upload box backgrounds and borders."
|
10744 |
msgstr ""
|
10745 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10746 |
"plan et des bordures pour la boîte de chargement."
|
10747 |
|
10748 |
-
#: wppa-settings-autosave.php:
|
10749 |
msgid "Multitag"
|
10750 |
msgstr "Multitag"
|
10751 |
|
10752 |
-
#: wppa-settings-autosave.php:
|
10753 |
msgid "Multitag box background."
|
10754 |
msgstr "Arrière plan de la boîte Multitag."
|
10755 |
|
10756 |
-
#: wppa-settings-autosave.php:
|
10757 |
msgid "Enter valid CSS colors for multitag box backgrounds and borders."
|
10758 |
msgstr ""
|
10759 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10760 |
"plan et des bordures pour la boîte Multitag."
|
10761 |
|
10762 |
-
#: wppa-settings-autosave.php:
|
10763 |
msgid "Tagcloud"
|
10764 |
msgstr "TagCloud"
|
10765 |
|
10766 |
-
#: wppa-settings-autosave.php:
|
10767 |
msgid "Tagcloud box background."
|
10768 |
msgstr "Arrière plan de la boîte TagCloud."
|
10769 |
|
10770 |
-
#: wppa-settings-autosave.php:
|
10771 |
msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
|
10772 |
msgstr ""
|
10773 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10774 |
"plan et des bordures pour la boîte TagCloud."
|
10775 |
|
10776 |
-
#: wppa-settings-autosave.php:
|
10777 |
msgid "Superview"
|
10778 |
msgstr "SuperView"
|
10779 |
|
10780 |
-
#: wppa-settings-autosave.php:
|
10781 |
msgid "Superview box background."
|
10782 |
msgstr "Arrière plan de la boîte SuperView."
|
10783 |
|
10784 |
-
#: wppa-settings-autosave.php:
|
10785 |
msgid "Enter valid CSS colors for superview box backgrounds and borders."
|
10786 |
msgstr ""
|
10787 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10788 |
"plan et des bordures pour la boîte SuperView."
|
10789 |
|
10790 |
-
#: wppa-settings-autosave.php:
|
10791 |
msgid "Search box background."
|
10792 |
msgstr "Arrière plan de la boîte de recherche."
|
10793 |
|
10794 |
-
#: wppa-settings-autosave.php:
|
10795 |
msgid "Enter valid CSS colors for search box backgrounds and borders."
|
10796 |
msgstr ""
|
10797 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10798 |
"plan et des bordures pour la boîte de recherche."
|
10799 |
|
10800 |
-
#: wppa-settings-autosave.php:
|
10801 |
msgid "BestOf"
|
10802 |
msgstr "BestOf"
|
10803 |
|
10804 |
-
#: wppa-settings-autosave.php:
|
10805 |
msgid "BestOf box background."
|
10806 |
msgstr "Arrière plan de la boîte BestOf."
|
10807 |
|
10808 |
-
#: wppa-settings-autosave.php:
|
10809 |
msgid "Enter valid CSS colors for bestof box backgrounds and borders."
|
10810 |
msgstr ""
|
10811 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10812 |
"plan et des bordures pour la boîte BestOf."
|
10813 |
|
10814 |
-
#: wppa-settings-autosave.php:
|
10815 |
msgid "Calendar"
|
10816 |
msgstr "Calendrier"
|
10817 |
|
10818 |
-
#: wppa-settings-autosave.php:
|
10819 |
msgid "Calendar box background."
|
10820 |
msgstr "Arrière plan de la boîte calendrier."
|
10821 |
|
10822 |
-
#: wppa-settings-autosave.php:
|
10823 |
msgid "Enter valid CSS colors for calendar box backgrounds and borders."
|
10824 |
msgstr ""
|
10825 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10826 |
"plan et des bordures pour la boîte calendrier."
|
10827 |
|
10828 |
-
#: wppa-settings-autosave.php:
|
10829 |
msgid "Stereo"
|
10830 |
msgstr "Stéréo"
|
10831 |
|
10832 |
-
#: wppa-settings-autosave.php:
|
10833 |
msgid "Stereo mode selection box background."
|
10834 |
msgstr "Arrière plan de la boîte de sélection du mode stéréo."
|
10835 |
|
10836 |
-
#: wppa-settings-autosave.php:
|
10837 |
msgid ""
|
10838 |
"Enter valid CSS colors for stereo mode selection box backgrounds and borders."
|
10839 |
msgstr ""
|
10840 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10841 |
"plan et des bordures pour la boîte de sélection du mode stéréo."
|
10842 |
|
10843 |
-
#: wppa-settings-autosave.php:
|
10844 |
msgid "Admins choice"
|
10845 |
msgstr "Choix des admins"
|
10846 |
|
10847 |
-
#: wppa-settings-autosave.php:
|
10848 |
msgid "Admins choice box background."
|
10849 |
msgstr "Fond de boîte admins choix."
|
10850 |
|
10851 |
-
#: wppa-settings-autosave.php:
|
10852 |
msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
|
10853 |
msgstr ""
|
10854 |
"Entrez valides couleurs CSS pour les bordures et les arrière-plans de boîte "
|
10855 |
"choix admins."
|
10856 |
|
10857 |
-
#: wppa-settings-autosave.php:
|
10858 |
msgid "Modal render box"
|
10859 |
msgstr "Modal boîte rendre"
|
10860 |
|
10861 |
-
#: wppa-settings-autosave.php:
|
10862 |
msgid "The background for the Ajax modal rendering box."
|
10863 |
msgstr "Le fond de la boîte modale de rendu Ajax."
|
10864 |
|
10865 |
-
#: wppa-settings-autosave.php:
|
10866 |
msgid "Recommended color: your theme background color."
|
10867 |
msgstr "Couleur recommandée: votre couleur thème de fond."
|
10868 |
|
10869 |
-
#: wppa-settings-autosave.php:
|
10870 |
msgid "Navigation symbols"
|
10871 |
msgstr "Symboles de navigation"
|
10872 |
|
10873 |
-
#: wppa-settings-autosave.php:
|
10874 |
msgid "Navigation symbol background and fill colors."
|
10875 |
msgstr "Navigation symboles couleurs de fond et de remplissage."
|
10876 |
|
10877 |
-
#: wppa-settings-autosave.php:
|
10878 |
msgid "Navigation symbols Lightbox"
|
10879 |
msgstr "Symboles de navigation Lightbox"
|
10880 |
|
10881 |
-
#: wppa-settings-autosave.php:
|
10882 |
msgid "Navigation symbol background and fill colors Lightbox."
|
10883 |
msgstr "Navigation symboles couleurs de fond et de remplissage Lightbox."
|
10884 |
|
10885 |
-
#: wppa-settings-autosave.php:
|
10886 |
msgid "Table IV:"
|
10887 |
msgstr "Table IV:"
|
10888 |
|
10889 |
-
#: wppa-settings-autosave.php:
|
10890 |
msgid "Behaviour:"
|
10891 |
msgstr "Comportement:"
|
10892 |
|
10893 |
-
#: wppa-settings-autosave.php:
|
10894 |
msgid "This table describes the dynamic behaviour of certain wppa+ elements."
|
10895 |
msgstr ""
|
10896 |
"Cette table décrit le comportement dynamique de certains éléments de WPPA+."
|
10897 |
|
10898 |
-
#: wppa-settings-autosave.php:
|
10899 |
msgid "System related settings"
|
10900 |
msgstr "Réglages liés au système"
|
10901 |
|
10902 |
-
#: wppa-settings-autosave.php:
|
10903 |
msgid "Use Ajax"
|
10904 |
msgstr "Utiliser AJAX"
|
10905 |
|
10906 |
-
#: wppa-settings-autosave.php:
|
10907 |
msgid "Use Ajax as much as is possible and implemented."
|
10908 |
msgstr "Utiliser Ajax autant que possible lorsqu'il est implémenté."
|
10909 |
|
10910 |
-
#: wppa-settings-autosave.php:
|
10911 |
msgid ""
|
10912 |
"If this box is ticked, page content updates from within wppa+ displays will "
|
10913 |
"be Ajax based as much as possible."
|
@@ -10915,19 +10913,19 @@ msgstr ""
|
|
10915 |
"Si cette case est cochée, le rafraîchissement du contenu des pages de "
|
10916 |
"l'affichage WPPA+ sera autant que possible basé sur Ajax."
|
10917 |
|
10918 |
-
#: wppa-settings-autosave.php:
|
10919 |
msgid "Ajax NON Admin"
|
10920 |
msgstr "Ajax NON admin"
|
10921 |
|
10922 |
-
#: wppa-settings-autosave.php:
|
10923 |
msgid "Frontend ajax use no admin files."
|
10924 |
msgstr "Le frontend Ajax n'utilise pas de fichiers admin."
|
10925 |
|
10926 |
-
#: wppa-settings-autosave.php:
|
10927 |
msgid "If you want to password protect wp-admin, check this box."
|
10928 |
msgstr "Si vous voulez protéger wp-admin par mot de passe, cochez cette case."
|
10929 |
|
10930 |
-
#: wppa-settings-autosave.php:
|
10931 |
msgid ""
|
10932 |
"In rare cases changing page content does not work when this box is checked. "
|
10933 |
"Verify the functionality!"
|
@@ -10935,63 +10933,63 @@ msgstr ""
|
|
10935 |
"Dans de rares cas, changer le contenu de la page ne fonctionne pas quand "
|
10936 |
"cette case est cochée. Vérifier la fonctionnalité!"
|
10937 |
|
10938 |
-
#: wppa-settings-autosave.php:
|
10939 |
msgid "Modal boxes"
|
10940 |
msgstr "Boîtes modales"
|
10941 |
|
10942 |
-
#: wppa-settings-autosave.php:
|
10943 |
msgid "Place Ajax rendered content in modal boxes"
|
10944 |
msgstr "Placer Ajax rendu contenu dans des boîtes modales"
|
10945 |
|
10946 |
-
#: wppa-settings-autosave.php:
|
10947 |
msgid "Photo names in urls"
|
10948 |
msgstr "Nom des photos dans les URLs"
|
10949 |
|
10950 |
-
#: wppa-settings-autosave.php:
|
10951 |
msgid "Display photo names in urls."
|
10952 |
msgstr "Afficher le nom des photos dans les URLs."
|
10953 |
|
10954 |
-
#: wppa-settings-autosave.php:
|
10955 |
msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
|
10956 |
msgstr ""
|
10957 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms de photo "
|
10958 |
"au lieu de nombres."
|
10959 |
|
10960 |
-
#: wppa-settings-autosave.php:
|
10961 |
msgid ""
|
10962 |
"It is your responsability to avoid duplicate names of photos in the same "
|
10963 |
"album."
|
10964 |
msgstr ""
|
10965 |
"C'est à vous d'éviter les doublons de nom de photos dans le même album."
|
10966 |
|
10967 |
-
#: wppa-settings-autosave.php:
|
10968 |
msgid "Album names in urls"
|
10969 |
msgstr "Nom des albums dans les URLs"
|
10970 |
|
10971 |
-
#: wppa-settings-autosave.php:
|
10972 |
msgid "Display album names in urls."
|
10973 |
msgstr "Afficher le nom des albums dans les URLs."
|
10974 |
|
10975 |
-
#: wppa-settings-autosave.php:
|
10976 |
msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
|
10977 |
msgstr ""
|
10978 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms d'album au "
|
10979 |
"lieu de nombres."
|
10980 |
|
10981 |
-
#: wppa-settings-autosave.php:
|
10982 |
msgid ""
|
10983 |
"It is your responsability to avoid duplicate names of albums in the system."
|
10984 |
msgstr "C'est à vous d'éviter les doublons de nom d'albums dans le système."
|
10985 |
|
10986 |
-
#: wppa-settings-autosave.php:
|
10987 |
msgid "Use short query args"
|
10988 |
msgstr "Utiliser des arguments de requête courts"
|
10989 |
|
10990 |
-
#: wppa-settings-autosave.php:
|
10991 |
msgid "Use &album=... &photo=..."
|
10992 |
msgstr "Utiliser &album=... &photo=..."
|
10993 |
|
10994 |
-
#: wppa-settings-autosave.php:
|
10995 |
msgid ""
|
10996 |
"Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
|
10997 |
"album=... &wppa-photo=..."
|
@@ -10999,7 +10997,7 @@ msgstr ""
|
|
10999 |
"Les URLs vers les contenus WPPA+ contiendront &album=... &photo=... à la "
|
11000 |
"place de &wppa-album=... &wppa-photo=..."
|
11001 |
|
11002 |
-
#: wppa-settings-autosave.php:
|
11003 |
msgid ""
|
11004 |
"Use this setting only when there are no conflicts with other plugins that "
|
11005 |
"may interprete arguments like &album= etc."
|
@@ -11008,15 +11006,15 @@ msgstr ""
|
|
11008 |
"greffons (plugins) qui pourraient interpréter des arguments tels que &album= "
|
11009 |
"etc."
|
11010 |
|
11011 |
-
#: wppa-settings-autosave.php:
|
11012 |
msgid "Enable pretty links"
|
11013 |
msgstr "Activer Pretty Links"
|
11014 |
|
11015 |
-
#: wppa-settings-autosave.php:
|
11016 |
msgid "Enable the generation and understanding of pretty links."
|
11017 |
msgstr "Active la génération et l'interprêtation des Pretty Links."
|
11018 |
|
11019 |
-
#: wppa-settings-autosave.php:
|
11020 |
msgid ""
|
11021 |
"If checked, links to social media and the qr code will have \"/token1/token2/"
|
11022 |
"\" etc in stead of \"&arg1=..&arg2=..\" etc."
|
@@ -11024,14 +11022,14 @@ msgstr ""
|
|
11024 |
"Si coché, les liens vers les média sociaux et le QR Code aura \"/token1/"
|
11025 |
"token2/\" etc à la place de \"&arg1=..&arg2=..\" etc."
|
11026 |
|
11027 |
-
#: wppa-settings-autosave.php:
|
11028 |
msgid ""
|
11029 |
"These types of links will be interpreted and cause a redirection on entering."
|
11030 |
msgstr ""
|
11031 |
"Ces types de liens seront interprétés et fonctionnent avec une redirection à "
|
11032 |
"l'entrée."
|
11033 |
|
11034 |
-
#: wppa-settings-autosave.php:
|
11035 |
msgid ""
|
11036 |
"It is recommended to check this box. It shortens links dramatically and "
|
11037 |
"simplifies qr codes."
|
@@ -11039,7 +11037,7 @@ msgstr ""
|
|
11039 |
"Il est recommandé de cocher cette case. Cela rend les liens plus courts et "
|
11040 |
"simplifie les QR Codes."
|
11041 |
|
11042 |
-
#: wppa-settings-autosave.php:
|
11043 |
msgid ""
|
11044 |
"However, you may encounter conflicts with themes and/or other plugins, so "
|
11045 |
"test it troughly!"
|
@@ -11047,42 +11045,42 @@ msgstr ""
|
|
11047 |
"Cependant, il peut se produire des conflits avec certains thèmes et/ou "
|
11048 |
"greffons (plugins), testez le bien avant de l'utiliser!"
|
11049 |
|
11050 |
-
#: wppa-settings-autosave.php:
|
11051 |
msgid ""
|
11052 |
"Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
|
11053 |
msgstr ""
|
11054 |
"Table IV-A2 (Nom des photos dans les URLs) doit être DÉcoché pour que ce "
|
11055 |
"réglage fonctionne!"
|
11056 |
|
11057 |
-
#: wppa-settings-autosave.php:
|
11058 |
msgid "Enable encrypted links"
|
11059 |
msgstr "Activer les liens cryptés"
|
11060 |
|
11061 |
-
#: wppa-settings-autosave.php:
|
11062 |
msgid "Encrypt album and photo ids in links."
|
11063 |
msgstr "Crypter les album et photo ID dans les liens."
|
11064 |
|
11065 |
-
#: wppa-settings-autosave.php:
|
11066 |
msgid "The page will be reloaded."
|
11067 |
msgstr "La page sera rechargée."
|
11068 |
|
11069 |
-
#: wppa-settings-autosave.php:
|
11070 |
msgid "Refuse unencrypted"
|
11071 |
msgstr "Refuser non cryptés"
|
11072 |
|
11073 |
-
#: wppa-settings-autosave.php:
|
11074 |
msgid "When encrypted is enabled, refuse unencrypted urls."
|
11075 |
msgstr "Lorsque chiffré est activé, refuser les urls non chiffrées."
|
11076 |
|
11077 |
-
#: wppa-settings-autosave.php:
|
11078 |
msgid "Update addressline"
|
11079 |
msgstr "Mettre à jour la ligne d'adresse"
|
11080 |
|
11081 |
-
#: wppa-settings-autosave.php:
|
11082 |
msgid "Update the addressline after an ajax action or next slide."
|
11083 |
msgstr "Met à jour la ligne d'adresse après une action Ajax ou diapo suivante."
|
11084 |
|
11085 |
-
#: wppa-settings-autosave.php:
|
11086 |
msgid ""
|
11087 |
"If checked, refreshing the page will show the current content and the "
|
11088 |
"browsers back and forth arrows will browse the history on the page."
|
@@ -11090,14 +11088,14 @@ msgstr ""
|
|
11090 |
"Si coché, rafraîchir la page affichera le contenu courant et les boutons "
|
11091 |
"Précédent et Suivant du navigateur parcoureront l'historique sur la page."
|
11092 |
|
11093 |
-
#: wppa-settings-autosave.php:
|
11094 |
msgid ""
|
11095 |
"If unchecked, refreshing the page will re-display the content of the "
|
11096 |
"original page."
|
11097 |
msgstr ""
|
11098 |
"Si décoché, rafraîchir la page ré-affichera le contenu de la page originale."
|
11099 |
|
11100 |
-
#: wppa-settings-autosave.php:
|
11101 |
msgid ""
|
11102 |
"This will only work on browsers that support history.pushState() and "
|
11103 |
"therefor NOT in IE"
|
@@ -11105,19 +11103,19 @@ msgstr ""
|
|
11105 |
"Cela ne marchera que sur les navigateurs qui supportent la fonction history."
|
11106 |
"pushState() et donc PAS dans IE"
|
11107 |
|
11108 |
-
#: wppa-settings-autosave.php:
|
11109 |
msgid "Switching this off will affect the browsers behaviour."
|
11110 |
msgstr "Désactiver ceci modifiera le comportement du navigateur."
|
11111 |
|
11112 |
-
#: wppa-settings-autosave.php:
|
11113 |
msgid "Render shortcode always"
|
11114 |
msgstr "Toujours tenir compte du shortcode"
|
11115 |
|
11116 |
-
#: wppa-settings-autosave.php:
|
11117 |
msgid "This will skip the check on proper initialisation."
|
11118 |
msgstr "Ceci désactive la vérification d'un démarrage correct."
|
11119 |
|
11120 |
-
#: wppa-settings-autosave.php:
|
11121 |
msgid ""
|
11122 |
"This setting is required for certain themes like Gantry to prevent the "
|
11123 |
"display of wppa placeholders like [WPPA+ Photo display]."
|
@@ -11125,76 +11123,76 @@ msgstr ""
|
|
11125 |
"Ce réglage est requis pour certains thèmes comme Gantry pour empêcher "
|
11126 |
"l’affichage d'éléments de WPPA comme [WPPA+ Photo display]."
|
11127 |
|
11128 |
-
#: wppa-settings-autosave.php:
|
11129 |
msgid "Track viewcounts"
|
11130 |
msgstr "Tracer le nombre de vues"
|
11131 |
|
11132 |
-
#: wppa-settings-autosave.php:
|
11133 |
msgid "Register number of views of albums and photos."
|
11134 |
msgstr "Enregistrer le nombre de vues des albums et photos."
|
11135 |
|
11136 |
-
#: wppa-settings-autosave.php:
|
11137 |
msgid "Track clickcounts"
|
11138 |
msgstr "Tracer le nombre de clics"
|
11139 |
|
11140 |
-
#: wppa-settings-autosave.php:
|
11141 |
msgid "Register number of clicks on photos that link to an url."
|
11142 |
msgstr ""
|
11143 |
"Inscrire le nombre de clics sur les photos qui ont un lien vers une url."
|
11144 |
|
11145 |
-
#: wppa-settings-autosave.php:
|
11146 |
msgid "Auto page"
|
11147 |
msgstr "Page auto"
|
11148 |
|
11149 |
-
#: wppa-settings-autosave.php:
|
11150 |
msgid "Create a wp page for every fullsize image."
|
11151 |
msgstr "Créer une page WP pour chaque image pleine taille."
|
11152 |
|
11153 |
-
#: wppa-settings-autosave.php:
|
11154 |
msgid "Please reload this page after changing!"
|
11155 |
msgstr "Veuillez recharger cette page après la modification!"
|
11156 |
|
11157 |
-
#: wppa-settings-autosave.php:
|
11158 |
msgid "Auto page display"
|
11159 |
msgstr "Affichage page auto"
|
11160 |
|
11161 |
-
#: wppa-settings-autosave.php:
|
11162 |
msgid "The type of display on the autopage pages."
|
11163 |
msgstr "Le type d'affichage des pages automatiques."
|
11164 |
|
11165 |
-
#: wppa-settings-autosave.php:
|
11166 |
msgid "Single photo"
|
11167 |
msgstr "Photo seule"
|
11168 |
|
11169 |
-
#: wppa-settings-autosave.php:
|
11170 |
msgid "Media type photo"
|
11171 |
msgstr "Media type photo"
|
11172 |
|
11173 |
-
#: wppa-settings-autosave.php:
|
11174 |
msgid "In the style of a slideshow"
|
11175 |
msgstr "Dans le style du diaporama"
|
11176 |
|
11177 |
-
#: wppa-settings-autosave.php:
|
11178 |
msgid "Auto page links"
|
11179 |
msgstr "Liens page auto"
|
11180 |
|
11181 |
-
#: wppa-settings-autosave.php:
|
11182 |
msgid "The location for the pagelinks."
|
11183 |
msgstr "Le positionnement des liens page."
|
11184 |
|
11185 |
-
#: wppa-settings-autosave.php:
|
11186 |
msgid "At top and bottom"
|
11187 |
msgstr "En haut et en bas"
|
11188 |
|
11189 |
-
#: wppa-settings-autosave.php:
|
11190 |
msgid "Defer javascript"
|
11191 |
msgstr "Report Javascript"
|
11192 |
|
11193 |
-
#: wppa-settings-autosave.php:
|
11194 |
msgid "Put javascript near the end of the page."
|
11195 |
msgstr "Met le Javascript vers la fin de la page."
|
11196 |
|
11197 |
-
#: wppa-settings-autosave.php:
|
11198 |
msgid ""
|
11199 |
"If checkd: May fix layout problems and broken slideshows. May speed up or "
|
11200 |
"slow down page appearing."
|
@@ -11202,77 +11200,77 @@ msgstr ""
|
|
11202 |
"Si coché: peut régler des problèmes de disposition et diaporama mal rendus. "
|
11203 |
"Peut accélérer ou ralentir l'affichage de la page."
|
11204 |
|
11205 |
-
#: wppa-settings-autosave.php:
|
11206 |
msgid "Inline styles"
|
11207 |
msgstr "Styles inline"
|
11208 |
|
11209 |
-
#: wppa-settings-autosave.php:
|
11210 |
msgid "Set style specifications inline."
|
11211 |
msgstr "Régle les spécifications de style inline."
|
11212 |
|
11213 |
-
#: wppa-settings-autosave.php:
|
11214 |
msgid "If checked: May fix layout problems, but slows down page appearing."
|
11215 |
msgstr ""
|
11216 |
"Si coché: peut régler des problèmes de disposition, mais ralentit "
|
11217 |
"l'affichage de la page."
|
11218 |
|
11219 |
-
#: wppa-settings-autosave.php:
|
11220 |
msgid "Custom style"
|
11221 |
msgstr "Style personalisé"
|
11222 |
|
11223 |
-
#: wppa-settings-autosave.php:
|
11224 |
msgid "Enter custom style specs here."
|
11225 |
msgstr "Entrer les spécifications du style personnalisé ici."
|
11226 |
|
11227 |
-
#: wppa-settings-autosave.php:
|
11228 |
msgid "Use customized style file"
|
11229 |
msgstr "Utiliser fichier de style personnalisé"
|
11230 |
|
11231 |
-
#: wppa-settings-autosave.php:
|
11232 |
msgid "This feature is highly discouraged."
|
11233 |
msgstr "User de cette fonctionnalité est hautement déconseillé."
|
11234 |
|
11235 |
-
#: wppa-settings-autosave.php:
|
11236 |
msgid "Use customized theme file"
|
11237 |
msgstr "Utiliser fichier de thème personnalisé"
|
11238 |
|
11239 |
-
#: wppa-settings-autosave.php:
|
11240 |
msgid "Enable photo html access"
|
11241 |
msgstr "Autoriser l'accès HTML photo"
|
11242 |
|
11243 |
-
#: wppa-settings-autosave.php:
|
11244 |
msgid ""
|
11245 |
"Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
|
11246 |
msgstr ""
|
11247 |
"Crée des fichiers .htaccess dans ... /uploads/wppa/ et ... /uploads/wppa/"
|
11248 |
"thumbs/"
|
11249 |
|
11250 |
-
#: wppa-settings-autosave.php:
|
11251 |
msgid "create 'all access' .htaccess files"
|
11252 |
msgstr "créer des fichiers .htaccess « all access »"
|
11253 |
|
11254 |
-
#: wppa-settings-autosave.php:
|
11255 |
msgid "remove .htaccess files"
|
11256 |
msgstr "supprimer les fichiers .htaccess"
|
11257 |
|
11258 |
-
#: wppa-settings-autosave.php:
|
11259 |
msgid "create 'no hotlinking' .htaccess files"
|
11260 |
msgstr "ne créer des fichiers .htaccess « aucun hotlinking »"
|
11261 |
|
11262 |
-
#: wppa-settings-autosave.php:
|
11263 |
msgid "do not change existing .htaccess file(s)"
|
11264 |
msgstr "ne modifiez pas les fichiers .htaccess existant"
|
11265 |
|
11266 |
-
#: wppa-settings-autosave.php:
|
11267 |
msgid "Lazy or HTML comp"
|
11268 |
msgstr "HTML lazy ou avec compression"
|
11269 |
|
11270 |
-
#: wppa-settings-autosave.php:
|
11271 |
msgid "Tick this box when you use lazy load or html compression."
|
11272 |
msgstr ""
|
11273 |
"Cocher cette case quand vous utilisez lazy load ou la compression HTML."
|
11274 |
|
11275 |
-
#: wppa-settings-autosave.php:
|
11276 |
msgid ""
|
11277 |
"If the filmstrip images do not show up and you have a lazy load or html "
|
11278 |
"optimizing plugin active: Check this box"
|
@@ -11280,96 +11278,96 @@ msgstr ""
|
|
11280 |
"Si les images filmstrip ne s'affichent pas et que vous utilisez lazy load ou "
|
11281 |
"un greffon d'optimisation HTML actif: cochez cette case"
|
11282 |
|
11283 |
-
#: wppa-settings-autosave.php:
|
11284 |
msgid "Thumbs first"
|
11285 |
msgstr "Vignettes en premier"
|
11286 |
|
11287 |
-
#: wppa-settings-autosave.php:
|
11288 |
msgid "When displaying album content: thumbnails before subalbums."
|
11289 |
msgstr ""
|
11290 |
"Lors de l'affichage du contenu de l'album: vignettes avant les albums fils."
|
11291 |
|
11292 |
-
#: wppa-settings-autosave.php:
|
11293 |
msgid "Login links"
|
11294 |
msgstr "Liens de connexion"
|
11295 |
|
11296 |
-
#: wppa-settings-autosave.php:
|
11297 |
msgid "You must login to... links to login page."
|
11298 |
msgstr "Vous devez vous connectez à... liens vers la page de connexion."
|
11299 |
|
11300 |
-
#: wppa-settings-autosave.php:
|
11301 |
msgid "Enable Video"
|
11302 |
msgstr "Activer vidéo"
|
11303 |
|
11304 |
-
#: wppa-settings-autosave.php:
|
11305 |
msgid "Enables video support."
|
11306 |
msgstr "Active le support de la vidéo."
|
11307 |
|
11308 |
-
#: wppa-settings-autosave.php:
|
11309 |
msgid "Enable Audio"
|
11310 |
msgstr "Activer audio"
|
11311 |
|
11312 |
-
#: wppa-settings-autosave.php:
|
11313 |
msgid "Enables audio support."
|
11314 |
msgstr "Active le support de l'audio."
|
11315 |
|
11316 |
-
#: wppa-settings-autosave.php:
|
11317 |
msgid "Enable 3D Stereo"
|
11318 |
msgstr "Activer 3D stéréo"
|
11319 |
|
11320 |
-
#: wppa-settings-autosave.php:
|
11321 |
msgid "Enables 3D stereo photo support."
|
11322 |
msgstr "Active le support de la photo stéréo 3D."
|
11323 |
|
11324 |
-
#: wppa-settings-autosave.php:
|
11325 |
msgid "Relative urls"
|
11326 |
msgstr "URLs ralatives"
|
11327 |
|
11328 |
-
#: wppa-settings-autosave.php:
|
11329 |
msgid "Use relative urls only."
|
11330 |
msgstr "Utiliser les URLs relatives uniquement."
|
11331 |
|
11332 |
-
#: wppa-settings-autosave.php:
|
11333 |
msgid "Capitalize tags and cats"
|
11334 |
msgstr "Capitaliser les tags et les cats"
|
11335 |
|
11336 |
-
#: wppa-settings-autosave.php:
|
11337 |
msgid "Format tags and cats to start with one capital character"
|
11338 |
msgstr ""
|
11339 |
"Balises de format tags et cats de commencer par un caractère de capital"
|
11340 |
|
11341 |
-
#: wppa-settings-autosave.php:
|
11342 |
msgid "Enable Admins Choice"
|
11343 |
msgstr "Activer Admins Choice"
|
11344 |
|
11345 |
-
#: wppa-settings-autosave.php:
|
11346 |
msgid "Enable the creation of zipfiles with selected photos."
|
11347 |
msgstr "Permettent de créer des zipfiles avec les photos sélectionnées."
|
11348 |
|
11349 |
-
#: wppa-settings-autosave.php:
|
11350 |
msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
|
11351 |
msgstr ""
|
11352 |
"Activer le widget de choix des Admins pour faire le zipfiles téléchargeable."
|
11353 |
|
11354 |
-
#: wppa-settings-autosave.php:
|
11355 |
msgid "Make owner like photoname"
|
11356 |
msgstr "Faire le propriétaire comme nom de photo"
|
11357 |
|
11358 |
-
#: wppa-settings-autosave.php:
|
11359 |
msgid "Change the owner to the user who's display name equals photoname."
|
11360 |
msgstr ""
|
11361 |
"Changer le propriétaire à l’utilisateur qui a afficher nom équivaut à nom de "
|
11362 |
"photo."
|
11363 |
|
11364 |
-
#: wppa-settings-autosave.php:
|
11365 |
msgid "JS and CSS when needed"
|
11366 |
msgstr "JS et CSS en cas de besoin"
|
11367 |
|
11368 |
-
#: wppa-settings-autosave.php:
|
11369 |
msgid "Loads .js and .css files only when they are used on the page."
|
11370 |
msgstr "Charge .js et .css seulement quand ils sont utilisés sur la page."
|
11371 |
|
11372 |
-
#: wppa-settings-autosave.php:
|
11373 |
msgid ""
|
11374 |
"This is a self learning system. The first time a page is loaded that "
|
11375 |
"requires wppa .css or .js files, the page will reload."
|
@@ -11377,23 +11375,23 @@ msgstr ""
|
|
11377 |
"Ceci est un système d'auto-apprentissage. La première fois qu'une page est "
|
11378 |
"chargée qui nécessite .css ou .js fichiers, la page se rechargera."
|
11379 |
|
11380 |
-
#: wppa-settings-autosave.php:
|
11381 |
msgid "Slideshow related settings"
|
11382 |
msgstr "Réglages pour le diaporama"
|
11383 |
|
11384 |
-
#: wppa-settings-autosave.php:
|
11385 |
msgid "V align"
|
11386 |
msgstr "Alignement vertical"
|
11387 |
|
11388 |
-
#: wppa-settings-autosave.php:
|
11389 |
msgid "Vertical alignment of slideshow images."
|
11390 |
msgstr "Alignement vertical des images du diaporama."
|
11391 |
|
11392 |
-
#: wppa-settings-autosave.php:
|
11393 |
msgid "Specify the vertical alignment of slideshow images."
|
11394 |
msgstr "Définit l'alignement vertical des images du diaporama."
|
11395 |
|
11396 |
-
#: wppa-settings-autosave.php:
|
11397 |
msgid ""
|
11398 |
"If you select --- none ---, the photos will not be centered horizontally "
|
11399 |
"either."
|
@@ -11401,29 +11399,29 @@ msgstr ""
|
|
11401 |
"Si vous choisissez --- aucun ---, les photos ne seront pas non plus centrées "
|
11402 |
"horizontalement."
|
11403 |
|
11404 |
-
#: wppa-settings-autosave.php:
|
11405 |
#: wppa-slideshow-widget.php:214
|
11406 |
msgid "top"
|
11407 |
msgstr "haut"
|
11408 |
|
11409 |
-
#: wppa-settings-autosave.php:
|
11410 |
#: wppa-slideshow-widget.php:216
|
11411 |
msgid "bottom"
|
11412 |
msgstr "Bas"
|
11413 |
|
11414 |
-
#: wppa-settings-autosave.php:
|
11415 |
msgid "fit"
|
11416 |
msgstr "auto adaptation"
|
11417 |
|
11418 |
-
#: wppa-settings-autosave.php:
|
11419 |
msgid "H align"
|
11420 |
msgstr "Alignement horizontal"
|
11421 |
|
11422 |
-
#: wppa-settings-autosave.php:
|
11423 |
msgid "Horizontal alignment of slideshow images."
|
11424 |
msgstr "Alignement horizontal des images du diaporama."
|
11425 |
|
11426 |
-
#: wppa-settings-autosave.php:
|
11427 |
msgid ""
|
11428 |
"Specify the horizontal alignment of slideshow images. If you specify --- "
|
11429 |
"none --- , no horizontal alignment will take place."
|
@@ -11431,7 +11429,7 @@ msgstr ""
|
|
11431 |
"Définit l'alignement horizontal des images du diaporama. Si vous choisissez "
|
11432 |
"--- aucun ---, il n'y aura pas d'alignement horizontal."
|
11433 |
|
11434 |
-
#: wppa-settings-autosave.php:
|
11435 |
msgid ""
|
11436 |
"This setting is only usefull when the Column Width differs from the Maximum "
|
11437 |
"Width."
|
@@ -11439,15 +11437,15 @@ msgstr ""
|
|
11439 |
"Ce réglage n'est utile que lorsque la largeur de colonne diffère de la "
|
11440 |
"largeur maximum."
|
11441 |
|
11442 |
-
#: wppa-settings-autosave.php:
|
11443 |
msgid "(Settings I-A1 and I-B1)"
|
11444 |
msgstr "(Réglages I-A1 et I-B1)"
|
11445 |
|
11446 |
-
#: wppa-settings-autosave.php:
|
11447 |
msgid "Start slideshow running."
|
11448 |
msgstr "Démarrage du diaporama."
|
11449 |
|
11450 |
-
#: wppa-settings-autosave.php:
|
11451 |
msgid ""
|
11452 |
"If you select \"running\", the slideshow will start running immediately, if "
|
11453 |
"you select \"still at first photo\", the first photo will be displayed in "
|
@@ -11457,7 +11455,7 @@ msgstr ""
|
|
11457 |
"vous choisissez \"fixe: première photo\", la première photo sera affichée en "
|
11458 |
"mode navigation."
|
11459 |
|
11460 |
-
#: wppa-settings-autosave.php:
|
11461 |
msgid ""
|
11462 |
"If you select \"still at first norated\", the first photo that the visitor "
|
11463 |
"did not gave a rating will be displayed in browse mode."
|
@@ -11465,51 +11463,51 @@ msgstr ""
|
|
11465 |
"Si vous choisissez \"fixe: première photo non notée\", la première photo que "
|
11466 |
"le visiteur n'a pas notée sera affichée en mode navigation."
|
11467 |
|
11468 |
-
#: wppa-settings-autosave.php:
|
11469 |
msgid "running"
|
11470 |
msgstr "immédiat"
|
11471 |
|
11472 |
-
#: wppa-settings-autosave.php:
|
11473 |
msgid "still at first photo"
|
11474 |
msgstr "fixe: première photo"
|
11475 |
|
11476 |
-
#: wppa-settings-autosave.php:
|
11477 |
msgid "still at first norated"
|
11478 |
msgstr "fixe: première photo non notée"
|
11479 |
|
11480 |
-
#: wppa-settings-autosave.php:
|
11481 |
msgid "Start slideonly"
|
11482 |
msgstr "Démarrer diapo seulement"
|
11483 |
|
11484 |
-
#: wppa-settings-autosave.php:
|
11485 |
msgid "Start slideonly slideshow running."
|
11486 |
msgstr "Démarrage du diaporama en mode diapo seulement."
|
11487 |
|
11488 |
-
#: wppa-settings-autosave.php:
|
11489 |
msgid "Video autostart"
|
11490 |
msgstr "Démarrage auto des vidéos"
|
11491 |
|
11492 |
-
#: wppa-settings-autosave.php:
|
11493 |
msgid "Autoplay videos in slideshows."
|
11494 |
msgstr "Joue les vidéos automatiquement dans les diaporamas."
|
11495 |
|
11496 |
-
#: wppa-settings-autosave.php:
|
11497 |
msgid "Audio autostart"
|
11498 |
msgstr "Démarrage auto des fichiers audio"
|
11499 |
|
11500 |
-
#: wppa-settings-autosave.php:
|
11501 |
msgid "Autoplay audios in slideshows."
|
11502 |
msgstr "Joue les fichiers audio automatiquement dans les diaporamas."
|
11503 |
|
11504 |
-
#: wppa-settings-autosave.php:
|
11505 |
msgid "Animation type"
|
11506 |
msgstr "Type d'animation"
|
11507 |
|
11508 |
-
#: wppa-settings-autosave.php:
|
11509 |
msgid "The way successive slides appear."
|
11510 |
msgstr "La façon dont les diapo successives s’enchaînent."
|
11511 |
|
11512 |
-
#: wppa-settings-autosave.php:
|
11513 |
msgid ""
|
11514 |
"Select the way the old slide is to be replaced by the new one in the "
|
11515 |
"slideshow/browse fullsize display."
|
@@ -11517,142 +11515,142 @@ msgstr ""
|
|
11517 |
"Choisir la façon dont la nouvelle diapo remplace l'ancienne dans l’affichage "
|
11518 |
"pleine taille du diaporama/navigation."
|
11519 |
|
11520 |
-
#: wppa-settings-autosave.php:
|
11521 |
msgid "Fade out and in simultaneous"
|
11522 |
msgstr "Fondu simultané"
|
11523 |
|
11524 |
-
#: wppa-settings-autosave.php:
|
11525 |
msgid "Fade in after fade out"
|
11526 |
msgstr "Fondu enchaîné"
|
11527 |
|
11528 |
-
#: wppa-settings-autosave.php:
|
11529 |
msgid "Shift adjacent"
|
11530 |
msgstr "Translation adjacente"
|
11531 |
|
11532 |
-
#: wppa-settings-autosave.php:
|
11533 |
msgid "Stack on"
|
11534 |
msgstr "Empilage"
|
11535 |
|
11536 |
-
#: wppa-settings-autosave.php:
|
11537 |
msgid "Stack off"
|
11538 |
msgstr "Dés-empilage"
|
11539 |
|
11540 |
-
#: wppa-settings-autosave.php:
|
11541 |
msgid "Turn over"
|
11542 |
msgstr "Roulement"
|
11543 |
|
11544 |
-
#: wppa-settings-autosave.php:
|
11545 |
msgid "Timeout"
|
11546 |
msgstr "Timeout"
|
11547 |
|
11548 |
-
#: wppa-settings-autosave.php:
|
11549 |
msgid "Slideshow timeout."
|
11550 |
msgstr "Timeout du diaporama."
|
11551 |
|
11552 |
-
#: wppa-settings-autosave.php:
|
11553 |
msgid ""
|
11554 |
"Select the time a single slide will be visible when the slideshow is started."
|
11555 |
msgstr ""
|
11556 |
"Choisir le temps pendant lequel une diapo sera visible quand le diaporama "
|
11557 |
"est démarré."
|
11558 |
|
11559 |
-
#: wppa-settings-autosave.php:
|
11560 |
msgid "Speed"
|
11561 |
msgstr "Vitesse"
|
11562 |
|
11563 |
-
#: wppa-settings-autosave.php:
|
11564 |
msgid "Slideshow animation speed."
|
11565 |
msgstr "Vitesse d'animation du diaporama."
|
11566 |
|
11567 |
-
#: wppa-settings-autosave.php:
|
11568 |
msgid "Specify the animation speed to be used in slideshows."
|
11569 |
msgstr "Définir la vitesse d'animation à utiliser dans les diaporamas."
|
11570 |
|
11571 |
-
#: wppa-settings-autosave.php:
|
11572 |
msgid "This is the time it takes a photo to fade in or out."
|
11573 |
msgstr "C'est le temps que met une photo à apparaître ou à s'estomper."
|
11574 |
|
11575 |
-
#: wppa-settings-autosave.php:
|
11576 |
-
#: wppa-settings-autosave.php:
|
11577 |
-
#: wppa-settings-autosave.php:
|
11578 |
-
#: wppa-settings-autosave.php:
|
11579 |
-
#: wppa-settings-autosave.php:
|
11580 |
msgid "--- off ---"
|
11581 |
msgstr "--- désactivé ---"
|
11582 |
|
11583 |
-
#: wppa-settings-autosave.php:
|
11584 |
msgid "very fast (200 ms.)"
|
11585 |
msgstr "très rapide (200 ms.)"
|
11586 |
|
11587 |
-
#: wppa-settings-autosave.php:
|
11588 |
msgid "fast (400 ms.)"
|
11589 |
msgstr "rapide (400 ms.)"
|
11590 |
|
11591 |
-
#: wppa-settings-autosave.php:
|
11592 |
msgid "normal (800 ms.)"
|
11593 |
msgstr "normal (800 ms.)"
|
11594 |
|
11595 |
-
#: wppa-settings-autosave.php:
|
11596 |
msgid "slow (1.2 s.)"
|
11597 |
msgstr "lent (1.2 s.)"
|
11598 |
|
11599 |
-
#: wppa-settings-autosave.php:
|
11600 |
msgid "very slow (2 s.)"
|
11601 |
msgstr "très lent (2 s.)"
|
11602 |
|
11603 |
-
#: wppa-settings-autosave.php:
|
11604 |
msgid "extremely slow (4 s.)"
|
11605 |
msgstr "extrèmement lent (4 s.)"
|
11606 |
|
11607 |
-
#: wppa-settings-autosave.php:
|
11608 |
msgid "Slide hover pause"
|
11609 |
msgstr "Pause lors du survol"
|
11610 |
|
11611 |
-
#: wppa-settings-autosave.php:
|
11612 |
msgid "Running Slideshow suspends during mouse hover."
|
11613 |
msgstr "Le diaporama s'arrête lorsque le curseur de la souris le survole."
|
11614 |
|
11615 |
-
#: wppa-settings-autosave.php:
|
11616 |
msgid "Slideshow wrap around"
|
11617 |
msgstr "Bouclage du diaporama"
|
11618 |
|
11619 |
-
#: wppa-settings-autosave.php:
|
11620 |
msgid "The slideshow wraps around the start and end"
|
11621 |
msgstr "Le diaporama passe en boucle"
|
11622 |
|
11623 |
-
#: wppa-settings-autosave.php:
|
11624 |
msgid "Full desc align"
|
11625 |
msgstr "Alignement desc. pleine taille"
|
11626 |
|
11627 |
-
#: wppa-settings-autosave.php:
|
11628 |
msgid "The alignment of the descriptions under fullsize images and slideshows."
|
11629 |
msgstr ""
|
11630 |
"L'alignement des descriptions sous les images pleine taille et diaporamas."
|
11631 |
|
11632 |
-
#: wppa-settings-autosave.php:
|
11633 |
-
#: wppa-settings-autosave.php:
|
11634 |
msgid "Left"
|
11635 |
msgstr "Gauche"
|
11636 |
|
11637 |
-
#: wppa-settings-autosave.php:
|
11638 |
msgid "Center"
|
11639 |
msgstr "Centre"
|
11640 |
|
11641 |
-
#: wppa-settings-autosave.php:
|
11642 |
-
#: wppa-settings-autosave.php:
|
11643 |
msgid "Right"
|
11644 |
msgstr "Droite"
|
11645 |
|
11646 |
-
#: wppa-settings-autosave.php:
|
11647 |
msgid "Remove redundant space"
|
11648 |
msgstr "Enlever les espaces répétés"
|
11649 |
|
11650 |
-
#: wppa-settings-autosave.php:
|
11651 |
msgid "Removes unwanted <p> and <br> tags in fullsize descriptions."
|
11652 |
msgstr ""
|
11653 |
"Enlève les balises <p> et <br> dans les descriptions pleine taille."
|
11654 |
|
11655 |
-
#: wppa-settings-autosave.php:
|
11656 |
msgid ""
|
11657 |
"This setting has only effect when Table IX-A7 (foreign shortcodes) is "
|
11658 |
"checked."
|
@@ -11660,80 +11658,80 @@ msgstr ""
|
|
11660 |
"Ce réglage n'a d'effet que lorsque table IX-A7 (shortcodes étrangers) est "
|
11661 |
"coché."
|
11662 |
|
11663 |
-
#: wppa-settings-autosave.php:
|
11664 |
-
#: wppa-settings-autosave.php:
|
11665 |
msgid "Run nl2br or wpautop on description"
|
11666 |
msgstr "Exécutez nl2br ou wpautop sur la description"
|
11667 |
|
11668 |
-
#: wppa-settings-autosave.php:
|
11669 |
msgid "Adds <br> or <p> and <br> tags in fullsize descriptions."
|
11670 |
msgstr ""
|
11671 |
"Ajoute <br> ou <p> et <br> balises dans les descriptions de "
|
11672 |
"fullsize."
|
11673 |
|
11674 |
-
#: wppa-settings-autosave.php:
|
11675 |
-
#: wppa-settings-autosave.php:
|
11676 |
msgid "Linebreaks only"
|
11677 |
msgstr "linebreaks seulement"
|
11678 |
|
11679 |
-
#: wppa-settings-autosave.php:
|
11680 |
-
#: wppa-settings-autosave.php:
|
11681 |
msgid "Linebreaks and paragraphs"
|
11682 |
msgstr "Linebreaks et les paragraphes"
|
11683 |
|
11684 |
-
#: wppa-settings-autosave.php:
|
11685 |
msgid "Auto open comments"
|
11686 |
msgstr "Ouverture auto des commentaires"
|
11687 |
|
11688 |
-
#: wppa-settings-autosave.php:
|
11689 |
msgid "Automatic opens comments box when slideshow does not run."
|
11690 |
msgstr ""
|
11691 |
"Ouverture automatique de la boîte de commentaires lorsque le diaporama ne "
|
11692 |
"tourne pas."
|
11693 |
|
11694 |
-
#: wppa-settings-autosave.php:
|
11695 |
msgid "Film hover goto"
|
11696 |
msgstr "Aller à lors du survol du filmstrip"
|
11697 |
|
11698 |
-
#: wppa-settings-autosave.php:
|
11699 |
msgid "Go to slide when hovering filmstrip thumbnail."
|
11700 |
msgstr "Va à la diapo lors du survol de la vignette filmstrip."
|
11701 |
|
11702 |
-
#: wppa-settings-autosave.php:
|
11703 |
msgid "Do not use this setting when slides have different aspect ratios!"
|
11704 |
msgstr "Ne pas utiliser ce réglage quand les diapo ont des ratios différents!"
|
11705 |
|
11706 |
-
#: wppa-settings-autosave.php:
|
11707 |
msgid "Slide swipe"
|
11708 |
msgstr "Swipe sur les diapos"
|
11709 |
|
11710 |
-
#: wppa-settings-autosave.php:
|
11711 |
msgid "Enable touch events swipe left-right on slides on touch screens."
|
11712 |
msgstr ""
|
11713 |
"Active les fonctionnalités Swipe gauche-droite pour les diapos sur les "
|
11714 |
"écrans tactiles."
|
11715 |
|
11716 |
-
#: wppa-settings-autosave.php:
|
11717 |
msgid "Slide page Ajax"
|
11718 |
msgstr "Ajax page diapo"
|
11719 |
|
11720 |
-
#: wppa-settings-autosave.php:
|
11721 |
msgid "Pagelinks slideshow use Ajax"
|
11722 |
msgstr "Les diaporamas des pages de liens utilisent Ajax"
|
11723 |
|
11724 |
-
#: wppa-settings-autosave.php:
|
11725 |
msgid "On some systems you need to disable ajax here."
|
11726 |
msgstr "Sur certains systèmes, vous devrez désactiver Ajax ici."
|
11727 |
|
11728 |
-
#: wppa-settings-autosave.php:
|
11729 |
msgid "Thumbnail related settings"
|
11730 |
msgstr "Réglages pour les vignettes"
|
11731 |
|
11732 |
-
#: wppa-settings-autosave.php:
|
11733 |
msgid "Photo ordering sequence method."
|
11734 |
msgstr "Méthode utilisée pour le tri des photos."
|
11735 |
|
11736 |
-
#: wppa-settings-autosave.php:
|
11737 |
msgid ""
|
11738 |
"Specify the way the photos should be ordered. This is the default setting. "
|
11739 |
"You can overrule the default sorting order on a per album basis."
|
@@ -11742,15 +11740,15 @@ msgstr ""
|
|
11742 |
"défaut. Vous avez la possibilité de régler la méthode de tri séparément pour "
|
11743 |
"chaque album."
|
11744 |
|
11745 |
-
#: wppa-settings-autosave.php:
|
11746 |
msgid "Thumbnail type"
|
11747 |
msgstr "Type de vignette"
|
11748 |
|
11749 |
-
#: wppa-settings-autosave.php:
|
11750 |
msgid "The way the thumbnail images are displayed."
|
11751 |
msgstr "La façon dont les vignettes sont affichées."
|
11752 |
|
11753 |
-
#: wppa-settings-autosave.php:
|
11754 |
msgid ""
|
11755 |
"You may select an altenative display method for thumbnails. Note that some "
|
11756 |
"of the thumbnail settings do not apply to all available display methods."
|
@@ -11759,49 +11757,49 @@ msgstr ""
|
|
11759 |
"certains réglages pour les vignettes ne s'appliquent pas à toutes les "
|
11760 |
"méthodes d'affichage."
|
11761 |
|
11762 |
-
#: wppa-settings-autosave.php:
|
11763 |
#: wppa-tinymce-shortcodes.php:515 wppa-tinymce-shortcodes.php:534
|
11764 |
#: wppa-watermark.php:569 wppa-watermark.php:634
|
11765 |
msgid "--- default ---"
|
11766 |
msgstr "--- défaut ---"
|
11767 |
|
11768 |
-
#: wppa-settings-autosave.php:
|
11769 |
msgid "like album covers"
|
11770 |
msgstr "comme les couvertures d'album"
|
11771 |
|
11772 |
-
#: wppa-settings-autosave.php:
|
11773 |
msgid "like album covers mcr"
|
11774 |
msgstr "comme mcr des couvertures d'album"
|
11775 |
|
11776 |
-
#: wppa-settings-autosave.php:
|
11777 |
msgid "masonry style columns"
|
11778 |
msgstr "colonnes style maçonnerie"
|
11779 |
|
11780 |
-
#: wppa-settings-autosave.php:
|
11781 |
msgid "masonry style rows"
|
11782 |
msgstr "lignes style maçonnerie"
|
11783 |
|
11784 |
-
#: wppa-settings-autosave.php:
|
11785 |
msgid "Placement"
|
11786 |
msgstr "Placement"
|
11787 |
|
11788 |
-
#: wppa-settings-autosave.php:
|
11789 |
msgid "Thumbnail image left or right."
|
11790 |
msgstr "vignette à gauche ou a droite."
|
11791 |
|
11792 |
-
#: wppa-settings-autosave.php:
|
11793 |
msgid "Indicate the placement position of the thumbnailphoto you wish."
|
11794 |
msgstr "Indique l'emplacement voulu de la vignette photo."
|
11795 |
|
11796 |
-
#: wppa-settings-autosave.php:
|
11797 |
msgid "Vertical alignment"
|
11798 |
msgstr "Alignement vertical"
|
11799 |
|
11800 |
-
#: wppa-settings-autosave.php:
|
11801 |
msgid "Vertical alignment of thumbnails."
|
11802 |
msgstr "Alignement vertical des vignettes."
|
11803 |
|
11804 |
-
#: wppa-settings-autosave.php:
|
11805 |
msgid ""
|
11806 |
"Specify the vertical alignment of thumbnail images. Use this setting when "
|
11807 |
"albums contain both portrait and landscape photos."
|
@@ -11809,7 +11807,7 @@ msgstr ""
|
|
11809 |
"Spécifie l’alignement vertical des vignettes. Utiliser ce réglage quand les "
|
11810 |
"couvertures d'album contiennent des photos en mode portrait et paysage."
|
11811 |
|
11812 |
-
#: wppa-settings-autosave.php:
|
11813 |
msgid ""
|
11814 |
"It is NOT recommended to use the value --- default ---; it will affect the "
|
11815 |
"horizontal alignment also and is meant to be used with custom css."
|
@@ -11818,89 +11816,89 @@ msgstr ""
|
|
11818 |
"l'alignement horizontal aussi et il est prévu pour être utilisé avec le CSS "
|
11819 |
"personnalisé."
|
11820 |
|
11821 |
-
#: wppa-settings-autosave.php:
|
11822 |
msgid "Thumb mouseover"
|
11823 |
msgstr "Survol vignette"
|
11824 |
|
11825 |
-
#: wppa-settings-autosave.php:
|
11826 |
msgid "Apply thumbnail mouseover effect."
|
11827 |
msgstr "Appliquer l'effet de survol des vignettes."
|
11828 |
|
11829 |
-
#: wppa-settings-autosave.php:
|
11830 |
msgid "Check this box to use mouseover effect on thumbnail images."
|
11831 |
msgstr "Cochez cette case pour utiliser l'effet de survol sur les vignettes."
|
11832 |
|
11833 |
-
#: wppa-settings-autosave.php:
|
11834 |
msgid "Thumb opacity"
|
11835 |
msgstr "Opacité des vignettes"
|
11836 |
|
11837 |
-
#: wppa-settings-autosave.php:
|
11838 |
msgid "Initial opacity value."
|
11839 |
msgstr "Valeur d'opacité initiale."
|
11840 |
|
11841 |
-
#: wppa-settings-autosave.php:
|
11842 |
-
#: wppa-settings-autosave.php:
|
11843 |
msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
|
11844 |
msgstr "Entrer le pourcentage d'opacité. 100% : opaque, 0% : transparent"
|
11845 |
|
11846 |
-
#: wppa-settings-autosave.php:
|
11847 |
-
#: wppa-settings-autosave.php:
|
11848 |
msgid "%"
|
11849 |
msgstr "%"
|
11850 |
|
11851 |
-
#: wppa-settings-autosave.php:
|
11852 |
msgid "Thumb popup"
|
11853 |
msgstr "Popup vignette"
|
11854 |
|
11855 |
-
#: wppa-settings-autosave.php:
|
11856 |
msgid "Use popup effect on thumbnail images."
|
11857 |
msgstr "Utiliser l'effet popup sur les vignettes."
|
11858 |
|
11859 |
-
#: wppa-settings-autosave.php:
|
11860 |
msgid "Thumbnails pop-up to a larger image when hovered."
|
11861 |
msgstr ""
|
11862 |
"Une vue plus grande de l'image s'affiche dans un popup lorsqu'on survole la "
|
11863 |
"vignette."
|
11864 |
|
11865 |
-
#: wppa-settings-autosave.php:
|
11866 |
msgid "Align subtext"
|
11867 |
msgstr "aligner le sous texte"
|
11868 |
|
11869 |
-
#: wppa-settings-autosave.php:
|
11870 |
msgid "Set thumbnail subtext on equal height."
|
11871 |
msgstr "Régler le sous texte des vignettes à hauteur égale."
|
11872 |
|
11873 |
-
#: wppa-settings-autosave.php:
|
11874 |
msgid "Adds <br> or <p> and <br> tags in thumbnail descriptions."
|
11875 |
msgstr ""
|
11876 |
"Ajoute <br> ou <p> et <br> balises dans la description des "
|
11877 |
"vignettes."
|
11878 |
|
11879 |
-
#: wppa-settings-autosave.php:
|
11880 |
msgid "Album and covers related settings"
|
11881 |
msgstr "Réglages pour les albums et les couvertures"
|
11882 |
|
11883 |
-
#: wppa-settings-autosave.php:
|
11884 |
msgid "Album order"
|
11885 |
msgstr "Tri des albums"
|
11886 |
|
11887 |
-
#: wppa-settings-autosave.php:
|
11888 |
msgid "Album ordering sequence method."
|
11889 |
msgstr "Méthode de tri des albums."
|
11890 |
|
11891 |
-
#: wppa-settings-autosave.php:
|
11892 |
msgid "Specify the way the albums should be ordered."
|
11893 |
msgstr "Spécifier la façon dont les albums doivent être triés."
|
11894 |
|
11895 |
-
#: wppa-settings-autosave.php:
|
11896 |
msgid "Default coverphoto selection"
|
11897 |
msgstr "Sélection de la photo de couverture par défaut"
|
11898 |
|
11899 |
-
#: wppa-settings-autosave.php:
|
11900 |
msgid "Default select cover photo method."
|
11901 |
msgstr "Réglage par défaut de la sélection de la photo de couverture."
|
11902 |
|
11903 |
-
#: wppa-settings-autosave.php:
|
11904 |
msgid ""
|
11905 |
"This is the initial value on album creation only. It can be overruled on the "
|
11906 |
"edit album page."
|
@@ -11908,27 +11906,27 @@ msgstr ""
|
|
11908 |
"C'est la valeur initiale à la création de l'album. Cela peut être modifié "
|
11909 |
"dans la page de modification de l'album."
|
11910 |
|
11911 |
-
#: wppa-settings-autosave.php:
|
11912 |
msgid "Random from album"
|
11913 |
msgstr "Aléatoire à partir de l'album"
|
11914 |
|
11915 |
-
#: wppa-settings-autosave.php:
|
11916 |
msgid "Random featured from album"
|
11917 |
msgstr "Aléatoire recommandé de l'album"
|
11918 |
|
11919 |
-
#: wppa-settings-autosave.php:
|
11920 |
msgid "Most recently added to album"
|
11921 |
msgstr "Dernières photos mises à jour"
|
11922 |
|
11923 |
-
#: wppa-settings-autosave.php:
|
11924 |
msgid "Random from album or any sub album"
|
11925 |
msgstr "Aléatoire depuis un album ou (fils)"
|
11926 |
|
11927 |
-
#: wppa-settings-autosave.php:
|
11928 |
msgid "Cover image position."
|
11929 |
msgstr "Position de l'image de couverture."
|
11930 |
|
11931 |
-
#: wppa-settings-autosave.php:
|
11932 |
msgid ""
|
11933 |
"Enter the position that you want to be used for the default album cover "
|
11934 |
"selected in Table IV-D6."
|
@@ -11936,7 +11934,7 @@ msgstr ""
|
|
11936 |
"Entrer le placement que vous voulez utiliser par défaut pour la couverture "
|
11937 |
"d'album par défaut choisie dans table IV-D6."
|
11938 |
|
11939 |
-
#: wppa-settings-autosave.php:
|
11940 |
msgid ""
|
11941 |
"For covertype Image Factory: left will be treated as top and right will be "
|
11942 |
"treted as bottom."
|
@@ -11944,7 +11942,7 @@ msgstr ""
|
|
11944 |
"Pour covertype Image Factory: gauche sera considéré comme haut et droite "
|
11945 |
"comme bas."
|
11946 |
|
11947 |
-
#: wppa-settings-autosave.php:
|
11948 |
msgid ""
|
11949 |
"For covertype Long Descriptions: top will be treated as left and bottom will "
|
11950 |
"be treted as right."
|
@@ -11952,33 +11950,33 @@ msgstr ""
|
|
11952 |
"Pour covertype Long Descriptions: haut sera considéré comme gauche et bas "
|
11953 |
"comme droite."
|
11954 |
|
11955 |
-
#: wppa-settings-autosave.php:
|
11956 |
msgid "Cover mouseover"
|
11957 |
msgstr "Survol couverture"
|
11958 |
|
11959 |
-
#: wppa-settings-autosave.php:
|
11960 |
msgid "Apply coverphoto mouseover effect."
|
11961 |
msgstr "Appliquer l'effet de survol de la photo de couverture."
|
11962 |
|
11963 |
-
#: wppa-settings-autosave.php:
|
11964 |
msgid "Check this box to use mouseover effect on cover images."
|
11965 |
msgstr ""
|
11966 |
"Cochez cette case pour utiliser l'effet de survol sur les photos de "
|
11967 |
"couverture."
|
11968 |
|
11969 |
-
#: wppa-settings-autosave.php:
|
11970 |
msgid "Cover opacity"
|
11971 |
msgstr "Opacité de la couverture"
|
11972 |
|
11973 |
-
#: wppa-settings-autosave.php:
|
11974 |
msgid "Cover type"
|
11975 |
msgstr "Type de couverture"
|
11976 |
|
11977 |
-
#: wppa-settings-autosave.php:
|
11978 |
msgid "Select the default cover type."
|
11979 |
msgstr "Choisir le type de couverture par défaut."
|
11980 |
|
11981 |
-
#: wppa-settings-autosave.php:
|
11982 |
msgid ""
|
11983 |
"Types with the addition mcr are suitable for Multi Column in a Responsive "
|
11984 |
"theme"
|
@@ -11986,19 +11984,19 @@ msgstr ""
|
|
11986 |
"Les types avec l'ajout de mcr sont appropriés pour le Multi Colonne dans un "
|
11987 |
"thème Responsive"
|
11988 |
|
11989 |
-
#: wppa-settings-autosave.php:
|
11990 |
msgid "The umber of coverphotos. Must be > 1 and < 25."
|
11991 |
msgstr "Le nombre de photos de couvertures. Doit être > 1 et < 25."
|
11992 |
|
11993 |
-
#: wppa-settings-autosave.php:
|
11994 |
msgid "Cats include subs"
|
11995 |
msgstr "Les cats comprennent les sous-albums"
|
11996 |
|
11997 |
-
#: wppa-settings-autosave.php:
|
11998 |
msgid "Child albums are included in Category based shortcodes."
|
11999 |
msgstr "Albums enfant sont inclus dans la catégorie basé shortcodes."
|
12000 |
|
12001 |
-
#: wppa-settings-autosave.php:
|
12002 |
msgid ""
|
12003 |
"When you use album=\"#cat,...\", in a shortcode, the child albums will be "
|
12004 |
"included."
|
@@ -12006,24 +12004,24 @@ msgstr ""
|
|
12006 |
"Lorsque vous utilisez album=\"#cat,...\", dans un shortcode, les albums "
|
12007 |
"d’enfant seront incluses."
|
12008 |
|
12009 |
-
#: wppa-settings-autosave.php:
|
12010 |
msgid "Adds <br> or <p> and <br> tags in album descriptions."
|
12011 |
msgstr ""
|
12012 |
"Ajoute <br> ou <p> et <br> balises dans les descriptions de l'album."
|
12013 |
|
12014 |
-
#: wppa-settings-autosave.php:
|
12015 |
msgid "Rating related settings"
|
12016 |
msgstr "Réglages pour la notation"
|
12017 |
|
12018 |
-
#: wppa-settings-autosave.php:
|
12019 |
msgid "Rating login"
|
12020 |
msgstr "Connexion pour la notation"
|
12021 |
|
12022 |
-
#: wppa-settings-autosave.php:
|
12023 |
msgid "Users must login to rate photos."
|
12024 |
msgstr "Les utilisateurs doivent se connecter pour voter."
|
12025 |
|
12026 |
-
#: wppa-settings-autosave.php:
|
12027 |
msgid ""
|
12028 |
"If users want to vote for a photo (rating 1..5 stars) the must login first. "
|
12029 |
"The avarage rating will always be displayed as long as the rating system is "
|
@@ -12033,32 +12031,32 @@ msgstr ""
|
|
12033 |
"ils doivent se connecter avant. La note moyenne sera toujours affichée "
|
12034 |
"lorsque la notation est active."
|
12035 |
|
12036 |
-
#: wppa-settings-autosave.php:
|
12037 |
msgid "Rating change"
|
12038 |
msgstr "Changement de la notation"
|
12039 |
|
12040 |
-
#: wppa-settings-autosave.php:
|
12041 |
msgid "Users may change their ratings."
|
12042 |
msgstr "Les utilisateurs peuvent changer leurs notations."
|
12043 |
|
12044 |
-
#: wppa-settings-autosave.php:
|
12045 |
-
#: wppa-settings-autosave.php:
|
12046 |
-
#: wppa-settings-autosave.php:
|
12047 |
-
#: wppa-settings-autosave.php:
|
12048 |
msgid ""
|
12049 |
"If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
|
12050 |
msgstr ""
|
12051 |
"Si \"One button vote\" est choisi dans table I-E1, ce réglage n'a pas de sens"
|
12052 |
|
12053 |
-
#: wppa-settings-autosave.php:
|
12054 |
msgid "Rating multi"
|
12055 |
msgstr "Multi notation"
|
12056 |
|
12057 |
-
#: wppa-settings-autosave.php:
|
12058 |
msgid "Users may give multiple votes."
|
12059 |
msgstr "Les utilisateurs peuvent voter plusieurs fois."
|
12060 |
|
12061 |
-
#: wppa-settings-autosave.php:
|
12062 |
msgid ""
|
12063 |
"Users may give multiple votes. (This has no effect when users may change "
|
12064 |
"their votes.)"
|
@@ -12066,47 +12064,47 @@ msgstr ""
|
|
12066 |
"Les utilisateurs peuvent voter plusieurs fois. (Cela n'a pas d'effet quand "
|
12067 |
"les utilisateurs peuvent changer leurs votes.)"
|
12068 |
|
12069 |
-
#: wppa-settings-autosave.php:
|
12070 |
msgid "Rating daily"
|
12071 |
msgstr "Notation de tous les jours"
|
12072 |
|
12073 |
-
#: wppa-settings-autosave.php:
|
12074 |
msgid "Users may rate only once per period"
|
12075 |
msgstr "Utilisateurs peuvent noter qu’une seule fois par période"
|
12076 |
|
12077 |
-
#: wppa-settings-autosave.php:
|
12078 |
msgid "Week"
|
12079 |
msgstr "Semaine"
|
12080 |
|
12081 |
-
#: wppa-settings-autosave.php:
|
12082 |
msgid "Day"
|
12083 |
msgstr "Jour"
|
12084 |
|
12085 |
-
#: wppa-settings-autosave.php:
|
12086 |
msgid "Hour"
|
12087 |
msgstr "Heure"
|
12088 |
|
12089 |
-
#: wppa-settings-autosave.php:
|
12090 |
msgid "Rate own photos"
|
12091 |
msgstr "Noter ses propres photos"
|
12092 |
|
12093 |
-
#: wppa-settings-autosave.php:
|
12094 |
msgid "It is allowed to rate photos by the uploader himself."
|
12095 |
msgstr "L'utilisateur qui a chargé une photo peut aussi la noter."
|
12096 |
|
12097 |
-
#: wppa-settings-autosave.php:
|
12098 |
msgid "Rating requires comment"
|
12099 |
msgstr "Commentaire requis pour notation"
|
12100 |
|
12101 |
-
#: wppa-settings-autosave.php:
|
12102 |
msgid "Users must clarify their vote in a comment."
|
12103 |
msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
|
12104 |
|
12105 |
-
#: wppa-settings-autosave.php:
|
12106 |
msgid "This value counts dislike rating."
|
12107 |
msgstr "Cette valeur compte les notes défavorables."
|
12108 |
|
12109 |
-
#: wppa-settings-autosave.php:
|
12110 |
msgid ""
|
12111 |
"This value will be used for a dislike rating on calculation of avarage "
|
12112 |
"ratings."
|
@@ -12114,19 +12112,19 @@ msgstr ""
|
|
12114 |
"Cette valeur sera utilisée pour une note des avis défavorables dans le "
|
12115 |
"calcul des notes moyennes."
|
12116 |
|
12117 |
-
#: wppa-settings-autosave.php:
|
12118 |
msgid "points"
|
12119 |
msgstr "points"
|
12120 |
|
12121 |
-
#: wppa-settings-autosave.php:
|
12122 |
msgid "Next after vote"
|
12123 |
msgstr "Suivant après le vote"
|
12124 |
|
12125 |
-
#: wppa-settings-autosave.php:
|
12126 |
msgid "Goto next slide after voting"
|
12127 |
msgstr "Aller à la diapositive suivante après le vote"
|
12128 |
|
12129 |
-
#: wppa-settings-autosave.php:
|
12130 |
msgid ""
|
12131 |
"If checked, the visitor goes straight to the slide following the slide he "
|
12132 |
"voted. This will speed up mass voting."
|
@@ -12134,19 +12132,19 @@ msgstr ""
|
|
12134 |
"Si coché, le visiteur va directement à la diapo suivant celle pour laquelle "
|
12135 |
"il a voté. Cela accélère le vote en masse."
|
12136 |
|
12137 |
-
#: wppa-settings-autosave.php:
|
12138 |
msgid "Star off opacity"
|
12139 |
msgstr "Opacité étoile éteinte"
|
12140 |
|
12141 |
-
#: wppa-settings-autosave.php:
|
12142 |
msgid "Rating star off state opacity value."
|
12143 |
msgstr "Valeur de l'opacité de l'étoile pour l'état éteint."
|
12144 |
|
12145 |
-
#: wppa-settings-autosave.php:
|
12146 |
msgid "Notify admin every x times."
|
12147 |
msgstr "Notifier l'administrateur toutes les x fois."
|
12148 |
|
12149 |
-
#: wppa-settings-autosave.php:
|
12150 |
msgid ""
|
12151 |
"If this number is positive, there will be a thumb down icon in the rating "
|
12152 |
"bar."
|
@@ -12154,7 +12152,7 @@ msgstr ""
|
|
12154 |
"Si ce nombre est positif, il y aura une icône pouce bas dans la barre de "
|
12155 |
"notation."
|
12156 |
|
12157 |
-
#: wppa-settings-autosave.php:
|
12158 |
msgid ""
|
12159 |
"Cicking the icon indicates a user wants to report that an image is "
|
12160 |
"inappropiate."
|
@@ -12162,57 +12160,57 @@ msgstr ""
|
|
12162 |
"Un utilisateur qui voudra signaler qu'une image est inappropriée n'aura qu'a "
|
12163 |
"cliquer sur cette icône."
|
12164 |
|
12165 |
-
#: wppa-settings-autosave.php:
|
12166 |
msgid "Admin will be notified by email after every x reports."
|
12167 |
msgstr "L'administrateur sera notifié par email tous les x signalements."
|
12168 |
|
12169 |
-
#: wppa-settings-autosave.php:
|
12170 |
-
#: wppa-settings-autosave.php:
|
12171 |
msgid "A value of 0 disables this feature."
|
12172 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
12173 |
|
12174 |
-
#: wppa-settings-autosave.php:
|
12175 |
-
#: wppa-settings-autosave.php:
|
12176 |
msgid "reports"
|
12177 |
msgstr "rapports"
|
12178 |
|
12179 |
-
#: wppa-settings-autosave.php:
|
12180 |
msgid "Pending after"
|
12181 |
msgstr "En attente après"
|
12182 |
|
12183 |
-
#: wppa-settings-autosave.php:
|
12184 |
msgid "Set status to pending after xx dislike votes."
|
12185 |
msgstr "Règle le statut à en attente après xx votes défavorables."
|
12186 |
|
12187 |
-
#: wppa-settings-autosave.php:
|
12188 |
msgid "Delete after"
|
12189 |
msgstr "Supprimer après"
|
12190 |
|
12191 |
-
#: wppa-settings-autosave.php:
|
12192 |
msgid "Deete photo after xx dislike votes."
|
12193 |
msgstr "Efface la photo après xx votes défavorables."
|
12194 |
|
12195 |
-
#: wppa-settings-autosave.php:
|
12196 |
msgid "Show dislike count"
|
12197 |
msgstr "Montrer comptage des avis négatifs"
|
12198 |
|
12199 |
-
#: wppa-settings-autosave.php:
|
12200 |
msgid "Show the number of dislikes in the rating bar."
|
12201 |
msgstr "Montrer le nombre d'avis défavorables dans la barre de notation."
|
12202 |
|
12203 |
-
#: wppa-settings-autosave.php:
|
12204 |
msgid "Displayes the total number of dislike votes for the current photo."
|
12205 |
msgstr "Affiche le nombre total d'avis défavorables pour la photo courante."
|
12206 |
|
12207 |
-
#: wppa-settings-autosave.php:
|
12208 |
msgid "Rating display type"
|
12209 |
msgstr "Type d’affichage des notes"
|
12210 |
|
12211 |
-
#: wppa-settings-autosave.php:
|
12212 |
msgid "Specify the type of the rating display."
|
12213 |
msgstr "Spécifier le type d'affichage des notes."
|
12214 |
|
12215 |
-
#: wppa-settings-autosave.php:
|
12216 |
msgid ""
|
12217 |
"If you select \"Likes\" you must also select \"One button vote\" in Table I-"
|
12218 |
"E1"
|
@@ -12220,29 +12218,29 @@ msgstr ""
|
|
12220 |
"Si vous sélectionnez « Aime » vous devez également sélectionner « Un bouton "
|
12221 |
"vote » dans le tableau I-E1"
|
12222 |
|
12223 |
-
#: wppa-settings-autosave.php:
|
12224 |
msgid "Graphic"
|
12225 |
msgstr "Graphique"
|
12226 |
|
12227 |
-
#: wppa-settings-autosave.php:
|
12228 |
msgid "Numeric"
|
12229 |
msgstr "Numérique"
|
12230 |
|
12231 |
-
#: wppa-settings-autosave.php:
|
12232 |
msgid "Likes"
|
12233 |
msgstr "Aime"
|
12234 |
|
12235 |
-
#: wppa-settings-autosave.php:
|
12236 |
msgid "Show average rating"
|
12237 |
msgstr "Montrer le vote moyen"
|
12238 |
|
12239 |
-
#: wppa-settings-autosave.php:
|
12240 |
msgid "Display the avarage rating and/or vote count on the rating bar"
|
12241 |
msgstr ""
|
12242 |
"Afficher la moyenne des notes et/ou compte des votes dans la barre de "
|
12243 |
"notation"
|
12244 |
|
12245 |
-
#: wppa-settings-autosave.php:
|
12246 |
msgid ""
|
12247 |
"If checked, the average rating as well as the current users rating is "
|
12248 |
"displayed in max 5 or 10 stars."
|
@@ -12250,13 +12248,13 @@ msgstr ""
|
|
12250 |
"Si coché, la moyenne des notes ainsi que la note de l'utilisateur courant "
|
12251 |
"sont affichées avec une échelle de 5 ou 10 étoiles."
|
12252 |
|
12253 |
-
#: wppa-settings-autosave.php:
|
12254 |
msgid "If unchecked, only the current users rating is displayed (if any)."
|
12255 |
msgstr ""
|
12256 |
"Si décoché, seulement la note de l'utilisateur courant est affichée (si "
|
12257 |
"existe)."
|
12258 |
|
12259 |
-
#: wppa-settings-autosave.php:
|
12260 |
msgid ""
|
12261 |
"If \"One button vote\" is selected in Table I-E1, this box checked will "
|
12262 |
"display the vote count."
|
@@ -12264,52 +12262,52 @@ msgstr ""
|
|
12264 |
"Si \"One button vote\" est sélectionné dans table I-E1, cette case cochée "
|
12265 |
"affichera le comptage des votes."
|
12266 |
|
12267 |
-
#: wppa-settings-autosave.php:
|
12268 |
msgid "Single vote button text"
|
12269 |
msgstr "Texte du bouton unique de vote"
|
12270 |
|
12271 |
-
#: wppa-settings-autosave.php:
|
12272 |
msgid "The text on the voting button."
|
12273 |
msgstr "Le texte sur le bouton de vote."
|
12274 |
|
12275 |
-
#: wppa-settings-autosave.php:
|
12276 |
msgid "This text may contain qTranslate compatible language tags."
|
12277 |
msgstr "Ce texte peut contenir des tags compatibles avec qTranslate."
|
12278 |
|
12279 |
-
#: wppa-settings-autosave.php:
|
12280 |
msgid "Single vote button text voted"
|
12281 |
msgstr "Texte voté sur le bouton unique de vote"
|
12282 |
|
12283 |
-
#: wppa-settings-autosave.php:
|
12284 |
msgid "The text on the voting button when voted."
|
12285 |
msgstr "Le texte sur le bouton de vote lorsque voté."
|
12286 |
|
12287 |
-
#: wppa-settings-autosave.php:
|
12288 |
msgid "Single vote button thumbnail"
|
12289 |
msgstr "Bouton unique de vote et vignette"
|
12290 |
|
12291 |
-
#: wppa-settings-autosave.php:
|
12292 |
msgid "Display single vote button below thumbnails."
|
12293 |
msgstr "Affiche le bouton unique de vote sous les vignettes."
|
12294 |
|
12295 |
-
#: wppa-settings-autosave.php:
|
12296 |
msgid ""
|
12297 |
"This works only in single vote mode: Table I-E1 set to \"one button vote\""
|
12298 |
msgstr ""
|
12299 |
"Cela fonctionne seulement en mode vote unique: table I-E1 réglé à \"one "
|
12300 |
"button vote\""
|
12301 |
|
12302 |
-
#: wppa-settings-autosave.php:
|
12303 |
msgid "Medal bronze when"
|
12304 |
msgstr "Médaille de bronze quand"
|
12305 |
|
12306 |
-
#: wppa-settings-autosave.php:
|
12307 |
msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
|
12308 |
msgstr ""
|
12309 |
"La photo reçoit la médaille de bronze quand le nombre de top-scores (5 or "
|
12310 |
"10)."
|
12311 |
|
12312 |
-
#: wppa-settings-autosave.php:
|
12313 |
msgid ""
|
12314 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
12315 |
"bronze medal. A value of 0 indicates that you do not want this feature."
|
@@ -12318,21 +12316,21 @@ msgstr ""
|
|
12318 |
"médaille de bronze. La valeur 0 signifie qu'on n'utilise pas cette "
|
12319 |
"fonctionnalité."
|
12320 |
|
12321 |
-
#: wppa-settings-autosave.php:
|
12322 |
-
#: wppa-settings-autosave.php:
|
12323 |
msgid "Topscores"
|
12324 |
msgstr "Meilleurs scores"
|
12325 |
|
12326 |
-
#: wppa-settings-autosave.php:
|
12327 |
msgid "Medal silver when"
|
12328 |
msgstr "Médaille d'argent quand"
|
12329 |
|
12330 |
-
#: wppa-settings-autosave.php:
|
12331 |
msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
|
12332 |
msgstr ""
|
12333 |
"La photo reçoit la médaille d'argent quand le nombre de top-scores (5 or 10)."
|
12334 |
|
12335 |
-
#: wppa-settings-autosave.php:
|
12336 |
msgid ""
|
12337 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
12338 |
"silver medal. A value of 0 indicates that you do not want this feature."
|
@@ -12341,87 +12339,87 @@ msgstr ""
|
|
12341 |
"médaille d'argent. La valeur 0 signifie qu'on n'utilise pas cette "
|
12342 |
"fonctionnalité."
|
12343 |
|
12344 |
-
#: wppa-settings-autosave.php:
|
12345 |
msgid "Medal gold when"
|
12346 |
msgstr "Médaille d'or quand"
|
12347 |
|
12348 |
-
#: wppa-settings-autosave.php:
|
12349 |
msgid "Medal tag color"
|
12350 |
msgstr "Couleur du tag médaille"
|
12351 |
|
12352 |
-
#: wppa-settings-autosave.php:
|
12353 |
msgid "The color of the tag on the medal."
|
12354 |
msgstr "La couleur du tag sur la médaille."
|
12355 |
|
12356 |
-
#: wppa-settings-autosave.php:
|
12357 |
msgid "Red"
|
12358 |
msgstr "Rouge"
|
12359 |
|
12360 |
-
#: wppa-settings-autosave.php:
|
12361 |
msgid "Green"
|
12362 |
msgstr "Vert"
|
12363 |
|
12364 |
-
#: wppa-settings-autosave.php:
|
12365 |
msgid "Blue"
|
12366 |
msgstr "Bleu"
|
12367 |
|
12368 |
-
#: wppa-settings-autosave.php:
|
12369 |
msgid "Medal position"
|
12370 |
msgstr "Position médaille"
|
12371 |
|
12372 |
-
#: wppa-settings-autosave.php:
|
12373 |
msgid "The position of the medal on the image."
|
12374 |
msgstr "La position de la médaille sur l'image."
|
12375 |
|
12376 |
-
#: wppa-settings-autosave.php:
|
12377 |
msgid "Top left"
|
12378 |
msgstr "En haut à gauche"
|
12379 |
|
12380 |
-
#: wppa-settings-autosave.php:
|
12381 |
msgid "Top right"
|
12382 |
msgstr "En haut à droite"
|
12383 |
|
12384 |
-
#: wppa-settings-autosave.php:
|
12385 |
msgid "Bottom left"
|
12386 |
msgstr "En bas à gauche"
|
12387 |
|
12388 |
-
#: wppa-settings-autosave.php:
|
12389 |
msgid "Bottom right"
|
12390 |
msgstr "En bas à droite"
|
12391 |
|
12392 |
-
#: wppa-settings-autosave.php:
|
12393 |
msgid "Top criterium"
|
12394 |
msgstr "Critère supérieur"
|
12395 |
|
12396 |
-
#: wppa-settings-autosave.php:
|
12397 |
msgid "The top sort item used for topten results from shortcodes."
|
12398 |
msgstr "Le critère de tri prioritaire pour le classement TopTen (shortcodes)."
|
12399 |
|
12400 |
-
#: wppa-settings-autosave.php:
|
12401 |
msgid "Mean raiting"
|
12402 |
msgstr "Moyenne votes"
|
12403 |
|
12404 |
-
#: wppa-settings-autosave.php:
|
12405 |
msgid "Rating count"
|
12406 |
msgstr "Compteur votes"
|
12407 |
|
12408 |
-
#: wppa-settings-autosave.php:
|
12409 |
msgid "Viewcount"
|
12410 |
msgstr "Compteur vues"
|
12411 |
|
12412 |
-
#: wppa-settings-autosave.php:
|
12413 |
msgid "Comments related settings"
|
12414 |
msgstr "Comments related settings"
|
12415 |
|
12416 |
-
#: wppa-settings-autosave.php:
|
12417 |
msgid "Commenting login"
|
12418 |
msgstr "Commenting login"
|
12419 |
|
12420 |
-
#: wppa-settings-autosave.php:
|
12421 |
msgid "Users must be logged in to comment on photos."
|
12422 |
msgstr "Les utilisateurs doivent être connectés pour commenter les photos."
|
12423 |
|
12424 |
-
#: wppa-settings-autosave.php:
|
12425 |
msgid ""
|
12426 |
"Check this box if you want users to be logged in to be able to enter "
|
12427 |
"comments on individual photos."
|
@@ -12429,15 +12427,15 @@ msgstr ""
|
|
12429 |
"Cochez cette case si vous voulez limiter la possibilité de commenter aux "
|
12430 |
"utilisateurs connectés."
|
12431 |
|
12432 |
-
#: wppa-settings-autosave.php:
|
12433 |
msgid "Comments view login"
|
12434 |
msgstr "Comments view login"
|
12435 |
|
12436 |
-
#: wppa-settings-autosave.php:
|
12437 |
msgid "Users must be logged in to see comments on photos."
|
12438 |
msgstr "L'utilisateur doit être connecté pour voir les commentaires."
|
12439 |
|
12440 |
-
#: wppa-settings-autosave.php:
|
12441 |
msgid ""
|
12442 |
"Check this box if you want users to be logged in to be able to see existing "
|
12443 |
"comments on individual photos."
|
@@ -12445,130 +12443,130 @@ msgstr ""
|
|
12445 |
"Cochez cette case si vous voulez limiter la possibilité de voir les "
|
12446 |
"commentaires aux utilisateurs connectés."
|
12447 |
|
12448 |
-
#: wppa-settings-autosave.php:
|
12449 |
msgid "Last comment first"
|
12450 |
msgstr "Dernier commentaire en premier"
|
12451 |
|
12452 |
-
#: wppa-settings-autosave.php:
|
12453 |
msgid "Display the newest comment on top."
|
12454 |
msgstr "Affiche les commentaire le plus récent en premier."
|
12455 |
|
12456 |
-
#: wppa-settings-autosave.php:
|
12457 |
msgid "If checked: Display the newest comment on top."
|
12458 |
msgstr "Si coché: afficher le commentaire le plus récent en tête."
|
12459 |
|
12460 |
-
#: wppa-settings-autosave.php:
|
12461 |
msgid "If unchecked, the comments are listed in the ordere they were entered."
|
12462 |
msgstr "Si décoché, les commentaires sont listés dans l'ordre de la saisie."
|
12463 |
|
12464 |
-
#: wppa-settings-autosave.php:
|
12465 |
msgid "Comment moderation"
|
12466 |
msgstr "Modération de commentaire"
|
12467 |
|
12468 |
-
#: wppa-settings-autosave.php:
|
12469 |
msgid "Comments from what users need approval."
|
12470 |
msgstr "Les commentaires nécessitent une approbation."
|
12471 |
|
12472 |
-
#: wppa-settings-autosave.php:
|
12473 |
msgid "Select the desired users of which the comments need approval."
|
12474 |
msgstr ""
|
12475 |
"Choisir les utilisateurs dont les commentaires nécessitent une modération."
|
12476 |
|
12477 |
-
#: wppa-settings-autosave.php:
|
12478 |
msgid "All users"
|
12479 |
msgstr "Tous les utilisateurs"
|
12480 |
|
12481 |
-
#: wppa-settings-autosave.php:
|
12482 |
msgid "Logged out users"
|
12483 |
msgstr "Utilisateurs déconnectés"
|
12484 |
|
12485 |
-
#: wppa-settings-autosave.php:
|
12486 |
msgid "No users"
|
12487 |
msgstr "Pas d'utilisateurs"
|
12488 |
|
12489 |
-
#: wppa-settings-autosave.php:
|
12490 |
msgid "Comment email required"
|
12491 |
msgstr "Comment email required"
|
12492 |
|
12493 |
-
#: wppa-settings-autosave.php:
|
12494 |
msgid "Commenting users must enter their email addresses."
|
12495 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
12496 |
|
12497 |
-
#: wppa-settings-autosave.php:
|
12498 |
-
#: wppa-settings-autosave.php:
|
12499 |
msgid "Optional"
|
12500 |
msgstr "Optionnel"
|
12501 |
|
12502 |
-
#: wppa-settings-autosave.php:
|
12503 |
msgid "Comment notify"
|
12504 |
msgstr "Notification de commentaire"
|
12505 |
|
12506 |
-
#: wppa-settings-autosave.php:
|
12507 |
msgid "Select who must receive an e-mail notification of a new comment."
|
12508 |
msgstr ""
|
12509 |
"Choisir qui doit recevoir un email de notification de nouveau commentaire."
|
12510 |
|
12511 |
-
#: wppa-settings-autosave.php:
|
12512 |
msgid "--- None ---"
|
12513 |
msgstr "--- Aucun ---"
|
12514 |
|
12515 |
-
#: wppa-settings-autosave.php:
|
12516 |
msgid "--- Admin ---"
|
12517 |
msgstr "--- Admin ---"
|
12518 |
|
12519 |
-
#: wppa-settings-autosave.php:
|
12520 |
msgid "--- Album owner ---"
|
12521 |
msgstr "--- Propriétaire album ---"
|
12522 |
|
12523 |
-
#: wppa-settings-autosave.php:
|
12524 |
msgid "--- Admin & Owner ---"
|
12525 |
msgstr "--- Admin & Propriétaire ---"
|
12526 |
|
12527 |
-
#: wppa-settings-autosave.php:
|
12528 |
msgid "--- Uploader ---"
|
12529 |
msgstr "-- Celui(le) qui a déposé les fichiers --"
|
12530 |
|
12531 |
-
#: wppa-settings-autosave.php:
|
12532 |
msgid "--- Up & admin ---"
|
12533 |
msgstr "--- Up & Admin ---"
|
12534 |
|
12535 |
-
#: wppa-settings-autosave.php:
|
12536 |
msgid "--- Up & Owner ---"
|
12537 |
msgstr "--- Up & Propriétaire ---"
|
12538 |
|
12539 |
-
#: wppa-settings-autosave.php:
|
12540 |
msgid "Comment notify previous"
|
12541 |
msgstr "Notifier si déjà commenté"
|
12542 |
|
12543 |
-
#: wppa-settings-autosave.php:
|
12544 |
msgid "Notify users who has commented this photo earlier."
|
12545 |
msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
|
12546 |
|
12547 |
-
#: wppa-settings-autosave.php:
|
12548 |
msgid "Comment notify approved"
|
12549 |
msgstr "Commentaire Notifier approuvé"
|
12550 |
|
12551 |
-
#: wppa-settings-autosave.php:
|
12552 |
msgid "Notify photo owner of approved comment."
|
12553 |
msgstr "Aviser le propriétaire de la photo du commentaire approuvé."
|
12554 |
|
12555 |
-
#: wppa-settings-autosave.php:
|
12556 |
msgid "Com ntfy appr email content"
|
12557 |
msgstr "Contenu de l'e-mail com ntfy appr."
|
12558 |
|
12559 |
-
#: wppa-settings-autosave.php:
|
12560 |
msgid "The content of the email."
|
12561 |
msgstr "Le contenu de l’e-mail :"
|
12562 |
|
12563 |
-
#: wppa-settings-autosave.php:
|
12564 |
msgid "If you leave this blank, the default content will be used"
|
12565 |
msgstr "Si vous laissez ce champ vide, le contenu par défaut sera utilisé"
|
12566 |
|
12567 |
-
#: wppa-settings-autosave.php:
|
12568 |
msgid "The content may contain html."
|
12569 |
msgstr "Le contenu peut contenir html."
|
12570 |
|
12571 |
-
#: wppa-settings-autosave.php:
|
12572 |
msgid ""
|
12573 |
"You may use the following keywords: w#comment for the comment content, "
|
12574 |
"w#user for the commenters name and the standard photo description keywords "
|
@@ -12581,66 +12579,66 @@ msgstr ""
|
|
12581 |
"w#timestamp, w#modified, w#views, w#amx, w#amy, w#amfs, w#url, w#hrurl, "
|
12582 |
"w#tnurl, w#cc0... w#cc9, w#cd0... w#cd9."
|
12583 |
|
12584 |
-
#: wppa-settings-autosave.php:
|
12585 |
msgid "Com ntfy appr email subject"
|
12586 |
msgstr "Objet com ntfy appr sujet"
|
12587 |
|
12588 |
-
#: wppa-settings-autosave.php:
|
12589 |
msgid "The subject of the email."
|
12590 |
msgstr "Le sujet de l’e-mail."
|
12591 |
|
12592 |
-
#: wppa-settings-autosave.php:
|
12593 |
msgid "Comment ntfy added"
|
12594 |
msgstr "Indiquer commentaire ajouté"
|
12595 |
|
12596 |
-
#: wppa-settings-autosave.php:
|
12597 |
msgid "Show \"Comment added\" after successfull adding a comment."
|
12598 |
msgstr "Montrer \"Commentaire ajouté\" après l'ajout réussi d'un commentaire."
|
12599 |
|
12600 |
-
#: wppa-settings-autosave.php:
|
12601 |
msgid "ComTen alt display"
|
12602 |
msgstr "Affichage alt de ComTen"
|
12603 |
|
12604 |
-
#: wppa-settings-autosave.php:
|
12605 |
msgid "Display comments at comten thumbnails."
|
12606 |
msgstr "Afficher les commentaires aux vignettes ComTen."
|
12607 |
|
12608 |
-
#: wppa-settings-autosave.php:
|
12609 |
msgid "Comten Thumbnail width"
|
12610 |
msgstr "Largeur du widget commentaire"
|
12611 |
|
12612 |
-
#: wppa-settings-autosave.php:
|
12613 |
msgid "The width of the thumbnail in the alt comment display."
|
12614 |
msgstr ""
|
12615 |
"La largeur de la vignette dans l’affichage alternatif des commentaires."
|
12616 |
|
12617 |
-
#: wppa-settings-autosave.php:
|
12618 |
msgid "Pixels"
|
12619 |
msgstr "Pixels"
|
12620 |
|
12621 |
-
#: wppa-settings-autosave.php:
|
12622 |
msgid "Show smiley picker"
|
12623 |
msgstr "Montrer la bibliothèque de smiley"
|
12624 |
|
12625 |
-
#: wppa-settings-autosave.php:
|
12626 |
msgid "Display a clickable row of smileys."
|
12627 |
msgstr "Afficher une rangée de smileys cliquables."
|
12628 |
|
12629 |
-
#: wppa-settings-autosave.php:
|
12630 |
msgid "Show commenter email"
|
12631 |
msgstr "Montrer l'email du commentateur"
|
12632 |
|
12633 |
-
#: wppa-settings-autosave.php:
|
12634 |
msgid "Show the commenter's email in the notify emails."
|
12635 |
msgstr "Montrer l'email du commentateur dans les emails de notification."
|
12636 |
|
12637 |
-
#: wppa-settings-autosave.php:
|
12638 |
msgid "Shows the email address of the commenter in all notify emails."
|
12639 |
msgstr ""
|
12640 |
"Montre l'adresse de celui qui a commenté dans tous les emails de "
|
12641 |
"notification."
|
12642 |
|
12643 |
-
#: wppa-settings-autosave.php:
|
12644 |
msgid ""
|
12645 |
"If switched off, admin will still receive the senders email in the "
|
12646 |
"notification mail"
|
@@ -12648,107 +12646,107 @@ msgstr ""
|
|
12648 |
"Si désactivé, l'administrateur recevra quand même l'email des émetteurs dans "
|
12649 |
"la notification"
|
12650 |
|
12651 |
-
#: wppa-settings-autosave.php:
|
12652 |
msgid "The opacity of the lightbox overlay background."
|
12653 |
msgstr "L'opacité de l'arrière plan overlay de Lightbox."
|
12654 |
|
12655 |
-
#: wppa-settings-autosave.php:
|
12656 |
msgid "Click on background"
|
12657 |
msgstr "Clic sur l'arrière plan"
|
12658 |
|
12659 |
-
#: wppa-settings-autosave.php:
|
12660 |
msgid "Select the action to be taken on click on background."
|
12661 |
msgstr "Choisir l'action a effectuer lors d'un clic sur l'arrière plan."
|
12662 |
|
12663 |
-
#: wppa-settings-autosave.php:
|
12664 |
msgid "Nothing"
|
12665 |
msgstr "Rien"
|
12666 |
|
12667 |
-
#: wppa-settings-autosave.php:
|
12668 |
msgid "Exit (close)"
|
12669 |
msgstr "Sortir (fermer)"
|
12670 |
|
12671 |
-
#: wppa-settings-autosave.php:
|
12672 |
msgid "Browse (left/right)"
|
12673 |
msgstr "Naviguer (Gauche/Droite)"
|
12674 |
|
12675 |
-
#: wppa-settings-autosave.php:
|
12676 |
msgid "Overlay animation speed"
|
12677 |
msgstr "Vitesse de l'animation overlay"
|
12678 |
|
12679 |
-
#: wppa-settings-autosave.php:
|
12680 |
msgid "The fade-in time of the lightbox images"
|
12681 |
msgstr "La durée du fondu des images Lightbox"
|
12682 |
|
12683 |
-
#: wppa-settings-autosave.php:
|
12684 |
msgid "very fast (100 ms.)"
|
12685 |
msgstr "très rapide (100 ms.)"
|
12686 |
|
12687 |
-
#: wppa-settings-autosave.php:
|
12688 |
msgid "fast (200 ms.)"
|
12689 |
msgstr "rapide (200 ms.)"
|
12690 |
|
12691 |
-
#: wppa-settings-autosave.php:
|
12692 |
msgid "normal (300 ms.)"
|
12693 |
msgstr "normal (300 ms.)"
|
12694 |
|
12695 |
-
#: wppa-settings-autosave.php:
|
12696 |
msgid "slow (500 ms.)"
|
12697 |
msgstr "lent (500 ms.)"
|
12698 |
|
12699 |
-
#: wppa-settings-autosave.php:
|
12700 |
msgid "very slow (1 s.)"
|
12701 |
msgstr "Très lent (1 s.)"
|
12702 |
|
12703 |
-
#: wppa-settings-autosave.php:
|
12704 |
msgid "extremely slow (2 s.)"
|
12705 |
msgstr "extrêmement lent (2 s.)"
|
12706 |
|
12707 |
-
#: wppa-settings-autosave.php:
|
12708 |
msgid "Overlay slideshow speed"
|
12709 |
msgstr "Vitesse du diaporama overlay"
|
12710 |
|
12711 |
-
#: wppa-settings-autosave.php:
|
12712 |
msgid "The time the lightbox images stay"
|
12713 |
msgstr "La durée d’affichage des images"
|
12714 |
|
12715 |
-
#: wppa-settings-autosave.php:
|
12716 |
msgid "fast (3 s.)"
|
12717 |
msgstr "rapide (3 s.)"
|
12718 |
|
12719 |
-
#: wppa-settings-autosave.php:
|
12720 |
msgid "normal (5 s.)"
|
12721 |
msgstr "normal (5 s.)"
|
12722 |
|
12723 |
-
#: wppa-settings-autosave.php:
|
12724 |
msgid "slow (8 s.)"
|
12725 |
msgstr "lent (8 s.)"
|
12726 |
|
12727 |
-
#: wppa-settings-autosave.php:
|
12728 |
msgid "very slow (13 s.)"
|
12729 |
msgstr "Très lent (13 s.)"
|
12730 |
|
12731 |
-
#: wppa-settings-autosave.php:
|
12732 |
msgid "extremely slow (20 s.)"
|
12733 |
msgstr "extrêmement lent (20 s.)"
|
12734 |
|
12735 |
-
#: wppa-settings-autosave.php:
|
12736 |
msgid "WPPA+ Lightbox global"
|
12737 |
msgstr "WPPA+ LightBox étendu"
|
12738 |
|
12739 |
-
#: wppa-settings-autosave.php:
|
12740 |
msgid "Use the wppa+ lightbox also for non-wppa images."
|
12741 |
msgstr "Utiliser WPPA+ LightBox aussi pour les images non-WPPA."
|
12742 |
|
12743 |
-
#: wppa-settings-autosave.php:
|
12744 |
msgid "WPPA+ Lightbox global is a set"
|
12745 |
msgstr "WPPA+ LightBox étendu est une collection"
|
12746 |
|
12747 |
-
#: wppa-settings-autosave.php:
|
12748 |
msgid "Treat the other images as a set."
|
12749 |
msgstr "Traiter les images non-WPPA comme une collection."
|
12750 |
|
12751 |
-
#: wppa-settings-autosave.php:
|
12752 |
msgid ""
|
12753 |
"If checked, you can scroll through the images in the lightbox view. Requires "
|
12754 |
"item 5 to be checked."
|
@@ -12756,255 +12754,255 @@ msgstr ""
|
|
12756 |
"Si coché, vous pouvez scroller les images dans la vue LightBox. Item 5 doit "
|
12757 |
"être coché aussi."
|
12758 |
|
12759 |
-
#: wppa-settings-autosave.php:
|
12760 |
msgid "Use hires files"
|
12761 |
msgstr "Utiliser fichier haute résolution"
|
12762 |
|
12763 |
-
#: wppa-settings-autosave.php:
|
12764 |
msgid "Use the highest resolution available for lightbox."
|
12765 |
msgstr "Utiliser la résolution maxi disponible pour LightBox."
|
12766 |
|
12767 |
-
#: wppa-settings-autosave.php:
|
12768 |
msgid "Ticking this box is recommended for lightbox fullscreen modes."
|
12769 |
msgstr ""
|
12770 |
"Cocher cette case est recommandé pour les modes plein écran de LightBox."
|
12771 |
|
12772 |
-
#: wppa-settings-autosave.php:
|
12773 |
msgid "Videos on lightbox start automaticly."
|
12774 |
msgstr "Les vidéos dans LightBox démarrent automatiquement."
|
12775 |
|
12776 |
-
#: wppa-settings-autosave.php:
|
12777 |
msgid "Audio on lightbox start automaticly."
|
12778 |
msgstr "L'audio dans LightBox démarre automatiquement."
|
12779 |
|
12780 |
-
#: wppa-settings-autosave.php:
|
12781 |
msgid "Lightbox start mode"
|
12782 |
msgstr "Mode de démarrage de lightbox"
|
12783 |
|
12784 |
-
#: wppa-settings-autosave.php:
|
12785 |
msgid "The mode lightbox starts in."
|
12786 |
msgstr "Le mode de démarrage de lightbox."
|
12787 |
|
12788 |
-
#: wppa-settings-autosave.php:
|
12789 |
msgid "Normal"
|
12790 |
msgstr "Normale"
|
12791 |
|
12792 |
-
#: wppa-settings-autosave.php:
|
12793 |
msgid "Padded"
|
12794 |
msgstr "Padded"
|
12795 |
|
12796 |
-
#: wppa-settings-autosave.php:
|
12797 |
msgid "Stretched"
|
12798 |
msgstr "Étiré"
|
12799 |
|
12800 |
-
#: wppa-settings-autosave.php:
|
12801 |
msgid "Clipped"
|
12802 |
msgstr "Coupé"
|
12803 |
|
12804 |
-
#: wppa-settings-autosave.php:
|
12805 |
msgid "Real size"
|
12806 |
msgstr "Taille réelle"
|
12807 |
|
12808 |
-
#: wppa-settings-autosave.php:
|
12809 |
msgid "Lightbox start mode mobile"
|
12810 |
msgstr "Mode de démarrage de lightbox"
|
12811 |
|
12812 |
-
#: wppa-settings-autosave.php:
|
12813 |
msgid "The mode lightbox starts in on mobile devices."
|
12814 |
msgstr "Le mode de démarrage de lightbox en appareils mobiles."
|
12815 |
|
12816 |
-
#: wppa-settings-autosave.php:
|
12817 |
msgid "Table V:"
|
12818 |
msgstr "Table V:"
|
12819 |
|
12820 |
-
#: wppa-settings-autosave.php:
|
12821 |
msgid "Fonts:"
|
12822 |
msgstr "Polices:"
|
12823 |
|
12824 |
-
#: wppa-settings-autosave.php:
|
12825 |
msgid "This table describes the Fonts used for the wppa+ elements."
|
12826 |
msgstr ""
|
12827 |
"Cette table décrit les polices de caractère utilisées pour les éléments de "
|
12828 |
"WPPA+."
|
12829 |
|
12830 |
-
#: wppa-settings-autosave.php:
|
12831 |
msgid "Font family"
|
12832 |
msgstr "Famille de police"
|
12833 |
|
12834 |
-
#: wppa-settings-autosave.php:
|
12835 |
msgid "Font size"
|
12836 |
msgstr "Taille de la police"
|
12837 |
|
12838 |
-
#: wppa-settings-autosave.php:
|
12839 |
msgid "Font color"
|
12840 |
msgstr "Couleur de la police"
|
12841 |
|
12842 |
-
#: wppa-settings-autosave.php:
|
12843 |
msgid "Font weight"
|
12844 |
msgstr "Poids de la police"
|
12845 |
|
12846 |
-
#: wppa-settings-autosave.php:
|
12847 |
msgid "normal"
|
12848 |
msgstr "norma"
|
12849 |
|
12850 |
-
#: wppa-settings-autosave.php:
|
12851 |
msgid "bold"
|
12852 |
msgstr "gras"
|
12853 |
|
12854 |
-
#: wppa-settings-autosave.php:
|
12855 |
msgid "bolder"
|
12856 |
msgstr "plus gras"
|
12857 |
|
12858 |
-
#: wppa-settings-autosave.php:
|
12859 |
msgid "lighter"
|
12860 |
msgstr "plus fin"
|
12861 |
|
12862 |
-
#: wppa-settings-autosave.php:
|
12863 |
msgid "Album titles"
|
12864 |
msgstr "Titres albums"
|
12865 |
|
12866 |
-
#: wppa-settings-autosave.php:
|
12867 |
msgid "Font used for Album titles."
|
12868 |
msgstr "Police utilisée pour les titres d'album."
|
12869 |
|
12870 |
-
#: wppa-settings-autosave.php:
|
12871 |
msgid "Enter font name, size, color and weight for album cover titles."
|
12872 |
msgstr ""
|
12873 |
"Entrer le nom de la police, taille, couleur et poids pour les titres de "
|
12874 |
"couverture des albums."
|
12875 |
|
12876 |
-
#: wppa-settings-autosave.php:
|
12877 |
msgid "Slideshow desc"
|
12878 |
msgstr "Description du diaporama"
|
12879 |
|
12880 |
-
#: wppa-settings-autosave.php:
|
12881 |
msgid "Font for slideshow photo descriptions."
|
12882 |
msgstr "Police pour la description des photos."
|
12883 |
|
12884 |
-
#: wppa-settings-autosave.php:
|
12885 |
msgid ""
|
12886 |
"Enter font name, size, color and weight for slideshow photo descriptions."
|
12887 |
msgstr ""
|
12888 |
"Entrer le nom de la police, taille, couleur et poids pour les descriptions "
|
12889 |
"des photo de diaporama."
|
12890 |
|
12891 |
-
#: wppa-settings-autosave.php:
|
12892 |
msgid "Slideshow name"
|
12893 |
msgstr "Nom du diaporama"
|
12894 |
|
12895 |
-
#: wppa-settings-autosave.php:
|
12896 |
msgid "Font for slideshow photo names."
|
12897 |
msgstr "Police pour le nom des photos du diaporama."
|
12898 |
|
12899 |
-
#: wppa-settings-autosave.php:
|
12900 |
msgid "Enter font name, size, color and weight for slideshow photo names."
|
12901 |
msgstr ""
|
12902 |
"Entrer le nom de la police, taille, couleur et poids pour les noms de photo "
|
12903 |
"de diaporama."
|
12904 |
|
12905 |
-
#: wppa-settings-autosave.php:
|
12906 |
msgid "Navigations"
|
12907 |
msgstr "Navigations"
|
12908 |
|
12909 |
-
#: wppa-settings-autosave.php:
|
12910 |
msgid "Font for navigations."
|
12911 |
msgstr "Police pour navigations."
|
12912 |
|
12913 |
-
#: wppa-settings-autosave.php:
|
12914 |
msgid "Enter font name, size, color and weight for navigation items."
|
12915 |
msgstr ""
|
12916 |
"Entrer le nom de la police, taille, couleur et poids pour les items de "
|
12917 |
"navigation."
|
12918 |
|
12919 |
-
#: wppa-settings-autosave.php:
|
12920 |
msgid "Font for text under thumbnails."
|
12921 |
msgstr "Police pour les textes sous les vignettes."
|
12922 |
|
12923 |
-
#: wppa-settings-autosave.php:
|
12924 |
msgid ""
|
12925 |
"Enter font name, size, color and weight for text under thumbnail images."
|
12926 |
msgstr ""
|
12927 |
"Entrer le nom de la police, taille, couleur et poids pour le texte sous les "
|
12928 |
"vignettes."
|
12929 |
|
12930 |
-
#: wppa-settings-autosave.php:
|
12931 |
msgid "General font in wppa boxes."
|
12932 |
msgstr "Police générique dans les boîtes WPPA."
|
12933 |
|
12934 |
-
#: wppa-settings-autosave.php:
|
12935 |
msgid "Enter font name, size, color and weight for all other items."
|
12936 |
msgstr ""
|
12937 |
"Entrer le nom de la police, taille, couleur et poids pour les autres items."
|
12938 |
|
12939 |
-
#: wppa-settings-autosave.php:
|
12940 |
msgid "Font in wppa number bars."
|
12941 |
msgstr "Police dans les bars de numéro wppa."
|
12942 |
|
12943 |
-
#: wppa-settings-autosave.php:
|
12944 |
msgid "Enter font name, size, color and weight for numberbar navigation."
|
12945 |
msgstr ""
|
12946 |
"Entrez le nom de la police, taille, couleur et poids pour numberbar "
|
12947 |
"navigation."
|
12948 |
|
12949 |
-
#: wppa-settings-autosave.php:
|
12950 |
msgid "Numbar Active"
|
12951 |
msgstr "Numbar activée"
|
12952 |
|
12953 |
-
#: wppa-settings-autosave.php:
|
12954 |
msgid "Font in wppa number bars, active item."
|
12955 |
msgstr "Police en wppa nombre barres, élément actif."
|
12956 |
|
12957 |
-
#: wppa-settings-autosave.php:
|
12958 |
msgid "Font in wppa lightbox overlays."
|
12959 |
msgstr "Police en wppa lightbox superpositions."
|
12960 |
|
12961 |
-
#: wppa-settings-autosave.php:
|
12962 |
msgid "Enter font name, size, color and weight for wppa lightbox overlays."
|
12963 |
msgstr ""
|
12964 |
"Entrez le nom de police, taille, couleur et poids pour les superpositions de "
|
12965 |
"lightbox wppa."
|
12966 |
|
12967 |
-
#: wppa-settings-autosave.php:
|
12968 |
msgid "Table VI:"
|
12969 |
msgstr "Table VI:"
|
12970 |
|
12971 |
-
#: wppa-settings-autosave.php:
|
12972 |
msgid "Links:"
|
12973 |
msgstr "Liens:"
|
12974 |
|
12975 |
-
#: wppa-settings-autosave.php:
|
12976 |
msgid "This table defines the link types and pages."
|
12977 |
msgstr "Ce table définit les types de liens et les pages."
|
12978 |
|
12979 |
-
#: wppa-settings-autosave.php:
|
12980 |
msgid "Link page"
|
12981 |
msgstr "Page lien"
|
12982 |
|
12983 |
-
#: wppa-settings-autosave.php:
|
12984 |
msgid "Photo specific link overrules"
|
12985 |
msgstr "Lien photo annule"
|
12986 |
|
12987 |
-
#: wppa-settings-autosave.php:
|
12988 |
msgid "PSO"
|
12989 |
msgstr "PSO"
|
12990 |
|
12991 |
-
#: wppa-settings-autosave.php:
|
12992 |
msgid "Links from images in WPPA+ Widgets"
|
12993 |
msgstr "Liens des images dans les Widgets WPPA +"
|
12994 |
|
12995 |
-
#: wppa-settings-autosave.php:
|
12996 |
msgid "PotdWidget"
|
12997 |
msgstr "Widget Photo du jour"
|
12998 |
|
12999 |
-
#: wppa-settings-autosave.php:
|
13000 |
msgid "Photo Of The Day widget link."
|
13001 |
msgstr "Lien de widget photo du jour."
|
13002 |
|
13003 |
-
#: wppa-settings-autosave.php:
|
13004 |
msgid "Select the type of link the photo of the day points to."
|
13005 |
msgstr "Sélectionnez le type de lien la photo du jour pointe vers."
|
13006 |
|
13007 |
-
#: wppa-settings-autosave.php:
|
13008 |
msgid ""
|
13009 |
"If you select 'defined on widget admin page' you can manually enter a link "
|
13010 |
"and title on the Photo of the day Widget Admin page."
|
@@ -13013,190 +13011,190 @@ msgstr ""
|
|
13013 |
"entrer manuellement un lien et un titre sur la page d’Admin de Widget de la "
|
13014 |
"Photo de jour."
|
13015 |
|
13016 |
-
#: wppa-settings-autosave.php:
|
13017 |
-
#: wppa-settings-autosave.php:
|
13018 |
-
#: wppa-settings-autosave.php:
|
13019 |
-
#: wppa-settings-autosave.php:
|
13020 |
-
#: wppa-settings-autosave.php:
|
13021 |
msgid "a plain page without a querystring."
|
13022 |
msgstr "une simple page sans une querystring."
|
13023 |
|
13024 |
-
#: wppa-settings-autosave.php:
|
13025 |
-
#: wppa-settings-autosave.php:
|
13026 |
-
#: wppa-settings-autosave.php:
|
13027 |
-
#: wppa-settings-autosave.php:
|
13028 |
-
#: wppa-settings-autosave.php:
|
13029 |
-
#: wppa-settings-autosave.php:
|
13030 |
-
#: wppa-settings-autosave.php:
|
13031 |
msgid "lightbox."
|
13032 |
msgstr "lightbox."
|
13033 |
|
13034 |
-
#: wppa-settings-autosave.php:
|
13035 |
msgid "SlideWidget"
|
13036 |
msgstr "Widget Slide"
|
13037 |
|
13038 |
-
#: wppa-settings-autosave.php:
|
13039 |
msgid "Slideshow widget photo link."
|
13040 |
msgstr "Lien diaporama widget photo."
|
13041 |
|
13042 |
-
#: wppa-settings-autosave.php:
|
13043 |
msgid "Select the type of link the slideshow photos point to."
|
13044 |
msgstr ""
|
13045 |
"Sélectionnez le type de lien, vers que les photos du diaporama pointent."
|
13046 |
|
13047 |
-
#: wppa-settings-autosave.php:
|
13048 |
msgid "Album widget"
|
13049 |
msgstr "Widget Album"
|
13050 |
|
13051 |
-
#: wppa-settings-autosave.php:
|
13052 |
msgid "Album widget thumbnail link"
|
13053 |
msgstr "Lien miniature de widget album"
|
13054 |
|
13055 |
-
#: wppa-settings-autosave.php:
|
13056 |
msgid "Select the type of link the album widget photos point to."
|
13057 |
msgstr ""
|
13058 |
"Sélectionnez le type de lien, vers que les photos de widget album pointent."
|
13059 |
|
13060 |
-
#: wppa-settings-autosave.php:
|
13061 |
msgid "subalbums and thumbnails."
|
13062 |
msgstr "sous-albums et miniatures."
|
13063 |
|
13064 |
-
#: wppa-settings-autosave.php:
|
13065 |
msgid "slideshow."
|
13066 |
msgstr "diaporama."
|
13067 |
|
13068 |
-
#: wppa-settings-autosave.php:
|
13069 |
msgid "ThumbnailWidget"
|
13070 |
msgstr "Widget vignettes"
|
13071 |
|
13072 |
-
#: wppa-settings-autosave.php:
|
13073 |
msgid "Thumbnail widget photo link."
|
13074 |
msgstr "Lien de widget vignette de photo."
|
13075 |
|
13076 |
-
#: wppa-settings-autosave.php:
|
13077 |
msgid "Select the type of link the thumbnail photos point to."
|
13078 |
msgstr "Sélectionnez le type de lien vers que les photos miniatures pointent."
|
13079 |
|
13080 |
-
#: wppa-settings-autosave.php:
|
13081 |
-
#: wppa-settings-autosave.php:
|
13082 |
-
#: wppa-settings-autosave.php:
|
13083 |
msgid "the single photo in the style of a slideshow."
|
13084 |
msgstr "Une photo seule avec le style du diaporama"
|
13085 |
|
13086 |
-
#: wppa-settings-autosave.php:
|
13087 |
-
#: wppa-settings-autosave.php:
|
13088 |
-
#: wppa-settings-autosave.php:
|
13089 |
-
#: wppa-settings-autosave.php:
|
13090 |
msgid "the fs photo with download and print buttons."
|
13091 |
msgstr "la photo de fs avec téléchargement et boutons d’impression."
|
13092 |
|
13093 |
-
#: wppa-settings-autosave.php:
|
13094 |
msgid "TopTenWidget"
|
13095 |
msgstr "Widget TopTen"
|
13096 |
|
13097 |
-
#: wppa-settings-autosave.php:
|
13098 |
msgid "TopTen widget photo link."
|
13099 |
msgstr "Lien TopTen widget photo."
|
13100 |
|
13101 |
-
#: wppa-settings-autosave.php:
|
13102 |
msgid "Select the type of link the top ten photos point to."
|
13103 |
msgstr "Sélectionnez le type de lien, vers que les photos de topten pointent."
|
13104 |
|
13105 |
-
#: wppa-settings-autosave.php:
|
13106 |
msgid "the content of the virtual topten album."
|
13107 |
msgstr "le contenu de l’album virtuel topten."
|
13108 |
|
13109 |
-
#: wppa-settings-autosave.php:
|
13110 |
-
#: wppa-settings-autosave.php:
|
13111 |
msgid "the content of the thumbnails album."
|
13112 |
msgstr "le contenu de l’album de vignettes."
|
13113 |
|
13114 |
-
#: wppa-settings-autosave.php:
|
13115 |
-
#: wppa-settings-autosave.php:
|
13116 |
-
#: wppa-settings-autosave.php:
|
13117 |
msgid "the thumbnails album in a slideshow."
|
13118 |
msgstr "l'album de vignettes dans un diaporama."
|
13119 |
|
13120 |
-
#: wppa-settings-autosave.php:
|
13121 |
msgid "LasTenWidget"
|
13122 |
msgstr "Widget LastTen"
|
13123 |
|
13124 |
-
#: wppa-settings-autosave.php:
|
13125 |
msgid "Last Ten widget photo link."
|
13126 |
msgstr "Last Ten lien de widget photo."
|
13127 |
|
13128 |
-
#: wppa-settings-autosave.php:
|
13129 |
msgid "Select the type of link the last ten photos point to."
|
13130 |
msgstr ""
|
13131 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
13132 |
|
13133 |
-
#: wppa-settings-autosave.php:
|
13134 |
msgid "the content of the virtual lasten album."
|
13135 |
msgstr "le contenu de l'album virtuelle lasten."
|
13136 |
|
13137 |
-
#: wppa-settings-autosave.php:
|
13138 |
msgid "CommentWidget"
|
13139 |
msgstr "Widget Comment"
|
13140 |
|
13141 |
-
#: wppa-settings-autosave.php:
|
13142 |
msgid "Comment widget photo link."
|
13143 |
msgstr "Lien vers le commentaire widget photo."
|
13144 |
|
13145 |
-
#: wppa-settings-autosave.php:
|
13146 |
msgid "Select the type of link the comment widget photos point to."
|
13147 |
msgstr ""
|
13148 |
"Sélectionnez le type de lien, vers que les photos de widget commentaire "
|
13149 |
"pointent."
|
13150 |
|
13151 |
-
#: wppa-settings-autosave.php:
|
13152 |
msgid "the content of the virtual comten album."
|
13153 |
msgstr "le contenu de l’album virtuel comten."
|
13154 |
|
13155 |
-
#: wppa-settings-autosave.php:
|
13156 |
msgid "FeaTenWidget"
|
13157 |
msgstr "Widget FeaTen"
|
13158 |
|
13159 |
-
#: wppa-settings-autosave.php:
|
13160 |
msgid "FeaTen widget photo link."
|
13161 |
msgstr "FeaTen lien photo widget."
|
13162 |
|
13163 |
-
#: wppa-settings-autosave.php:
|
13164 |
msgid "Select the type of link the featured ten photos point to."
|
13165 |
msgstr ""
|
13166 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
13167 |
|
13168 |
-
#: wppa-settings-autosave.php:
|
13169 |
msgid "the content of the virtual featen album."
|
13170 |
msgstr "le contenu du virtuel featen album."
|
13171 |
|
13172 |
-
#: wppa-settings-autosave.php:
|
13173 |
msgid "Links from other WPPA+ images"
|
13174 |
msgstr "Liens d’autres images WPPA+"
|
13175 |
|
13176 |
-
#: wppa-settings-autosave.php:
|
13177 |
msgid "Cover Image"
|
13178 |
msgstr "Image de couverture"
|
13179 |
|
13180 |
-
#: wppa-settings-autosave.php:
|
13181 |
msgid "The link from the cover image of an album."
|
13182 |
msgstr "Le lien de l’image de couverture d’un album."
|
13183 |
|
13184 |
-
#: wppa-settings-autosave.php:
|
13185 |
msgid "Select the type of link the coverphoto points to."
|
13186 |
msgstr "Sélectionnez le type de lien la photo de couverture pointe vers."
|
13187 |
|
13188 |
-
#: wppa-settings-autosave.php:
|
13189 |
msgid "The link from the album title can be configured on the Edit Album page."
|
13190 |
msgstr ""
|
13191 |
"Le lien dans le titre de l’album peut être configuré dans la page modifier "
|
13192 |
"l’Album."
|
13193 |
|
13194 |
-
#: wppa-settings-autosave.php:
|
13195 |
msgid "This link will be used for the photo also if you select: same as title."
|
13196 |
msgstr ""
|
13197 |
"Ce lien sera utilisé pour la photo aussi si vous sélectionnez: même titre."
|
13198 |
|
13199 |
-
#: wppa-settings-autosave.php:
|
13200 |
msgid ""
|
13201 |
"If you specify New Tab on this line, all links from the cover will open a "
|
13202 |
"new tab,"
|
@@ -13204,29 +13202,29 @@ msgstr ""
|
|
13204 |
"Si vous spécifiez le nouvel onglet sur cette ligne, tous les liens de la "
|
13205 |
"couverture seront ouvre un nouvel onglet,"
|
13206 |
|
13207 |
-
#: wppa-settings-autosave.php:
|
13208 |
msgid "except when Ajax is activated on Table IV-A1."
|
13209 |
msgstr "sauf si Ajax est activé sur la Table IV-A1."
|
13210 |
|
13211 |
-
#: wppa-settings-autosave.php:
|
13212 |
msgid "a slideshow starting at the photo"
|
13213 |
msgstr "un diaporama à partir de la photo"
|
13214 |
|
13215 |
-
#: wppa-settings-autosave.php:
|
13216 |
msgid "Thumbnail"
|
13217 |
msgstr "Vignette"
|
13218 |
|
13219 |
-
#: wppa-settings-autosave.php:
|
13220 |
msgid "Thumbnail link."
|
13221 |
msgstr "Lien vignette."
|
13222 |
|
13223 |
-
#: wppa-settings-autosave.php:
|
13224 |
-
#: wppa-settings-autosave.php:
|
13225 |
msgid "Select the type of link you want, or no link at all."
|
13226 |
msgstr "Sélectionnez le type de lien que vous voulez, ou pas de lien du tout."
|
13227 |
|
13228 |
-
#: wppa-settings-autosave.php:
|
13229 |
-
#: wppa-settings-autosave.php:
|
13230 |
msgid ""
|
13231 |
"If you select the fullsize photo on its own, it will be stretched to fit, "
|
13232 |
"regardless of that setting."
|
@@ -13234,8 +13232,8 @@ msgstr ""
|
|
13234 |
"Si vous sélectionnez la photo pleine grandeur à lui seul, il va être étiré "
|
13235 |
"pour s’adapter, quel que soit ce paramètre."
|
13236 |
|
13237 |
-
#: wppa-settings-autosave.php:
|
13238 |
-
#: wppa-settings-autosave.php:
|
13239 |
msgid ""
|
13240 |
"Note that a page must have at least [wppa][/wppa] in its content to show up "
|
13241 |
"the photo(s)."
|
@@ -13243,39 +13241,39 @@ msgstr ""
|
|
13243 |
"Notez qu'une page doit avoir au moins [wppa][/wppa] dans son contenu pour "
|
13244 |
"afficher la photo (s)."
|
13245 |
|
13246 |
-
#: wppa-settings-autosave.php:
|
13247 |
msgid "Auto Page"
|
13248 |
msgstr "Page auto"
|
13249 |
|
13250 |
-
#: wppa-settings-autosave.php:
|
13251 |
msgid "Sphoto"
|
13252 |
msgstr "Sphoto"
|
13253 |
|
13254 |
-
#: wppa-settings-autosave.php:
|
13255 |
msgid "Single photo link."
|
13256 |
msgstr "Lien photo unique"
|
13257 |
|
13258 |
-
#: wppa-settings-autosave.php:
|
13259 |
msgid "Mphoto"
|
13260 |
msgstr "Mphoto"
|
13261 |
|
13262 |
-
#: wppa-settings-autosave.php:
|
13263 |
msgid "Media-like photo link."
|
13264 |
msgstr "Lien photo apparentés aux médias."
|
13265 |
|
13266 |
-
#: wppa-settings-autosave.php:
|
13267 |
msgid "Xphoto"
|
13268 |
msgstr "Xphoto"
|
13269 |
|
13270 |
-
#: wppa-settings-autosave.php:
|
13271 |
msgid "Extended Media-like photo link."
|
13272 |
msgstr "Extended Media-photo comme lien."
|
13273 |
|
13274 |
-
#: wppa-settings-autosave.php:
|
13275 |
msgid "Slideshow fullsize link"
|
13276 |
msgstr "Diaporama plein écran lien"
|
13277 |
|
13278 |
-
#: wppa-settings-autosave.php:
|
13279 |
msgid ""
|
13280 |
"You can overrule lightbox but not big browse buttons with the photo specifc "
|
13281 |
"link."
|
@@ -13283,218 +13281,218 @@ msgstr ""
|
|
13283 |
"Vous pouvez annuler lightbox mais les boutons de navigation pas grand avec "
|
13284 |
"le lien de specifc photo."
|
13285 |
|
13286 |
-
#: wppa-settings-autosave.php:
|
13287 |
msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
|
13288 |
msgstr ""
|
13289 |
"Diaporama plein écran peut être définie seulement par le shortcode WPPA_SET."
|
13290 |
|
13291 |
-
#: wppa-settings-autosave.php:
|
13292 |
msgid "lightbox single photos."
|
13293 |
msgstr "lightbox des photos simples."
|
13294 |
|
13295 |
-
#: wppa-settings-autosave.php:
|
13296 |
msgid "the thumbnails."
|
13297 |
msgstr "les vignettes."
|
13298 |
|
13299 |
-
#: wppa-settings-autosave.php:
|
13300 |
msgid "fullsize slideshow"
|
13301 |
msgstr "diaporama fullsize"
|
13302 |
|
13303 |
-
#: wppa-settings-autosave.php:
|
13304 |
msgid "Film linktype"
|
13305 |
msgstr "Film linktype"
|
13306 |
|
13307 |
-
#: wppa-settings-autosave.php:
|
13308 |
msgid "Direct access goto image in:"
|
13309 |
msgstr "Accès direct à l'image dans:"
|
13310 |
|
13311 |
-
#: wppa-settings-autosave.php:
|
13312 |
msgid ""
|
13313 |
"Select the action to be taken when the user clicks on a filmstrip image."
|
13314 |
msgstr ""
|
13315 |
"Sélectionnez l’action à prendre lorsque l’utilisateur clique sur une image "
|
13316 |
"de la pellicule."
|
13317 |
|
13318 |
-
#: wppa-settings-autosave.php:
|
13319 |
msgid "slideshow window"
|
13320 |
msgstr "fenêtre de diaporama"
|
13321 |
|
13322 |
-
#: wppa-settings-autosave.php:
|
13323 |
msgid "lightbox overlay"
|
13324 |
msgstr "superposition de lightbox"
|
13325 |
|
13326 |
-
#: wppa-settings-autosave.php:
|
13327 |
msgid "Other links"
|
13328 |
msgstr "Autres liens"
|
13329 |
|
13330 |
-
#: wppa-settings-autosave.php:
|
13331 |
msgid "Download Link (aka Art Monkey link)"
|
13332 |
msgstr "Lien de élécharger (le lien Art Monkey)"
|
13333 |
|
13334 |
-
#: wppa-settings-autosave.php:
|
13335 |
msgid "Makes the photo name a download button."
|
13336 |
msgstr "Rend la photo nommez un bouton de téléchargement."
|
13337 |
|
13338 |
-
#: wppa-settings-autosave.php:
|
13339 |
msgid "Link Photo name in slideshow to file or zip with photoname as filename."
|
13340 |
msgstr ""
|
13341 |
"Nom de Photo en diaporama de lien vers fichier ou zip avec photoname comme "
|
13342 |
"nom de fichier."
|
13343 |
|
13344 |
-
#: wppa-settings-autosave.php:
|
13345 |
msgid "image file"
|
13346 |
msgstr "fichier d' image"
|
13347 |
|
13348 |
-
#: wppa-settings-autosave.php:
|
13349 |
msgid "zipped image"
|
13350 |
msgstr "image compressée"
|
13351 |
|
13352 |
-
#: wppa-settings-autosave.php:
|
13353 |
msgid "Art Monkey Source"
|
13354 |
msgstr "'Art monkey' Source"
|
13355 |
|
13356 |
-
#: wppa-settings-autosave.php:
|
13357 |
msgid "Use Source file for art monkey link if available."
|
13358 |
msgstr "Utiliser le fichier Source pour lien singe art si disponible."
|
13359 |
|
13360 |
-
#: wppa-settings-autosave.php:
|
13361 |
msgid "Art Monkey Display"
|
13362 |
msgstr "Affichage d'Art Monkey"
|
13363 |
|
13364 |
-
#: wppa-settings-autosave.php:
|
13365 |
msgid "Select button or link ( text )."
|
13366 |
msgstr "Sélectionnez le bouton ou un lien (texte)."
|
13367 |
|
13368 |
-
#: wppa-settings-autosave.php:
|
13369 |
msgid "Textlink"
|
13370 |
msgstr "Lien texte"
|
13371 |
|
13372 |
-
#: wppa-settings-autosave.php:
|
13373 |
msgid "Popup Download Link"
|
13374 |
msgstr "Lien de téléchargement de Popup"
|
13375 |
|
13376 |
-
#: wppa-settings-autosave.php:
|
13377 |
msgid "Configure the download link on fullsize popups."
|
13378 |
msgstr "Configurer le lien de téléchargement sur fullsize popups."
|
13379 |
|
13380 |
-
#: wppa-settings-autosave.php:
|
13381 |
msgid "Link fullsize popup download button to either image or zip file."
|
13382 |
msgstr "Bouton de téléchargement popup lien fullsize au fichier image ou zip."
|
13383 |
|
13384 |
-
#: wppa-settings-autosave.php:
|
13385 |
msgid "Download link on lightbox"
|
13386 |
msgstr "Lien de télécharger au lightbox"
|
13387 |
|
13388 |
-
#: wppa-settings-autosave.php:
|
13389 |
msgid "Art monkey link on lightbox photo names."
|
13390 |
msgstr "Lien de 'Art monkey' sur les noms de photo lightbox."
|
13391 |
|
13392 |
-
#: wppa-settings-autosave.php:
|
13393 |
msgid "Album download link"
|
13394 |
msgstr "Lien de téléchargement de l'album"
|
13395 |
|
13396 |
-
#: wppa-settings-autosave.php:
|
13397 |
msgid "Place an album download link on the album covers"
|
13398 |
msgstr "Placer un lien de téléchargement d’album sur les couvertures d’album"
|
13399 |
|
13400 |
-
#: wppa-settings-autosave.php:
|
13401 |
msgid "Creates a download zipfile containing the photos of the album"
|
13402 |
msgstr "Créer un fichier de téléchargement zip contenant les photos de l’album"
|
13403 |
|
13404 |
-
#: wppa-settings-autosave.php:
|
13405 |
msgid "Album download Source"
|
13406 |
msgstr "Télécharger l’album Source"
|
13407 |
|
13408 |
-
#: wppa-settings-autosave.php:
|
13409 |
msgid "Use Source file for album download link if available."
|
13410 |
msgstr ""
|
13411 |
"Utiliser le fichier Source pour album Télécharger lien si elles sont "
|
13412 |
"disponibles."
|
13413 |
|
13414 |
-
#: wppa-settings-autosave.php:
|
13415 |
msgid "Tagcloud Link"
|
13416 |
msgstr "Lien Tagcloud"
|
13417 |
|
13418 |
-
#: wppa-settings-autosave.php:
|
13419 |
msgid "Configure the link from the tags in the tag cloud."
|
13420 |
msgstr "Configurer le lien entre les balises dans le nuage de balises."
|
13421 |
|
13422 |
-
#: wppa-settings-autosave.php:
|
13423 |
msgid "Link the tag words to either the thumbnails or the slideshow."
|
13424 |
msgstr "Lier les mots tag soit aux vignettes ou le diaporama."
|
13425 |
|
13426 |
-
#: wppa-settings-autosave.php:
|
13427 |
-
#: wppa-settings-autosave.php:
|
13428 |
msgid "Occur"
|
13429 |
msgstr "Occur"
|
13430 |
|
13431 |
-
#: wppa-settings-autosave.php:
|
13432 |
msgid "Multitag Link"
|
13433 |
msgstr "Lien Multitag"
|
13434 |
|
13435 |
-
#: wppa-settings-autosave.php:
|
13436 |
msgid "Configure the link from the multitag selection."
|
13437 |
msgstr "Configurer la liaison de la sélection multibalises."
|
13438 |
|
13439 |
-
#: wppa-settings-autosave.php:
|
13440 |
msgid "Link to either the thumbnails or the slideshow."
|
13441 |
msgstr "Lien vers soit les vignettes ou le diaporama."
|
13442 |
|
13443 |
-
#: wppa-settings-autosave.php:
|
13444 |
msgid "Super View Landing"
|
13445 |
msgstr "Destination Superview"
|
13446 |
|
13447 |
-
#: wppa-settings-autosave.php:
|
13448 |
msgid "The landing page for the Super View widget."
|
13449 |
msgstr "La page de destination pour le widget Super View."
|
13450 |
|
13451 |
-
#: wppa-settings-autosave.php:
|
13452 |
msgid "Defined by the visitor"
|
13453 |
msgstr "Défini par le visiteur"
|
13454 |
|
13455 |
-
#: wppa-settings-autosave.php:
|
13456 |
msgid "Uploader Landing"
|
13457 |
msgstr "Destination du chargement"
|
13458 |
|
13459 |
-
#: wppa-settings-autosave.php:
|
13460 |
msgid "Select the landing page for the Uploader Widget"
|
13461 |
msgstr "Sélectionnez la page de destination pour le Widget de l’Uploader"
|
13462 |
|
13463 |
-
#: wppa-settings-autosave.php:
|
13464 |
msgid "Bestof Landing"
|
13465 |
msgstr "Atterrissage de bestof"
|
13466 |
|
13467 |
-
#: wppa-settings-autosave.php:
|
13468 |
msgid "Select the landing page for the BestOf Widget / Box"
|
13469 |
msgstr "Sélectionnez la page de destination pour le BestOf Widget / boîte"
|
13470 |
|
13471 |
-
#: wppa-settings-autosave.php:
|
13472 |
msgid "Album navigator Link"
|
13473 |
msgstr "Navigator album lien"
|
13474 |
|
13475 |
-
#: wppa-settings-autosave.php:
|
13476 |
msgid "Select link type and page for the Album navigator Widget"
|
13477 |
msgstr ""
|
13478 |
"Sélectionnez le type de lien et de la page pour le navigateur de l’Album "
|
13479 |
"Widget"
|
13480 |
|
13481 |
-
#: wppa-settings-autosave.php:
|
13482 |
msgid "Supersearch Landing"
|
13483 |
msgstr "SuperSearch Landing"
|
13484 |
|
13485 |
-
#: wppa-settings-autosave.php:
|
13486 |
msgid "Select the landing page for the Supersearch Box"
|
13487 |
msgstr "Sélectionnez la page de destination de la zone de Supersearch"
|
13488 |
|
13489 |
-
#: wppa-settings-autosave.php:
|
13490 |
msgid "SM widget return"
|
13491 |
msgstr "Widget SM retour"
|
13492 |
|
13493 |
-
#: wppa-settings-autosave.php:
|
13494 |
msgid "Select the return link for social media from widgets"
|
13495 |
msgstr "Sélectionnez le lien de retour pour les médias sociaux de widgets"
|
13496 |
|
13497 |
-
#: wppa-settings-autosave.php:
|
13498 |
msgid ""
|
13499 |
"If you select Landing page, and it wont work, it may be required to set the "
|
13500 |
"Occur to the sequence number of the landing shortcode on the page."
|
@@ -13503,7 +13501,7 @@ msgstr ""
|
|
13503 |
"être requis pour définir l’Occur au numéro de séquence du shortcode "
|
13504 |
"atterrissage sur la page."
|
13505 |
|
13506 |
-
#: wppa-settings-autosave.php:
|
13507 |
msgid ""
|
13508 |
"Normally it is 1, but you can try 2 etc. Always create a new shared link to "
|
13509 |
"test a setting."
|
@@ -13511,83 +13509,83 @@ msgstr ""
|
|
13511 |
"Normalement, il est 1, mais vous pouvez essayer 2, etc. Toujours créer un "
|
13512 |
"nouveau lien partagé pour tester un réglage."
|
13513 |
|
13514 |
-
#: wppa-settings-autosave.php:
|
13515 |
msgid "Home page"
|
13516 |
msgstr "Page d'accueil"
|
13517 |
|
13518 |
-
#: wppa-settings-autosave.php:
|
13519 |
msgid "Album cover subalbums link"
|
13520 |
msgstr "Lien de sous-albums à la couverture de l’album"
|
13521 |
|
13522 |
-
#: wppa-settings-autosave.php:
|
13523 |
msgid ""
|
13524 |
"Select the linktype and display type for sub-albums on parent album covers."
|
13525 |
msgstr ""
|
13526 |
"Sélectionnez le linktype et affichez type pour sous-albums sur les "
|
13527 |
"couvertures d’album de parent."
|
13528 |
|
13529 |
-
#: wppa-settings-autosave.php:
|
13530 |
msgid "No link at all"
|
13531 |
msgstr "Pas de lien du tout"
|
13532 |
|
13533 |
-
#: wppa-settings-autosave.php:
|
13534 |
msgid "Thumbnails and covers"
|
13535 |
msgstr "Vignettes et couvertures"
|
13536 |
|
13537 |
-
#: wppa-settings-autosave.php:
|
13538 |
msgid "Slideshow or covers"
|
13539 |
msgstr "Diaporama et couvertures"
|
13540 |
|
13541 |
-
#: wppa-settings-autosave.php:
|
13542 |
msgid "No display at all"
|
13543 |
msgstr "Pas d'afficahge du tout"
|
13544 |
|
13545 |
-
#: wppa-settings-autosave.php:
|
13546 |
msgid "A list with sub(sub) albums"
|
13547 |
msgstr "Une liste avec sub(sub) albums"
|
13548 |
|
13549 |
-
#: wppa-settings-autosave.php:
|
13550 |
msgid "A list of children only"
|
13551 |
msgstr "Une liste d’enfants seulement"
|
13552 |
|
13553 |
-
#: wppa-settings-autosave.php:
|
13554 |
msgid "An enumeration of names"
|
13555 |
msgstr "Une énumération de noms"
|
13556 |
|
13557 |
-
#: wppa-settings-autosave.php:
|
13558 |
msgid "Micro thumbnails"
|
13559 |
msgstr "Micro vignettes"
|
13560 |
|
13561 |
-
#: wppa-settings-autosave.php:
|
13562 |
msgid "Table VII:"
|
13563 |
msgstr "Table VII:"
|
13564 |
|
13565 |
-
#: wppa-settings-autosave.php:
|
13566 |
msgid "Permissions and Restrictions:"
|
13567 |
msgstr "Autorisations et Restrictions:"
|
13568 |
|
13569 |
-
#: wppa-settings-autosave.php:
|
13570 |
msgid ""
|
13571 |
"This table describes the access settings for admin and front-end activities."
|
13572 |
msgstr "Ce Table décrit les paramètres d’accès admin et activités frontale."
|
13573 |
|
13574 |
-
#: wppa-settings-autosave.php:
|
13575 |
msgid "Moderate P+C"
|
13576 |
msgstr "Modérer P+C"
|
13577 |
|
13578 |
-
#: wppa-settings-autosave.php:
|
13579 |
msgid "Comment Admin"
|
13580 |
msgstr "Admin Commentaire"
|
13581 |
|
13582 |
-
#: wppa-settings-autosave.php:
|
13583 |
msgid "Help & Info"
|
13584 |
msgstr "Aide & Information"
|
13585 |
|
13586 |
-
#: wppa-settings-autosave.php:
|
13587 |
msgid "Role"
|
13588 |
msgstr "Rôle"
|
13589 |
|
13590 |
-
#: wppa-settings-autosave.php:
|
13591 |
msgid ""
|
13592 |
"Admin settings per user role. Enabling these settings will overrule the "
|
13593 |
"front-end settings for the specific user role"
|
@@ -13595,81 +13593,81 @@ msgstr ""
|
|
13595 |
"Paramètres admin par rôle d’utilisateur. Activation de ces paramètres annule "
|
13596 |
"les paramètres frontal pour le rôle d’utilisateur spécifique"
|
13597 |
|
13598 |
-
#: wppa-settings-autosave.php:
|
13599 |
msgid "Frontend create Albums and upload Photos enabling and limiting settings"
|
13600 |
msgstr ""
|
13601 |
"Paramètres Frontend de permettant et en limitant de créer Albums et "
|
13602 |
"télécharger des Photos"
|
13603 |
|
13604 |
-
#: wppa-settings-autosave.php:
|
13605 |
msgid "User create Albums"
|
13606 |
msgstr "L’utilisateur créer des Albums"
|
13607 |
|
13608 |
-
#: wppa-settings-autosave.php:
|
13609 |
msgid "Enable frontend album creation."
|
13610 |
msgstr "Activer la création d’album de front-end."
|
13611 |
|
13612 |
-
#: wppa-settings-autosave.php:
|
13613 |
msgid "If you check this item, frontend album creation will be enabled."
|
13614 |
msgstr "Si vous cochez cet article, création d'albums frontend sera activé."
|
13615 |
|
13616 |
-
#: wppa-settings-autosave.php:
|
13617 |
msgid "User edit album"
|
13618 |
msgstr "L'utilisateur éditer l’album"
|
13619 |
|
13620 |
-
#: wppa-settings-autosave.php:
|
13621 |
msgid "Enable frontend edit album name and description."
|
13622 |
msgstr "Activer front-end modifier le nom et la description album."
|
13623 |
|
13624 |
-
#: wppa-settings-autosave.php:
|
13625 |
msgid "User delete Albums"
|
13626 |
msgstr "L’utilisateur supprimer des Albums"
|
13627 |
|
13628 |
-
#: wppa-settings-autosave.php:
|
13629 |
msgid "Enable frontend album deletion"
|
13630 |
msgstr "Activer la suppression d'album de front-end"
|
13631 |
|
13632 |
-
#: wppa-settings-autosave.php:
|
13633 |
msgid "If you check this item, frontend album deletion will be enabled."
|
13634 |
msgstr "Si vous cochez cet article, l'album frontend suppression sera activé."
|
13635 |
|
13636 |
-
#: wppa-settings-autosave.php:
|
13637 |
msgid "User create Albums login"
|
13638 |
msgstr "L’utilisateur créer des Albums login"
|
13639 |
|
13640 |
-
#: wppa-settings-autosave.php:
|
13641 |
msgid "Frontend album creation requires the user is logged in."
|
13642 |
msgstr "Création album frontend exige que l’utilisateur soit connecté."
|
13643 |
|
13644 |
-
#: wppa-settings-autosave.php:
|
13645 |
msgid "User create Albums Captcha"
|
13646 |
msgstr "Utilisateur de créer les albums Captcha"
|
13647 |
|
13648 |
-
#: wppa-settings-autosave.php:
|
13649 |
msgid "User must answer security question."
|
13650 |
msgstr "L'utilisateur doit répondre à la question de sécurité."
|
13651 |
|
13652 |
-
#: wppa-settings-autosave.php:
|
13653 |
#, php-format
|
13654 |
msgid "Upload limit %s"
|
13655 |
msgstr "Upload limit %s"
|
13656 |
|
13657 |
-
#: wppa-settings-autosave.php:
|
13658 |
msgid "Limit upload capacity for logged out users."
|
13659 |
msgstr ""
|
13660 |
"Limiter la capacité de téléchargement pour les utilisateurs enregistrés sur."
|
13661 |
|
13662 |
-
#: wppa-settings-autosave.php:
|
13663 |
#, php-format
|
13664 |
msgid "Limit upload capacity for the user role %s."
|
13665 |
msgstr "Limiter la capacité de téléchargement pour le rôle d'utilisateur%s."
|
13666 |
|
13667 |
-
#: wppa-settings-autosave.php:
|
13668 |
msgid "This setting has only effect when Table VII-B2 is unchecked."
|
13669 |
msgstr ""
|
13670 |
"Ce paramètre influe seulement lorsque le Table VII-B2 n’est pas cochée."
|
13671 |
|
13672 |
-
#: wppa-settings-autosave.php:
|
13673 |
msgid ""
|
13674 |
"This limitation only applies to frontend uploads when the same userrole does "
|
13675 |
"not have the Upload checkbox checked in Table VII-A."
|
@@ -13678,22 +13676,22 @@ msgstr ""
|
|
13678 |
"l’userrole même n’a pas coxhé la case à cocher Télécharger dans le Table VII-"
|
13679 |
"A."
|
13680 |
|
13681 |
-
#: wppa-settings-autosave.php:
|
13682 |
-
#: wppa-settings-autosave.php:
|
13683 |
msgid "A value of 0 means: no limit."
|
13684 |
msgstr "Une valeur de 0 signifie: pas de limitation."
|
13685 |
|
13686 |
-
#: wppa-settings-autosave.php:
|
13687 |
#, php-format
|
13688 |
msgid "Album limit %s"
|
13689 |
msgstr "Album limit %s"
|
13690 |
|
13691 |
-
#: wppa-settings-autosave.php:
|
13692 |
#, php-format
|
13693 |
msgid "Limit number of albums for the user role %s."
|
13694 |
msgstr "Limiter le nombre d'albums pour le rôle d'utilisateur %s."
|
13695 |
|
13696 |
-
#: wppa-settings-autosave.php:
|
13697 |
msgid ""
|
13698 |
"This limitation only applies to frontend create albums when the same "
|
13699 |
"userrole does not have the Album admin checkbox checked in Table VII-A."
|
@@ -13702,23 +13700,23 @@ msgstr ""
|
|
13702 |
"l’userrole même n’a pas coché la case à cocher Album admin dans le Table VII-"
|
13703 |
"A."
|
13704 |
|
13705 |
-
#: wppa-settings-autosave.php:
|
13706 |
msgid "Upload one only"
|
13707 |
msgstr "Charger un seul élément"
|
13708 |
|
13709 |
-
#: wppa-settings-autosave.php:
|
13710 |
msgid "Non admin users can upload only one photo at a time."
|
13711 |
msgstr "Utilisateurs non admin peuvent télécharger une seule photo à la fois."
|
13712 |
|
13713 |
-
#: wppa-settings-autosave.php:
|
13714 |
msgid "Upload moderation"
|
13715 |
msgstr "Modération du chargement des photos"
|
13716 |
|
13717 |
-
#: wppa-settings-autosave.php:
|
13718 |
msgid "Uploaded photos need moderation."
|
13719 |
msgstr "La photo chargée nécessite une modération."
|
13720 |
|
13721 |
-
#: wppa-settings-autosave.php:
|
13722 |
msgid ""
|
13723 |
"If checked, photos uploaded by users who do not have photo album admin "
|
13724 |
"access rights need moderation."
|
@@ -13726,7 +13724,7 @@ msgstr ""
|
|
13726 |
"Si elle est cochée, les photos téléchargées par les utilisateurs qui ne "
|
13727 |
"disposent pas des droits d'accès album photo admin besoin de modération."
|
13728 |
|
13729 |
-
#: wppa-settings-autosave.php:
|
13730 |
msgid ""
|
13731 |
"Users who have photo album admin access rights can change the photo status "
|
13732 |
"to publish or featured."
|
@@ -13734,73 +13732,73 @@ msgstr ""
|
|
13734 |
"Les utilisateurs qui ont des droits d'accès photo album admin peuvent "
|
13735 |
"modifier l'état de la photo à publier ou en vedette."
|
13736 |
|
13737 |
-
#: wppa-settings-autosave.php:
|
13738 |
msgid "You can set the album admin access rights in Table VII-A."
|
13739 |
msgstr ""
|
13740 |
"Vous pouvez définir les droits d’accès admin album dans le Table VII-A."
|
13741 |
|
13742 |
-
#: wppa-settings-autosave.php:
|
13743 |
msgid "FE Upload private"
|
13744 |
msgstr "FE Ajouter privée"
|
13745 |
|
13746 |
-
#: wppa-settings-autosave.php:
|
13747 |
msgid "Front-end uploaded photos status is set to private."
|
13748 |
msgstr "Front-end photos téléchargées statut est privé."
|
13749 |
|
13750 |
-
#: wppa-settings-autosave.php:
|
13751 |
msgid "This setting overrules VI-B7.0."
|
13752 |
msgstr "Ce réglage outrepasse VI-B7.0."
|
13753 |
|
13754 |
-
#: wppa-settings-autosave.php:
|
13755 |
msgid "Upload notify"
|
13756 |
msgstr "Notification de chargement"
|
13757 |
|
13758 |
-
#: wppa-settings-autosave.php:
|
13759 |
msgid "Notify admin at frontend upload."
|
13760 |
msgstr "Notifier l'administrateur au frontend téléchargement."
|
13761 |
|
13762 |
-
#: wppa-settings-autosave.php:
|
13763 |
msgid "If checked, admin will receive a notification by email."
|
13764 |
msgstr "Si cochée, admin recevra une notification par e-mail."
|
13765 |
|
13766 |
-
#: wppa-settings-autosave.php:
|
13767 |
msgid "Upload backend notify"
|
13768 |
msgstr "Upload backend notifier"
|
13769 |
|
13770 |
-
#: wppa-settings-autosave.php:
|
13771 |
msgid "Notify admin at backend upload."
|
13772 |
msgstr "Notifier l'administrateur au backend téléchargement."
|
13773 |
|
13774 |
-
#: wppa-settings-autosave.php:
|
13775 |
msgid "Max size in pixels"
|
13776 |
msgstr "Taille maximale en pixels"
|
13777 |
|
13778 |
-
#: wppa-settings-autosave.php:
|
13779 |
msgid "Max size for height and width for front-end uploads."
|
13780 |
msgstr ""
|
13781 |
"Taille maximale en hauteur et en largeur pour les téléchargements frontaux."
|
13782 |
|
13783 |
-
#: wppa-settings-autosave.php:
|
13784 |
msgid "Enter the maximum size. 0 is unlimited"
|
13785 |
msgstr "Entrez la taille maximale. 0 est illimité"
|
13786 |
|
13787 |
-
#: wppa-settings-autosave.php:
|
13788 |
msgid "Home after Upload"
|
13789 |
msgstr "A l'accueil après le chargement"
|
13790 |
|
13791 |
-
#: wppa-settings-autosave.php:
|
13792 |
msgid "After successfull front-end upload, go to the home page."
|
13793 |
msgstr "Après téléchargement réussi de front-end, aller à la page d’accueil."
|
13794 |
|
13795 |
-
#: wppa-settings-autosave.php:
|
13796 |
msgid "Fe alert"
|
13797 |
msgstr "Fe alerte"
|
13798 |
|
13799 |
-
#: wppa-settings-autosave.php:
|
13800 |
msgid "Show alertbox on front-end."
|
13801 |
msgstr "Afficher Alertbox sur front-end."
|
13802 |
|
13803 |
-
#: wppa-settings-autosave.php:
|
13804 |
msgid ""
|
13805 |
"Errors are always reported, credit points only when --- none --- is not "
|
13806 |
"selected"
|
@@ -13808,37 +13806,37 @@ msgstr ""
|
|
13808 |
"Les erreurs sont toujours signalés, les points de crédit seulement quand --- "
|
13809 |
"aucun --- n'a pas été sélectionné"
|
13810 |
|
13811 |
-
#: wppa-settings-autosave.php:
|
13812 |
msgid "uploads and create albums"
|
13813 |
msgstr "télécharge et créez des albums"
|
13814 |
|
13815 |
-
#: wppa-settings-autosave.php:
|
13816 |
msgid "blog it"
|
13817 |
msgstr "Blog It"
|
13818 |
|
13819 |
-
#: wppa-settings-autosave.php:
|
13820 |
msgid "Max fe upload albums"
|
13821 |
msgstr "Max fe albums de téléchargement"
|
13822 |
|
13823 |
-
#: wppa-settings-autosave.php:
|
13824 |
msgid "Max number of albums in frontend upload selection box."
|
13825 |
msgstr ""
|
13826 |
"Nombre maximum d'albums dans la boîte de sélection frontend de "
|
13827 |
"téléchargement."
|
13828 |
|
13829 |
-
#: wppa-settings-autosave.php:
|
13830 |
msgid "Admin Functionality restrictions for non administrators"
|
13831 |
msgstr "Restrictions de fonctionnalités Admin pour les non administrateurs"
|
13832 |
|
13833 |
-
#: wppa-settings-autosave.php:
|
13834 |
msgid "Alt thumb is restricted"
|
13835 |
msgstr "Pouce Alt est limité"
|
13836 |
|
13837 |
-
#: wppa-settings-autosave.php:
|
13838 |
msgid "Using <b>alt thumbsize</b> is a restricted action."
|
13839 |
msgstr "Utilisation <b>alt Thumbsize</b> est une action restreinte."
|
13840 |
|
13841 |
-
#: wppa-settings-autosave.php:
|
13842 |
msgid ""
|
13843 |
"If checked: alt thumbsize can not be set in album admin by users not having "
|
13844 |
"admin rights."
|
@@ -13846,15 +13844,15 @@ msgstr ""
|
|
13846 |
"Si coché: alt Thumbsize ne peut pas être réglé dans l'album d'administration "
|
13847 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13848 |
|
13849 |
-
#: wppa-settings-autosave.php:
|
13850 |
msgid "Link is restricted"
|
13851 |
msgstr "Lien est limité"
|
13852 |
|
13853 |
-
#: wppa-settings-autosave.php:
|
13854 |
msgid "Using <b>Link to</b> is a restricted action."
|
13855 |
msgstr "Utiliser un <b>lien vers</b> est une action restreinte."
|
13856 |
|
13857 |
-
#: wppa-settings-autosave.php:
|
13858 |
msgid ""
|
13859 |
"If checked: Link to: can not be set in album admin by users not having admin "
|
13860 |
"rights."
|
@@ -13862,15 +13860,15 @@ msgstr ""
|
|
13862 |
"Si coché: Lien vers: ne peut pas être définie dans l'album d'administration "
|
13863 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13864 |
|
13865 |
-
#: wppa-settings-autosave.php:
|
13866 |
msgid "CoverType is restricted"
|
13867 |
msgstr "CoverType est limitée"
|
13868 |
|
13869 |
-
#: wppa-settings-autosave.php:
|
13870 |
msgid "Changing <b>Cover Type</b> is a restricted action."
|
13871 |
msgstr "Changer de <b>Type de couverture</b> est une action restreinte."
|
13872 |
|
13873 |
-
#: wppa-settings-autosave.php:
|
13874 |
msgid ""
|
13875 |
"If checked: Cover Type: can not be set in album admin by users not having "
|
13876 |
"admin rights."
|
@@ -13878,15 +13876,15 @@ msgstr ""
|
|
13878 |
"Si coché: Cover Type: ne peut pas être définie dans l'album d'administration "
|
13879 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13880 |
|
13881 |
-
#: wppa-settings-autosave.php:
|
13882 |
msgid "Photo order# is restricted"
|
13883 |
msgstr "Photo order# is restricted"
|
13884 |
|
13885 |
-
#: wppa-settings-autosave.php:
|
13886 |
msgid "Changing <b>Photo sort order #</b> is a restricted action."
|
13887 |
msgstr "Changer <b>Tri Photo No de sequence</b> est une action restreinte."
|
13888 |
|
13889 |
-
#: wppa-settings-autosave.php:
|
13890 |
msgid ""
|
13891 |
"If checked: Photo sort order #: can not be set in photo admin by users not "
|
13892 |
"having admin rights."
|
@@ -13894,16 +13892,16 @@ msgstr ""
|
|
13894 |
"Si coché: Photo ordre de tri #: ne peut pas être sur la photo "
|
13895 |
"d'administration par les utilisateurs de ne pas avoir les droits admin."
|
13896 |
|
13897 |
-
#: wppa-settings-autosave.php:
|
13898 |
msgid "Change source restricted"
|
13899 |
msgstr "Changement de source limitée"
|
13900 |
|
13901 |
-
#: wppa-settings-autosave.php:
|
13902 |
msgid "Changing the import source dir requires admin rights."
|
13903 |
msgstr ""
|
13904 |
"Changer le répertoire de source d’importation nécessite des droits d’admin."
|
13905 |
|
13906 |
-
#: wppa-settings-autosave.php:
|
13907 |
msgid ""
|
13908 |
"If checked, the imput source for importing photos and albums is restricted "
|
13909 |
"to user role administrator."
|
@@ -13911,80 +13909,75 @@ msgstr ""
|
|
13911 |
"Si elle est cochée, la source d'imput pour importer des photos et des albums "
|
13912 |
"est limitée a rôle de l'administrateur."
|
13913 |
|
13914 |
-
#: wppa-settings-autosave.php:
|
13915 |
msgid "Extended status restricted"
|
13916 |
msgstr "État étendu limitée"
|
13917 |
|
13918 |
-
#: wppa-settings-autosave.php:
|
13919 |
msgid "Setting status other than pending or publish requires admin rights."
|
13920 |
msgstr ""
|
13921 |
"Réglage de l'état autre que l'attente ou publier nécessite des droits "
|
13922 |
"d'admin."
|
13923 |
|
13924 |
-
#: wppa-settings-autosave.php:
|
13925 |
msgid "Photo description restricted"
|
13926 |
msgstr "Description de la photo restreinte"
|
13927 |
|
13928 |
-
#: wppa-settings-autosave.php:
|
13929 |
msgid "Edit photo description requires admin rights."
|
13930 |
msgstr "Modifier description photo nécessite des droits d’admin."
|
13931 |
|
13932 |
-
#: wppa-settings-autosave.php:
|
13933 |
msgid "Update photofiles restricted"
|
13934 |
msgstr "Mise à jour fichers photo restreint"
|
13935 |
|
13936 |
-
#: wppa-settings-autosave.php:
|
13937 |
msgid "Re-upload files requires admin rights"
|
13938 |
msgstr "Re-télécharger les fichiers nécessite des droits d’admin"
|
13939 |
|
13940 |
-
#: wppa-settings-autosave.php:
|
13941 |
msgid "Miscellaneous limiting settings"
|
13942 |
msgstr "Divers paramètres de limitation"
|
13943 |
|
13944 |
-
#: wppa-settings-autosave.php:
|
13945 |
msgid "Owners only"
|
13946 |
msgstr "Propriétaires seulement"
|
13947 |
|
13948 |
-
#: wppa-settings-autosave.php:
|
13949 |
-
#, fuzzy
|
13950 |
msgid "Limit edit album access to the album owners only."
|
13951 |
msgstr ""
|
13952 |
-
"
|
13953 |
|
13954 |
-
#: wppa-settings-autosave.php:
|
13955 |
msgid "If checked, non-admin users can edit their own albums only."
|
13956 |
msgstr ""
|
13957 |
"Si cochée, les utilisateurs non-admin peuvent modifier leurs propres albums "
|
13958 |
"seulement."
|
13959 |
|
13960 |
-
#: wppa-settings-autosave.php:
|
13961 |
-
#, fuzzy
|
13962 |
msgid "Upload Owners only"
|
13963 |
-
msgstr "
|
13964 |
|
13965 |
-
#: wppa-settings-autosave.php:
|
13966 |
-
#, fuzzy
|
13967 |
msgid "Limit uploads to the album owners only."
|
13968 |
-
msgstr "
|
13969 |
|
13970 |
-
#: wppa-settings-autosave.php:
|
13971 |
-
#, fuzzy
|
13972 |
msgid ""
|
13973 |
-
"If checked, users can upload to their own
|
13974 |
msgstr ""
|
13975 |
-
"
|
13976 |
-
"et---
|
13977 |
|
13978 |
-
#: wppa-settings-autosave.php:
|
13979 |
msgid "Frontend Edit"
|
13980 |
msgstr "Front-end Modifier"
|
13981 |
|
13982 |
-
#: wppa-settings-autosave.php:
|
13983 |
msgid "Allow the uploader to edit the photo info"
|
13984 |
msgstr "Permettre à l’uploader modifier les infos de la photo"
|
13985 |
|
13986 |
-
#: wppa-settings-autosave.php:
|
13987 |
-
#, fuzzy
|
13988 |
msgid ""
|
13989 |
"If selected, any logged in user who meets the criteria has the capability to "
|
13990 |
"edit the photo information."
|
@@ -13992,108 +13985,105 @@ msgstr ""
|
|
13992 |
"Si sélectionné, tout connecté utilisateur qui satisfait aux critères a la "
|
13993 |
"capacité de modifier les informations de la photo."
|
13994 |
|
13995 |
-
#: wppa-settings-autosave.php:
|
13996 |
-
#, fuzzy
|
13997 |
msgid "Note: This may be AFTER moderation!!"
|
13998 |
msgstr "Remarque : Cela peut être après modération !!"
|
13999 |
|
14000 |
-
#: wppa-settings-autosave.php:
|
14001 |
msgid "Classic"
|
14002 |
msgstr "Classic"
|
14003 |
|
14004 |
-
#: wppa-settings-autosave.php:
|
14005 |
msgid "New style"
|
14006 |
msgstr "Nouveau style"
|
14007 |
|
14008 |
-
#: wppa-settings-autosave.php:
|
14009 |
msgid "Fe Edit users"
|
14010 |
msgstr "Modifier par Utilisateurs"
|
14011 |
|
14012 |
-
#: wppa-settings-autosave.php:
|
14013 |
msgid "The criteria the user must meet to edit photo info"
|
14014 |
msgstr ""
|
14015 |
"Les critères l’utilisateur doit remplir pour modifier les informations de la "
|
14016 |
"photo"
|
14017 |
|
14018 |
-
#: wppa-settings-autosave.php:
|
14019 |
msgid "Admin and superuser"
|
14020 |
msgstr "Admin et superutilisateur"
|
14021 |
|
14022 |
-
#: wppa-settings-autosave.php:
|
14023 |
msgid "Owner, admin and superuser"
|
14024 |
msgstr "Propriétaire, admin et superutilisateur"
|
14025 |
|
14026 |
-
#: wppa-settings-autosave.php:
|
14027 |
msgid "Fe Edit Theme CSS"
|
14028 |
msgstr "Fe Edit thème CSS"
|
14029 |
|
14030 |
-
#: wppa-settings-autosave.php:
|
14031 |
msgid "The front-end edit photo dialog uses the theme CSS."
|
14032 |
msgstr "La boîte de dialogue Modifier frontal photo utilise le thème CSS."
|
14033 |
|
14034 |
-
#: wppa-settings-autosave.php:
|
14035 |
msgid "Fe Edit New Items"
|
14036 |
msgstr "Fe modifiez éléments nouveau style"
|
14037 |
|
14038 |
-
#: wppa-settings-autosave.php:
|
14039 |
msgid "The items that are fe editable"
|
14040 |
msgstr "Les éléments qui sont modifiables de frontal"
|
14041 |
|
14042 |
-
#: wppa-settings-autosave.php:
|
14043 |
msgid "See also Table II-J10!"
|
14044 |
msgstr "Voir aussi Table II-J10!"
|
14045 |
|
14046 |
-
#: wppa-settings-autosave.php:
|
14047 |
msgid "Fe Edit Button text"
|
14048 |
msgstr "Texte du bouton modifier de Fe"
|
14049 |
|
14050 |
-
#: wppa-settings-autosave.php:
|
14051 |
-
#, fuzzy
|
14052 |
msgid "The text on the Edit button."
|
14053 |
msgstr "Le texte sur le bouton modifier."
|
14054 |
|
14055 |
-
#: wppa-settings-autosave.php:
|
14056 |
msgid "Fe Edit Dialog caption"
|
14057 |
msgstr "Fe Légende de la boîte de dialogue de modifier"
|
14058 |
|
14059 |
-
#: wppa-settings-autosave.php:
|
14060 |
-
#, fuzzy
|
14061 |
msgid "The text on the header of the popup."
|
14062 |
-
msgstr "Le texte
|
14063 |
|
14064 |
-
#: wppa-settings-autosave.php:
|
14065 |
msgid "Frontend Delete"
|
14066 |
msgstr "Front-end Supprimer"
|
14067 |
|
14068 |
-
#: wppa-settings-autosave.php:
|
14069 |
msgid "Allow the uploader to delete the photo"
|
14070 |
msgstr "Permettre à l’uploader effacer la photo"
|
14071 |
|
14072 |
-
#: wppa-settings-autosave.php:
|
14073 |
#, fuzzy
|
14074 |
msgid "Uploader Moderate Comment"
|
14075 |
msgstr "Commentaire modéré Uploader"
|
14076 |
|
14077 |
-
#: wppa-settings-autosave.php:
|
14078 |
#, fuzzy
|
14079 |
msgid "The owner of the photo can moderate the photos comments."
|
14080 |
msgstr "Le propriétaire de la photo peut modérer les commentaires de photos."
|
14081 |
|
14082 |
-
#: wppa-settings-autosave.php:
|
14083 |
#, fuzzy
|
14084 |
msgid "This setting requires \"Uploader edit\" to be enabled also."
|
14085 |
msgstr "Ce paramètre nécessite « edit Uploader » soit activé aussi."
|
14086 |
|
14087 |
-
#: wppa-settings-autosave.php:
|
14088 |
#, fuzzy
|
14089 |
msgid "Upload memory check frontend"
|
14090 |
msgstr "Télécharger mémoire cocher frontend"
|
14091 |
|
14092 |
-
#: wppa-settings-autosave.php:
|
14093 |
msgid "Disable uploading photos that are too large."
|
14094 |
msgstr "Désactiver le téléchargement des photos qui sont trop grands."
|
14095 |
|
14096 |
-
#: wppa-settings-autosave.php:
|
14097 |
#, fuzzy
|
14098 |
msgid ""
|
14099 |
"To prevent out of memory crashes during upload and possible database "
|
@@ -14103,38 +14093,38 @@ msgstr ""
|
|
14103 |
"incohérences de base de données possible, les téléchargements peuvent être "
|
14104 |
"évités si les photos sont trop grandes."
|
14105 |
|
14106 |
-
#: wppa-settings-autosave.php:
|
14107 |
#, fuzzy
|
14108 |
msgid "Upload memory check admin"
|
14109 |
msgstr "Télécharger mémoire cocher admin"
|
14110 |
|
14111 |
-
#: wppa-settings-autosave.php:
|
14112 |
msgid "Comment captcha"
|
14113 |
msgstr "Captcha commentaire"
|
14114 |
|
14115 |
-
#: wppa-settings-autosave.php:
|
14116 |
#, fuzzy
|
14117 |
msgid "Use a simple calculate captcha on comments form."
|
14118 |
msgstr "Utiliser un simple calcul captcha sur le formulaire de commentaires."
|
14119 |
|
14120 |
-
#: wppa-settings-autosave.php:
|
14121 |
msgid "Spam lifetime"
|
14122 |
msgstr "Durée de vie de spam"
|
14123 |
|
14124 |
-
#: wppa-settings-autosave.php:
|
14125 |
msgid "Delete spam comments when older than."
|
14126 |
msgstr "Supprimer le spam de commentaires lorsqu’il y a plus de."
|
14127 |
|
14128 |
-
#: wppa-settings-autosave.php:
|
14129 |
msgid "Avoid duplicates"
|
14130 |
msgstr "Éviter les doublons"
|
14131 |
|
14132 |
-
#: wppa-settings-autosave.php:
|
14133 |
#, fuzzy
|
14134 |
msgid "Prevent the creation of duplicate photos."
|
14135 |
msgstr "Empêcher la création de photos en double."
|
14136 |
|
14137 |
-
#: wppa-settings-autosave.php:
|
14138 |
#, fuzzy
|
14139 |
msgid ""
|
14140 |
"If checked: uploading, importing, copying or moving photos to other albums "
|
@@ -14145,73 +14135,73 @@ msgstr ""
|
|
14145 |
"photos vers d’autres albums seront empêchés quand l’album desitation "
|
14146 |
"contient déjà une photo avec le même nom de fichier."
|
14147 |
|
14148 |
-
#: wppa-settings-autosave.php:
|
14149 |
msgid "Blacklist user"
|
14150 |
msgstr "Blacklister l'utilisateur"
|
14151 |
|
14152 |
-
#: wppa-settings-autosave.php:
|
14153 |
#, fuzzy
|
14154 |
msgid "Set the status of all the users photos to 'pending'."
|
14155 |
msgstr "Définir l’état de toutes les photos des utilisateurs « en attente »."
|
14156 |
|
14157 |
-
#: wppa-settings-autosave.php:
|
14158 |
msgid "Also inhibits further uploads."
|
14159 |
msgstr "Inhibe aussi les téléchargements supplémentaires."
|
14160 |
|
14161 |
-
#: wppa-settings-autosave.php:
|
14162 |
msgid "--- select a user to blacklist ---"
|
14163 |
msgstr "--- choisir un utilisateur à bannir ---"
|
14164 |
|
14165 |
-
#: wppa-settings-autosave.php:
|
14166 |
-
#: wppa-settings-autosave.php:
|
14167 |
-
#: wppa-settings-autosave.php:
|
14168 |
-
#: wppa-settings-autosave.php:
|
14169 |
#, fuzzy
|
14170 |
msgid "The page will be reloaded after the action has taken place."
|
14171 |
msgstr "La page est rechargée après que l’action a eu lieu."
|
14172 |
|
14173 |
-
#: wppa-settings-autosave.php:
|
14174 |
#, fuzzy
|
14175 |
msgid "User login name <b>( case sensitive! )</b>:"
|
14176 |
msgstr "Utilisateur connexion nom <b>(affaire sensible !)</b>:"
|
14177 |
|
14178 |
-
#: wppa-settings-autosave.php:
|
14179 |
msgid "Unblacklist user"
|
14180 |
msgstr "Unblacklist utilisateur"
|
14181 |
|
14182 |
-
#: wppa-settings-autosave.php:
|
14183 |
#, fuzzy
|
14184 |
msgid "Set the status of all the users photos to 'publish'."
|
14185 |
msgstr "Définir l’état de toutes les photos des utilisateurs de « publier »."
|
14186 |
|
14187 |
-
#: wppa-settings-autosave.php:
|
14188 |
msgid "--- select a user to unblacklist ---"
|
14189 |
msgstr "---Sélectionnez un utilisateur pour unblacklist---"
|
14190 |
|
14191 |
-
#: wppa-settings-autosave.php:
|
14192 |
msgid "Photo owner change"
|
14193 |
msgstr "Changer le propriétaire de la photo"
|
14194 |
|
14195 |
-
#: wppa-settings-autosave.php:
|
14196 |
msgid "Administrators can change photo owner"
|
14197 |
msgstr "Les administrateurs peuvent modifier le propriétaire de la photo"
|
14198 |
|
14199 |
-
#: wppa-settings-autosave.php:
|
14200 |
msgid "Super user"
|
14201 |
msgstr "Super utilisateur"
|
14202 |
|
14203 |
-
#: wppa-settings-autosave.php:
|
14204 |
msgid "Give these users all rights in wppa."
|
14205 |
msgstr "Donner à ces utilisateurs tous droits en wppa."
|
14206 |
|
14207 |
-
#: wppa-settings-autosave.php:
|
14208 |
#, fuzzy
|
14209 |
msgid "This gives the user all the administrator privileges within wppa."
|
14210 |
msgstr ""
|
14211 |
"Cela donne à l’utilisateur tous les privilèges d’administrateur au sein de "
|
14212 |
"la wppa."
|
14213 |
|
14214 |
-
#: wppa-settings-autosave.php:
|
14215 |
msgid ""
|
14216 |
"Make sure the user also has a role that has all the boxes ticked in Table "
|
14217 |
"VII-A"
|
@@ -14219,64 +14209,64 @@ msgstr ""
|
|
14219 |
"Assurez-vous que l’utilisateur a également un rôle qui a toutes les cases "
|
14220 |
"cochées dans le Table VII-A"
|
14221 |
|
14222 |
-
#: wppa-settings-autosave.php:
|
14223 |
msgid "--- select a user to make superuser ---"
|
14224 |
msgstr "--- Sélectionner un utilisateur à faire superutilisateur ---"
|
14225 |
|
14226 |
-
#: wppa-settings-autosave.php:
|
14227 |
msgid "Unsuper user"
|
14228 |
msgstr "utilisateur Unsuper"
|
14229 |
|
14230 |
-
#: wppa-settings-autosave.php:
|
14231 |
#, fuzzy
|
14232 |
msgid "Remove user from super user list."
|
14233 |
msgstr "Supprimer l’utilisateur de liste de super utilisateur."
|
14234 |
|
14235 |
-
#: wppa-settings-autosave.php:
|
14236 |
msgid "--- select a user to unmake superuser ---"
|
14237 |
msgstr "--- Sélectionner un utilisateur à défaire superutilisateur ---"
|
14238 |
|
14239 |
-
#: wppa-settings-autosave.php:
|
14240 |
msgid "Table VIII:"
|
14241 |
msgstr "Table VIII:"
|
14242 |
|
14243 |
-
#: wppa-settings-autosave.php:
|
14244 |
msgid "Actions:"
|
14245 |
msgstr "Actions:"
|
14246 |
|
14247 |
-
#: wppa-settings-autosave.php:
|
14248 |
msgid "This table lists all actions that can be taken to the wppa+ system"
|
14249 |
msgstr ""
|
14250 |
"Ce table répertorie toutes les actions qui peuvent être prises pour la "
|
14251 |
"système wppa+"
|
14252 |
|
14253 |
-
#: wppa-settings-autosave.php:
|
14254 |
msgid "Specification"
|
14255 |
msgstr "Spécification"
|
14256 |
|
14257 |
-
#: wppa-settings-autosave.php:
|
14258 |
-
#: wppa-settings-autosave.php:
|
14259 |
msgid "Do it!"
|
14260 |
msgstr "Faites-le!"
|
14261 |
|
14262 |
-
#: wppa-settings-autosave.php:
|
14263 |
msgid "To Go"
|
14264 |
msgstr "Encore"
|
14265 |
|
14266 |
-
#: wppa-settings-autosave.php:
|
14267 |
msgid "Harmless and reverseable actions"
|
14268 |
msgstr "Actions inoffensives et reversibles"
|
14269 |
|
14270 |
-
#: wppa-settings-autosave.php:
|
14271 |
msgid "Ignore concurrency"
|
14272 |
msgstr "Ignorer l’accès concurrentiel"
|
14273 |
|
14274 |
-
#: wppa-settings-autosave.php:
|
14275 |
#, fuzzy
|
14276 |
msgid "Ignore the prevention of concurrent actions."
|
14277 |
msgstr "Ignorer la prévention des actions simultanées."
|
14278 |
|
14279 |
-
#: wppa-settings-autosave.php:
|
14280 |
#, fuzzy
|
14281 |
msgid ""
|
14282 |
"This setting is meant to recover from deadlock situations only. Use with "
|
@@ -14285,16 +14275,16 @@ msgstr ""
|
|
14285 |
"Ce paramètre est destiné à récupérer à partir de seulement les situations de "
|
14286 |
"blocage. Utiliser avec précaution !"
|
14287 |
|
14288 |
-
#: wppa-settings-autosave.php:
|
14289 |
msgid "Setup"
|
14290 |
msgstr "Configuration"
|
14291 |
|
14292 |
-
#: wppa-settings-autosave.php:
|
14293 |
#, fuzzy
|
14294 |
msgid "Re-initialize plugin."
|
14295 |
msgstr "Ré-initialiser plugin."
|
14296 |
|
14297 |
-
#: wppa-settings-autosave.php:
|
14298 |
#, fuzzy
|
14299 |
msgid ""
|
14300 |
"Re-initilizes the plugin, (re)creates database tables and sets up default "
|
@@ -14303,7 +14293,7 @@ msgstr ""
|
|
14303 |
"Re-initilizes le plugin, (re) crée des tables de base de données et met en "
|
14304 |
"place les répertoires et les paramètres par défaut si nécessaire."
|
14305 |
|
14306 |
-
#: wppa-settings-autosave.php:
|
14307 |
#, fuzzy
|
14308 |
msgid ""
|
14309 |
"This action may be required to setup blogs in a multiblog (network) site as "
|
@@ -14313,32 +14303,32 @@ msgstr ""
|
|
14313 |
"multiblog (réseau), ainsi que dans rares cas de corriger des erreurs "
|
14314 |
"d’initialisation du."
|
14315 |
|
14316 |
-
#: wppa-settings-autosave.php:
|
14317 |
msgid "Backup settings"
|
14318 |
msgstr "Réglages de la sauvegarde"
|
14319 |
|
14320 |
-
#: wppa-settings-autosave.php:
|
14321 |
#, fuzzy
|
14322 |
msgid "Save all settings into a backup file."
|
14323 |
msgstr "Enregistrer tous les paramètres dans un fichier de sauvegarde."
|
14324 |
|
14325 |
-
#: wppa-settings-autosave.php:
|
14326 |
#, fuzzy
|
14327 |
msgid "Saves all the settings into a backup file"
|
14328 |
msgstr "Enregistre tous les paramètres dans un fichier de sauvegarde"
|
14329 |
|
14330 |
-
#: wppa-settings-autosave.php:
|
14331 |
msgid "Load settings"
|
14332 |
msgstr "Réglages du chargement"
|
14333 |
|
14334 |
-
#: wppa-settings-autosave.php:
|
14335 |
#, fuzzy
|
14336 |
msgid "Restore all settings from defaults, a backup or skin file."
|
14337 |
msgstr ""
|
14338 |
"Rétablir tous les réglages de paramètres par défaut, un fichier de "
|
14339 |
"sauvegarde ou de peau."
|
14340 |
|
14341 |
-
#: wppa-settings-autosave.php:
|
14342 |
#, fuzzy
|
14343 |
msgid ""
|
14344 |
"Restores all the settings from the factory supplied defaults, the backup you "
|
@@ -14347,36 +14337,36 @@ msgstr ""
|
|
14347 |
"Restaure tous les paramètres de paramétrage usine fournie, la sauvegarde que "
|
14348 |
"vous avez créé ou d’un fichier d’apparence."
|
14349 |
|
14350 |
-
#: wppa-settings-autosave.php:
|
14351 |
msgid "--- set to defaults ---"
|
14352 |
msgstr "--- Réglages par défaut ---"
|
14353 |
|
14354 |
-
#: wppa-settings-autosave.php:
|
14355 |
msgid "--- restore backup ---"
|
14356 |
msgstr "--- restaurer la sauvegarde ---"
|
14357 |
|
14358 |
-
#: wppa-settings-autosave.php:
|
14359 |
msgid "Regenerate"
|
14360 |
msgstr "Regénérer"
|
14361 |
|
14362 |
-
#: wppa-settings-autosave.php:
|
14363 |
msgid "Regenerate all thumbnails."
|
14364 |
msgstr "Refaire toutes les vignettes."
|
14365 |
|
14366 |
-
#: wppa-settings-autosave.php:
|
14367 |
-
#: wppa-settings-autosave.php:
|
14368 |
msgid "Skip one"
|
14369 |
msgstr "Ignorer un"
|
14370 |
|
14371 |
-
#: wppa-settings-autosave.php:
|
14372 |
msgid "Rerate"
|
14373 |
msgstr "Re-noter"
|
14374 |
|
14375 |
-
#: wppa-settings-autosave.php:
|
14376 |
msgid "Recalculate ratings."
|
14377 |
msgstr "Recalculer les cotes."
|
14378 |
|
14379 |
-
#: wppa-settings-autosave.php:
|
14380 |
#, fuzzy
|
14381 |
msgid ""
|
14382 |
"This function will recalculate all mean photo ratings from the ratings table."
|
@@ -14384,31 +14374,31 @@ msgstr ""
|
|
14384 |
"Cette fonction recalcule toutes les notations moyenne photo de la table des "
|
14385 |
"cotes."
|
14386 |
|
14387 |
-
#: wppa-settings-autosave.php:
|
14388 |
msgid ""
|
14389 |
"You may need this function after the re-import of previously exported photos"
|
14390 |
msgstr ""
|
14391 |
"Vous pouvez avoir besoin de cette fonction après la ré-importer des photos "
|
14392 |
"préalablement exportés"
|
14393 |
|
14394 |
-
#: wppa-settings-autosave.php:
|
14395 |
msgid "Lost and found"
|
14396 |
msgstr "Objets trouvés"
|
14397 |
|
14398 |
-
#: wppa-settings-autosave.php:
|
14399 |
msgid "Find \"lost\" photos."
|
14400 |
msgstr "Retrouvez les photos « perdus »."
|
14401 |
|
14402 |
-
#: wppa-settings-autosave.php:
|
14403 |
#, fuzzy
|
14404 |
msgid "This function will attempt to find lost photos."
|
14405 |
msgstr "Cette fonction va tenter de trouver des photos perdues."
|
14406 |
|
14407 |
-
#: wppa-settings-autosave.php:
|
14408 |
msgid "Recuperate"
|
14409 |
msgstr "Récupérer"
|
14410 |
|
14411 |
-
#: wppa-settings-autosave.php:
|
14412 |
#, fuzzy
|
14413 |
msgid ""
|
14414 |
"This action will attempt to find and register IPTC and EXIF data from photos "
|
@@ -14417,50 +14407,50 @@ msgstr ""
|
|
14417 |
"Cette action va tenter de trouver et d’enregistrer les données EXIF et IPTC "
|
14418 |
"des photos dans le système WPPA +."
|
14419 |
|
14420 |
-
#: wppa-settings-autosave.php:
|
14421 |
msgid "Remake Index Albums"
|
14422 |
msgstr "Refaire l'index des photos"
|
14423 |
|
14424 |
-
#: wppa-settings-autosave.php:
|
14425 |
#, fuzzy
|
14426 |
msgid "Remakes the index database table for albums."
|
14427 |
msgstr "Refait la table de base de données d’index pour les albums."
|
14428 |
|
14429 |
-
#: wppa-settings-autosave.php:
|
14430 |
msgid "Remake Index Photos"
|
14431 |
msgstr "Refaire l'index des photos"
|
14432 |
|
14433 |
-
#: wppa-settings-autosave.php:
|
14434 |
#, fuzzy
|
14435 |
msgid "Remakes the index database table for photos."
|
14436 |
msgstr "Refait la table de base de données d’index pour les photos."
|
14437 |
|
14438 |
-
#: wppa-settings-autosave.php:
|
14439 |
msgid "Clean Index"
|
14440 |
msgstr "Nettoyer les Index"
|
14441 |
|
14442 |
-
#: wppa-settings-autosave.php:
|
14443 |
#, fuzzy
|
14444 |
msgid "Remove obsolete entries from index db table."
|
14445 |
msgstr "Supprimer les entrées obsolètes de db table d’index."
|
14446 |
|
14447 |
-
#: wppa-settings-autosave.php:
|
14448 |
msgid "Convert to tree"
|
14449 |
msgstr "Convertir en arbre"
|
14450 |
|
14451 |
-
#: wppa-settings-autosave.php:
|
14452 |
msgid "Convert filesystem to tree structure."
|
14453 |
msgstr "Convertir des fichiers à structure arborescente."
|
14454 |
|
14455 |
-
#: wppa-settings-autosave.php:
|
14456 |
msgid "Convert to flat"
|
14457 |
msgstr "Convertir en plat"
|
14458 |
|
14459 |
-
#: wppa-settings-autosave.php:
|
14460 |
msgid "Convert filesystem to flat structure."
|
14461 |
msgstr "Autre système de fichiers à structure plate."
|
14462 |
|
14463 |
-
#: wppa-settings-autosave.php:
|
14464 |
#, fuzzy
|
14465 |
msgid ""
|
14466 |
"If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
|
@@ -14469,16 +14459,16 @@ msgstr ""
|
|
14469 |
"Si vous souhaitez revenir à une version wppa + avant 5.0.16, vous devez "
|
14470 |
"convertir au premier plat."
|
14471 |
|
14472 |
-
#: wppa-settings-autosave.php:
|
14473 |
msgid "Remake"
|
14474 |
msgstr "Refaire"
|
14475 |
|
14476 |
-
#: wppa-settings-autosave.php:
|
14477 |
#, fuzzy
|
14478 |
msgid "Remake the photofiles from photo sourcefiles."
|
14479 |
msgstr "Refaire la photofiles de photo sourcefiles."
|
14480 |
|
14481 |
-
#: wppa-settings-autosave.php:
|
14482 |
#, fuzzy
|
14483 |
msgid ""
|
14484 |
"This action will remake the fullsize images, thumbnail images, and will "
|
@@ -14489,171 +14479,171 @@ msgstr ""
|
|
14489 |
"données exif et iptc pour toutes les photos où la source se trouve dans le "
|
14490 |
"sous-répertoire album correspondante du répertoire source."
|
14491 |
|
14492 |
-
#: wppa-settings-autosave.php:
|
14493 |
msgid "Orientation only"
|
14494 |
msgstr "Orientation seulement"
|
14495 |
|
14496 |
-
#: wppa-settings-autosave.php:
|
14497 |
#, fuzzy
|
14498 |
msgid "Remake non standard orientated photos only."
|
14499 |
msgstr "Photos de remake non standard orienté uniquement."
|
14500 |
|
14501 |
-
#: wppa-settings-autosave.php:
|
14502 |
msgid "Missing only"
|
14503 |
msgstr "Manque seulement"
|
14504 |
|
14505 |
-
#: wppa-settings-autosave.php:
|
14506 |
msgid "Remake missing photofiles only."
|
14507 |
msgstr "Refaire photofiles manquant seulement."
|
14508 |
|
14509 |
-
#: wppa-settings-autosave.php:
|
14510 |
msgid "Recalc sizes"
|
14511 |
msgstr "Recalc tailles"
|
14512 |
|
14513 |
-
#: wppa-settings-autosave.php:
|
14514 |
#, fuzzy
|
14515 |
msgid "Recalculate photosizes and save to db."
|
14516 |
msgstr "Recalculer les photosizes et enregistrer dans db."
|
14517 |
|
14518 |
-
#: wppa-settings-autosave.php:
|
14519 |
msgid "Renew album crypt"
|
14520 |
msgstr "Renouveler album crypte"
|
14521 |
|
14522 |
-
#: wppa-settings-autosave.php:
|
14523 |
msgid "Renew album encrcryption codes."
|
14524 |
msgstr "Renouveler codes encrcryption album."
|
14525 |
|
14526 |
-
#: wppa-settings-autosave.php:
|
14527 |
msgid "Renew photo crypt"
|
14528 |
msgstr "Renouveler photo crypte"
|
14529 |
|
14530 |
-
#: wppa-settings-autosave.php:
|
14531 |
#, fuzzy
|
14532 |
msgid "Renew photo encrcryption codes."
|
14533 |
msgstr "Renouveler les codes encrcryption photo."
|
14534 |
|
14535 |
-
#: wppa-settings-autosave.php:
|
14536 |
msgid "Create orietation sources"
|
14537 |
msgstr "Créer des sources d'orietation"
|
14538 |
|
14539 |
-
#: wppa-settings-autosave.php:
|
14540 |
msgid "Creates correctly oriented pseudo source file."
|
14541 |
msgstr "Créer le fichier de source de pseudo correctement orienté."
|
14542 |
|
14543 |
-
#: wppa-settings-autosave.php:
|
14544 |
msgid "Clearing and other irreverseable actions"
|
14545 |
msgstr "Clairière et autres actions irreverseable"
|
14546 |
|
14547 |
-
#: wppa-settings-autosave.php:
|
14548 |
msgid "Clear ratings"
|
14549 |
msgstr "Effacer les votes"
|
14550 |
|
14551 |
-
#: wppa-settings-autosave.php:
|
14552 |
msgid "Reset all ratings."
|
14553 |
msgstr "Remettre les évaluations à zéro"
|
14554 |
|
14555 |
-
#: wppa-settings-autosave.php:
|
14556 |
msgid "WARNING: If checked, this will clear all ratings in the system!"
|
14557 |
msgstr ""
|
14558 |
"AVERTISSEMENT: Si coché, cela effacera toutes les notations dans le système!"
|
14559 |
|
14560 |
-
#: wppa-settings-autosave.php:
|
14561 |
msgid "Clear viewcounts"
|
14562 |
msgstr "Clair nombres des vues"
|
14563 |
|
14564 |
-
#: wppa-settings-autosave.php:
|
14565 |
msgid "Reset all viewcounts."
|
14566 |
msgstr "Réinitialiser toutes les comptes de vue."
|
14567 |
|
14568 |
-
#: wppa-settings-autosave.php:
|
14569 |
msgid "WARNING: If checked, this will clear all viewcounts in the system!"
|
14570 |
msgstr ""
|
14571 |
"AVERTISSEMENT: Si coché, cela effacera tous les nombres de vues dans le "
|
14572 |
"système!"
|
14573 |
|
14574 |
-
#: wppa-settings-autosave.php:
|
14575 |
msgid "Reset IPTC"
|
14576 |
msgstr "Remise à zéro IPTC"
|
14577 |
|
14578 |
-
#: wppa-settings-autosave.php:
|
14579 |
msgid "Clear all IPTC data."
|
14580 |
msgstr "Effacer les données IPTC"
|
14581 |
|
14582 |
-
#: wppa-settings-autosave.php:
|
14583 |
msgid "WARNING: If checked, this will clear all IPTC data in the system!"
|
14584 |
msgstr ""
|
14585 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données IPTC dans le "
|
14586 |
"système!"
|
14587 |
|
14588 |
-
#: wppa-settings-autosave.php:
|
14589 |
msgid "Reset EXIF"
|
14590 |
msgstr "Remise à zéro EXIF"
|
14591 |
|
14592 |
-
#: wppa-settings-autosave.php:
|
14593 |
msgid "Clear all EXIF data."
|
14594 |
msgstr "Effacer les données EXIF"
|
14595 |
|
14596 |
-
#: wppa-settings-autosave.php:
|
14597 |
msgid "WARNING: If checked, this will clear all EXIF data in the system!"
|
14598 |
msgstr ""
|
14599 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données d’EXIF dans le "
|
14600 |
"système!"
|
14601 |
|
14602 |
-
#: wppa-settings-autosave.php:
|
14603 |
msgid "Apply Default Photoname"
|
14604 |
msgstr "Appliquer par défaut Photoname"
|
14605 |
|
14606 |
-
#: wppa-settings-autosave.php:
|
14607 |
#, fuzzy
|
14608 |
msgid "Apply Default photo name on all photos in the system."
|
14609 |
msgstr ""
|
14610 |
"Appliquer le nom de photo par défaut sur toutes les photos dans le système."
|
14611 |
|
14612 |
-
#: wppa-settings-autosave.php:
|
14613 |
msgid "Apply New Photodesc"
|
14614 |
msgstr "Appliquer nouvelle desc photo"
|
14615 |
|
14616 |
-
#: wppa-settings-autosave.php:
|
14617 |
msgid "Apply New photo description on all photos in the system."
|
14618 |
msgstr ""
|
14619 |
"Appliquer la nouvelle description de photo sur toutes les photos dans le "
|
14620 |
"système."
|
14621 |
|
14622 |
-
#: wppa-settings-autosave.php:
|
14623 |
msgid "Append to photodesc"
|
14624 |
msgstr "Annexer à photodesc"
|
14625 |
|
14626 |
-
#: wppa-settings-autosave.php:
|
14627 |
msgid "Append this text to all photo descriptions."
|
14628 |
msgstr "Ajouter ce texte à toutes les descriptions de photo."
|
14629 |
|
14630 |
-
#: wppa-settings-autosave.php:
|
14631 |
msgid "Remove from photodesc"
|
14632 |
msgstr "Retirer du photodescription"
|
14633 |
|
14634 |
-
#: wppa-settings-autosave.php:
|
14635 |
msgid "Remove this text from all photo descriptions."
|
14636 |
msgstr "Enlever ce texte de toutes les descriptions de photo."
|
14637 |
|
14638 |
-
#: wppa-settings-autosave.php:
|
14639 |
msgid "Remove empty albums"
|
14640 |
msgstr "Retirer les albums vides"
|
14641 |
|
14642 |
-
#: wppa-settings-autosave.php:
|
14643 |
#, fuzzy
|
14644 |
msgid "Removes albums that are not used."
|
14645 |
msgstr "Supprime des albums qui ne sont pas utilisés."
|
14646 |
|
14647 |
-
#: wppa-settings-autosave.php:
|
14648 |
msgid "Remove file-ext"
|
14649 |
msgstr "Supprimer l'extension de fichier"
|
14650 |
|
14651 |
-
#: wppa-settings-autosave.php:
|
14652 |
#, fuzzy
|
14653 |
msgid "Remove possible file extension from photo name."
|
14654 |
msgstr "Supprimer l’extension possible du nom de la photo."
|
14655 |
|
14656 |
-
#: wppa-settings-autosave.php:
|
14657 |
#, fuzzy
|
14658 |
msgid ""
|
14659 |
"This may be required for old photos, uploaded when the option in Table IX-D3 "
|
@@ -14662,24 +14652,24 @@ msgstr ""
|
|
14662 |
"Cela peut être requis pour les vieilles photos, téléchargées lorsque "
|
14663 |
"l’option de la Table IX-D3 n’était pas encore disponible/sélectionné."
|
14664 |
|
14665 |
-
#: wppa-settings-autosave.php:
|
14666 |
msgid "Re-add file-ext"
|
14667 |
msgstr "Rajouter le fichier-ext"
|
14668 |
|
14669 |
-
#: wppa-settings-autosave.php:
|
14670 |
#, fuzzy
|
14671 |
msgid "Revert the <i>Remove file-ext</i> action."
|
14672 |
msgstr "Rétablir l’action <i>Supprimer fichier-ext</i> ."
|
14673 |
|
14674 |
-
#: wppa-settings-autosave.php:
|
14675 |
msgid "All to lower"
|
14676 |
msgstr "Vers le bas"
|
14677 |
|
14678 |
-
#: wppa-settings-autosave.php:
|
14679 |
msgid "Convert all file-extensions to lowercase."
|
14680 |
msgstr "Convertir tous les fichiers-extensions en minuscules."
|
14681 |
|
14682 |
-
#: wppa-settings-autosave.php:
|
14683 |
msgid ""
|
14684 |
"Affects display files, thumbnail files, and saved extensions in database "
|
14685 |
"table. Leaves sourcefiles untouched"
|
@@ -14687,7 +14677,7 @@ msgstr ""
|
|
14687 |
"Affecte les fichiers d'affichage, des fichiers miniatures, et les extensions "
|
14688 |
"enregistrées dans la table de base de données. Feuilles SourceFiles intactes"
|
14689 |
|
14690 |
-
#: wppa-settings-autosave.php:
|
14691 |
msgid ""
|
14692 |
"If both upper and lowercase files exist, the file with the uppercase "
|
14693 |
"extension will be removed."
|
@@ -14695,34 +14685,34 @@ msgstr ""
|
|
14695 |
"Si les deux fichiers majuscules et minuscules existent, le fichier avec "
|
14696 |
"l'extension majuscule sera supprimé."
|
14697 |
|
14698 |
-
#: wppa-settings-autosave.php:
|
14699 |
msgid "Watermark all"
|
14700 |
msgstr "Appliquer le filigrane à toutes"
|
14701 |
|
14702 |
-
#: wppa-settings-autosave.php:
|
14703 |
msgid "Apply watermark according to current settings to all photos."
|
14704 |
msgstr ""
|
14705 |
"Appliquer un filigrane en fonction des paramètres actuels à toutes les "
|
14706 |
"photos."
|
14707 |
|
14708 |
-
#: wppa-settings-autosave.php:
|
14709 |
msgid "See Table IX_F for the current watermark settings"
|
14710 |
msgstr "Voir Table IX_F pour les paramètres actuels de filigrane"
|
14711 |
|
14712 |
-
#: wppa-settings-autosave.php:
|
14713 |
msgid "Create all autopages"
|
14714 |
msgstr "Créer toutes les auto pages"
|
14715 |
|
14716 |
-
#: wppa-settings-autosave.php:
|
14717 |
msgid "Create all the pages to display slides individually."
|
14718 |
msgstr ""
|
14719 |
"Créer toutes les pages pour afficher des diapositives individuellement."
|
14720 |
|
14721 |
-
#: wppa-settings-autosave.php:
|
14722 |
msgid "See also Table IV-A10."
|
14723 |
msgstr "Voir aussi le Table IV-A10."
|
14724 |
|
14725 |
-
#: wppa-settings-autosave.php:
|
14726 |
msgid ""
|
14727 |
"Make sure you have a custom menu and the \"Automatically add new top-level "
|
14728 |
"pages to this menu\" box UNticked!!"
|
@@ -14730,25 +14720,25 @@ msgstr ""
|
|
14730 |
"Assurez-vous que vous disposez d’un menu personnalisé et la case « Ajouter "
|
14731 |
"automatiquement les nouvelles pages de niveau supérieur à ce menu » DÉcoché!!"
|
14732 |
|
14733 |
-
#: wppa-settings-autosave.php:
|
14734 |
msgid "Delete all autopages"
|
14735 |
msgstr "Effacer toutes les pages auto"
|
14736 |
|
14737 |
-
#: wppa-settings-autosave.php:
|
14738 |
msgid "Delete all the pages to display slides individually."
|
14739 |
msgstr ""
|
14740 |
"Supprimer toutes les pages pour afficher des diapositives individuellement."
|
14741 |
|
14742 |
-
#: wppa-settings-autosave.php:
|
14743 |
msgid "Leading zeroes"
|
14744 |
msgstr "Zéro non significatif"
|
14745 |
|
14746 |
-
#: wppa-settings-autosave.php:
|
14747 |
#, fuzzy
|
14748 |
msgid "If photoname numeric, add leading zeros"
|
14749 |
msgstr "Si photoname numérique, ajouter des zéros"
|
14750 |
|
14751 |
-
#: wppa-settings-autosave.php:
|
14752 |
msgid ""
|
14753 |
"You can extend the name with leading zeros, so alphabetic sort becomes equal "
|
14754 |
"to numeric sort order."
|
@@ -14756,248 +14746,248 @@ msgstr ""
|
|
14756 |
"Vous pouvez étendre le nom par des zéros, donc tri alphabétique devient égal "
|
14757 |
"à l'ordre de tri numérique."
|
14758 |
|
14759 |
-
#: wppa-settings-autosave.php:
|
14760 |
msgid "Total chars"
|
14761 |
msgstr "Total caractères"
|
14762 |
|
14763 |
-
#: wppa-settings-autosave.php:
|
14764 |
msgid "Add GPX tag"
|
14765 |
msgstr "Ajouter tag GPX"
|
14766 |
|
14767 |
-
#: wppa-settings-autosave.php:
|
14768 |
msgid "Make sure photos with gpx data have a Gpx tag"
|
14769 |
msgstr "S’assurer que les photos avec des données gpx ont une balise de Gpx"
|
14770 |
|
14771 |
-
#: wppa-settings-autosave.php:
|
14772 |
#, fuzzy
|
14773 |
msgid "Add HD tag"
|
14774 |
msgstr "Ajouter un tag HD"
|
14775 |
|
14776 |
-
#: wppa-settings-autosave.php:
|
14777 |
#, fuzzy
|
14778 |
msgid "Make sure photos >= 1920 x 1080 have a HD tag"
|
14779 |
msgstr "Faire des photos sûrs > = 1920 x 1080 ont une balise HD"
|
14780 |
|
14781 |
-
#: wppa-settings-autosave.php:
|
14782 |
msgid "Optimize files"
|
14783 |
msgstr "Optimiser les fichiers"
|
14784 |
|
14785 |
-
#: wppa-settings-autosave.php:
|
14786 |
#, fuzzy
|
14787 |
msgid "Optimize with EWWW image optimizer"
|
14788 |
msgstr "Optimiser avec optimiseur image EWWW"
|
14789 |
|
14790 |
-
#: wppa-settings-autosave.php:
|
14791 |
msgid "Edit tag"
|
14792 |
msgstr "Modifier tag"
|
14793 |
|
14794 |
-
#: wppa-settings-autosave.php:
|
14795 |
msgid "Globally change a tagname."
|
14796 |
msgstr "Changer un tagname dans toute la système.."
|
14797 |
|
14798 |
-
#: wppa-settings-autosave.php:
|
14799 |
msgid "-select a tag-"
|
14800 |
msgstr "- Choisir un tag -"
|
14801 |
|
14802 |
-
#: wppa-settings-autosave.php:
|
14803 |
msgid "Tag:"
|
14804 |
msgstr "Tag:"
|
14805 |
|
14806 |
-
#: wppa-settings-autosave.php:
|
14807 |
msgid "Change to:"
|
14808 |
msgstr "Changer pour:"
|
14809 |
|
14810 |
-
#: wppa-settings-autosave.php:
|
14811 |
#, fuzzy
|
14812 |
msgid "Synchronize Cloudinary"
|
14813 |
msgstr "Synchroniser les Cloudinary"
|
14814 |
|
14815 |
-
#: wppa-settings-autosave.php:
|
14816 |
#, fuzzy
|
14817 |
msgid "Removes/adds images in the cloud."
|
14818 |
msgstr "Supprime/ajoute des images dans le nuage."
|
14819 |
|
14820 |
-
#: wppa-settings-autosave.php:
|
14821 |
#, fuzzy
|
14822 |
msgid "Removes old images and verifies/adds new images to Cloudinary."
|
14823 |
msgstr ""
|
14824 |
"Supprime les anciennes images et vérifie/ajoute des nouvelles images à "
|
14825 |
"Cloudinary."
|
14826 |
|
14827 |
-
#: wppa-settings-autosave.php:
|
14828 |
msgid "See Table IX-K4.7 for the configured lifetime."
|
14829 |
msgstr "Voir Table IX-K4.7 pour la durée de vie configurée."
|
14830 |
|
14831 |
-
#: wppa-settings-autosave.php:
|
14832 |
msgid "Fix tags"
|
14833 |
msgstr "Réparer des balises"
|
14834 |
|
14835 |
-
#: wppa-settings-autosave.php:
|
14836 |
#, fuzzy
|
14837 |
msgid "Make sure photo tags format is uptodate"
|
14838 |
msgstr "Vérifiez que format de balises de photo est uptodate"
|
14839 |
|
14840 |
-
#: wppa-settings-autosave.php:
|
14841 |
msgid "Fixes tags to be conform current database rules."
|
14842 |
msgstr ""
|
14843 |
"Fixe les balises pour être conforme à des règles de base de données actuelle."
|
14844 |
|
14845 |
-
#: wppa-settings-autosave.php:
|
14846 |
msgid "Fix cats"
|
14847 |
msgstr "Réparer des catégories"
|
14848 |
|
14849 |
-
#: wppa-settings-autosave.php:
|
14850 |
msgid "Make sure album cats format is uptodate"
|
14851 |
msgstr "Assurez-vous que le format de categories album est uptodate"
|
14852 |
|
14853 |
-
#: wppa-settings-autosave.php:
|
14854 |
msgid "Fixes cats to be conform current database rules."
|
14855 |
msgstr ""
|
14856 |
"Fixe les catégories pour être conforme à des règles de base de données "
|
14857 |
"actuelle."
|
14858 |
|
14859 |
-
#: wppa-settings-autosave.php:
|
14860 |
#, fuzzy
|
14861 |
msgid "Set owner to name"
|
14862 |
msgstr "Propriétaire de nom"
|
14863 |
|
14864 |
-
#: wppa-settings-autosave.php:
|
14865 |
#, fuzzy
|
14866 |
msgid "If photoname equals user display name, set him owner."
|
14867 |
msgstr ""
|
14868 |
"Si photoname est égal à nom d’affichage utilisateur, définissez lui "
|
14869 |
"propriétaire."
|
14870 |
|
14871 |
-
#: wppa-settings-autosave.php:
|
14872 |
msgid "Move all photos"
|
14873 |
msgstr "Déplacer toutes les photos"
|
14874 |
|
14875 |
-
#: wppa-settings-autosave.php:
|
14876 |
#, fuzzy
|
14877 |
msgid "Move all photos from one album to another album."
|
14878 |
msgstr "Déplacez toutes les photos d’un album vers un autre album."
|
14879 |
|
14880 |
-
#: wppa-settings-autosave.php:
|
14881 |
msgid "From"
|
14882 |
msgstr "De"
|
14883 |
|
14884 |
-
#: wppa-settings-autosave.php:
|
14885 |
msgid "Move from album number"
|
14886 |
msgstr "Déplacer du numéro de l'album"
|
14887 |
|
14888 |
-
#: wppa-settings-autosave.php:
|
14889 |
msgid "To"
|
14890 |
msgstr "À"
|
14891 |
|
14892 |
-
#: wppa-settings-autosave.php:
|
14893 |
msgid "Move to album number"
|
14894 |
msgstr "Déplacer vers le numéro de l'album"
|
14895 |
|
14896 |
-
#: wppa-settings-autosave.php:
|
14897 |
msgid "Move from album"
|
14898 |
msgstr "Déplacer de l'album"
|
14899 |
|
14900 |
-
#: wppa-settings-autosave.php:
|
14901 |
msgid "Move to album"
|
14902 |
msgstr "Déplacer vers l'album"
|
14903 |
|
14904 |
-
#: wppa-settings-autosave.php:
|
14905 |
msgid "Test proc"
|
14906 |
msgstr "proc Test"
|
14907 |
|
14908 |
-
#: wppa-settings-autosave.php:
|
14909 |
msgid "For OpaJaap only"
|
14910 |
msgstr "Pour OpaJaap seulement"
|
14911 |
|
14912 |
-
#: wppa-settings-autosave.php:
|
14913 |
msgid "Listings"
|
14914 |
msgstr "Listes"
|
14915 |
|
14916 |
-
#: wppa-settings-autosave.php:
|
14917 |
msgid "List Logfile"
|
14918 |
msgstr "Lister le journal (log)"
|
14919 |
|
14920 |
-
#: wppa-settings-autosave.php:
|
14921 |
#, fuzzy
|
14922 |
msgid "Show the content of wppa+ (error) log."
|
14923 |
msgstr "Afficher le contenu du journal wppa + (erreur)."
|
14924 |
|
14925 |
-
#: wppa-settings-autosave.php:
|
14926 |
msgid "Purge logfile"
|
14927 |
msgstr "Purger le journal (log)"
|
14928 |
|
14929 |
-
#: wppa-settings-autosave.php:
|
14930 |
msgid "List Ratings"
|
14931 |
msgstr "Lister les votes"
|
14932 |
|
14933 |
-
#: wppa-settings-autosave.php:
|
14934 |
msgid "Show the most recent ratings."
|
14935 |
msgstr "Montrer les votes récents."
|
14936 |
|
14937 |
-
#: wppa-settings-autosave.php:
|
14938 |
msgid "List Index"
|
14939 |
msgstr "Liste d'index"
|
14940 |
|
14941 |
-
#: wppa-settings-autosave.php:
|
14942 |
#, fuzzy
|
14943 |
msgid "Show the content if the index table."
|
14944 |
msgstr "Montrer le contenu si la table d’index."
|
14945 |
|
14946 |
-
#: wppa-settings-autosave.php:
|
14947 |
msgid "Start at text:"
|
14948 |
msgstr "Commencer à:"
|
14949 |
|
14950 |
-
#: wppa-settings-autosave.php:
|
14951 |
msgid "List active sessions"
|
14952 |
msgstr "Lister les sessions actives"
|
14953 |
|
14954 |
-
#: wppa-settings-autosave.php:
|
14955 |
#, fuzzy
|
14956 |
msgid "Show the content of the sessions table."
|
14957 |
msgstr "Afficher le contenu de la table de sessions."
|
14958 |
|
14959 |
-
#: wppa-settings-autosave.php:
|
14960 |
msgid "List comments"
|
14961 |
msgstr "Liste des commentaires"
|
14962 |
|
14963 |
-
#: wppa-settings-autosave.php:
|
14964 |
#, fuzzy
|
14965 |
msgid "Show the content of the comments table."
|
14966 |
msgstr "Afficher le contenu de la table comments."
|
14967 |
|
14968 |
-
#: wppa-settings-autosave.php:
|
14969 |
msgid "Order by:"
|
14970 |
msgstr "Trier par:"
|
14971 |
|
14972 |
-
#: wppa-settings-autosave.php:
|
14973 |
msgid "Table IX:"
|
14974 |
msgstr "Table IX:"
|
14975 |
|
14976 |
-
#: wppa-settings-autosave.php:
|
14977 |
msgid "Miscellaneous:"
|
14978 |
msgstr "Divers:"
|
14979 |
|
14980 |
-
#: wppa-settings-autosave.php:
|
14981 |
msgid "This table lists all settings that do not fit into an other table"
|
14982 |
msgstr ""
|
14983 |
"Ce table répertorie tous les paramètres qui ne rentrent pas dans une autre "
|
14984 |
"table"
|
14985 |
|
14986 |
-
#: wppa-settings-autosave.php:
|
14987 |
#, fuzzy
|
14988 |
msgid "Internal engine related settings"
|
14989 |
msgstr "Moteur interne les paramètres"
|
14990 |
|
14991 |
-
#: wppa-settings-autosave.php:
|
14992 |
msgid "WPPA+ Filter priority"
|
14993 |
msgstr "Priorité WPPA+ filtre"
|
14994 |
|
14995 |
-
#: wppa-settings-autosave.php:
|
14996 |
#, fuzzy
|
14997 |
msgid "Sets the priority of the wppa+ content filter."
|
14998 |
msgstr "Définit la priorité de la wppa + content filter."
|
14999 |
|
15000 |
-
#: wppa-settings-autosave.php:
|
15001 |
#, fuzzy
|
15002 |
msgid ""
|
15003 |
"If you encounter conflicts with the theme or other plugins, increasing this "
|
@@ -15006,67 +14996,67 @@ msgstr ""
|
|
15006 |
"Si vous rencontrez des conflits avec le thème ou les autres plugins, "
|
15007 |
"augmenter cette valeur parfois aide. Utiliser avec précaution !"
|
15008 |
|
15009 |
-
#: wppa-settings-autosave.php:
|
15010 |
msgid "Do_shortcode priority"
|
15011 |
msgstr "Priorité de do_shortcode"
|
15012 |
|
15013 |
-
#: wppa-settings-autosave.php:
|
15014 |
#, fuzzy
|
15015 |
msgid "Sets the priority of the do_shortcode() content filter."
|
15016 |
msgstr "Définit la priorité du filtre contenu do_shortcode()."
|
15017 |
|
15018 |
-
#: wppa-settings-autosave.php:
|
15019 |
msgid "WPPA shortcode at Filter priority"
|
15020 |
msgstr "WPPA shortcode à la priorité du filtre"
|
15021 |
|
15022 |
-
#: wppa-settings-autosave.php:
|
15023 |
msgid "Execute shortcode expansion on filter priority in posts and pages."
|
15024 |
msgstr ""
|
15025 |
"Exécuter expansion shortcode sur la priorité de filtre dans les messages et "
|
15026 |
"les pages."
|
15027 |
|
15028 |
-
#: wppa-settings-autosave.php:
|
15029 |
#, fuzzy
|
15030 |
msgid "Use to fix certain layout problems"
|
15031 |
msgstr "Utiliser pour corriger certains problèmes de mise en page"
|
15032 |
|
15033 |
-
#: wppa-settings-autosave.php:
|
15034 |
msgid "WPPA shortcode at Filter priority widget"
|
15035 |
msgstr "WPPA shortcode à la priorité du filtre en widget"
|
15036 |
|
15037 |
-
#: wppa-settings-autosave.php:
|
15038 |
msgid "Execute shortcode expansion on filter priority in widgets."
|
15039 |
msgstr ""
|
15040 |
"Exécuter expansion shortcode sur la priorité de filtre dans les widgets."
|
15041 |
|
15042 |
-
#: wppa-settings-autosave.php:
|
15043 |
msgid "JPG image quality"
|
15044 |
msgstr "Qualité d'image JPG"
|
15045 |
|
15046 |
-
#: wppa-settings-autosave.php:
|
15047 |
#, fuzzy
|
15048 |
msgid "The jpg quality when photos are downsized"
|
15049 |
msgstr "La qualité de jpg lorsque les photos sont réduits"
|
15050 |
|
15051 |
-
#: wppa-settings-autosave.php:
|
15052 |
#, fuzzy
|
15053 |
msgid "The higher the number the better the quality but the larger the file"
|
15054 |
msgstr "Plus le nombre le mieux la qualité, mais plus le fichier"
|
15055 |
|
15056 |
-
#: wppa-settings-autosave.php:
|
15057 |
#, fuzzy
|
15058 |
msgid "Possible values 20..100"
|
15059 |
msgstr "Valeurs possibles 20..100"
|
15060 |
|
15061 |
-
#: wppa-settings-autosave.php:
|
15062 |
msgid "Allow WPPA+ Debugging"
|
15063 |
msgstr "Permettre le WPPA+ débogage"
|
15064 |
|
15065 |
-
#: wppa-settings-autosave.php:
|
15066 |
msgid "Allow the use of &debug=.. in urls to this site."
|
15067 |
msgstr "Permettre l’utilisation de &debug=... dans les URL de ce site."
|
15068 |
|
15069 |
-
#: wppa-settings-autosave.php:
|
15070 |
#, fuzzy
|
15071 |
msgid ""
|
15072 |
"If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
|
@@ -15077,15 +15067,15 @@ msgstr ""
|
|
15077 |
"une url de ce site va générer l’affichage de la spéciale WPPA + diagnostics, "
|
15078 |
"ainsi que les avertissements php</int>"
|
15079 |
|
15080 |
-
#: wppa-settings-autosave.php:
|
15081 |
msgid "Auto continue"
|
15082 |
msgstr "Auto continuer"
|
15083 |
|
15084 |
-
#: wppa-settings-autosave.php:
|
15085 |
msgid "Continue automatic after time out"
|
15086 |
msgstr "Continuer automatique après délai"
|
15087 |
|
15088 |
-
#: wppa-settings-autosave.php:
|
15089 |
msgid ""
|
15090 |
"If checked, an attempt will be made to restart an admin process when the "
|
15091 |
"time is out."
|
@@ -15093,12 +15083,12 @@ msgstr ""
|
|
15093 |
"Si cochée, une tentative se fera pour relancer un processus d’admin quand le "
|
15094 |
"temps est sorti."
|
15095 |
|
15096 |
-
#: wppa-settings-autosave.php:
|
15097 |
#, fuzzy
|
15098 |
msgid "Set max execution time here."
|
15099 |
msgstr "Set max temps d’exécution ici."
|
15100 |
|
15101 |
-
#: wppa-settings-autosave.php:
|
15102 |
#, fuzzy
|
15103 |
msgid ""
|
15104 |
"If your php config does not properly set the max execution time, you can set "
|
@@ -15107,32 +15097,32 @@ msgstr ""
|
|
15107 |
"Si votre configuration de php ne définit pas correctement le temps maximum "
|
15108 |
"d’exécution, vous pouvez définir ici. Secondes, 0 moyen ne change pas."
|
15109 |
|
15110 |
-
#: wppa-settings-autosave.php:
|
15111 |
msgid "A safe value is 45 in most cases"
|
15112 |
msgstr "Une valeur sûre est de 45 le plus souvent"
|
15113 |
|
15114 |
-
#: wppa-settings-autosave.php:
|
15115 |
#, fuzzy, php-format
|
15116 |
msgid "The PHP setting max_execution_time is set to %s."
|
15117 |
msgstr "Le paramètre de PHP max_execution_time est définie sur %s."
|
15118 |
|
15119 |
-
#: wppa-settings-autosave.php:
|
15120 |
msgid "Feed use thumb"
|
15121 |
msgstr "Feed utilisez les miniatures"
|
15122 |
|
15123 |
-
#: wppa-settings-autosave.php:
|
15124 |
msgid "Feeds use thumbnail pictures always."
|
15125 |
msgstr "RSS utilisent toujours les images miniatures."
|
15126 |
|
15127 |
-
#: wppa-settings-autosave.php:
|
15128 |
msgid "Enable <i>in-line</i> settings"
|
15129 |
msgstr "Activez les paramètres <i>en ligne</i>"
|
15130 |
|
15131 |
-
#: wppa-settings-autosave.php:
|
15132 |
msgid "Activates shortcode [wppa_set][/wppa_set]."
|
15133 |
msgstr "Active le shortcode [wppa_set][/ wppa_set]."
|
15134 |
|
15135 |
-
#: wppa-settings-autosave.php:
|
15136 |
#, fuzzy
|
15137 |
msgid ""
|
15138 |
"Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
|
@@ -15140,7 +15130,7 @@ msgstr ""
|
|
15140 |
"Syntaxe : [nom de wppa_set = « n’importe quel réglage de wppa » valeur = "
|
15141 |
"« nouvelle valeur »] [/ wppa_set]"
|
15142 |
|
15143 |
-
#: wppa-settings-autosave.php:
|
15144 |
msgid ""
|
15145 |
"Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
|
15146 |
"sets the thumbnail type to vertical masonry style"
|
@@ -15148,51 +15138,63 @@ msgstr ""
|
|
15148 |
"Exemple: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"] [/wppa_set] "
|
15149 |
"définit le type miniature au style de maçonnerie verticale"
|
15150 |
|
15151 |
-
#: wppa-settings-autosave.php:
|
15152 |
msgid "Do not forget to reset with [wppa_set][/wppa_set]"
|
15153 |
msgstr "N’oubliez pas de réinitialiser avec [wppa_set][/wppa_set]"
|
15154 |
|
15155 |
-
#: wppa-settings-autosave.php:
|
15156 |
#, fuzzy
|
15157 |
msgid "Use with great care! There is no check on validity of values!"
|
15158 |
msgstr ""
|
15159 |
"Utiliser avec précaution ! Il n’y a aucune vérification sur la validité des "
|
15160 |
"valeurs !"
|
15161 |
|
15162 |
-
#: wppa-settings-autosave.php:
|
15163 |
#, fuzzy
|
15164 |
msgid "Runtime modifyable settings"
|
15165 |
msgstr "Paramètres de modifyable d’exécution"
|
15166 |
|
15167 |
-
#: wppa-settings-autosave.php:
|
15168 |
#, fuzzy
|
15169 |
msgid "The setting slugs that may be altered using [wppa_set] shortcode."
|
15170 |
msgstr ""
|
15171 |
"Les limaces de réglage peuvent être modifiés à l’aide de shortcode "
|
15172 |
"[wppa_set]."
|
15173 |
|
15174 |
-
#: wppa-settings-autosave.php:
|
15175 |
msgid "Log Cron"
|
15176 |
msgstr "Log Cron"
|
15177 |
|
15178 |
-
#: wppa-settings-autosave.php:
|
15179 |
#, fuzzy
|
15180 |
msgid "Keep track of cron activity in the wppa logfile."
|
15181 |
msgstr "Garder une trace de l’activité cron dans le fichier journal wppa."
|
15182 |
|
15183 |
-
#: wppa-settings-autosave.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15184 |
msgid "WPPA+ Admin related miscellaneous settings"
|
15185 |
msgstr "Paramètres diverse liés à WPPA+ Admin"
|
15186 |
|
15187 |
-
#: wppa-settings-autosave.php:
|
15188 |
msgid "Allow HTML"
|
15189 |
msgstr "Autoriser HTML"
|
15190 |
|
15191 |
-
#: wppa-settings-autosave.php:
|
15192 |
msgid "Allow HTML in album and photo descriptions."
|
15193 |
msgstr "Permettre le HTML dans les descriptions d’album et photo."
|
15194 |
|
15195 |
-
#: wppa-settings-autosave.php:
|
15196 |
#, fuzzy
|
15197 |
msgid ""
|
15198 |
"If checked: html is allowed. WARNING: No checks on syntax, it is your own "
|
@@ -15202,23 +15204,23 @@ msgstr ""
|
|
15202 |
"la syntaxe, c’est votre propre responsabilité de fermer les balises "
|
15203 |
"correctement !"
|
15204 |
|
15205 |
-
#: wppa-settings-autosave.php:
|
15206 |
msgid "Allow HTML custom"
|
15207 |
msgstr "Autoriser HTML personnalisé"
|
15208 |
|
15209 |
-
#: wppa-settings-autosave.php:
|
15210 |
msgid "Allow HTML in custom photo datafields."
|
15211 |
msgstr "Permettre HTML dans les photo datafields personnalisé."
|
15212 |
|
15213 |
-
#: wppa-settings-autosave.php:
|
15214 |
msgid "Check tag balance"
|
15215 |
msgstr "Vérifier balance de balises"
|
15216 |
|
15217 |
-
#: wppa-settings-autosave.php:
|
15218 |
msgid "Check if the HTML tags are properly closed: \"balanced\"."
|
15219 |
msgstr "Vérifier si les balises HTML sont bien fermés: « équilibré »."
|
15220 |
|
15221 |
-
#: wppa-settings-autosave.php:
|
15222 |
#, fuzzy
|
15223 |
msgid ""
|
15224 |
"If the HTML tags in an album or a photo description are not in balance, the "
|
@@ -15227,49 +15229,49 @@ msgstr ""
|
|
15227 |
"Si les balises HTML dans un album ou une description de la photo ne sont pas "
|
15228 |
"en équilibre, la description n’est pas mis à jour, un errormessage s’affiche"
|
15229 |
|
15230 |
-
#: wppa-settings-autosave.php:
|
15231 |
msgid "Use WP editor"
|
15232 |
msgstr "Utiliser l'éditeur de WordPress"
|
15233 |
|
15234 |
-
#: wppa-settings-autosave.php:
|
15235 |
#, fuzzy
|
15236 |
msgid "Use the wp editor for multiline text fields."
|
15237 |
msgstr "Utilisez l’éditeur de wp pour les champs de texte multiligne."
|
15238 |
|
15239 |
-
#: wppa-settings-autosave.php:
|
15240 |
msgid "Album sel hierarchic"
|
15241 |
msgstr "Album sel hiérarchique"
|
15242 |
|
15243 |
-
#: wppa-settings-autosave.php:
|
15244 |
#, fuzzy
|
15245 |
msgid "Show albums with (grand)parents in selection lists."
|
15246 |
msgstr ""
|
15247 |
"Montrent les albums avec les parents (grand) dans les listes de sélection."
|
15248 |
|
15249 |
-
#: wppa-settings-autosave.php:
|
15250 |
msgid "Page sel hierarchic"
|
15251 |
msgstr "Page sel hiérarchique"
|
15252 |
|
15253 |
-
#: wppa-settings-autosave.php:
|
15254 |
#, fuzzy
|
15255 |
msgid "Show pages with (grand)parents in selection lists."
|
15256 |
msgstr ""
|
15257 |
"Afficher des pages avec les parents (grand) dans les listes de sélection."
|
15258 |
|
15259 |
-
#: wppa-settings-autosave.php:
|
15260 |
msgid "Album admin page size"
|
15261 |
msgstr "Album admin Taille de la page"
|
15262 |
|
15263 |
-
#: wppa-settings-autosave.php:
|
15264 |
msgid "The number of albums per page on the Edit Album admin page."
|
15265 |
msgstr ""
|
15266 |
"Le nombre d'albums par page sur la page d'administration Modifier l'album."
|
15267 |
|
15268 |
-
#: wppa-settings-autosave.php:
|
15269 |
msgid "Photo admin page size"
|
15270 |
msgstr "Taille de la page admin photo"
|
15271 |
|
15272 |
-
#: wppa-settings-autosave.php:
|
15273 |
#, fuzzy
|
15274 |
msgid ""
|
15275 |
"The number of photos per page on the <br/>Edit Album -> Manage photos and "
|
@@ -15278,15 +15280,15 @@ msgstr ""
|
|
15278 |
"Le nombre de photos par page sur le<br>Modifier Album-> photos gérer et "
|
15279 |
"retoucher des Photos admin pages."
|
15280 |
|
15281 |
-
#: wppa-settings-autosave.php:
|
15282 |
msgid "Photo admin max albums"
|
15283 |
msgstr "Photo administration max albums"
|
15284 |
|
15285 |
-
#: wppa-settings-autosave.php:
|
15286 |
msgid "Max albums to show in album selectionbox."
|
15287 |
msgstr "Maximum d'albums à afficher dans l'album selectionbox."
|
15288 |
|
15289 |
-
#: wppa-settings-autosave.php:
|
15290 |
msgid ""
|
15291 |
"If there are more albums in the system, display an input box asking for "
|
15292 |
"album id#"
|
@@ -15294,124 +15296,124 @@ msgstr ""
|
|
15294 |
"S'il y a plus d'albums dans le système, afficher une boîte d'entrée "
|
15295 |
"demandant l'album id #"
|
15296 |
|
15297 |
-
#: wppa-settings-autosave.php:
|
15298 |
msgid "Comment admin page size"
|
15299 |
msgstr "Taille de la page d'admin des commentaires"
|
15300 |
|
15301 |
-
#: wppa-settings-autosave.php:
|
15302 |
#, fuzzy
|
15303 |
msgid "The number of comments per page on the Comments admin pages."
|
15304 |
msgstr ""
|
15305 |
"Le nombre de commentaires par page sur les pages admin de commentaires."
|
15306 |
|
15307 |
-
#: wppa-settings-autosave.php:
|
15308 |
msgid "Geo info edit"
|
15309 |
msgstr "Modifier géo info"
|
15310 |
|
15311 |
-
#: wppa-settings-autosave.php:
|
15312 |
#, fuzzy
|
15313 |
msgid "Lattitude and longitude may be edited in photo admin."
|
15314 |
msgstr "Lattitude et longitude peuvent être édités dans l’admin de photo."
|
15315 |
|
15316 |
-
#: wppa-settings-autosave.php:
|
15317 |
msgid "Admin bar menu admin"
|
15318 |
msgstr "Admin bar menu admin"
|
15319 |
|
15320 |
-
#: wppa-settings-autosave.php:
|
15321 |
#, fuzzy
|
15322 |
msgid "Show menu on admin bar on admin pages."
|
15323 |
msgstr "Afficher menu sur la barre admin admin pages."
|
15324 |
|
15325 |
-
#: wppa-settings-autosave.php:
|
15326 |
msgid "Admin bar menu frontend"
|
15327 |
msgstr "Admin bar menu frontend"
|
15328 |
|
15329 |
-
#: wppa-settings-autosave.php:
|
15330 |
#, fuzzy
|
15331 |
msgid "Show menu on admin bar on frontend pages."
|
15332 |
msgstr "Afficher menu sur la barre admin sur pages frontend."
|
15333 |
|
15334 |
-
#: wppa-settings-autosave.php:
|
15335 |
msgid "Add shortcode to posts"
|
15336 |
msgstr "Ajouter shortcode à messages"
|
15337 |
|
15338 |
-
#: wppa-settings-autosave.php:
|
15339 |
msgid "Add a shortcode to the end of all posts."
|
15340 |
msgstr "Ajoutez un shortcode à la fin de tous les postes."
|
15341 |
|
15342 |
-
#: wppa-settings-autosave.php:
|
15343 |
msgid "Shortcode to add"
|
15344 |
msgstr "Shortcode à ajouter"
|
15345 |
|
15346 |
-
#: wppa-settings-autosave.php:
|
15347 |
#, fuzzy
|
15348 |
msgid "The shortcode to be added to the posts."
|
15349 |
msgstr "Le shortcode à ajouter aux poteaux."
|
15350 |
|
15351 |
-
#: wppa-settings-autosave.php:
|
15352 |
#, fuzzy
|
15353 |
msgid "Import page prieviews"
|
15354 |
msgstr "Importer des prieviews de page"
|
15355 |
|
15356 |
-
#: wppa-settings-autosave.php:
|
15357 |
#, fuzzy
|
15358 |
msgid "Show thumbnail previews in import admin page."
|
15359 |
msgstr "Afficher les aperçus miniatures dans importation admin page."
|
15360 |
|
15361 |
-
#: wppa-settings-autosave.php:
|
15362 |
msgid "Upload audiostub"
|
15363 |
msgstr "Charger audiostub"
|
15364 |
|
15365 |
-
#: wppa-settings-autosave.php:
|
15366 |
#, fuzzy
|
15367 |
msgid "Upload a new audio stub file"
|
15368 |
msgstr "Télécharger un nouveau fichier audio stub"
|
15369 |
|
15370 |
-
#: wppa-settings-autosave.php:
|
15371 |
msgid "Upload audio stub image"
|
15372 |
msgstr "Charger image audiostub"
|
15373 |
|
15374 |
-
#: wppa-settings-autosave.php:
|
15375 |
msgid "Confirm create"
|
15376 |
msgstr "Confirmer création"
|
15377 |
|
15378 |
-
#: wppa-settings-autosave.php:
|
15379 |
msgid "Display confirmation dialog before creating album."
|
15380 |
msgstr "Afficher boîte de dialogue de confirmation avant de créer l’album."
|
15381 |
|
15382 |
-
#: wppa-settings-autosave.php:
|
15383 |
#, fuzzy
|
15384 |
msgid "Import source root"
|
15385 |
msgstr "Description (optionnel)"
|
15386 |
|
15387 |
-
#: wppa-settings-autosave.php:
|
15388 |
#, fuzzy
|
15389 |
msgid "Specify the highest level in the filesystem where to import from"
|
15390 |
msgstr ""
|
15391 |
"Spécifier le niveau le plus élevé dans le système de fichiers où les "
|
15392 |
"importer à partir"
|
15393 |
|
15394 |
-
#: wppa-settings-autosave.php:
|
15395 |
msgid "Allow import from WPPA+ source folders"
|
15396 |
msgstr "Autoriser les importations de WPPA+ dossiers sources"
|
15397 |
|
15398 |
-
#: wppa-settings-autosave.php:
|
15399 |
#, fuzzy
|
15400 |
msgid "Only switch this on if you know what you are doing!"
|
15401 |
msgstr "Ne mettez en cela marche si vous savez ce que vous faites !"
|
15402 |
|
15403 |
-
#: wppa-settings-autosave.php:
|
15404 |
#, fuzzy
|
15405 |
msgid "Enable shortcode generator"
|
15406 |
msgstr "Activez le générateur de shortcode"
|
15407 |
|
15408 |
-
#: wppa-settings-autosave.php:
|
15409 |
#, fuzzy
|
15410 |
msgid "Show album icon above page/post edit window"
|
15411 |
msgstr ""
|
15412 |
"Afficher l’icône de l’album plus haut de la fenêtre d’édition de page/post"
|
15413 |
|
15414 |
-
#: wppa-settings-autosave.php:
|
15415 |
#, fuzzy
|
15416 |
msgid ""
|
15417 |
"Administrators and wppa super users will always have the shortcode generator "
|
@@ -15420,20 +15422,20 @@ msgstr ""
|
|
15420 |
"Administrateurs et wppa super utilisateurs auront toujours le générateur de "
|
15421 |
"shortcode disponible."
|
15422 |
|
15423 |
-
#: wppa-settings-autosave.php:
|
15424 |
#, fuzzy
|
15425 |
msgid "SEO related settings"
|
15426 |
msgstr "paramètres connexes"
|
15427 |
|
15428 |
-
#: wppa-settings-autosave.php:
|
15429 |
msgid "Meta on page"
|
15430 |
msgstr "Meta sur page"
|
15431 |
|
15432 |
-
#: wppa-settings-autosave.php:
|
15433 |
msgid "Meta tags for photos on the page."
|
15434 |
msgstr "Meta tags pour les photos sur la page."
|
15435 |
|
15436 |
-
#: wppa-settings-autosave.php:
|
15437 |
#, fuzzy
|
15438 |
msgid ""
|
15439 |
"If checked, the header of the page will contain metatags that refer to "
|
@@ -15442,16 +15444,16 @@ msgstr ""
|
|
15442 |
"S’il est activé, l’en-tête de la page contiendra les metatags qui font "
|
15443 |
"référence aux photos recommandés sur la page dans le contexte de la page."
|
15444 |
|
15445 |
-
#: wppa-settings-autosave.php:
|
15446 |
msgid "Meta all"
|
15447 |
msgstr "Tous les meta"
|
15448 |
|
15449 |
-
#: wppa-settings-autosave.php:
|
15450 |
#, fuzzy
|
15451 |
msgid "Meta tags for all featured photos."
|
15452 |
msgstr "Meta tags pour toutes les photos de recommandés."
|
15453 |
|
15454 |
-
#: wppa-settings-autosave.php:
|
15455 |
msgid ""
|
15456 |
"If checked, the header of the page will contain metatags that refer to all "
|
15457 |
"featured photo files."
|
@@ -15459,7 +15461,7 @@ msgstr ""
|
|
15459 |
"Si elle est cocheé, l’en-tête de la page contiendra les metatags qui font "
|
15460 |
"référence à tous les fichiers photo recommandés."
|
15461 |
|
15462 |
-
#: wppa-settings-autosave.php:
|
15463 |
#, fuzzy
|
15464 |
msgid ""
|
15465 |
"If you have many featured photos, you might wish to uncheck this item to "
|
@@ -15468,15 +15470,15 @@ msgstr ""
|
|
15468 |
"Si vous avez beaucoup de photos recommandés, vous voudrez peut-être "
|
15469 |
"désactiver cet élément afin de réduire la taille de l’en-tête de page."
|
15470 |
|
15471 |
-
#: wppa-settings-autosave.php:
|
15472 |
msgid "Add og meta tags"
|
15473 |
msgstr "Ajouter des balises meta"
|
15474 |
|
15475 |
-
#: wppa-settings-autosave.php:
|
15476 |
msgid "Add og meta tags to the page header."
|
15477 |
msgstr "Ajouter og balises meta pour l’en-tête de page."
|
15478 |
|
15479 |
-
#: wppa-settings-autosave.php:
|
15480 |
#, fuzzy
|
15481 |
msgid ""
|
15482 |
"Turning this off may affect the functionality of social media items in the "
|
@@ -15486,143 +15488,143 @@ msgstr ""
|
|
15486 |
"sociaux dans la zone de partage qui s’appuient sur les informations de tags "
|
15487 |
"open graph."
|
15488 |
|
15489 |
-
#: wppa-settings-autosave.php:
|
15490 |
#, fuzzy
|
15491 |
msgid "Image Alt attribute type"
|
15492 |
msgstr "Type de l’attribut Alt des images"
|
15493 |
|
15494 |
-
#: wppa-settings-autosave.php:
|
15495 |
#, fuzzy
|
15496 |
msgid "Select kind of HTML alt=\"\" content for images."
|
15497 |
msgstr "Sélectionnez le genre d’alt HTML = \" » contenu des images."
|
15498 |
|
15499 |
-
#: wppa-settings-autosave.php:
|
15500 |
msgid "photo name"
|
15501 |
msgstr "Nom de la photo"
|
15502 |
|
15503 |
-
#: wppa-settings-autosave.php:
|
15504 |
msgid "name without file-ext"
|
15505 |
msgstr "nom sans l'extension de fichier"
|
15506 |
|
15507 |
-
#: wppa-settings-autosave.php:
|
15508 |
msgid "set in album admin"
|
15509 |
msgstr "Réglé dans album admin"
|
15510 |
|
15511 |
-
#: wppa-settings-autosave.php:
|
15512 |
#, fuzzy
|
15513 |
msgid "New Album and New Photo related miscellaneous settings"
|
15514 |
msgstr "Nouvel Album et nouvelle Photo liés à divers paramètres"
|
15515 |
|
15516 |
-
#: wppa-settings-autosave.php:
|
15517 |
#, fuzzy
|
15518 |
msgid "Maximum time an album is indicated as New"
|
15519 |
msgstr "Temps maximum qu'un album est indiqué comme New"
|
15520 |
|
15521 |
-
#: wppa-settings-autosave.php:
|
15522 |
msgid "New Photo"
|
15523 |
msgstr "Nouvelle photo"
|
15524 |
|
15525 |
-
#: wppa-settings-autosave.php:
|
15526 |
#, fuzzy
|
15527 |
msgid "Maximum time a photo is indicated as New"
|
15528 |
msgstr "Temps maximum que photo est indiquée comme New"
|
15529 |
|
15530 |
-
#: wppa-settings-autosave.php:
|
15531 |
msgid "Modified Album"
|
15532 |
msgstr "Album modifié"
|
15533 |
|
15534 |
-
#: wppa-settings-autosave.php:
|
15535 |
#, fuzzy
|
15536 |
msgid "Maximum time an album is indicated as Modified"
|
15537 |
msgstr "Temps maximum qu'un album est indiqué comme Modified"
|
15538 |
|
15539 |
-
#: wppa-settings-autosave.php:
|
15540 |
msgid "Modified Photo"
|
15541 |
msgstr "Photo modifiée"
|
15542 |
|
15543 |
-
#: wppa-settings-autosave.php:
|
15544 |
#, fuzzy
|
15545 |
msgid "Maximum time a photo is indicated as Modofied"
|
15546 |
msgstr "Temps maximum que photo est indiquée comme Modofied"
|
15547 |
|
15548 |
-
#: wppa-settings-autosave.php:
|
15549 |
msgid "Use text labels"
|
15550 |
msgstr "Utiliser les étiquettes de texte"
|
15551 |
|
15552 |
-
#: wppa-settings-autosave.php:
|
15553 |
#, fuzzy
|
15554 |
msgid "Use editable text for the New and Modified labels"
|
15555 |
msgstr "Utilisation de texte éditable pour les labels New et mise à jour le"
|
15556 |
|
15557 |
-
#: wppa-settings-autosave.php:
|
15558 |
#, fuzzy
|
15559 |
msgid "If UNticked, you can specify the urls for custom images to be used."
|
15560 |
msgstr ""
|
15561 |
"Si cochée, vous pouvez spécifier les URL pour les images personnalisées à "
|
15562 |
"utiliser."
|
15563 |
|
15564 |
-
#: wppa-settings-autosave.php:
|
15565 |
msgid "Orange"
|
15566 |
msgstr "Orange"
|
15567 |
|
15568 |
-
#: wppa-settings-autosave.php:
|
15569 |
msgid "Yellow"
|
15570 |
msgstr "Jaune"
|
15571 |
|
15572 |
-
#: wppa-settings-autosave.php:
|
15573 |
msgid "Purple"
|
15574 |
msgstr "Voilet"
|
15575 |
|
15576 |
-
#: wppa-settings-autosave.php:
|
15577 |
msgid "Black/white"
|
15578 |
msgstr "Noir/Blanc"
|
15579 |
|
15580 |
-
#: wppa-settings-autosave.php:
|
15581 |
msgid "New label"
|
15582 |
msgstr "Nouveau label"
|
15583 |
|
15584 |
-
#: wppa-settings-autosave.php:
|
15585 |
#, fuzzy
|
15586 |
msgid "Specify the \"New\" indicator details."
|
15587 |
msgstr "Spécifiez les détails indicateur de « Nouveau »."
|
15588 |
|
15589 |
-
#: wppa-settings-autosave.php:
|
15590 |
msgid "If you use qTranslate, the text may be multilingual."
|
15591 |
msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
|
15592 |
|
15593 |
-
#: wppa-settings-autosave.php:
|
15594 |
#, fuzzy
|
15595 |
msgid "Modified label"
|
15596 |
msgstr "Mis à jour le label"
|
15597 |
|
15598 |
-
#: wppa-settings-autosave.php:
|
15599 |
#, fuzzy
|
15600 |
msgid "Specify the \"Modified\" indicator details."
|
15601 |
msgstr "Spécifiez les détails d’indicateur « Modifié »."
|
15602 |
|
15603 |
-
#: wppa-settings-autosave.php:
|
15604 |
#, fuzzy
|
15605 |
msgid "Specify the \"New\" indicator url."
|
15606 |
msgstr "Spécifiez l’url d’indicateur « Nouveau »."
|
15607 |
|
15608 |
-
#: wppa-settings-autosave.php:
|
15609 |
#, fuzzy
|
15610 |
msgid "Specify the \"Modified\" indicator url."
|
15611 |
msgstr "Spécifiez l’url d’indicateur « Modifié »."
|
15612 |
|
15613 |
-
#: wppa-settings-autosave.php:
|
15614 |
#, fuzzy
|
15615 |
msgid "Limit LasTen New"
|
15616 |
msgstr "Limite de LasTen nouveau"
|
15617 |
|
15618 |
-
#: wppa-settings-autosave.php:
|
15619 |
#, fuzzy
|
15620 |
msgid "Limits the LasTen photos to those that are 'New', or newly modified."
|
15621 |
msgstr ""
|
15622 |
"Limite les photos LasTen à ceux qui sont « Nouveau », ou nouvellement "
|
15623 |
"modifiés."
|
15624 |
|
15625 |
-
#: wppa-settings-autosave.php:
|
15626 |
msgid ""
|
15627 |
"If you tick this box and configured the new photo time, you can even limit "
|
15628 |
"the number by the setting in Table I-F7, or set that number to an unlikely "
|
@@ -15632,12 +15634,12 @@ msgstr ""
|
|
15632 |
"pouvez même limiter le nombre par la mise en Table I-F7, ou définir ce "
|
15633 |
"nombre sur une valeur élevée peu probable."
|
15634 |
|
15635 |
-
#: wppa-settings-autosave.php:
|
15636 |
#, fuzzy
|
15637 |
msgid "LasTen use Modified"
|
15638 |
msgstr "LasTen utiliser mise à jour le"
|
15639 |
|
15640 |
-
#: wppa-settings-autosave.php:
|
15641 |
#, fuzzy
|
15642 |
msgid ""
|
15643 |
"Use the time modified rather than time upload for LasTen widget/shortcode."
|
@@ -15645,15 +15647,15 @@ msgstr ""
|
|
15645 |
"Utiliser l’heure de modification plutôt que temps télécharger pour LasTen "
|
15646 |
"widget/shortcode."
|
15647 |
|
15648 |
-
#: wppa-settings-autosave.php:
|
15649 |
msgid "Apply Newphoto desc"
|
15650 |
msgstr "Appliquer la description nouveau"
|
15651 |
|
15652 |
-
#: wppa-settings-autosave.php:
|
15653 |
msgid "Give each new photo a standard description."
|
15654 |
msgstr "Donner à chaque nouvelle photo une description normalisée."
|
15655 |
|
15656 |
-
#: wppa-settings-autosave.php:
|
15657 |
msgid ""
|
15658 |
"If checked, each new photo will get the description (template) as specified "
|
15659 |
"in the next item."
|
@@ -15661,47 +15663,47 @@ msgstr ""
|
|
15661 |
"Si cochée, chaque nouvelle photo obtient la description (modèle), comme "
|
15662 |
"spécifié dans l’element suivant."
|
15663 |
|
15664 |
-
#: wppa-settings-autosave.php:
|
15665 |
msgid "New photo desc"
|
15666 |
msgstr "Description nouvelle photo"
|
15667 |
|
15668 |
-
#: wppa-settings-autosave.php:
|
15669 |
#, fuzzy
|
15670 |
msgid "The description (template) to add to a new photo."
|
15671 |
msgstr "La description (modèle) pour ajouter à une nouvelle photo."
|
15672 |
|
15673 |
-
#: wppa-settings-autosave.php:
|
15674 |
msgid "Enter the default description."
|
15675 |
msgstr "Entrez la description par défaut."
|
15676 |
|
15677 |
-
#: wppa-settings-autosave.php:
|
15678 |
msgid "If you use html, please check item A-1 of this table."
|
15679 |
msgstr "Si vous utilisez html, s’il vous plaît cochez point A-1 de ce table."
|
15680 |
|
15681 |
-
#: wppa-settings-autosave.php:
|
15682 |
msgid "New photo owner"
|
15683 |
msgstr "Propriétaire de nouvelle photo"
|
15684 |
|
15685 |
-
#: wppa-settings-autosave.php:
|
15686 |
msgid "The owner of a new uploaded photo."
|
15687 |
msgstr "Le propriétaire d’une nouvelle photo téléchargée."
|
15688 |
|
15689 |
-
#: wppa-settings-autosave.php:
|
15690 |
msgid "If you leave this blank, the uploader will be set as the owner"
|
15691 |
msgstr ""
|
15692 |
"Si vous laissez ce champ vide, l’uploader sera définie en tant que "
|
15693 |
"propriétaire"
|
15694 |
|
15695 |
-
#: wppa-settings-autosave.php:
|
15696 |
msgid "leave blank or enter login name"
|
15697 |
msgstr "laissez vide ou entrez le nom de connexion"
|
15698 |
|
15699 |
-
#: wppa-settings-autosave.php:
|
15700 |
#, fuzzy
|
15701 |
msgid "New albums are created with this upload limit."
|
15702 |
msgstr "Nouveaux albums sont créés avec cette limite de téléchargement."
|
15703 |
|
15704 |
-
#: wppa-settings-autosave.php:
|
15705 |
msgid ""
|
15706 |
"Administrators can change the limit settings in the \"Edit Album Information"
|
15707 |
"\" admin page."
|
@@ -15709,20 +15711,20 @@ msgstr ""
|
|
15709 |
"Administrateurs peuvent modifier les paramètres de limite dans la page "
|
15710 |
"d’administration de « Modifier les informations de Album »."
|
15711 |
|
15712 |
-
#: wppa-settings-autosave.php:
|
15713 |
msgid "Default parent"
|
15714 |
msgstr "Parent par défaut"
|
15715 |
|
15716 |
-
#: wppa-settings-autosave.php:
|
15717 |
#, fuzzy
|
15718 |
msgid "The parent album of new albums."
|
15719 |
msgstr "L’album parent de nouveaux albums."
|
15720 |
|
15721 |
-
#: wppa-settings-autosave.php:
|
15722 |
msgid "Default parent always"
|
15723 |
msgstr "Par défaut parent toujours"
|
15724 |
|
15725 |
-
#: wppa-settings-autosave.php:
|
15726 |
#, fuzzy
|
15727 |
msgid ""
|
15728 |
"The parent album of new albums is always the default, except for "
|
@@ -15731,84 +15733,84 @@ msgstr ""
|
|
15731 |
"L’album parent de nouveaux albums est toujours la valeur par défaut, à "
|
15732 |
"l’exception des administrateurs."
|
15733 |
|
15734 |
-
#: wppa-settings-autosave.php:
|
15735 |
#, fuzzy
|
15736 |
msgid "Show album full"
|
15737 |
msgstr "L’album complet"
|
15738 |
|
15739 |
-
#: wppa-settings-autosave.php:
|
15740 |
#, fuzzy
|
15741 |
msgid "Show the Upload limit reached message if appropriate."
|
15742 |
msgstr "Montrent la limite de téléchargement atteinte message si besoin."
|
15743 |
|
15744 |
-
#: wppa-settings-autosave.php:
|
15745 |
msgid "Grant an album"
|
15746 |
msgstr "Grant an album"
|
15747 |
|
15748 |
-
#: wppa-settings-autosave.php:
|
15749 |
msgid "Create an album for each user logging in."
|
15750 |
msgstr "Créer un album pour chaque utilisateur connecté."
|
15751 |
|
15752 |
-
#: wppa-settings-autosave.php:
|
15753 |
msgid "Grant album name"
|
15754 |
msgstr "Grant album name"
|
15755 |
|
15756 |
-
#: wppa-settings-autosave.php:
|
15757 |
#, fuzzy
|
15758 |
msgid "The name to be used for the album."
|
15759 |
msgstr "Le nom à utiliser pour l’album."
|
15760 |
|
15761 |
-
#: wppa-settings-autosave.php:
|
15762 |
msgid "Login name"
|
15763 |
msgstr "Identifiant"
|
15764 |
|
15765 |
-
#: wppa-settings-autosave.php:
|
15766 |
msgid "Display name"
|
15767 |
msgstr "Afficher le nom"
|
15768 |
|
15769 |
-
#: wppa-settings-autosave.php:
|
15770 |
msgid "Id"
|
15771 |
msgstr "Id"
|
15772 |
|
15773 |
-
#: wppa-settings-autosave.php:
|
15774 |
msgid "Firstname Lastname"
|
15775 |
msgstr "Prénom Nom de famille"
|
15776 |
|
15777 |
-
#: wppa-settings-autosave.php:
|
15778 |
#, fuzzy
|
15779 |
msgid "Grant parent selection method"
|
15780 |
msgstr "Délivrance méthode de sélection de parent"
|
15781 |
|
15782 |
-
#: wppa-settings-autosave.php:
|
15783 |
#, fuzzy
|
15784 |
msgid "The way the grant parents are defined."
|
15785 |
msgstr "La façon dont les parents subvention sont définis."
|
15786 |
|
15787 |
-
#: wppa-settings-autosave.php:
|
15788 |
#, fuzzy
|
15789 |
msgid "An album (multi)selectionbox"
|
15790 |
msgstr "Un album (multi) selectionbox"
|
15791 |
|
15792 |
-
#: wppa-settings-autosave.php:
|
15793 |
#, fuzzy
|
15794 |
msgid "An album category"
|
15795 |
msgstr "Désolé, mais il n'y a pas encore d'article dans la catégorie %s."
|
15796 |
|
15797 |
-
#: wppa-settings-autosave.php:
|
15798 |
#, fuzzy
|
15799 |
msgid "An index search token"
|
15800 |
msgstr "Un jeton de recherche d'index"
|
15801 |
|
15802 |
-
#: wppa-settings-autosave.php:
|
15803 |
msgid "Grant parent"
|
15804 |
msgstr "Grant parent"
|
15805 |
|
15806 |
-
#: wppa-settings-autosave.php:
|
15807 |
#, fuzzy
|
15808 |
msgid "The parent album(s) of the auto created albums."
|
15809 |
msgstr "L'album (s) parent de l'auto albums créé."
|
15810 |
|
15811 |
-
#: wppa-settings-autosave.php:
|
15812 |
#, fuzzy
|
15813 |
msgid ""
|
15814 |
"You may select multiple albums. All logged in visitors will get their own "
|
@@ -15817,37 +15819,37 @@ msgstr ""
|
|
15817 |
"Vous pouvez sélectionner plusieurs albums. Tous connecté visiteurs vont "
|
15818 |
"obtenir leur propre sous-album dans chaque parent accordé."
|
15819 |
|
15820 |
-
#: wppa-settings-autosave.php:
|
15821 |
#, fuzzy
|
15822 |
msgid "Grant parent category"
|
15823 |
msgstr "Grant catégorie parente"
|
15824 |
|
15825 |
-
#: wppa-settings-autosave.php:
|
15826 |
#, fuzzy
|
15827 |
msgid "The category of the parent album(s) of the auto created albums."
|
15828 |
msgstr "La catégorie de l'album (s) parent de l'auto albums créé."
|
15829 |
|
15830 |
-
#: wppa-settings-autosave.php:
|
15831 |
#, fuzzy
|
15832 |
msgid "Grant parent index token"
|
15833 |
msgstr "Grant index parent jeton"
|
15834 |
|
15835 |
-
#: wppa-settings-autosave.php:
|
15836 |
#, fuzzy
|
15837 |
msgid ""
|
15838 |
"The index token that defines the parent album(s) of the auto created albums."
|
15839 |
msgstr "Le jeton d'index qui définit l'album (s) parent des albums auto créé."
|
15840 |
|
15841 |
-
#: wppa-settings-autosave.php:
|
15842 |
msgid "Max user albums"
|
15843 |
msgstr "Max albums d'utilisateur"
|
15844 |
|
15845 |
-
#: wppa-settings-autosave.php:
|
15846 |
#, fuzzy
|
15847 |
msgid "The max number of albums a user can create."
|
15848 |
msgstr "Le nombre maximum d’albums, qu'un utilisateur peut créer."
|
15849 |
|
15850 |
-
#: wppa-settings-autosave.php:
|
15851 |
#, fuzzy
|
15852 |
msgid ""
|
15853 |
"The maximum number of albums a user can create when he is not admin and "
|
@@ -15856,58 +15858,58 @@ msgstr ""
|
|
15856 |
"Le nombre maximum d’albums, qu'un utilisateur peut créer lorsqu’il n’est pas "
|
15857 |
"admin et propriétaire est uniquement actif"
|
15858 |
|
15859 |
-
#: wppa-settings-autosave.php:
|
15860 |
msgid "A number of 0 means No limit"
|
15861 |
msgstr "Un nombre de 0 signifie aucune limite"
|
15862 |
|
15863 |
-
#: wppa-settings-autosave.php:
|
15864 |
msgid "Default photo name"
|
15865 |
msgstr "Nom de photo par défaut"
|
15866 |
|
15867 |
-
#: wppa-settings-autosave.php:
|
15868 |
#, fuzzy
|
15869 |
msgid "Select the way the name of a new uploaded photo should be determined."
|
15870 |
msgstr ""
|
15871 |
"Sélectionnez le moyen de que déterminer le nom d’une nouvelle photo "
|
15872 |
"téléchargée."
|
15873 |
|
15874 |
-
#: wppa-settings-autosave.php:
|
15875 |
msgid "Filename"
|
15876 |
msgstr "Nom de fichier"
|
15877 |
|
15878 |
-
#: wppa-settings-autosave.php:
|
15879 |
msgid "Filename without extension"
|
15880 |
msgstr "Nom de fichier sans extension"
|
15881 |
|
15882 |
-
#: wppa-settings-autosave.php:
|
15883 |
#, fuzzy
|
15884 |
msgid "IPTC Tag 2#005 (Graphic name)"
|
15885 |
msgstr "IPTC Tag 2 #005 (nom du graphique)"
|
15886 |
|
15887 |
-
#: wppa-settings-autosave.php:
|
15888 |
#, fuzzy
|
15889 |
msgid "IPTC Tag 2#120 (Caption)"
|
15890 |
msgstr "IPTC Tag 2 #120 (légende)"
|
15891 |
|
15892 |
-
#: wppa-settings-autosave.php:
|
15893 |
msgid "No name at all"
|
15894 |
msgstr "Pas de nom du tout"
|
15895 |
|
15896 |
-
#: wppa-settings-autosave.php:
|
15897 |
#, fuzzy
|
15898 |
msgid "Photo w#id (literally)"
|
15899 |
msgstr "Photo w #id (littéralement)"
|
15900 |
|
15901 |
-
#: wppa-settings-autosave.php:
|
15902 |
msgid "Default coverphoto"
|
15903 |
msgstr "Photo de couverture par défaut"
|
15904 |
|
15905 |
-
#: wppa-settings-autosave.php:
|
15906 |
#, fuzzy
|
15907 |
msgid "Name of photofile to become cover image"
|
15908 |
msgstr "Nom de la photothèque pour devenir l’image de couverture"
|
15909 |
|
15910 |
-
#: wppa-settings-autosave.php:
|
15911 |
msgid ""
|
15912 |
"If you name a photofile like this setting before upload, it will become the "
|
15913 |
"coverimage automaticly."
|
@@ -15915,67 +15917,67 @@ msgstr ""
|
|
15915 |
"Si vous nommez une Photothèque comme ce paramètre avant de télécharger, il "
|
15916 |
"deviendra automatiquement le coverimage."
|
15917 |
|
15918 |
-
#: wppa-settings-autosave.php:
|
15919 |
msgid "Copy Timestamp"
|
15920 |
msgstr "Copier timestamp"
|
15921 |
|
15922 |
-
#: wppa-settings-autosave.php:
|
15923 |
msgid "Copy timestamp when copying photo."
|
15924 |
msgstr "Copiez timestamp lors de la copie de photo."
|
15925 |
|
15926 |
-
#: wppa-settings-autosave.php:
|
15927 |
msgid "If checked, the copied photo is not \"new\""
|
15928 |
msgstr "Si elle est cochée, la photo copiée n'est pas \"nouveau\""
|
15929 |
|
15930 |
-
#: wppa-settings-autosave.php:
|
15931 |
msgid "Copy Owner"
|
15932 |
msgstr "Copier le propriétaire"
|
15933 |
|
15934 |
-
#: wppa-settings-autosave.php:
|
15935 |
msgid "Copy the owner when copying photo."
|
15936 |
msgstr "Copiez le propriétaire lors de la copie de photo."
|
15937 |
|
15938 |
-
#: wppa-settings-autosave.php:
|
15939 |
msgid "FE Albums public"
|
15940 |
msgstr "FE Albums publics"
|
15941 |
|
15942 |
-
#: wppa-settings-autosave.php:
|
15943 |
msgid "Frontend created albums are --- public ---"
|
15944 |
msgstr "Albums créé en Frontend sont --- publics ---"
|
15945 |
|
15946 |
-
#: wppa-settings-autosave.php:
|
15947 |
#, fuzzy
|
15948 |
msgid "Optimize image files right after upload/import"
|
15949 |
msgstr "Optimiser les fichiers image après upload/importation"
|
15950 |
|
15951 |
-
#: wppa-settings-autosave.php:
|
15952 |
#, fuzzy
|
15953 |
msgid "This option requires the plugin EWWW Image Optimizer to be activated"
|
15954 |
msgstr "Cette option nécessite que le plugin EWWW Image Optimizer à activer"
|
15955 |
|
15956 |
-
#: wppa-settings-autosave.php:
|
15957 |
msgid "Default album linktype"
|
15958 |
msgstr "Linktype album par défaut"
|
15959 |
|
15960 |
-
#: wppa-settings-autosave.php:
|
15961 |
#, fuzzy
|
15962 |
msgid "The album linktype for new albums"
|
15963 |
msgstr "L’album linktype pour nouveaux albums"
|
15964 |
|
15965 |
-
#: wppa-settings-autosave.php:
|
15966 |
#, fuzzy
|
15967 |
msgid "Search Albums and Photos related settings"
|
15968 |
msgstr "Recherche Albums et Photos de paramètres liés"
|
15969 |
|
15970 |
-
#: wppa-settings-autosave.php:
|
15971 |
msgid "Search page"
|
15972 |
msgstr "Rechercher dans la page"
|
15973 |
|
15974 |
-
#: wppa-settings-autosave.php:
|
15975 |
msgid "Display the search results on page."
|
15976 |
msgstr "Affichez les résultats de recherche sur la page."
|
15977 |
|
15978 |
-
#: wppa-settings-autosave.php:
|
15979 |
#, fuzzy
|
15980 |
msgid ""
|
15981 |
"Select the page to be used to display search results. The page MUST contain "
|
@@ -15984,13 +15986,13 @@ msgstr ""
|
|
15984 |
"Sélectionnez la page à utiliser pour afficher les résultats de recherche. La "
|
15985 |
"page doit contenir [LPPT] [/ LPPT]."
|
15986 |
|
15987 |
-
#: wppa-settings-autosave.php:
|
15988 |
msgid "You may give it the title \"Search results\" or something alike."
|
15989 |
msgstr ""
|
15990 |
"Vous pouvez lui donner titre « résultats de la recherche » ou quelque chose "
|
15991 |
"comme."
|
15992 |
|
15993 |
-
#: wppa-settings-autosave.php:
|
15994 |
#, fuzzy
|
15995 |
msgid ""
|
15996 |
"Or you ou may use the standard page on which you display the generic album."
|
@@ -15998,15 +16000,15 @@ msgstr ""
|
|
15998 |
"Ou ou vous pouvez utiliser la page standard, sur lequel vous affichez "
|
15999 |
"l’album générique."
|
16000 |
|
16001 |
-
#: wppa-settings-autosave.php:
|
16002 |
msgid "Exclude separate"
|
16003 |
msgstr "Exclure séparé"
|
16004 |
|
16005 |
-
#: wppa-settings-autosave.php:
|
16006 |
msgid "Do not search 'separate' albums."
|
16007 |
msgstr "Ne pas rechercher dans les albums 'séparés'"
|
16008 |
|
16009 |
-
#: wppa-settings-autosave.php:
|
16010 |
#, fuzzy
|
16011 |
msgid ""
|
16012 |
"When checked, albums (and photos in them) that have the parent set to --- "
|
@@ -16015,7 +16017,7 @@ msgstr ""
|
|
16015 |
"Lorsqu'elle est cochée, les albums (et des photos en eux) qui ont le parent "
|
16016 |
"mis à --- --- séparée seront exclus de la fouille."
|
16017 |
|
16018 |
-
#: wppa-settings-autosave.php:
|
16019 |
msgid ""
|
16020 |
"Except when you start searching in a 'saparate' album, with the \"search in "
|
16021 |
"current section\" box ticked."
|
@@ -16023,90 +16025,90 @@ msgstr ""
|
|
16023 |
"Sauf lorsque vous démarrez la recherche d’un album « saparate », avec la "
|
16024 |
"case « recherche dans la section en cours » cochée."
|
16025 |
|
16026 |
-
#: wppa-settings-autosave.php:
|
16027 |
msgid "Include tags"
|
16028 |
msgstr "Inclure les tags"
|
16029 |
|
16030 |
-
#: wppa-settings-autosave.php:
|
16031 |
msgid "Do also search the photo tags."
|
16032 |
msgstr "Également rechercher les balises de photo."
|
16033 |
|
16034 |
-
#: wppa-settings-autosave.php:
|
16035 |
#, fuzzy
|
16036 |
msgid "When checked, the tags of the photo will also be searched."
|
16037 |
msgstr "Lorsque cochée, les balises de la photo seront également recherchés."
|
16038 |
|
16039 |
-
#: wppa-settings-autosave.php:
|
16040 |
msgid "Include categories"
|
16041 |
msgstr "Inclure les catégories:"
|
16042 |
|
16043 |
-
#: wppa-settings-autosave.php:
|
16044 |
msgid "Do also search the album categories."
|
16045 |
msgstr "Également rechercher les catégories de l’album."
|
16046 |
|
16047 |
-
#: wppa-settings-autosave.php:
|
16048 |
#, fuzzy
|
16049 |
msgid "When checked, the categories of the album will also be searched."
|
16050 |
msgstr "Lorsque cochée, les catégories de l’album seront également recherchés."
|
16051 |
|
16052 |
-
#: wppa-settings-autosave.php:
|
16053 |
msgid "Include comments"
|
16054 |
msgstr "Inclure les commentaires"
|
16055 |
|
16056 |
-
#: wppa-settings-autosave.php:
|
16057 |
msgid "Do also search the comments on photos."
|
16058 |
msgstr "Également rechercher les commentaires sur les photos."
|
16059 |
|
16060 |
-
#: wppa-settings-autosave.php:
|
16061 |
#, fuzzy
|
16062 |
msgid "When checked, the comments of the photos will also be searched."
|
16063 |
msgstr ""
|
16064 |
"Lorsqu'elle est cochée, les commentaires des photos seront également "
|
16065 |
"recherchées."
|
16066 |
|
16067 |
-
#: wppa-settings-autosave.php:
|
16068 |
msgid "Photos only"
|
16069 |
msgstr "Photos seulement"
|
16070 |
|
16071 |
-
#: wppa-settings-autosave.php:
|
16072 |
#, fuzzy
|
16073 |
msgid "Search for photos only."
|
16074 |
msgstr "Rechercher des photos uniquement."
|
16075 |
|
16076 |
-
#: wppa-settings-autosave.php:
|
16077 |
#, fuzzy
|
16078 |
msgid "When checked, only photos will be searched for."
|
16079 |
msgstr "Lorsqu'elle est cochée, seules les photos seront recherchées."
|
16080 |
|
16081 |
-
#: wppa-settings-autosave.php:
|
16082 |
msgid "Max albums found"
|
16083 |
msgstr "Maximum des albums trouvés"
|
16084 |
|
16085 |
-
#: wppa-settings-autosave.php:
|
16086 |
#, fuzzy
|
16087 |
msgid "The maximum number of albums to be displayed."
|
16088 |
msgstr "Le nombre maximal d’albums à afficher."
|
16089 |
|
16090 |
-
#: wppa-settings-autosave.php:
|
16091 |
#, fuzzy
|
16092 |
msgid "Max photos found"
|
16093 |
msgstr "Photos de Max trouvées"
|
16094 |
|
16095 |
-
#: wppa-settings-autosave.php:
|
16096 |
#, fuzzy
|
16097 |
msgid "The maximum number of photos to be displayed."
|
16098 |
msgstr "Le nombre maximal de photos à afficher."
|
16099 |
|
16100 |
-
#: wppa-settings-autosave.php:
|
16101 |
#, fuzzy
|
16102 |
msgid "Tags OR only"
|
16103 |
msgstr "Tags ou seulement"
|
16104 |
|
16105 |
-
#: wppa-settings-autosave.php:
|
16106 |
msgid "No and / or buttons"
|
16107 |
msgstr "Pas de boutons et / ou"
|
16108 |
|
16109 |
-
#: wppa-settings-autosave.php:
|
16110 |
msgid ""
|
16111 |
"Hide the and/or radiobuttons and do the or method in the multitag widget and "
|
16112 |
"shortcode."
|
@@ -16114,29 +16116,29 @@ msgstr ""
|
|
16114 |
"Masquer l’et/ou de cases d’option et ne l’ou la méthode dans le widget "
|
16115 |
"multibalises et shortcode."
|
16116 |
|
16117 |
-
#: wppa-settings-autosave.php:
|
16118 |
msgid "Tags add Inverse"
|
16119 |
msgstr "Balisess ajouter un Inverse"
|
16120 |
|
16121 |
-
#: wppa-settings-autosave.php:
|
16122 |
msgid "Add a checkbox to invert the selection."
|
16123 |
msgstr "Ajoute une case à cocher pour inverser la sélection."
|
16124 |
|
16125 |
-
#: wppa-settings-autosave.php:
|
16126 |
msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
|
16127 |
msgstr ""
|
16128 |
"Ajoute une case à cocher inverser (pas) sur le widget multibalises et "
|
16129 |
"shortcode."
|
16130 |
|
16131 |
-
#: wppa-settings-autosave.php:
|
16132 |
msgid "Floating searchtoken"
|
16133 |
msgstr "Jeton recherche flottant"
|
16134 |
|
16135 |
-
#: wppa-settings-autosave.php:
|
16136 |
msgid "A match need not start at the first char."
|
16137 |
msgstr "Un match ne besoin pas dès le premier char."
|
16138 |
|
16139 |
-
#: wppa-settings-autosave.php:
|
16140 |
msgid ""
|
16141 |
"A match is found while searching also when the entered token is somewhere in "
|
16142 |
"the middle of a word."
|
@@ -16144,24 +16146,24 @@ msgstr ""
|
|
16144 |
"Une correspondance est trouvée en cherchant également lorsque le jeton est "
|
16145 |
"entré est quelque part au milieu d’un mot."
|
16146 |
|
16147 |
-
#: wppa-settings-autosave.php:
|
16148 |
#, fuzzy
|
16149 |
msgid "This works in indexed search only!"
|
16150 |
msgstr "Cela fonctionne uniquement Recherche indexée!"
|
16151 |
|
16152 |
-
#: wppa-settings-autosave.php:
|
16153 |
#, fuzzy
|
16154 |
msgid "Search results display"
|
16155 |
msgstr "Affichage de résultats de recherche"
|
16156 |
|
16157 |
-
#: wppa-settings-autosave.php:
|
16158 |
#, fuzzy
|
16159 |
msgid "Select the way the search results should be displayed."
|
16160 |
msgstr ""
|
16161 |
"Sélectionnez la façon dont les résultats de la recherche doivent être "
|
16162 |
"affichés."
|
16163 |
|
16164 |
-
#: wppa-settings-autosave.php:
|
16165 |
msgid ""
|
16166 |
"If you select anything different from \"Albums and thumbnails\", \"Photos "
|
16167 |
"only\" is assumed (Table IX-E6)."
|
@@ -16169,26 +16171,26 @@ msgstr ""
|
|
16169 |
"Si vous choisissez quelque chose de différent de \"Albums et miniatures\", "
|
16170 |
"\"Photos seulement\" est supposé (Table IX-E6)."
|
16171 |
|
16172 |
-
#: wppa-settings-autosave.php:
|
16173 |
msgid "Albums and thumbnails"
|
16174 |
msgstr "Album et vignettes"
|
16175 |
|
16176 |
-
#: wppa-settings-autosave.php:
|
16177 |
#, fuzzy
|
16178 |
msgid "Slideonly slideshow"
|
16179 |
msgstr "Slideonly slideshow"
|
16180 |
|
16181 |
-
#: wppa-settings-autosave.php:
|
16182 |
#, fuzzy
|
16183 |
msgid "Name max length"
|
16184 |
msgstr "longueur maximum"
|
16185 |
|
16186 |
-
#: wppa-settings-autosave.php:
|
16187 |
#, fuzzy
|
16188 |
msgid "Max length of displayed photonames in supersearch selectionlist"
|
16189 |
msgstr "Longueur maxi de photonames affichés dans SelectionList SuperRecherche"
|
16190 |
|
16191 |
-
#: wppa-settings-autosave.php:
|
16192 |
#, fuzzy
|
16193 |
msgid ""
|
16194 |
"To limit the length of the selectionlist, enter the number of characters to "
|
@@ -16197,125 +16199,125 @@ msgstr ""
|
|
16197 |
"Pour limiter la longueur de la SelectionList, entrez le nombre de caractères "
|
16198 |
"à afficher."
|
16199 |
|
16200 |
-
#: wppa-settings-autosave.php:
|
16201 |
#, fuzzy
|
16202 |
msgid "Text max length"
|
16203 |
msgstr "longueur maximum"
|
16204 |
|
16205 |
-
#: wppa-settings-autosave.php:
|
16206 |
#, fuzzy
|
16207 |
msgid "Max length of displayed photo text in supersearch selectionlist"
|
16208 |
msgstr ""
|
16209 |
"Longueur maximale du texte affiché photo dans SelectionList SuperRecherche"
|
16210 |
|
16211 |
-
#: wppa-settings-autosave.php:
|
16212 |
msgid "Search toptext"
|
16213 |
msgstr "Recherche Toptext"
|
16214 |
|
16215 |
-
#: wppa-settings-autosave.php:
|
16216 |
#, fuzzy
|
16217 |
msgid "The text at the top of the search box."
|
16218 |
msgstr "Le texte en haut de la zone de recherche."
|
16219 |
|
16220 |
-
#: wppa-settings-autosave.php:
|
16221 |
#, fuzzy
|
16222 |
msgid "May contain unfiltered HTML."
|
16223 |
msgstr "Peut contenir HTML non filtré."
|
16224 |
|
16225 |
-
#: wppa-settings-autosave.php:
|
16226 |
#, fuzzy
|
16227 |
msgid "Section search text"
|
16228 |
msgstr "texte Section de recherche"
|
16229 |
|
16230 |
-
#: wppa-settings-autosave.php:
|
16231 |
#, fuzzy
|
16232 |
msgid "The labeltext at the checkbox."
|
16233 |
msgstr "Le labelText à la case à cocher."
|
16234 |
|
16235 |
-
#: wppa-settings-autosave.php:
|
16236 |
#, fuzzy
|
16237 |
msgid "Results search text"
|
16238 |
msgstr "texte de recherche de résultats"
|
16239 |
|
16240 |
-
#: wppa-settings-autosave.php:
|
16241 |
#, fuzzy
|
16242 |
msgid "Minimum search token length"
|
16243 |
msgstr "Recherche minimum longueur jeton"
|
16244 |
|
16245 |
-
#: wppa-settings-autosave.php:
|
16246 |
#, fuzzy
|
16247 |
msgid "The minmum number of chars in a search request."
|
16248 |
msgstr "Le nombre minmum de caractère dans une requête de recherche."
|
16249 |
|
16250 |
-
#: wppa-settings-autosave.php:
|
16251 |
#, fuzzy
|
16252 |
msgid "Exclude from search"
|
16253 |
msgstr "Exclure de la recherche"
|
16254 |
|
16255 |
-
#: wppa-settings-autosave.php:
|
16256 |
#, fuzzy
|
16257 |
msgid "Exclude these words from search index."
|
16258 |
msgstr "Exclure ces mots de l'index de recherche."
|
16259 |
|
16260 |
-
#: wppa-settings-autosave.php:
|
16261 |
#, fuzzy
|
16262 |
msgid "Enter words separated by commas (,)"
|
16263 |
msgstr "Entrez les mots séparés par des virgules (,)"
|
16264 |
|
16265 |
-
#: wppa-settings-autosave.php:
|
16266 |
#, fuzzy
|
16267 |
msgid "Exclude numbers"
|
16268 |
msgstr "Exclure des numéros"
|
16269 |
|
16270 |
-
#: wppa-settings-autosave.php:
|
16271 |
#, fuzzy
|
16272 |
msgid "Exclude numbers from search index."
|
16273 |
msgstr "Exclure les numéros de l'index de recherche."
|
16274 |
|
16275 |
-
#: wppa-settings-autosave.php:
|
16276 |
#, fuzzy
|
16277 |
msgid "If ticked, photos and albums are not searcheable by numbers."
|
16278 |
msgstr ""
|
16279 |
"Si coché, les photos et les albums ne sont pas interrogeable par des numéros."
|
16280 |
|
16281 |
-
#: wppa-settings-autosave.php:
|
16282 |
#, fuzzy
|
16283 |
msgid "Ignore slash"
|
16284 |
msgstr "Ignorer slash"
|
16285 |
|
16286 |
-
#: wppa-settings-autosave.php:
|
16287 |
#, fuzzy
|
16288 |
msgid "Ignore slash chracter (/)."
|
16289 |
msgstr "Ignorer slash chracter (/)."
|
16290 |
|
16291 |
-
#: wppa-settings-autosave.php:
|
16292 |
msgid "Watermark related settings"
|
16293 |
msgstr "Paramètres associés de Filigrane"
|
16294 |
|
16295 |
-
#: wppa-settings-autosave.php:
|
16296 |
msgid "Enable the application of watermarks."
|
16297 |
msgstr "Permettre l’application de filigranes."
|
16298 |
|
16299 |
-
#: wppa-settings-autosave.php:
|
16300 |
msgid "If checked, photos can be watermarked during upload / import."
|
16301 |
msgstr ""
|
16302 |
"S’il est activé, les photos peuvent être filigranés pendant le "
|
16303 |
"téléchargement / import."
|
16304 |
|
16305 |
-
#: wppa-settings-autosave.php:
|
16306 |
msgid "Watermark file"
|
16307 |
msgstr "Fichier filigrane"
|
16308 |
|
16309 |
-
#: wppa-settings-autosave.php:
|
16310 |
#, fuzzy
|
16311 |
msgid "The default watermarkfile to be used."
|
16312 |
msgstr "Le watermarkfile par défaut à utiliser."
|
16313 |
|
16314 |
-
#: wppa-settings-autosave.php:
|
16315 |
msgid "Watermark files are of type png and reside in"
|
16316 |
msgstr "Les fichiers filigrane sont du type PNG et consistent en"
|
16317 |
|
16318 |
-
#: wppa-settings-autosave.php:
|
16319 |
msgid ""
|
16320 |
"A suitable watermarkfile typically consists of a transparent background and "
|
16321 |
"a black text or drawing."
|
@@ -16323,7 +16325,7 @@ msgstr ""
|
|
16323 |
"Un watermarkfile convenable se compose généralement d’un arrière-plan "
|
16324 |
"transparent et un texte noir ou un dessin."
|
16325 |
|
16326 |
-
#: wppa-settings-autosave.php:
|
16327 |
msgid ""
|
16328 |
"You may also select one of the textual watermark types at the bottom of the "
|
16329 |
"selection list."
|
@@ -16331,32 +16333,32 @@ msgstr ""
|
|
16331 |
"Vous pouvez également sélectionner un des types de filigrane textuel au bas "
|
16332 |
"de la liste de sélection."
|
16333 |
|
16334 |
-
#: wppa-settings-autosave.php:
|
16335 |
msgid "position:"
|
16336 |
msgstr "Position:"
|
16337 |
|
16338 |
-
#: wppa-settings-autosave.php:
|
16339 |
msgid "Upload watermark"
|
16340 |
msgstr "Charger filigrane"
|
16341 |
|
16342 |
-
#: wppa-settings-autosave.php:
|
16343 |
msgid "Upload a new watermark file"
|
16344 |
msgstr "Charger un nouveau fichier filigrane"
|
16345 |
|
16346 |
-
#: wppa-settings-autosave.php:
|
16347 |
msgid "Upload watermark image"
|
16348 |
msgstr "Charger une image filigrane"
|
16349 |
|
16350 |
-
#: wppa-settings-autosave.php:
|
16351 |
msgid "Watermark opacity image"
|
16352 |
msgstr "Opacité du filigrane d'image"
|
16353 |
|
16354 |
-
#: wppa-settings-autosave.php:
|
16355 |
#, fuzzy
|
16356 |
msgid "You can set the intensity of image watermarks here."
|
16357 |
msgstr "Vous pouvez régler l'intensité de l'image filigranes ici."
|
16358 |
|
16359 |
-
#: wppa-settings-autosave.php:
|
16360 |
#, fuzzy
|
16361 |
msgid ""
|
16362 |
"The higher the number, the intenser the watermark. Value must be > 0 and <= "
|
@@ -16365,85 +16367,85 @@ msgstr ""
|
|
16365 |
"Plus le nombre est élevé, plus intense du filigrane. La valeur doit être> 0 "
|
16366 |
"et <= 100."
|
16367 |
|
16368 |
-
#: wppa-settings-autosave.php:
|
16369 |
msgid "Textual watermark style"
|
16370 |
msgstr "Style du texte filigrane"
|
16371 |
|
16372 |
-
#: wppa-settings-autosave.php:
|
16373 |
#, fuzzy
|
16374 |
msgid "The way the textual watermarks look like"
|
16375 |
msgstr "La façon dont les filigranes textuels ressembler"
|
16376 |
|
16377 |
-
#: wppa-settings-autosave.php:
|
16378 |
msgid "TV subtitle style"
|
16379 |
msgstr "Style des sous-titres"
|
16380 |
|
16381 |
-
#: wppa-settings-autosave.php:
|
16382 |
msgid "White text on black background"
|
16383 |
msgstr "Texte blanc sur fond noir"
|
16384 |
|
16385 |
-
#: wppa-settings-autosave.php:
|
16386 |
msgid "Black text on white background"
|
16387 |
msgstr "Texte noir sur fond blanc"
|
16388 |
|
16389 |
-
#: wppa-settings-autosave.php:
|
16390 |
#, fuzzy
|
16391 |
msgid "Reverse TV style (Utopia)"
|
16392 |
msgstr "Style TV dorsal (Utopia)"
|
16393 |
|
16394 |
-
#: wppa-settings-autosave.php:
|
16395 |
msgid "White on transparent background"
|
16396 |
msgstr "Blanc sur fond transparent"
|
16397 |
|
16398 |
-
#: wppa-settings-autosave.php:
|
16399 |
msgid "Black on transparent background"
|
16400 |
msgstr "Noir sur fond transparent"
|
16401 |
|
16402 |
-
#: wppa-settings-autosave.php:
|
16403 |
#, fuzzy
|
16404 |
msgid "Predefined watermark text"
|
16405 |
msgstr "texte en filigrane Predefined"
|
16406 |
|
16407 |
-
#: wppa-settings-autosave.php:
|
16408 |
#, fuzzy
|
16409 |
msgid "The text to use when --- pre-defined --- is selected."
|
16410 |
msgstr "Le texte à utiliser quand --- pré-défini --- est sélectionné."
|
16411 |
|
16412 |
-
#: wppa-settings-autosave.php:
|
16413 |
msgid "You may use the following keywords:"
|
16414 |
msgstr "Vous pouvez utiliser les mots clés suivants:"
|
16415 |
|
16416 |
-
#: wppa-settings-autosave.php:
|
16417 |
msgid ""
|
16418 |
"w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
|
16419 |
msgstr ""
|
16420 |
"w#site, w#displayname, tous les mots-clés photo standard, mots clés iptc et "
|
16421 |
"exif"
|
16422 |
|
16423 |
-
#: wppa-settings-autosave.php:
|
16424 |
msgid "Textual watermark font"
|
16425 |
msgstr "Police du texte filigrane"
|
16426 |
|
16427 |
-
#: wppa-settings-autosave.php:
|
16428 |
#, fuzzy
|
16429 |
msgid "The font to use with textusl watermarks."
|
16430 |
msgstr "La police à utiliser avec textusl filigranes."
|
16431 |
|
16432 |
-
#: wppa-settings-autosave.php:
|
16433 |
msgid "Except for the system font, are font files of type ttf and reside in"
|
16434 |
msgstr ""
|
16435 |
"À l’exception de la police système, sont des fichiers de police de type ttf "
|
16436 |
"et résident dans"
|
16437 |
|
16438 |
-
#: wppa-settings-autosave.php:
|
16439 |
msgid "Textual watermark font size"
|
16440 |
msgstr "Taille de la police texte filigrane"
|
16441 |
|
16442 |
-
#: wppa-settings-autosave.php:
|
16443 |
msgid "You can set the size of the truetype fonts only."
|
16444 |
msgstr "Vous pouvez définir seulement la taille des polices truetype."
|
16445 |
|
16446 |
-
#: wppa-settings-autosave.php:
|
16447 |
#, fuzzy
|
16448 |
msgid ""
|
16449 |
"System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
|
@@ -16452,7 +16454,7 @@ msgstr ""
|
|
16452 |
"la police du système peut avoir une taille 1,2,3,4 ou 5, dans certaines "
|
16453 |
"unités FontSize stoneage. Toute valeur> 5 sera traitée comme 5."
|
16454 |
|
16455 |
-
#: wppa-settings-autosave.php:
|
16456 |
#, fuzzy
|
16457 |
msgid ""
|
16458 |
"Truetype fonts can have any positive integer size, if your PHPs GD version "
|
@@ -16461,32 +16463,32 @@ msgstr ""
|
|
16461 |
"Les polices TrueType peuvent avoir toute taille de nombre entier positif, si "
|
16462 |
"votre version de PHP GD est 1, en pixels, en GD2 points."
|
16463 |
|
16464 |
-
#: wppa-settings-autosave.php:
|
16465 |
#, fuzzy
|
16466 |
msgid "It is unclear howmany pixels a point is..."
|
16467 |
msgstr "Il est peu clair howmany pixel qu'est un point..."
|
16468 |
|
16469 |
-
#: wppa-settings-autosave.php:
|
16470 |
msgid "Foreground color"
|
16471 |
msgstr "Couleur d’arrière-plan"
|
16472 |
|
16473 |
-
#: wppa-settings-autosave.php:
|
16474 |
msgid "Textual watermark foreground color (black)."
|
16475 |
msgstr "Justifications couleur filigrane au premier plan (noir)."
|
16476 |
|
16477 |
-
#: wppa-settings-autosave.php:
|
16478 |
msgid "Textual watermark background color (white)."
|
16479 |
msgstr "Justifications couleur filigrane de fond (blanc)."
|
16480 |
|
16481 |
-
#: wppa-settings-autosave.php:
|
16482 |
msgid "Upload watermark font"
|
16483 |
msgstr "Charger police filigrane"
|
16484 |
|
16485 |
-
#: wppa-settings-autosave.php:
|
16486 |
msgid "Upload a new watermark font file"
|
16487 |
msgstr "Charger un nouveau fichier filigrane"
|
16488 |
|
16489 |
-
#: wppa-settings-autosave.php:
|
16490 |
#, fuzzy
|
16491 |
msgid ""
|
16492 |
"Upload truetype fonts (.ttf) only, and test if they work on your server "
|
@@ -16495,188 +16497,188 @@ msgstr ""
|
|
16495 |
"Ajouter des polices TrueType (.ttf) seulement, et de tester si elles "
|
16496 |
"fonctionnent sur votre plate-forme serveur."
|
16497 |
|
16498 |
-
#: wppa-settings-autosave.php:
|
16499 |
msgid "Upload TrueType font"
|
16500 |
msgstr "Charger police TrueType"
|
16501 |
|
16502 |
-
#: wppa-settings-autosave.php:
|
16503 |
msgid "Watermark opacity text"
|
16504 |
msgstr "Opacité du filigrane de texte"
|
16505 |
|
16506 |
-
#: wppa-settings-autosave.php:
|
16507 |
#, fuzzy
|
16508 |
msgid "You can set the intensity of a text watermarks here."
|
16509 |
msgstr "Vous pouvez régler l'intensité d'un texte filigranes ici."
|
16510 |
|
16511 |
-
#: wppa-settings-autosave.php:
|
16512 |
msgid "A real life preview. To update: refresh the page."
|
16513 |
msgstr "Un aperçu de la vie réelle. Mise à jour: actualisez la page."
|
16514 |
|
16515 |
-
#: wppa-settings-autosave.php:
|
16516 |
msgid "Watermark thumbnails"
|
16517 |
msgstr "Vignettes filigrane"
|
16518 |
|
16519 |
-
#: wppa-settings-autosave.php:
|
16520 |
msgid "Watermark also the thumbnail image files."
|
16521 |
msgstr "Filigrane également les fichiers de l’image miniature."
|
16522 |
|
16523 |
-
#: wppa-settings-autosave.php:
|
16524 |
#, fuzzy
|
16525 |
msgid "Slideshow elements sequence order settings"
|
16526 |
msgstr "éléments du diaporama paramètres de l'ordre de séquence"
|
16527 |
|
16528 |
-
#: wppa-settings-autosave.php:
|
16529 |
msgid "StartStop"
|
16530 |
msgstr "DémarrerArréter"
|
16531 |
|
16532 |
-
#: wppa-settings-autosave.php:
|
16533 |
msgid "SlideFrame"
|
16534 |
msgstr "SlideFrame"
|
16535 |
|
16536 |
-
#: wppa-settings-autosave.php:
|
16537 |
msgid "Desc"
|
16538 |
msgstr "Desc"
|
16539 |
|
16540 |
-
#: wppa-settings-autosave.php:
|
16541 |
msgid "FilmStrip"
|
16542 |
msgstr "FilmStrip"
|
16543 |
|
16544 |
-
#: wppa-settings-autosave.php:
|
16545 |
msgid "Browsebar"
|
16546 |
msgstr "Browsebar"
|
16547 |
|
16548 |
-
#: wppa-settings-autosave.php:
|
16549 |
msgid "IPTC data"
|
16550 |
msgstr "Données IPTC"
|
16551 |
|
16552 |
-
#: wppa-settings-autosave.php:
|
16553 |
msgid "EXIF data"
|
16554 |
msgstr "Données EXIF"
|
16555 |
|
16556 |
-
#: wppa-settings-autosave.php:
|
16557 |
msgid "Share box"
|
16558 |
msgstr "Boîte de partage"
|
16559 |
|
16560 |
-
#: wppa-settings-autosave.php:
|
16561 |
msgid "Enabled"
|
16562 |
msgstr "Activé"
|
16563 |
|
16564 |
-
#: wppa-settings-autosave.php:
|
16565 |
msgid "Disabled"
|
16566 |
msgstr "Désactivé"
|
16567 |
|
16568 |
-
#: wppa-settings-autosave.php:
|
16569 |
#, fuzzy
|
16570 |
msgid "Start/Stop & Slower/Faster navigation bar"
|
16571 |
msgstr "Start / Stop & Slower / Faster barre de navigation"
|
16572 |
|
16573 |
-
#: wppa-settings-autosave.php:
|
16574 |
#, fuzzy
|
16575 |
msgid "The Slide Frame"
|
16576 |
msgstr "Cadre pour diapositive."
|
16577 |
|
16578 |
-
#: wppa-settings-autosave.php:
|
16579 |
msgid "( Always )"
|
16580 |
msgstr "( Toujours )"
|
16581 |
|
16582 |
-
#: wppa-settings-autosave.php:
|
16583 |
msgid "Photo Name Box"
|
16584 |
msgstr "Boîte de nom de la photo"
|
16585 |
|
16586 |
-
#: wppa-settings-autosave.php:
|
16587 |
#, fuzzy
|
16588 |
msgid "Photo Description Box"
|
16589 |
msgstr "Description de la photo"
|
16590 |
|
16591 |
-
#: wppa-settings-autosave.php:
|
16592 |
msgid "Custom Box"
|
16593 |
msgstr "Boîte personnalisée"
|
16594 |
|
16595 |
-
#: wppa-settings-autosave.php:
|
16596 |
msgid "Rating Bar"
|
16597 |
msgstr "Barre de vote"
|
16598 |
|
16599 |
-
#: wppa-settings-autosave.php:
|
16600 |
msgid "Film Strip with embedded Start/Stop and Goto functionality"
|
16601 |
msgstr ""
|
16602 |
"Bande de film avec des fonctionnalités de Start/Stop et Goto incorporée"
|
16603 |
|
16604 |
-
#: wppa-settings-autosave.php:
|
16605 |
msgid "Browse Bar with Photo X of Y counter"
|
16606 |
msgstr "Parcourir Bar avec comptoir de la Photo X de Y"
|
16607 |
|
16608 |
-
#: wppa-settings-autosave.php:
|
16609 |
msgid "Comments Box"
|
16610 |
msgstr "Boîte de commentaires"
|
16611 |
|
16612 |
-
#: wppa-settings-autosave.php:
|
16613 |
msgid "IPTC box"
|
16614 |
msgstr "Boîte IPTC"
|
16615 |
|
16616 |
-
#: wppa-settings-autosave.php:
|
16617 |
msgid "EXIF box"
|
16618 |
msgstr "Boîte EXIF"
|
16619 |
|
16620 |
-
#: wppa-settings-autosave.php:
|
16621 |
msgid "Social media share box"
|
16622 |
msgstr "Boîte de partage social"
|
16623 |
|
16624 |
-
#: wppa-settings-autosave.php:
|
16625 |
#, fuzzy
|
16626 |
msgid "Move Up"
|
16627 |
msgstr "Monter"
|
16628 |
|
16629 |
-
#: wppa-settings-autosave.php:
|
16630 |
msgid "NameDesc"
|
16631 |
msgstr "NomDesc"
|
16632 |
|
16633 |
-
#: wppa-settings-autosave.php:
|
16634 |
#, fuzzy
|
16635 |
msgid "Photo Name & Description Box"
|
16636 |
msgstr "Photo Nom & Description Box"
|
16637 |
|
16638 |
-
#: wppa-settings-autosave.php:
|
16639 |
#, fuzzy
|
16640 |
msgid "Swap Namedesc"
|
16641 |
msgstr "Swap Namedesc"
|
16642 |
|
16643 |
-
#: wppa-settings-autosave.php:
|
16644 |
#, fuzzy
|
16645 |
msgid "Swap the order sequence of name and description"
|
16646 |
msgstr "Remplacez la séquence d'ordre de nom et la description"
|
16647 |
|
16648 |
-
#: wppa-settings-autosave.php:
|
16649 |
#, fuzzy
|
16650 |
msgid "Split Name and Desc"
|
16651 |
msgstr "Nom de Split et de Desc"
|
16652 |
|
16653 |
-
#: wppa-settings-autosave.php:
|
16654 |
#, fuzzy
|
16655 |
msgid "Put Name and Description in separate boxes"
|
16656 |
msgstr "Mettez nom et la description dans des boîtes séparées"
|
16657 |
|
16658 |
-
#: wppa-settings-autosave.php:
|
16659 |
#, fuzzy
|
16660 |
msgid "Please reload this page after the green checkmark appears!"
|
16661 |
msgstr "S'il vous plaît recharger cette page après la coche verte apparaît!"
|
16662 |
|
16663 |
-
#: wppa-settings-autosave.php:
|
16664 |
#, fuzzy
|
16665 |
msgid "Source file management and other upload/import settings and actions."
|
16666 |
msgstr ""
|
16667 |
"Source de gestion de fichiers, upload/importer les paramètres et autres "
|
16668 |
"actions."
|
16669 |
|
16670 |
-
#: wppa-settings-autosave.php:
|
16671 |
msgid "Keep sourcefiles admin"
|
16672 |
msgstr "Garder sourcefiles admin"
|
16673 |
|
16674 |
-
#: wppa-settings-autosave.php:
|
16675 |
#, fuzzy
|
16676 |
msgid "Keep the original uploaded and imported photo files."
|
16677 |
msgstr "Stocker les fichiers téléchargés et importés photo originale."
|
16678 |
|
16679 |
-
#: wppa-settings-autosave.php:
|
16680 |
#, fuzzy
|
16681 |
msgid ""
|
16682 |
"The files will be kept in a separate directory with subdirectories for each "
|
@@ -16685,7 +16687,7 @@ msgstr ""
|
|
16685 |
"Les fichiers seront conservées dans un répertoire distinct avec des sous-"
|
16686 |
"répertoires pour chaque album"
|
16687 |
|
16688 |
-
#: wppa-settings-autosave.php:
|
16689 |
#, fuzzy
|
16690 |
msgid ""
|
16691 |
"These files can be used to update the photos used in displaying in wppa+ and "
|
@@ -16695,31 +16697,31 @@ msgstr ""
|
|
16695 |
"dans l'affichage en LPPT et éventuellement pour le téléchargement, les "
|
16696 |
"images un-Downsized d'origine."
|
16697 |
|
16698 |
-
#: wppa-settings-autosave.php:
|
16699 |
msgid "Keep sourcefiles frontend"
|
16700 |
msgstr "Garder sourcefiles frontend"
|
16701 |
|
16702 |
-
#: wppa-settings-autosave.php:
|
16703 |
msgid "Keep the original frontend uploaded photo files."
|
16704 |
msgstr "Keep the original frontend uploaded photo files."
|
16705 |
|
16706 |
-
#: wppa-settings-autosave.php:
|
16707 |
msgid "Source directory"
|
16708 |
msgstr "Répertoire source"
|
16709 |
|
16710 |
-
#: wppa-settings-autosave.php:
|
16711 |
#, fuzzy
|
16712 |
msgid "The path to the directory where the original photofiles will be saved."
|
16713 |
msgstr ""
|
16714 |
"Le chemin vers le répertoire où les Photofiles originaux seront sauvegardés."
|
16715 |
|
16716 |
-
#: wppa-settings-autosave.php:
|
16717 |
msgid "You may change the directory path, but it can not be an url."
|
16718 |
msgstr ""
|
16719 |
"Vous pouvez changer le chemin d’accès du répertoire, mais il ne peut pas "
|
16720 |
"être une url."
|
16721 |
|
16722 |
-
#: wppa-settings-autosave.php:
|
16723 |
#, fuzzy
|
16724 |
msgid ""
|
16725 |
"The parent of the directory that you enter here must exist and be writable."
|
@@ -16727,21 +16729,21 @@ msgstr ""
|
|
16727 |
"Le parent du répertoire que vous entrez ici doit exister et être "
|
16728 |
"inscriptible."
|
16729 |
|
16730 |
-
#: wppa-settings-autosave.php:
|
16731 |
#, fuzzy
|
16732 |
msgid "The directory itsself will be created if it does not exist yet."
|
16733 |
msgstr "Le répertoire itsself sera créé si elle n'existe pas encore."
|
16734 |
|
16735 |
-
#: wppa-settings-autosave.php:
|
16736 |
msgid "Keep sync"
|
16737 |
msgstr "Garder la synchronisation"
|
16738 |
|
16739 |
-
#: wppa-settings-autosave.php:
|
16740 |
#, fuzzy
|
16741 |
msgid "Keep source synchronously with wppa system."
|
16742 |
msgstr "Gardez la source synchrone avec système de LPPT."
|
16743 |
|
16744 |
-
#: wppa-settings-autosave.php:
|
16745 |
msgid ""
|
16746 |
"If checked, photos that are deleted from wppa, will also be removed from the "
|
16747 |
"sourcefiles."
|
@@ -16749,7 +16751,7 @@ msgstr ""
|
|
16749 |
"S’il est activé, les photos qui sont supprimés du wppa, sera également "
|
16750 |
"supprimé depuis les fichiers sources."
|
16751 |
|
16752 |
-
#: wppa-settings-autosave.php:
|
16753 |
msgid ""
|
16754 |
"Also, copying or moving photos to different albums, will also copy/move the "
|
16755 |
"sourcefiles."
|
@@ -16757,16 +16759,16 @@ msgstr ""
|
|
16757 |
"En outre, copier ou déplacer des photos de différents albums, sera également "
|
16758 |
"copier/déplacer les fichiers sources."
|
16759 |
|
16760 |
-
#: wppa-settings-autosave.php:
|
16761 |
msgid "Remake add"
|
16762 |
msgstr "Ajouter remake"
|
16763 |
|
16764 |
-
#: wppa-settings-autosave.php:
|
16765 |
#, fuzzy
|
16766 |
msgid "Photos will be added from the source pool"
|
16767 |
msgstr "Photos seront ajoutés à partir du pool de source"
|
16768 |
|
16769 |
-
#: wppa-settings-autosave.php:
|
16770 |
#, fuzzy
|
16771 |
msgid ""
|
16772 |
"If checked: If photo files are found in the source directory that do not "
|
@@ -16775,16 +16777,16 @@ msgstr ""
|
|
16775 |
"Si coché: Si les fichiers photo se trouvent dans le répertoire source qui "
|
16776 |
"n'existe pas dans l'album correspondant, ils seront ajoutés à l'album."
|
16777 |
|
16778 |
-
#: wppa-settings-autosave.php:
|
16779 |
msgid "Save IPTC data"
|
16780 |
msgstr "Sauver les données IPTC"
|
16781 |
|
16782 |
-
#: wppa-settings-autosave.php:
|
16783 |
#, fuzzy
|
16784 |
msgid "Store the iptc data from the photo into the iptc db table"
|
16785 |
msgstr "Stockez les données iptc de la photo dans la table db iptc"
|
16786 |
|
16787 |
-
#: wppa-settings-autosave.php:
|
16788 |
msgid ""
|
16789 |
"You will need this if you enabled the display of iptc data in Table II-B17 "
|
16790 |
"or if you use it in the photo descriptions."
|
@@ -16792,16 +16794,16 @@ msgstr ""
|
|
16792 |
"Vous en aurez besoin si vous avez activé l’affichage des données iptc dans "
|
16793 |
"le Table II-B17 ou si vous l’utiliser dans les descriptions de photo."
|
16794 |
|
16795 |
-
#: wppa-settings-autosave.php:
|
16796 |
msgid "Save EXIF data"
|
16797 |
msgstr "Sauver les données EXIF"
|
16798 |
|
16799 |
-
#: wppa-settings-autosave.php:
|
16800 |
#, fuzzy
|
16801 |
msgid "Store the exif data from the photo into the exif db table"
|
16802 |
msgstr "Stocker les données EXIF de la photo dans la table exif db"
|
16803 |
|
16804 |
-
#: wppa-settings-autosave.php:
|
16805 |
msgid ""
|
16806 |
"You will need this if you enabled the display of exif data in Table II-B18 "
|
16807 |
"or if you use it in the photo descriptions."
|
@@ -16809,32 +16811,32 @@ msgstr ""
|
|
16809 |
"Vous en aurez besoin si vous avez activé l’affichage des données d’exif dans "
|
16810 |
"le Table II-B18 ou si vous l’utiliser dans les descriptions de photo."
|
16811 |
|
16812 |
-
#: wppa-settings-autosave.php:
|
16813 |
msgid "Max EXIF tag array size"
|
16814 |
msgstr "Taille max de tableau des balises EXIF"
|
16815 |
|
16816 |
-
#: wppa-settings-autosave.php:
|
16817 |
msgid "Truncate array tags to ..."
|
16818 |
msgstr "Tronquer les balises de tableau pour..."
|
16819 |
|
16820 |
-
#: wppa-settings-autosave.php:
|
16821 |
msgid "A value of 0 disables this feature"
|
16822 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
16823 |
|
16824 |
-
#: wppa-settings-autosave.php:
|
16825 |
msgid "elements"
|
16826 |
msgstr "éléments"
|
16827 |
|
16828 |
-
#: wppa-settings-autosave.php:
|
16829 |
#, fuzzy
|
16830 |
msgid "Import Create page"
|
16831 |
msgstr "Importer Créer une page"
|
16832 |
|
16833 |
-
#: wppa-settings-autosave.php:
|
16834 |
msgid "Create wp page when a directory to album is imported."
|
16835 |
msgstr "Créer page wp lorsqu’un répertoire de l’album est importé."
|
16836 |
|
16837 |
-
#: wppa-settings-autosave.php:
|
16838 |
msgid ""
|
16839 |
"As soon as an album is created when a directory is imported, a wp page is "
|
16840 |
"made that displays the album content."
|
@@ -16842,16 +16844,16 @@ msgstr ""
|
|
16842 |
"Dès qu’un album est créé lorsqu’un répertoire est importé, une page de wp "
|
16843 |
"est faite qui affiche le contenu de l’album."
|
16844 |
|
16845 |
-
#: wppa-settings-autosave.php:
|
16846 |
msgid "Page content"
|
16847 |
msgstr "Contenu de la page"
|
16848 |
|
16849 |
-
#: wppa-settings-autosave.php:
|
16850 |
#, fuzzy
|
16851 |
msgid "The content of the page. Must contain <b>w#album</b>"
|
16852 |
msgstr "Le contenu de la page. Doit contenir <b>w # album</b>"
|
16853 |
|
16854 |
-
#: wppa-settings-autosave.php:
|
16855 |
#, fuzzy
|
16856 |
msgid ""
|
16857 |
"The content of the page. Note: it must contain w#album. This will be "
|
@@ -16860,44 +16862,44 @@ msgstr ""
|
|
16860 |
"Le contenu de la page. Remarque: il doit contenir w # album. Cela sera "
|
16861 |
"remplacé par le numéro de l'album dans le shortcode généré."
|
16862 |
|
16863 |
-
#: wppa-settings-autosave.php:
|
16864 |
msgid "Page type"
|
16865 |
msgstr "Type de la page"
|
16866 |
|
16867 |
-
#: wppa-settings-autosave.php:
|
16868 |
msgid "Select the type of page to create."
|
16869 |
msgstr "Choisir le type de page à créer."
|
16870 |
|
16871 |
-
#: wppa-settings-autosave.php:
|
16872 |
msgid "Post"
|
16873 |
msgstr "Article"
|
16874 |
|
16875 |
-
#: wppa-settings-autosave.php:
|
16876 |
msgid "Page status"
|
16877 |
msgstr "Statut de la page"
|
16878 |
|
16879 |
-
#: wppa-settings-autosave.php:
|
16880 |
msgid "Select the initial status of the page."
|
16881 |
msgstr "Choisir le statut initial de la page."
|
16882 |
|
16883 |
-
#: wppa-settings-autosave.php:
|
16884 |
msgid "Published"
|
16885 |
msgstr "Publié"
|
16886 |
|
16887 |
-
#: wppa-settings-autosave.php:
|
16888 |
msgid "Draft"
|
16889 |
msgstr "Brouillon"
|
16890 |
|
16891 |
-
#: wppa-settings-autosave.php:
|
16892 |
msgid "Permalink root"
|
16893 |
msgstr "Racine permalien"
|
16894 |
|
16895 |
-
#: wppa-settings-autosave.php:
|
16896 |
#, fuzzy
|
16897 |
msgid "The name of the root for the photofile permalink structure."
|
16898 |
msgstr "Le nom de la racine pour la structure photofile permalien."
|
16899 |
|
16900 |
-
#: wppa-settings-autosave.php:
|
16901 |
msgid ""
|
16902 |
"Choose a convenient name like \"albums\" or so; this will be the name of a "
|
16903 |
"folder inside .../wp-content/. Make sure you choose a unique name"
|
@@ -16906,21 +16908,21 @@ msgstr ""
|
|
16906 |
"dossier à l’intérieur de la .../wp-content /. Veillez à que choisir un nom "
|
16907 |
"unique"
|
16908 |
|
16909 |
-
#: wppa-settings-autosave.php:
|
16910 |
#, fuzzy
|
16911 |
msgid "If you make this field empty, the feature is disabled."
|
16912 |
msgstr "Si vous faites ce champ vide, la fonction est désactivée."
|
16913 |
|
16914 |
-
#: wppa-settings-autosave.php:
|
16915 |
msgid "Import parent check"
|
16916 |
msgstr "Importer le parent vérification"
|
16917 |
|
16918 |
-
#: wppa-settings-autosave.php:
|
16919 |
#, fuzzy
|
16920 |
msgid "On import dirs to albums: keep dir tree as albums."
|
16921 |
msgstr "Sur dirs d'importation aux albums: garder arbre dir que des albums."
|
16922 |
|
16923 |
-
#: wppa-settings-autosave.php:
|
16924 |
msgid ""
|
16925 |
"Untick only if all your albums have unique names. Then: additional photos "
|
16926 |
"may be ftp'd to toplevel depot subdirs."
|
@@ -16929,40 +16931,40 @@ msgstr ""
|
|
16929 |
"photos supplémentaires pourront être chargées via FTP dans les répertoires "
|
16930 |
"de dépôt du niveau supérieur."
|
16931 |
|
16932 |
-
#: wppa-settings-autosave.php:
|
16933 |
msgid "Keep dir to album files"
|
16934 |
msgstr "Garder les fichiers de dir aux l’album"
|
16935 |
|
16936 |
-
#: wppa-settings-autosave.php:
|
16937 |
#, fuzzy
|
16938 |
msgid "Keep imported files after dir to album import"
|
16939 |
msgstr "Conserver les fichiers importés après dir album importé"
|
16940 |
|
16941 |
-
#: wppa-settings-autosave.php:
|
16942 |
msgid "Other plugins related settings"
|
16943 |
msgstr "Paramètres liés d'autres plugins"
|
16944 |
|
16945 |
-
#: wppa-settings-autosave.php:
|
16946 |
msgid "Foreign shortcodes general"
|
16947 |
msgstr "Généraux étrangers shortcodes"
|
16948 |
|
16949 |
-
#: wppa-settings-autosave.php:
|
16950 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
16951 |
msgstr ""
|
16952 |
"Activez les shortcodes étrangers au nom de l’album, au description de "
|
16953 |
"l'album et au nom de photo"
|
16954 |
|
16955 |
-
#: wppa-settings-autosave.php:
|
16956 |
msgid "Foreign shortcodes fullsize"
|
16957 |
msgstr "Shortcodes étrangers fullsize"
|
16958 |
|
16959 |
-
#: wppa-settings-autosave.php:
|
16960 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
16961 |
msgstr ""
|
16962 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16963 |
"pleine grandeur."
|
16964 |
|
16965 |
-
#: wppa-settings-autosave.php:
|
16966 |
#, fuzzy
|
16967 |
msgid ""
|
16968 |
"When checked, you can use shortcodes from other plugins in the description "
|
@@ -16971,41 +16973,41 @@ msgstr ""
|
|
16971 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins "
|
16972 |
"dans la description de photos."
|
16973 |
|
16974 |
-
#: wppa-settings-autosave.php:
|
16975 |
#, fuzzy
|
16976 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
16977 |
msgstr ""
|
16978 |
"Les shortcodes sera élargis dans les descriptions d’images plein écran."
|
16979 |
|
16980 |
-
#: wppa-settings-autosave.php:
|
16981 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
16982 |
msgstr ""
|
16983 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
16984 |
|
16985 |
-
#: wppa-settings-autosave.php:
|
16986 |
msgid "Foreign shortcodes thumbnails"
|
16987 |
msgstr "Foreign shortcodes thumbnails"
|
16988 |
|
16989 |
-
#: wppa-settings-autosave.php:
|
16990 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
16991 |
msgstr ""
|
16992 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16993 |
"miniature."
|
16994 |
|
16995 |
-
#: wppa-settings-autosave.php:
|
16996 |
msgid ""
|
16997 |
"The shortcodes will be expanded in the descriptions of thumbnail images."
|
16998 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
16999 |
|
17000 |
-
#: wppa-settings-autosave.php:
|
17001 |
msgid "Lightbox keyname"
|
17002 |
msgstr "Nom-clé Lightbox"
|
17003 |
|
17004 |
-
#: wppa-settings-autosave.php:
|
17005 |
msgid "The identifier of lightbox."
|
17006 |
msgstr "L'identifiant Lightbox."
|
17007 |
|
17008 |
-
#: wppa-settings-autosave.php:
|
17009 |
msgid ""
|
17010 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
|
17011 |
"lbox-id here."
|
@@ -17013,65 +17015,65 @@ msgstr ""
|
|
17013 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
17014 |
"entrer l’id lbox ici."
|
17015 |
|
17016 |
-
#: wppa-settings-autosave.php:
|
17017 |
msgid "myCRED / Cube Points: Comment"
|
17018 |
msgstr "myCRED / Cube Points: commentaire"
|
17019 |
|
17020 |
-
#: wppa-settings-autosave.php:
|
17021 |
msgid "Number of points for giving a comment"
|
17022 |
msgstr "Nombre de points pour mettre un commentaire"
|
17023 |
|
17024 |
-
#: wppa-settings-autosave.php:
|
17025 |
-
#: wppa-settings-autosave.php:
|
17026 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
17027 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
17028 |
|
17029 |
-
#: wppa-settings-autosave.php:
|
17030 |
msgid "points per comment"
|
17031 |
msgstr "points par commentaire"
|
17032 |
|
17033 |
-
#: wppa-settings-autosave.php:
|
17034 |
msgid "myCRED / Cube Points: Appr Comment"
|
17035 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
17036 |
|
17037 |
-
#: wppa-settings-autosave.php:
|
17038 |
msgid "Number of points for receiving an approved comment"
|
17039 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
17040 |
|
17041 |
-
#: wppa-settings-autosave.php:
|
17042 |
msgid "myCRED / Cube Points: Rating"
|
17043 |
msgstr "myCRED / Cube Points: notation"
|
17044 |
|
17045 |
-
#: wppa-settings-autosave.php:
|
17046 |
msgid "Number of points for a rating vote"
|
17047 |
msgstr "Nombre de points pour un vote de cote"
|
17048 |
|
17049 |
-
#: wppa-settings-autosave.php:
|
17050 |
msgid "points per vote"
|
17051 |
msgstr "points par vote"
|
17052 |
|
17053 |
-
#: wppa-settings-autosave.php:
|
17054 |
msgid "myCRED / Cube Points: Upload"
|
17055 |
msgstr "myCRED / Cube Points : Télécharger"
|
17056 |
|
17057 |
-
#: wppa-settings-autosave.php:
|
17058 |
msgid "Number of points for a successfull frontend upload"
|
17059 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
17060 |
|
17061 |
-
#: wppa-settings-autosave.php:
|
17062 |
msgid "points per upload"
|
17063 |
msgstr "points par chargement"
|
17064 |
|
17065 |
-
#: wppa-settings-autosave.php:
|
17066 |
msgid "Use SCABN"
|
17067 |
msgstr "Utiliser SCABN"
|
17068 |
|
17069 |
-
#: wppa-settings-autosave.php:
|
17070 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
17071 |
msgstr ""
|
17072 |
"Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
17073 |
|
17074 |
-
#: wppa-settings-autosave.php:
|
17075 |
msgid ""
|
17076 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
17077 |
"descriptions is [cart ...]"
|
@@ -17079,25 +17081,25 @@ msgstr ""
|
|
17079 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
17080 |
"les descriptions photo est [cart ...]"
|
17081 |
|
17082 |
-
#: wppa-settings-autosave.php:
|
17083 |
msgid ""
|
17084 |
"as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
17085 |
msgstr ""
|
17086 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de "
|
17087 |
"SCABN."
|
17088 |
|
17089 |
-
#: wppa-settings-autosave.php:
|
17090 |
msgid "The shortcode for the check-out page is still [scabn]"
|
17091 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
17092 |
|
17093 |
-
#: wppa-settings-autosave.php:
|
17094 |
msgid ""
|
17095 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
17096 |
msgstr ""
|
17097 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = "
|
17098 |
"photoname, price = 0.01."
|
17099 |
|
17100 |
-
#: wppa-settings-autosave.php:
|
17101 |
msgid ""
|
17102 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
17103 |
"from the photo name."
|
@@ -17105,11 +17107,11 @@ msgstr ""
|
|
17105 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
17106 |
"diffère de celui de la photo."
|
17107 |
|
17108 |
-
#: wppa-settings-autosave.php:
|
17109 |
msgid "This shortcode handler will also work with Ajax enabled."
|
17110 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
17111 |
|
17112 |
-
#: wppa-settings-autosave.php:
|
17113 |
msgid ""
|
17114 |
"Using this interface makes sure that the item urls and callback action urls "
|
17115 |
"are correct."
|
@@ -17117,17 +17119,17 @@ msgstr ""
|
|
17117 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
17118 |
"callback sont correctes."
|
17119 |
|
17120 |
-
#: wppa-settings-autosave.php:
|
17121 |
msgid "Use CM Tooltip Glossary"
|
17122 |
msgstr "Utiliser CM Tooltip Glossary"
|
17123 |
|
17124 |
-
#: wppa-settings-autosave.php:
|
17125 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
17126 |
msgstr ""
|
17127 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
17128 |
"photos."
|
17129 |
|
17130 |
-
#: wppa-settings-autosave.php:
|
17131 |
msgid ""
|
17132 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
17133 |
"plugin to act on album and photo descriptions!"
|
@@ -17135,139 +17137,139 @@ msgstr ""
|
|
17135 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
17136 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
17137 |
|
17138 |
-
#: wppa-settings-autosave.php:
|
17139 |
msgid "External services related settings and actions."
|
17140 |
msgstr "Réglages et actions pour les services extérieurs."
|
17141 |
|
17142 |
-
#: wppa-settings-autosave.php:
|
17143 |
msgid "QR Code widget size"
|
17144 |
msgstr "Taille du widget QR Code"
|
17145 |
|
17146 |
-
#: wppa-settings-autosave.php:
|
17147 |
msgid "The size of the QR code display."
|
17148 |
msgstr "La taille de l'affichage du QR code."
|
17149 |
|
17150 |
-
#: wppa-settings-autosave.php:
|
17151 |
msgid "QR color"
|
17152 |
msgstr "Couleur QR code"
|
17153 |
|
17154 |
-
#: wppa-settings-autosave.php:
|
17155 |
msgid "The display color of the qr code (dark)"
|
17156 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
17157 |
|
17158 |
-
#: wppa-settings-autosave.php:
|
17159 |
msgid "This color MUST be given in hexadecimal format!"
|
17160 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
17161 |
|
17162 |
-
#: wppa-settings-autosave.php:
|
17163 |
msgid "QR background color"
|
17164 |
msgstr "Couleur de fond de QR Code"
|
17165 |
|
17166 |
-
#: wppa-settings-autosave.php:
|
17167 |
msgid "The background color of the qr code (light)"
|
17168 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
17169 |
|
17170 |
-
#: wppa-settings-autosave.php:
|
17171 |
msgid "CDN Service"
|
17172 |
msgstr "Service CDN"
|
17173 |
|
17174 |
-
#: wppa-settings-autosave.php:
|
17175 |
msgid "Select a CDN Service you want to use."
|
17176 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
17177 |
|
17178 |
-
#: wppa-settings-autosave.php:
|
17179 |
msgid "Cloudinary in maintenance mode"
|
17180 |
msgstr "Cloudinary en mode maintenance"
|
17181 |
|
17182 |
-
#: wppa-settings-autosave.php:
|
17183 |
msgid "Cloud name"
|
17184 |
msgstr "Nom du nuage"
|
17185 |
|
17186 |
-
#: wppa-settings-autosave.php:
|
17187 |
msgid "API key"
|
17188 |
msgstr "Clé API"
|
17189 |
|
17190 |
-
#: wppa-settings-autosave.php:
|
17191 |
msgid "API secret"
|
17192 |
msgstr "Secret API"
|
17193 |
|
17194 |
-
#: wppa-settings-autosave.php:
|
17195 |
msgid "Delete all"
|
17196 |
msgstr "Tout effacer"
|
17197 |
|
17198 |
-
#: wppa-settings-autosave.php:
|
17199 |
msgid "Deletes them all !!!"
|
17200 |
msgstr "Cela les efface tous !!!"
|
17201 |
|
17202 |
-
#: wppa-settings-autosave.php:
|
17203 |
msgid "Delete derived images"
|
17204 |
msgstr "Effacer les images dérivées"
|
17205 |
|
17206 |
-
#: wppa-settings-autosave.php:
|
17207 |
msgid "Deletes all derived images !!!"
|
17208 |
msgstr "Efface toutes les images dérivées !!!"
|
17209 |
|
17210 |
-
#: wppa-settings-autosave.php:
|
17211 |
msgid "Max lifetime"
|
17212 |
msgstr "Temps de vie maximum"
|
17213 |
|
17214 |
-
#: wppa-settings-autosave.php:
|
17215 |
msgid "Old images from local server, new images from Cloudinary."
|
17216 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
17217 |
|
17218 |
-
#: wppa-settings-autosave.php:
|
17219 |
msgid ""
|
17220 |
"If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
17221 |
msgstr ""
|
17222 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon "
|
17223 |
"régulière."
|
17224 |
|
17225 |
-
#: wppa-settings-autosave.php:
|
17226 |
msgid "Forever"
|
17227 |
msgstr "Infini"
|
17228 |
|
17229 |
-
#: wppa-settings-autosave.php:
|
17230 |
msgid "Cloudinary usage"
|
17231 |
msgstr "Utilisation de Cloudinary"
|
17232 |
|
17233 |
-
#: wppa-settings-autosave.php:
|
17234 |
msgid "Cloudinary usage data not available"
|
17235 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
17236 |
|
17237 |
-
#: wppa-settings-autosave.php:
|
17238 |
msgid "Cloudinary routines not installed."
|
17239 |
msgstr "Routines Cloudinary pas installées."
|
17240 |
|
17241 |
-
#: wppa-settings-autosave.php:
|
17242 |
msgid "Cloudinary"
|
17243 |
msgstr "Cloudinary"
|
17244 |
|
17245 |
-
#: wppa-settings-autosave.php:
|
17246 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
17247 |
msgstr ""
|
17248 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale "
|
17249 |
"à 5.3</span>"
|
17250 |
|
17251 |
-
#: wppa-settings-autosave.php:
|
17252 |
msgid "GPX Implementation"
|
17253 |
msgstr "Implémentation GPX"
|
17254 |
|
17255 |
-
#: wppa-settings-autosave.php:
|
17256 |
msgid "The way the maps are produced."
|
17257 |
msgstr "La méthode de production des cartes."
|
17258 |
|
17259 |
-
#: wppa-settings-autosave.php:
|
17260 |
msgid "Select the way the maps are produced."
|
17261 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
17262 |
|
17263 |
-
#: wppa-settings-autosave.php:
|
17264 |
msgid ""
|
17265 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
17266 |
msgstr ""
|
17267 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne "
|
17268 |
"pouvez utiliser Ajax (table IV-A1)"
|
17269 |
|
17270 |
-
#: wppa-settings-autosave.php:
|
17271 |
msgid ""
|
17272 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
17273 |
"options."
|
@@ -17275,39 +17277,39 @@ msgstr ""
|
|
17275 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais "
|
17276 |
"il y aura alors moins d'options d'affichage."
|
17277 |
|
17278 |
-
#: wppa-settings-autosave.php:
|
17279 |
msgid "WPPA+ Embedded code"
|
17280 |
msgstr "Code embarqué WPPA+"
|
17281 |
|
17282 |
-
#: wppa-settings-autosave.php:
|
17283 |
msgid "Google maps GPX viewer plugin"
|
17284 |
msgstr "Plugin Google maps de visualisation GPX"
|
17285 |
|
17286 |
-
#: wppa-settings-autosave.php:
|
17287 |
msgid "Map height"
|
17288 |
msgstr "Hauteur de la carte"
|
17289 |
|
17290 |
-
#: wppa-settings-autosave.php:
|
17291 |
msgid "The height of the map display."
|
17292 |
msgstr "La hauteur de l’affichage de la carte."
|
17293 |
|
17294 |
-
#: wppa-settings-autosave.php:
|
17295 |
msgid "Google maps API key"
|
17296 |
msgstr "Clé API Google maps"
|
17297 |
|
17298 |
-
#: wppa-settings-autosave.php:
|
17299 |
msgid "Enter your Google maps api key here if you have one."
|
17300 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
17301 |
|
17302 |
-
#: wppa-settings-autosave.php:
|
17303 |
msgid "GPX Shortcode"
|
17304 |
msgstr "Shortcode GPX"
|
17305 |
|
17306 |
-
#: wppa-settings-autosave.php:
|
17307 |
msgid "The shortcode to be used for the gpx feature."
|
17308 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
17309 |
|
17310 |
-
#: wppa-settings-autosave.php:
|
17311 |
msgid ""
|
17312 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
17313 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
@@ -17316,29 +17318,29 @@ msgstr ""
|
|
17316 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
17317 |
"longitude."
|
17318 |
|
17319 |
-
#: wppa-settings-autosave.php:
|
17320 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
17321 |
msgstr ""
|
17322 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
17323 |
|
17324 |
-
#: wppa-settings-autosave.php:
|
17325 |
msgid "Fotomoto"
|
17326 |
msgstr "Fotomoto"
|
17327 |
|
17328 |
-
#: wppa-settings-autosave.php:
|
17329 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
17330 |
msgstr ""
|
17331 |
"Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
17332 |
|
17333 |
-
#: wppa-settings-autosave.php:
|
17334 |
msgid "In order to function properly:"
|
17335 |
msgstr "Pour fonctionner correctement:"
|
17336 |
|
17337 |
-
#: wppa-settings-autosave.php:
|
17338 |
msgid "1. Get yourself a Fotomoto account."
|
17339 |
msgstr "1. Créez-vous un compte Fotomoto."
|
17340 |
|
17341 |
-
#: wppa-settings-autosave.php:
|
17342 |
msgid ""
|
17343 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
|
17344 |
"the \"Use API Mode:\" checkbox."
|
@@ -17346,25 +17348,25 @@ msgstr ""
|
|
17346 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et "
|
17347 |
"vérifiez la case à cocher \"Use API Mode:\"."
|
17348 |
|
17349 |
-
#: wppa-settings-autosave.php:
|
17350 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
17351 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
17352 |
|
17353 |
-
#: wppa-settings-autosave.php:
|
17354 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
17355 |
msgstr ""
|
17356 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-"
|
17357 |
"B15 )."
|
17358 |
|
17359 |
-
#: wppa-settings-autosave.php:
|
17360 |
msgid "Fotomoto fontsize"
|
17361 |
msgstr "Taille de la police de caractère Fotomoto"
|
17362 |
|
17363 |
-
#: wppa-settings-autosave.php:
|
17364 |
msgid "Fontsize for the Fotomoto toolbar."
|
17365 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
17366 |
|
17367 |
-
#: wppa-settings-autosave.php:
|
17368 |
msgid ""
|
17369 |
"If you set it here, it overrules a possible setting for font-size in ."
|
17370 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
@@ -17372,42 +17374,42 @@ msgstr ""
|
|
17372 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
17373 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
17374 |
|
17375 |
-
#: wppa-settings-autosave.php:
|
17376 |
msgid "Hide toolbar on running slideshows"
|
17377 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
17378 |
|
17379 |
-
#: wppa-settings-autosave.php:
|
17380 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
17381 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
17382 |
|
17383 |
-
#: wppa-settings-autosave.php:
|
17384 |
msgid "Fotomoto minwidth"
|
17385 |
msgstr "Largeur mini de Fotomoto"
|
17386 |
|
17387 |
-
#: wppa-settings-autosave.php:
|
17388 |
msgid "Minimum width to display Fotomoto toolbar."
|
17389 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
17390 |
|
17391 |
-
#: wppa-settings-autosave.php:
|
17392 |
msgid ""
|
17393 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
17394 |
msgstr ""
|
17395 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus "
|
17396 |
"petits."
|
17397 |
|
17398 |
-
#: wppa-settings-autosave.php:
|
17399 |
msgid "Image Magick"
|
17400 |
msgstr "Image Magick"
|
17401 |
|
17402 |
-
#: wppa-settings-autosave.php:
|
17403 |
msgid "Absulute path to the ImageMagick commands"
|
17404 |
msgstr "Absulute chemin d’accès pour les commandes de ImageMagick"
|
17405 |
|
17406 |
-
#: wppa-settings-autosave.php:
|
17407 |
msgid "experimental"
|
17408 |
msgstr "expérimental"
|
17409 |
|
17410 |
-
#: wppa-settings-autosave.php:
|
17411 |
msgid ""
|
17412 |
"If you want to use ImageMagick, enter the absolute path to the ImageMagick "
|
17413 |
"commands"
|
@@ -17415,68 +17417,68 @@ msgstr ""
|
|
17415 |
"Si vous souhaitez utiliser ImageMagick, entrez le chemin d’accès absolu pour "
|
17416 |
"les commandes de ImageMagick"
|
17417 |
|
17418 |
-
#: wppa-settings-autosave.php:
|
17419 |
#, fuzzy
|
17420 |
msgid "Photo shortcode related settings"
|
17421 |
msgstr "paramètres photo de shortcode liés"
|
17422 |
|
17423 |
-
#: wppa-settings-autosave.php:
|
17424 |
#, fuzzy
|
17425 |
msgid "Enable shortcode [photo ..]"
|
17426 |
msgstr "Activer shortcode [photo ..]"
|
17427 |
|
17428 |
-
#: wppa-settings-autosave.php:
|
17429 |
#, fuzzy
|
17430 |
msgid "Make the use of shortcode [photo ..] possible"
|
17431 |
msgstr "Faire l'utilisation de shortcode [photo ..] possible"
|
17432 |
|
17433 |
-
#: wppa-settings-autosave.php:
|
17434 |
#, fuzzy
|
17435 |
msgid "Only disbale this when there is a conflict with another plugin"
|
17436 |
msgstr "Seulement disbale quand il y a un conflit avec un autre plugin"
|
17437 |
|
17438 |
-
#: wppa-settings-autosave.php:
|
17439 |
msgid "Single image type"
|
17440 |
msgstr "Type d'image seule"
|
17441 |
|
17442 |
-
#: wppa-settings-autosave.php:
|
17443 |
#, fuzzy
|
17444 |
msgid "Specify the single image type the shortcode [photo ..] should show."
|
17445 |
msgstr ""
|
17446 |
"Spécifiez l'image unique tapez le shortcode [photo ..] devrait montrer."
|
17447 |
|
17448 |
-
#: wppa-settings-autosave.php:
|
17449 |
msgid "A plain single photo"
|
17450 |
msgstr "A plain single photo"
|
17451 |
|
17452 |
-
#: wppa-settings-autosave.php:
|
17453 |
msgid "A single photo with caption"
|
17454 |
msgstr "Une photo seule avec légende"
|
17455 |
|
17456 |
-
#: wppa-settings-autosave.php:
|
17457 |
#, fuzzy
|
17458 |
msgid "A single photo with extended caption"
|
17459 |
msgstr "Une seule photo avec la légende étendue"
|
17460 |
|
17461 |
-
#: wppa-settings-autosave.php:
|
17462 |
msgid "A single photo in the style of a slideshow"
|
17463 |
msgstr "Une photo seule avec le style du diaporama"
|
17464 |
|
17465 |
-
#: wppa-settings-autosave.php:
|
17466 |
msgid "Size"
|
17467 |
msgstr "Taille"
|
17468 |
|
17469 |
-
#: wppa-settings-autosave.php:
|
17470 |
#, fuzzy
|
17471 |
msgid "Specify the size (width) of the image."
|
17472 |
msgstr "Indiquez la taille (largeur) de l'image."
|
17473 |
|
17474 |
-
#: wppa-settings-autosave.php:
|
17475 |
#, fuzzy
|
17476 |
msgid "Use the same syntax as in the [wppa size=\"..\"] shortcode"
|
17477 |
msgstr "Utilisez la même syntaxe que dans le [size LPPT = \"..\"] shortcode"
|
17478 |
|
17479 |
-
#: wppa-settings-autosave.php:
|
17480 |
#, fuzzy
|
17481 |
msgid ""
|
17482 |
"Examples: 350 for a fixed width of 350 pixels, or: 0.75 for a responsive "
|
@@ -17487,48 +17489,48 @@ msgstr ""
|
|
17487 |
"affichage sensible de 75% width, ou: auto, 350 pour réactif, avec un maximum "
|
17488 |
"de 350 pixels."
|
17489 |
|
17490 |
-
#: wppa-settings-autosave.php:
|
17491 |
msgid "Align"
|
17492 |
msgstr "Alignement"
|
17493 |
|
17494 |
-
#: wppa-settings-autosave.php:
|
17495 |
#, fuzzy
|
17496 |
msgid "Specify the alignment of the image."
|
17497 |
msgstr "Spécifiez l'alignement de l'image."
|
17498 |
|
17499 |
-
#: wppa-settings-autosave.php:
|
17500 |
msgid "Table X:"
|
17501 |
msgstr "Table X:"
|
17502 |
|
17503 |
-
#: wppa-settings-autosave.php:
|
17504 |
msgid "IPTC Configuration:"
|
17505 |
msgstr "Configuration IPTC:"
|
17506 |
|
17507 |
-
#: wppa-settings-autosave.php:
|
17508 |
msgid "This table defines the IPTC configuration"
|
17509 |
msgstr "Cette table règle la configuration de IPTC"
|
17510 |
|
17511 |
-
#: wppa-settings-autosave.php:
|
17512 |
msgid "Display"
|
17513 |
msgstr "Afficher"
|
17514 |
|
17515 |
-
#: wppa-settings-autosave.php:
|
17516 |
msgid "Hide"
|
17517 |
msgstr "Cacher"
|
17518 |
|
17519 |
-
#: wppa-settings-autosave.php:
|
17520 |
msgid "Table XI:"
|
17521 |
msgstr "Table XI:"
|
17522 |
|
17523 |
-
#: wppa-settings-autosave.php:
|
17524 |
msgid "EXIF Configuration:"
|
17525 |
msgstr "Configuration EXIF:"
|
17526 |
|
17527 |
-
#: wppa-settings-autosave.php:
|
17528 |
msgid "This table defines the EXIF configuration"
|
17529 |
msgstr "Cette table règle la configuration d'EXIF"
|
17530 |
|
17531 |
-
#: wppa-settings-autosave.php:
|
17532 |
msgid ""
|
17533 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
17534 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
|
@@ -17539,15 +17541,15 @@ msgstr ""
|
|
17539 |
"à votre hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de "
|
17540 |
"configuration</b> de PHP."
|
17541 |
|
17542 |
-
#: wppa-settings-autosave.php:
|
17543 |
msgid "Table XII:"
|
17544 |
msgstr "Table XII:"
|
17545 |
|
17546 |
-
#: wppa-settings-autosave.php:
|
17547 |
msgid "WPPA+ and PHP Configuration:"
|
17548 |
msgstr "Configuration WPPA+ et PHP:"
|
17549 |
|
17550 |
-
#: wppa-settings-autosave.php:
|
17551 |
msgid ""
|
17552 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
17553 |
"and is read only"
|
@@ -17555,146 +17557,146 @@ msgstr ""
|
|
17555 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
17556 |
"les paramètres de configuration du serveur PHP"
|
17557 |
|
17558 |
-
#: wppa-settings-autosave.php:
|
17559 |
msgid "Value"
|
17560 |
msgstr "Valeur"
|
17561 |
|
17562 |
-
#: wppa-settings-autosave.php:
|
17563 |
msgid "Albums db table name."
|
17564 |
msgstr "Nom de la table albums dans la base de données."
|
17565 |
|
17566 |
-
#: wppa-settings-autosave.php:
|
17567 |
msgid "Photos db table name."
|
17568 |
msgstr "Nom de la table photos dans la base de données."
|
17569 |
|
17570 |
-
#: wppa-settings-autosave.php:
|
17571 |
msgid "Rating db table name."
|
17572 |
msgstr "Nom de la table votes dans la base de données."
|
17573 |
|
17574 |
-
#: wppa-settings-autosave.php:
|
17575 |
msgid "Comments db table name."
|
17576 |
msgstr "Nom de la table commentaires dans la base de données."
|
17577 |
|
17578 |
-
#: wppa-settings-autosave.php:
|
17579 |
msgid "IPTC db table name."
|
17580 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
17581 |
|
17582 |
-
#: wppa-settings-autosave.php:
|
17583 |
msgid "EXIF db table name."
|
17584 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
17585 |
|
17586 |
-
#: wppa-settings-autosave.php:
|
17587 |
msgid "Index db table name."
|
17588 |
msgstr "Nom de la table Index dans la base de donnée."
|
17589 |
|
17590 |
-
#: wppa-settings-autosave.php:
|
17591 |
msgid "Plugins main file name."
|
17592 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
17593 |
|
17594 |
-
#: wppa-settings-autosave.php:
|
17595 |
msgid "WP absolute path."
|
17596 |
msgstr "Chemin d’accès absolu de WP."
|
17597 |
|
17598 |
-
#: wppa-settings-autosave.php:
|
17599 |
msgid "ABSPATH windows proof"
|
17600 |
msgstr "ABSPATH windows proof"
|
17601 |
|
17602 |
-
#: wppa-settings-autosave.php:
|
17603 |
msgid "Path to plugins directory."
|
17604 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
17605 |
|
17606 |
-
#: wppa-settings-autosave.php:
|
17607 |
msgid "Plugins directory name."
|
17608 |
msgstr "Nom du répertoire des greffons (plugins)."
|
17609 |
|
17610 |
-
#: wppa-settings-autosave.php:
|
17611 |
msgid "Plugins directory url."
|
17612 |
msgstr "URL du répertoire des greffons (plugins)."
|
17613 |
|
17614 |
-
#: wppa-settings-autosave.php:
|
17615 |
msgid "The relative upload directory."
|
17616 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
17617 |
|
17618 |
-
#: wppa-settings-autosave.php:
|
17619 |
msgid "The upload directory path."
|
17620 |
msgstr "Chemin du répertoire de chargement (upload)."
|
17621 |
|
17622 |
-
#: wppa-settings-autosave.php:
|
17623 |
msgid "The upload directory url."
|
17624 |
msgstr "URL du répertoire de chargement (upload)."
|
17625 |
|
17626 |
-
#: wppa-settings-autosave.php:
|
17627 |
msgid "The relative depot directory."
|
17628 |
msgstr "Chemin relatif du répertoire de dépôt."
|
17629 |
|
17630 |
-
#: wppa-settings-autosave.php:
|
17631 |
msgid "The depot directory path."
|
17632 |
msgstr "Chemin du répertoire de dépôt."
|
17633 |
|
17634 |
-
#: wppa-settings-autosave.php:
|
17635 |
msgid "The depot directory url."
|
17636 |
msgstr "URL du répertoire de dépôt."
|
17637 |
|
17638 |
-
#: wppa-settings-autosave.php:
|
17639 |
msgid "The path to wp-content."
|
17640 |
msgstr "Chemin vers wp-content."
|
17641 |
|
17642 |
-
#: wppa-settings-autosave.php:
|
17643 |
msgid "WP Content url."
|
17644 |
msgstr "URL de contenu WP."
|
17645 |
|
17646 |
-
#: wppa-settings-autosave.php:
|
17647 |
msgid "WP Base upload dir."
|
17648 |
msgstr "Répertoire de chargement de WP."
|
17649 |
|
17650 |
-
#: wppa-settings-autosave.php:
|
17651 |
#, php-format
|
17652 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
17653 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
17654 |
|
17655 |
-
#: wppa-settings-autosave.php:
|
17656 |
#, php-format
|
17657 |
msgid "<br />There are %d settings and %d runtime parameters."
|
17658 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
17659 |
|
17660 |
-
#: wppa-settings-autosave.php:
|
17661 |
-
#: wppa-settings-autosave.php:
|
17662 |
msgid "Warning!"
|
17663 |
msgstr "Attention!"
|
17664 |
|
17665 |
-
#: wppa-settings-autosave.php:
|
17666 |
msgid "Please read the help"
|
17667 |
msgstr "Veuillez consulter l'aide"
|
17668 |
|
17669 |
-
#: wppa-settings-autosave.php:
|
17670 |
msgid "Show!"
|
17671 |
msgstr "Montrer!"
|
17672 |
|
17673 |
-
#: wppa-settings-autosave.php:
|
17674 |
msgid "Not done yet"
|
17675 |
msgstr "Pas encore fait"
|
17676 |
|
17677 |
-
#: wppa-settings-autosave.php:
|
17678 |
msgid "Start as cron job"
|
17679 |
msgstr "Commencez comme tâche cron"
|
17680 |
|
17681 |
-
#: wppa-settings-autosave.php:
|
17682 |
msgid "Locked!"
|
17683 |
msgstr "Verrouillé!"
|
17684 |
|
17685 |
-
#: wppa-settings-autosave.php:
|
17686 |
msgid "Crashed!"
|
17687 |
msgstr "Écrasé!"
|
17688 |
|
17689 |
-
#: wppa-settings-autosave.php:
|
17690 |
msgid "Click me to resume"
|
17691 |
msgstr "Cliquez-moi pour reprendre"
|
17692 |
|
17693 |
-
#: wppa-settings-autosave.php:
|
17694 |
msgid "Start!"
|
17695 |
msgstr "Démarrer!"
|
17696 |
|
17697 |
-
#: wppa-settings-autosave.php:
|
17698 |
msgid ""
|
17699 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
17700 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
@@ -17703,7 +17705,7 @@ msgstr ""
|
|
17703 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
17704 |
"VI-2."
|
17705 |
|
17706 |
-
#: wppa-settings-autosave.php:
|
17707 |
#, fuzzy
|
17708 |
msgid ""
|
17709 |
"It is important that you select a page that contains at least [wppa][/wppa]."
|
@@ -17711,7 +17713,7 @@ msgstr ""
|
|
17711 |
"Il est important que vous sélectionnez une page qui contient au moins [LPPT] "
|
17712 |
"[/ LPPT]."
|
17713 |
|
17714 |
-
#: wppa-settings-autosave.php:
|
17715 |
msgid ""
|
17716 |
"If you ommit this, the link will not work at all or simply refresh the "
|
17717 |
"(home)page."
|
@@ -17788,112 +17790,112 @@ msgstr "Votez pour moi !"
|
|
17788 |
msgid "Voted for me"
|
17789 |
msgstr "Ont voté pour moi"
|
17790 |
|
17791 |
-
#: wppa-setup.php:
|
17792 |
msgid "NEW"
|
17793 |
msgstr "NOUVEAU"
|
17794 |
|
17795 |
-
#: wppa-setup.php:
|
17796 |
msgid "MODIFIED"
|
17797 |
msgstr "MODIFIE"
|
17798 |
|
17799 |
-
#: wppa-setup.php:
|
17800 |
msgid "Search in current section"
|
17801 |
msgstr "Rechercher dans la section courante"
|
17802 |
|
17803 |
-
#: wppa-setup.php:
|
17804 |
msgid "Search in current results"
|
17805 |
msgstr "Rechercher dans les résultats courants"
|
17806 |
|
17807 |
-
#: wppa-setup.php:
|
17808 |
msgid "Type your custom url here"
|
17809 |
msgstr "Tapez votre URL personnalisée ici"
|
17810 |
|
17811 |
-
#: wppa-setup.php:
|
17812 |
msgid "Type the title here"
|
17813 |
msgstr "Entrez ici le titre de la page"
|
17814 |
|
17815 |
-
#: wppa-setup.php:
|
17816 |
#: wppa-topten-widget.php:310
|
17817 |
msgid "Top Ten Photos"
|
17818 |
msgstr "Meilleures photos"
|
17819 |
|
17820 |
-
#: wppa-setup.php:
|
17821 |
#: wppa-thumbnail-widget.php:166
|
17822 |
msgid "Thumbnail Photos"
|
17823 |
msgstr "Vignettes"
|
17824 |
|
17825 |
-
#: wppa-setup.php:
|
17826 |
msgid "Search photos"
|
17827 |
msgstr "Rechercher dans les photos"
|
17828 |
|
17829 |
-
#: wppa-setup.php:
|
17830 |
msgid ""
|
17831 |
"The uploads directory does not exist, please do a regular WP upload first."
|
17832 |
msgstr ""
|
17833 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire "
|
17834 |
"un chargement basique via WordPress."
|
17835 |
|
17836 |
-
#: wppa-setup.php:
|
17837 |
msgid "Successfully created uploads directory."
|
17838 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
17839 |
|
17840 |
-
#: wppa-setup.php:
|
17841 |
msgid "Could not create the wppa directory."
|
17842 |
msgstr "Impossible de créer le répertoire WPPA."
|
17843 |
|
17844 |
-
#: wppa-setup.php:
|
17845 |
msgid "Successfully created wppa directory."
|
17846 |
msgstr "Répertoire WPPA créé avec succès."
|
17847 |
|
17848 |
-
#: wppa-setup.php:
|
17849 |
msgid "Could not create the wppa thumbs directory."
|
17850 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
17851 |
|
17852 |
-
#: wppa-setup.php:
|
17853 |
msgid "Successfully created wppa thumbs directory."
|
17854 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
17855 |
|
17856 |
-
#: wppa-setup.php:
|
17857 |
msgid "Could not create the wppa watermarks directory."
|
17858 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
17859 |
|
17860 |
-
#: wppa-setup.php:
|
17861 |
msgid "Successfully created wppa watermarks directory."
|
17862 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
17863 |
|
17864 |
-
#: wppa-setup.php:
|
17865 |
msgid "Could not create the wppa fonts directory."
|
17866 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
17867 |
|
17868 |
-
#: wppa-setup.php:
|
17869 |
msgid "Successfully created wppa fonts directory."
|
17870 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
17871 |
|
17872 |
-
#: wppa-setup.php:
|
17873 |
msgid "Unable to create depot directory."
|
17874 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
17875 |
|
17876 |
-
#: wppa-setup.php:
|
17877 |
msgid "Successfully created wppa depot directory."
|
17878 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
17879 |
|
17880 |
-
#: wppa-setup.php:
|
17881 |
msgid "Unable to create user depot directory"
|
17882 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
17883 |
|
17884 |
-
#: wppa-setup.php:
|
17885 |
msgid "Successfully created wppa user depot directory."
|
17886 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
17887 |
|
17888 |
-
#: wppa-setup.php:
|
17889 |
msgid "Unable to create temp directory"
|
17890 |
msgstr "Impossible de créer le répertoire temporaire"
|
17891 |
|
17892 |
-
#: wppa-setup.php:
|
17893 |
msgid "Successfully created temp directory."
|
17894 |
msgstr "Répertoire temporaire créé avec succès."
|
17895 |
|
17896 |
-
#: wppa-setup.php:
|
17897 |
#, php-format
|
17898 |
msgid ""
|
17899 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
@@ -17902,7 +17904,7 @@ msgstr ""
|
|
17902 |
"Demander à votre administrateur de vous donner plus de droits, ou créer <b>"
|
17903 |
"%s</b> manuellement en utilisant un logiciel FTP."
|
17904 |
|
17905 |
-
#: wppa-setup.php:
|
17906 |
msgid "Default photo album for"
|
17907 |
msgstr "Album par défaut pour"
|
17908 |
|
@@ -18824,7 +18826,7 @@ msgstr ""
|
|
18824 |
msgid "Upload a single photo"
|
18825 |
msgstr "Uploader une seule photo"
|
18826 |
|
18827 |
-
#: wppa-upload.php:204 wppa-upload.php:349 wppa-upload.php:
|
18828 |
msgid "Please select an album"
|
18829 |
msgstr "Sélectionner un album"
|
18830 |
|
@@ -18875,7 +18877,7 @@ msgstr ""
|
|
18875 |
"Vous ne pourrez faire de la sélection multiple qu'avec un navigateur qui "
|
18876 |
"supporte HTML-5. ( La plupart des navigateurs modernes )"
|
18877 |
|
18878 |
-
#: wppa-upload.php:270 wppa-upload.php:279 wppa-upload.php:
|
18879 |
msgid "Selected Files:"
|
18880 |
msgstr "Fichiers sélectionnés:"
|
18881 |
|
@@ -18903,42 +18905,42 @@ msgstr "Total"
|
|
18903 |
msgid "Upload Multiple Photos"
|
18904 |
msgstr "Charger photos multiples"
|
18905 |
|
18906 |
-
#: wppa-upload.php:
|
18907 |
msgid "After upload: Go to the <b>Edit Album</b> page."
|
18908 |
msgstr "Après le chargement: Aller à la page <b>Modifier l'album</b>."
|
18909 |
|
18910 |
-
#: wppa-upload.php:
|
18911 |
msgid "After upload: Go to the <b>Edit Photos</b> page."
|
18912 |
msgstr "Après le chargement: Aller à la page <b>Modifier les photos</b>."
|
18913 |
|
18914 |
-
#: wppa-upload.php:
|
18915 |
msgid "Box B:"
|
18916 |
msgstr "Boîte B:"
|
18917 |
|
18918 |
-
#: wppa-upload.php:
|
18919 |
msgid "Single Photos in multiple selections"
|
18920 |
msgstr "Photo seule, sélection multiple"
|
18921 |
|
18922 |
-
#: wppa-upload.php:
|
18923 |
#, php-format
|
18924 |
msgid "You can select up to %s photos one by one and upload them at once."
|
18925 |
msgstr ""
|
18926 |
"Vous pouvez sélectionner jusqu'à %s photos une par une et les charger sur le "
|
18927 |
"site."
|
18928 |
|
18929 |
-
#: wppa-upload.php:
|
18930 |
msgid "Upload Single Photos"
|
18931 |
msgstr "Charger une seule photo"
|
18932 |
|
18933 |
-
#: wppa-upload.php:
|
18934 |
msgid "Box C:"
|
18935 |
msgstr "Boîte C:"
|
18936 |
|
18937 |
-
#: wppa-upload.php:
|
18938 |
msgid "Zipped Photos in one selection"
|
18939 |
msgstr "Photos zippées, sélection unique"
|
18940 |
|
18941 |
-
#: wppa-upload.php:
|
18942 |
#, php-format
|
18943 |
msgid ""
|
18944 |
"You can upload one zipfile. It will be placed in your personal wppa-depot: "
|
@@ -18950,15 +18952,15 @@ msgstr ""
|
|
18950 |
"<b>Importer photos</b> pour dézipper le fichier et placer les photos dans "
|
18951 |
"l'album désiré (qui doit déjà exister)."
|
18952 |
|
18953 |
-
#: wppa-upload.php:
|
18954 |
msgid "Upload Zipped Photos"
|
18955 |
msgstr "Charger des photos zippées"
|
18956 |
|
18957 |
-
#: wppa-upload.php:
|
18958 |
msgid "After upload: Go to the <b>Import Photos</b> page."
|
18959 |
msgstr "Après le chargement: Aller à la page <b>Importer photos</b>."
|
18960 |
|
18961 |
-
#: wppa-upload.php:
|
18962 |
#, fuzzy
|
18963 |
msgid ""
|
18964 |
"Ask your administrator to upgrade php to version 5.2.7 or later. This will "
|
@@ -18967,24 +18969,24 @@ msgstr ""
|
|
18967 |
"Demandez à votre administrateur de mettre à jour la version 5.2.7 php ou "
|
18968 |
"version ultérieure. Cela vous permettra de télécharger des photos zippées."
|
18969 |
|
18970 |
-
#: wppa-upload.php:
|
18971 |
#, php-format
|
18972 |
msgid "Time out. %s photos uploaded in album nr %s."
|
18973 |
msgstr "Timeout. %s photos chargées dans l'album no %s."
|
18974 |
|
18975 |
-
#: wppa-upload.php:
|
18976 |
msgid "Photos Uploaded in album nr"
|
18977 |
msgstr "Photos chargées dans l'album n°"
|
18978 |
|
18979 |
-
#: wppa-upload.php:
|
18980 |
msgid "Zipfile"
|
18981 |
msgstr "Fichier ZIP"
|
18982 |
|
18983 |
-
#: wppa-upload.php:
|
18984 |
msgid "sucessfully uploaded."
|
18985 |
msgstr "Photo chargée avec succès."
|
18986 |
|
18987 |
-
#: wppa-upload.php:
|
18988 |
msgid "during upload."
|
18989 |
msgstr "pendant le chargement."
|
18990 |
|
@@ -19011,89 +19013,89 @@ msgstr "Le statut est passé à \"pending\"."
|
|
19011 |
msgid "It has been deleted."
|
19012 |
msgstr "A été effacé."
|
19013 |
|
19014 |
-
#: wppa-utils.php:
|
19015 |
msgid "Your photo has a new approved comment"
|
19016 |
msgstr "Votre photo a un nouveau commentaire approuvé"
|
19017 |
|
19018 |
-
#: wppa-utils.php:
|
19019 |
msgid "From:"
|
19020 |
msgstr "De:"
|
19021 |
|
19022 |
-
#: wppa-utils.php:
|
19023 |
msgid "Approved comment on photo"
|
19024 |
msgstr "Approuvé commentaire sur photo"
|
19025 |
|
19026 |
-
#: wppa-utils.php:
|
19027 |
#, php-format
|
19028 |
msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
|
19029 |
msgstr "L'adresse email du visiteur est: <a href=\"mailto:%s\">%s</a>"
|
19030 |
|
19031 |
-
#: wppa-utils.php:
|
19032 |
#, php-format
|
19033 |
msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
|
19034 |
msgstr ""
|
19035 |
"Le visiteur dit que son adresse email est: <a href=\"mailto:%s\">%s</a>"
|
19036 |
|
19037 |
-
#: wppa-utils.php:
|
19038 |
#, php-format
|
19039 |
msgid ""
|
19040 |
"This message is automaticly generated at %s. It is useless to respond to it."
|
19041 |
msgstr ""
|
19042 |
"Ce message est généré automatiquement à %s. Il est inutile d'y répondre."
|
19043 |
|
19044 |
-
#: wppa-utils.php:
|
19045 |
#, php-format
|
19046 |
msgid "Time out after processing %s items."
|
19047 |
msgstr "Time out après traitement de %s objets."
|
19048 |
|
19049 |
-
#: wppa-utils.php:
|
19050 |
#, php-format
|
19051 |
msgid "Time out after processing %s items. Please restart this operation"
|
19052 |
msgstr "Time out après traitement de %s objets. Recommencer l'opération"
|
19053 |
|
19054 |
-
#: wppa-utils.php:
|
19055 |
msgid "Could not delete photo"
|
19056 |
msgstr "Impossible de supprimer la photo"
|
19057 |
|
19058 |
-
#: wppa-utils.php:
|
19059 |
msgid "Photo is still in use in post/page"
|
19060 |
msgstr "La photo est encore en cours d'utilisation en post / page"
|
19061 |
|
19062 |
-
#: wppa-utils.php:
|
19063 |
msgid "Photo w#id"
|
19064 |
msgstr "Photo w#id"
|
19065 |
|
19066 |
-
#: wppa-utils.php:
|
19067 |
msgid "There are no ratings between"
|
19068 |
msgstr "Il n’y a aucune cote entre"
|
19069 |
|
19070 |
-
#: wppa-utils.php:
|
19071 |
#, php-format
|
19072 |
msgid "You and %d other person like this"
|
19073 |
msgid_plural "You and %d other people like this"
|
19074 |
msgstr[0] "Vous et %d total autre personne aiment cela."
|
19075 |
msgstr[1] "Vous et %d total autre personnes aiment cela."
|
19076 |
|
19077 |
-
#: wppa-utils.php:
|
19078 |
msgid "You are the first one who likes this"
|
19079 |
msgstr "Vous êtes la première personne qui aime ça"
|
19080 |
|
19081 |
-
#: wppa-utils.php:
|
19082 |
msgid "Click again if you do no longer like this"
|
19083 |
msgstr "Cliquez à nouveau si vous aime plus comme ceci"
|
19084 |
|
19085 |
-
#: wppa-utils.php:
|
19086 |
#, php-format
|
19087 |
msgid "%d person likes this"
|
19088 |
msgid_plural "%d people like this"
|
19089 |
msgstr[0] "%d personne aime ça"
|
19090 |
msgstr[1] "%d personnes aime ça"
|
19091 |
|
19092 |
-
#: wppa-utils.php:
|
19093 |
msgid "Be the first one to like this"
|
19094 |
msgstr "Soyez le premier à aimer!"
|
19095 |
|
19096 |
-
#: wppa-utils.php:
|
19097 |
#, php-format
|
19098 |
msgid "%d like"
|
19099 |
msgid_plural "%d likes"
|
@@ -19148,6 +19150,18 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
|
|
19148 |
msgid "http://wppa.opajaap.nl/"
|
19149 |
msgstr "http://wppa.opajaap.nl/"
|
19150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19151 |
#, fuzzy
|
19152 |
#~ msgid "Uer must answer security question."
|
19153 |
#~ msgstr "Uer doit répondre à la question de sécurité."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-03-03 11:50+0100\n"
|
6 |
+
"PO-Revision-Date: 2017-03-03 11:52+0100\n"
|
7 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language-Team: French <kde-i18n-doc@kde.org>\n"
|
9 |
"Language: fr_FR\n"
|
32 |
#: wppa-album-admin-autosave.php:1433 wppa-album-admin-autosave.php:1471
|
33 |
#: wppa-album-admin-autosave.php:1570 wppa-album-admin-autosave.php:1805
|
34 |
#: wppa-album-admin-autosave.php:1900 wppa-album-admin-autosave.php:1974
|
35 |
+
#: wppa-album-admin-autosave.php:2116 wppa-album-admin-autosave.php:2626
|
36 |
#: wppa-comment-admin.php:318 wppa-comment-admin.php:387
|
37 |
#: wppa-comment-admin.php:405 wppa-setup.php:1389 wppa-thumbnails.php:685
|
38 |
msgid "Edit"
|
43 |
msgstr "Attention. Aucune page définie pour les résultats de recherche!"
|
44 |
|
45 |
#: theme/photo-album-search-page.php:39 wppa-boxes-html.php:175
|
46 |
+
#: wppa-settings-autosave.php:373 wppa-settings-autosave.php:3329
|
47 |
msgid "Search"
|
48 |
msgstr "Chercher"
|
49 |
|
74 |
msgid "Next page"
|
75 |
msgstr "Page suiv."
|
76 |
|
77 |
+
#: theme/search-2016.php:48 wppa-settings-autosave.php:371
|
78 |
+
#: wppa-settings-autosave.php:1604 wppa-settings-autosave.php:9139
|
79 |
msgid "Page"
|
80 |
msgstr "Page"
|
81 |
|
238 |
msgid "Could not insert photo."
|
239 |
msgstr "Impossible d'insérer la photo."
|
240 |
|
241 |
+
#: wppa-admin-functions.php:1074
|
242 |
msgid "ERROR: Unknown file or album."
|
243 |
msgstr "ERREUR: Album ou fichier inconnu."
|
244 |
|
245 |
+
#: wppa-admin-functions.php:1188
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"There are <strong>%d</strong> albums and <strong>%d</strong> photos in the "
|
251 |
"Il y a <strong>%d</strong> albums et <strong>%d</strong> photos dans le "
|
252 |
"système."
|
253 |
|
254 |
+
#: wppa-admin-functions.php:1189
|
255 |
#, php-format
|
256 |
msgid "<strong>%d</strong> photos are pending moderation."
|
257 |
msgstr "<strong>%d</strong> photos attendent une modération."
|
258 |
|
259 |
+
#: wppa-admin-functions.php:1190
|
260 |
#, php-format
|
261 |
msgid "<strong>%d</strong> photos are scheduled for later publishing."
|
262 |
msgstr ""
|
263 |
"<strong>%d</strong> photos sont programmées pour publication ultérieure."
|
264 |
|
265 |
+
#: wppa-admin-functions.php:1193
|
266 |
#, php-format
|
267 |
msgid "The most recently added album is <strong>%s</strong> (%d)."
|
268 |
msgstr "L'album le plus récemment ajoutée est <strong>%s</strong> (%d)."
|
269 |
|
270 |
+
#: wppa-admin-functions.php:1197
|
271 |
#, php-format
|
272 |
msgid "The most recently added photo is <strong>%s</strong> (%d)"
|
273 |
msgstr "La photo la plus récemment ajoutée est <strong>%s</strong> (%d)"
|
274 |
|
275 |
+
#: wppa-admin-functions.php:1198
|
276 |
#, php-format
|
277 |
msgid "in album <strong>%s</strong> (%d)."
|
278 |
msgstr "dans l'album <strong>%s</strong> (%d)."
|
281 |
msgid "Photo Albums"
|
282 |
msgstr "Albums Photo"
|
283 |
|
284 |
+
#: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6165
|
285 |
msgid "Album Admin"
|
286 |
msgstr "Administration de l'album"
|
287 |
|
288 |
+
#: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6166
|
289 |
#: wppa-upload-widget.php:79 wppa-upload.php:119
|
290 |
msgid "Upload Photos"
|
291 |
msgstr "Charger des photos"
|
295 |
msgstr "Modifier les photos"
|
296 |
|
297 |
#: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
|
298 |
+
#: wppa-settings-autosave.php:6167
|
299 |
msgid "Import Photos"
|
300 |
msgstr "Importer des photos"
|
301 |
|
304 |
msgstr "Modérez les photos"
|
305 |
|
306 |
#: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
|
307 |
+
#: wppa-settings-autosave.php:6169
|
308 |
msgid "Export Photos"
|
309 |
msgstr "Exporter des photos"
|
310 |
|
311 |
#: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
312 |
+
#: wppa-settings-autosave.php:6170
|
313 |
msgid "Settings"
|
314 |
msgstr "Réglages"
|
315 |
|
318 |
msgstr "Widget \"Photo du jour\""
|
319 |
|
320 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
321 |
+
#: wppa-settings-autosave.php:6171 wppa-setup.php:1692
|
322 |
msgid "Photo of the day"
|
323 |
msgstr "Photo du jour"
|
324 |
|
326 |
msgid "Manage comments"
|
327 |
msgstr "Gérer les commentaires"
|
328 |
|
329 |
+
#: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:362
|
330 |
+
#: wppa-settings-autosave.php:3158 wppa-settings-autosave.php:8938
|
331 |
+
#: wppa-settings-autosave.php:8983
|
332 |
msgid "Comments"
|
333 |
msgstr "Commentaires"
|
334 |
|
356 |
msgid "Import"
|
357 |
msgstr "Importer"
|
358 |
|
359 |
+
#: wppa-admin.php:128 wppa-settings-autosave.php:10225
|
360 |
msgid "Update"
|
361 |
msgstr "Mettre à jour"
|
362 |
|
650 |
#: wppa-boxes-html.php:529 wppa-photo-admin-autosave.php:2019
|
651 |
#: wppa-photo-admin-autosave.php:2195 wppa-photo-admin-autosave.php:2612
|
652 |
#: wppa-potd-admin.php:71 wppa-potd-admin.php:358
|
653 |
+
#: wppa-settings-autosave.php:507 wppa-settings-autosave.php:669
|
654 |
+
#: wppa-settings-autosave.php:691 wppa-settings-autosave.php:1470
|
655 |
+
#: wppa-settings-autosave.php:1491 wppa-settings-autosave.php:3055
|
656 |
+
#: wppa-settings-autosave.php:3076 wppa-settings-autosave.php:3452
|
657 |
+
#: wppa-settings-autosave.php:3476 wppa-settings-autosave.php:4033
|
658 |
+
#: wppa-settings-autosave.php:4162 wppa-settings-autosave.php:4852
|
659 |
+
#: wppa-settings-autosave.php:4873 wppa-settings-autosave.php:5049
|
660 |
+
#: wppa-settings-autosave.php:5073 wppa-settings-autosave.php:6131
|
661 |
+
#: wppa-settings-autosave.php:6586 wppa-settings-autosave.php:6836
|
662 |
+
#: wppa-settings-autosave.php:6858 wppa-settings-autosave.php:7683
|
663 |
+
#: wppa-settings-autosave.php:7707 wppa-settings-autosave.php:8932
|
664 |
+
#: wppa-settings-autosave.php:9637 wppa-settings-autosave.php:9793
|
665 |
#: wppa-thumbnail-widget.php:202 wppa-upload.php:281
|
666 |
msgid "Name"
|
667 |
msgstr "Nom"
|
671 |
#: wppa-album-admin-autosave.php:1857 wppa-photo-admin-autosave.php:2020
|
672 |
#: wppa-photo-admin-autosave.php:2196 wppa-photo-admin-autosave.php:2613
|
673 |
#: wppa-potd-admin.php:72 wppa-potd-admin.php:138 wppa-potd-admin.php:359
|
674 |
+
#: wppa-settings-autosave.php:508 wppa-settings-autosave.php:670
|
675 |
+
#: wppa-settings-autosave.php:692 wppa-settings-autosave.php:1471
|
676 |
+
#: wppa-settings-autosave.php:1492 wppa-settings-autosave.php:3056
|
677 |
+
#: wppa-settings-autosave.php:3077 wppa-settings-autosave.php:3453
|
678 |
+
#: wppa-settings-autosave.php:3477 wppa-settings-autosave.php:4853
|
679 |
+
#: wppa-settings-autosave.php:4874 wppa-settings-autosave.php:5050
|
680 |
+
#: wppa-settings-autosave.php:5074 wppa-settings-autosave.php:6132
|
681 |
+
#: wppa-settings-autosave.php:6587 wppa-settings-autosave.php:6837
|
682 |
+
#: wppa-settings-autosave.php:6859 wppa-settings-autosave.php:7684
|
683 |
+
#: wppa-settings-autosave.php:7708 wppa-settings-autosave.php:9638
|
684 |
+
#: wppa-settings-autosave.php:9660 wppa-settings-autosave.php:9700
|
685 |
+
#: wppa-settings-autosave.php:9722 wppa-settings-autosave.php:9768
|
686 |
+
#: wppa-settings-autosave.php:9794
|
687 |
msgid "Description"
|
688 |
msgstr "Description"
|
689 |
|
703 |
msgid "Parent album"
|
704 |
msgstr "Album Parent"
|
705 |
|
706 |
+
#: wppa-ajax.php:1138 wppa-settings-autosave.php:4027
|
707 |
msgid "Photo order"
|
708 |
msgstr "Ordre des photos"
|
709 |
|
715 |
msgid "Cover Type"
|
716 |
msgstr "Type de couverture"
|
717 |
|
718 |
+
#: wppa-ajax.php:1147 wppa-settings-autosave.php:5075
|
719 |
+
#: wppa-settings-autosave.php:6133
|
720 |
msgid "Link type"
|
721 |
msgstr "Type de lien"
|
722 |
|
869 |
msgid "Could not remake thumbnail"
|
870 |
msgstr "Impossible de recréer les vignette"
|
871 |
|
872 |
+
#: wppa-ajax.php:1468 wppa-potd-admin.php:100 wppa-settings-autosave.php:3837
|
873 |
+
#: wppa-settings-autosave.php:9613 wppa-tinymce-shortcodes.php:627
|
874 |
msgid "left"
|
875 |
msgstr "gauche"
|
876 |
|
878 |
msgid "180°"
|
879 |
msgstr "180°"
|
880 |
|
881 |
+
#: wppa-ajax.php:1474 wppa-potd-admin.php:100 wppa-settings-autosave.php:3837
|
882 |
+
#: wppa-settings-autosave.php:9615 wppa-tinymce-shortcodes.php:629
|
883 |
msgid "right"
|
884 |
msgstr "droite"
|
885 |
|
961 |
|
962 |
#: wppa-ajax.php:1618 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
963 |
#: wppa-photo-admin-autosave.php:2021 wppa-photo-admin-autosave.php:2197
|
964 |
+
#: wppa-settings-autosave.php:6862 wppa-settings-autosave.php:7687
|
965 |
+
#: wppa-settings-autosave.php:9661 wppa-settings-autosave.php:9701
|
966 |
+
#: wppa-settings-autosave.php:9723 wppa-settings-autosave.php:9769
|
967 |
msgid "Status"
|
968 |
msgstr "Statut"
|
969 |
|
1095 |
msgid "Widget image thumbnail size"
|
1096 |
msgstr "Taille de la vignette dans le widget"
|
1097 |
|
1098 |
+
#: wppa-ajax.php:1985 wppa-settings-autosave.php:1097
|
1099 |
msgid "Max Cover width"
|
1100 |
msgstr "Largeur maximum de la couverture"
|
1101 |
|
1111 |
msgid "Minimal text frame height"
|
1112 |
msgstr "Hauteur minimale du cadre de texte"
|
1113 |
|
1114 |
+
#: wppa-ajax.php:1997 wppa-settings-autosave.php:1425
|
1115 |
msgid "Border width"
|
1116 |
msgstr "Largeur de bordure"
|
1117 |
|
1118 |
+
#: wppa-ajax.php:2000 wppa-settings-autosave.php:768
|
1119 |
+
#: wppa-settings-autosave.php:1434
|
1120 |
msgid "Border radius"
|
1121 |
msgstr "Rayon de bordure"
|
1122 |
|
1123 |
+
#: wppa-ajax.php:2003 wppa-settings-autosave.php:779
|
1124 |
msgid "Box spacing"
|
1125 |
msgstr "Espacement boîtes"
|
1126 |
|
1127 |
+
#: wppa-ajax.php:2009 wppa-settings-autosave.php:1072
|
1128 |
msgid "Popup size"
|
1129 |
msgstr "Taille du popup"
|
1130 |
|
1156 |
msgid "Opacity."
|
1157 |
msgstr "Opacité."
|
1158 |
|
1159 |
+
#: wppa-ajax.php:2045 wppa-settings-autosave.php:1234
|
1160 |
msgid "Avatar size"
|
1161 |
msgstr "Taille de l'avatar"
|
1162 |
|
1164 |
msgid "Watermark opacity"
|
1165 |
msgstr "Opacité du filigrane"
|
1166 |
|
1167 |
+
#: wppa-ajax.php:2054 wppa-settings-autosave.php:1403
|
1168 |
msgid "Number of text lines"
|
1169 |
msgstr "Nombre de lignes de texte"
|
1170 |
|
1171 |
+
#: wppa-ajax.php:2057 wppa-settings-autosave.php:4709
|
1172 |
msgid "Overlay opacity"
|
1173 |
msgstr "Opacité de l'overlay"
|
1174 |
|
1175 |
+
#: wppa-ajax.php:2060 wppa-settings-autosave.php:8285
|
1176 |
msgid "Upload limit"
|
1177 |
msgstr "Limite d'upload"
|
1178 |
|
1179 |
+
#: wppa-ajax.php:2063 wppa-settings-autosave.php:4378
|
1180 |
msgid "Notify inappropriate"
|
1181 |
msgstr "Notifier inapproprié"
|
1182 |
|
1188 |
msgid "Dislike delete"
|
1189 |
msgstr "Effacer les avis négatifs"
|
1190 |
|
1191 |
+
#: wppa-ajax.php:2072 wppa-settings-autosave.php:7783
|
1192 |
msgid "Max execution time"
|
1193 |
msgstr "Temps d'exécution maximum"
|
1194 |
|
1200 |
msgid "JPG Image quality"
|
1201 |
msgstr "Qualité d'image JPG"
|
1202 |
|
1203 |
+
#: wppa-ajax.php:2087 wppa-settings-autosave.php:4251
|
1204 |
msgid "Number of coverphotos"
|
1205 |
msgstr "Nombre de photos de couverture"
|
1206 |
|
1207 |
+
#: wppa-ajax.php:2090 wppa-settings-autosave.php:4349
|
1208 |
msgid "Dislike value"
|
1209 |
msgstr "Valeur du vote négatif"
|
1210 |
|
1211 |
+
#: wppa-ajax.php:2093 wppa-settings-autosave.php:909
|
1212 |
msgid "Slideshow pagesize"
|
1213 |
msgstr "Taille de page du diaporama"
|
1214 |
|
1215 |
+
#: wppa-ajax.php:2096 wppa-settings-autosave.php:928
|
1216 |
msgid "Slideonly max"
|
1217 |
msgstr "Slideonly max"
|
1218 |
|
1219 |
+
#: wppa-ajax.php:2099 wppa-settings-autosave.php:797
|
1220 |
msgid "Max Pagelinks"
|
1221 |
msgstr "Nb max. de liens de page"
|
1222 |
|
1223 |
+
#: wppa-ajax.php:2116 wppa-settings-autosave.php:824
|
1224 |
msgid "Sticky header size"
|
1225 |
msgstr "Taille d'en-tête fixe"
|
1226 |
|
1447 |
msgstr "Haut de page"
|
1448 |
|
1449 |
#: wppa-album-admin-autosave.php:120 wppa-functions.php:4122
|
1450 |
+
#: wppa-settings-autosave.php:8133 wppa-wpdb-insert.php:346
|
1451 |
msgid "New Album"
|
1452 |
msgstr "Nouvel album"
|
1453 |
|
1596 |
msgstr "--- Défaut --- Voir le tableau IV-C1"
|
1597 |
|
1598 |
#: wppa-album-admin-autosave.php:452 wppa-album-admin-autosave.php:500
|
1599 |
+
#: wppa-settings-autosave.php:4032 wppa-settings-autosave.php:4161
|
1600 |
#: wppa-thumbnail-widget.php:201
|
1601 |
msgid "Order #"
|
1602 |
msgstr "Ordre #"
|
1603 |
|
1604 |
#: wppa-album-admin-autosave.php:454 wppa-album-admin-autosave.php:499
|
1605 |
+
#: wppa-potd-admin.php:249 wppa-settings-autosave.php:4034
|
1606 |
+
#: wppa-settings-autosave.php:4163 wppa-thumbnail-widget.php:203
|
1607 |
msgid "Random"
|
1608 |
msgstr "Aléatoire"
|
1609 |
|
1610 |
+
#: wppa-album-admin-autosave.php:455 wppa-settings-autosave.php:4035
|
1611 |
msgid "Rating mean value"
|
1612 |
msgstr "Valeur moyenne des notes"
|
1613 |
|
1614 |
#: wppa-album-admin-autosave.php:456 wppa-bestof-widget.php:170
|
1615 |
+
#: wppa-settings-autosave.php:4036 wppa-topten-widget.php:357
|
1616 |
msgid "Number of votes"
|
1617 |
msgstr "Nombre de votes"
|
1618 |
|
1619 |
#: wppa-album-admin-autosave.php:457 wppa-album-admin-autosave.php:504
|
1620 |
+
#: wppa-settings-autosave.php:4037 wppa-settings-autosave.php:4164
|
1621 |
msgid "Timestamp"
|
1622 |
msgstr "Timstamp"
|
1623 |
|
1624 |
+
#: wppa-album-admin-autosave.php:458 wppa-settings-autosave.php:4038
|
1625 |
msgid "EXIF Date"
|
1626 |
msgstr "Date EXIF"
|
1627 |
|
1628 |
+
#: wppa-album-admin-autosave.php:459 wppa-settings-autosave.php:4039
|
1629 |
+
#: wppa-settings-autosave.php:4165
|
1630 |
msgid "Order # desc"
|
1631 |
msgstr "Ordre # desc"
|
1632 |
|
1633 |
+
#: wppa-album-admin-autosave.php:460 wppa-settings-autosave.php:4040
|
1634 |
+
#: wppa-settings-autosave.php:4166
|
1635 |
msgid "Name desc"
|
1636 |
msgstr "Nom desc"
|
1637 |
|
1638 |
+
#: wppa-album-admin-autosave.php:461 wppa-settings-autosave.php:4041
|
1639 |
#: wppa-thumbnail-widget.php:204
|
1640 |
msgid "Rating mean value desc"
|
1641 |
msgstr "Description valeur moyenne des notes"
|
1642 |
|
1643 |
+
#: wppa-album-admin-autosave.php:462 wppa-settings-autosave.php:4042
|
1644 |
#: wppa-thumbnail-widget.php:205
|
1645 |
msgid "Number of votes desc"
|
1646 |
msgstr "Description nombre de votes"
|
1647 |
|
1648 |
+
#: wppa-album-admin-autosave.php:463 wppa-settings-autosave.php:4043
|
1649 |
+
#: wppa-settings-autosave.php:4167 wppa-thumbnail-widget.php:206
|
1650 |
msgid "Timestamp desc"
|
1651 |
msgstr "Description timestamp"
|
1652 |
|
1653 |
+
#: wppa-album-admin-autosave.php:464 wppa-settings-autosave.php:4044
|
1654 |
msgid "EXIF Date desc"
|
1655 |
msgstr "Description date EXIF"
|
1656 |
|
1680 |
|
1681 |
#: wppa-album-admin-autosave.php:515 wppa-bestof-widget.php:182
|
1682 |
#: wppa-bestof-widget.php:187 wppa-bestof-widget.php:192
|
1683 |
+
#: wppa-lasten-widget.php:219 wppa-settings-autosave.php:527
|
1684 |
+
#: wppa-settings-autosave.php:536 wppa-settings-autosave.php:545
|
1685 |
+
#: wppa-settings-autosave.php:556 wppa-settings-autosave.php:565
|
1686 |
+
#: wppa-settings-autosave.php:574 wppa-settings-autosave.php:583
|
1687 |
+
#: wppa-settings-autosave.php:592 wppa-settings-autosave.php:601
|
1688 |
+
#: wppa-settings-autosave.php:610 wppa-settings-autosave.php:619
|
1689 |
+
#: wppa-settings-autosave.php:628 wppa-settings-autosave.php:637
|
1690 |
+
#: wppa-settings-autosave.php:646 wppa-topten-widget.php:365
|
1691 |
#: wppa-topten-widget.php:372 wppa-topten-widget.php:380
|
1692 |
#: wppa-topten-widget.php:385 wppa-topten-widget.php:390
|
1693 |
#: wppa-topten-widget.php:395 wppa-topten-widget.php:400
|
1696 |
|
1697 |
#: wppa-album-admin-autosave.php:518 wppa-bestof-widget.php:181
|
1698 |
#: wppa-bestof-widget.php:186 wppa-bestof-widget.php:191
|
1699 |
+
#: wppa-lasten-widget.php:220 wppa-settings-autosave.php:527
|
1700 |
+
#: wppa-settings-autosave.php:536 wppa-settings-autosave.php:545
|
1701 |
+
#: wppa-settings-autosave.php:556 wppa-settings-autosave.php:565
|
1702 |
+
#: wppa-settings-autosave.php:574 wppa-settings-autosave.php:583
|
1703 |
+
#: wppa-settings-autosave.php:592 wppa-settings-autosave.php:601
|
1704 |
+
#: wppa-settings-autosave.php:610 wppa-settings-autosave.php:619
|
1705 |
+
#: wppa-settings-autosave.php:628 wppa-settings-autosave.php:637
|
1706 |
+
#: wppa-settings-autosave.php:646 wppa-settings-autosave.php:655
|
1707 |
#: wppa-super-view-widget.php:85 wppa-topten-widget.php:364
|
1708 |
#: wppa-topten-widget.php:371 wppa-topten-widget.php:379
|
1709 |
#: wppa-topten-widget.php:384 wppa-topten-widget.php:389
|
1719 |
msgid "--- default --- See Table IV-D6"
|
1720 |
msgstr "--- Défaut --- Voir le tableau IV-D6"
|
1721 |
|
1722 |
+
#: wppa-album-admin-autosave.php:536 wppa-settings-autosave.php:2070
|
1723 |
+
#: wppa-settings-autosave.php:4231
|
1724 |
msgid "Standard"
|
1725 |
msgstr "Standard"
|
1726 |
|
1727 |
+
#: wppa-album-admin-autosave.php:539 wppa-settings-autosave.php:4232
|
1728 |
msgid "Long Descriptions"
|
1729 |
msgstr "Description longues"
|
1730 |
|
1731 |
+
#: wppa-album-admin-autosave.php:542 wppa-settings-autosave.php:4233
|
1732 |
msgid "Image Factory"
|
1733 |
msgstr "Image Factory"
|
1734 |
|
1735 |
+
#: wppa-album-admin-autosave.php:545 wppa-settings-autosave.php:4234
|
1736 |
msgid "Standard mcr"
|
1737 |
msgstr "Standard mcr"
|
1738 |
|
1739 |
+
#: wppa-album-admin-autosave.php:548 wppa-settings-autosave.php:4235
|
1740 |
msgid "Long Descriptions mcr"
|
1741 |
msgstr "Descriptions longues mcr"
|
1742 |
|
1743 |
+
#: wppa-album-admin-autosave.php:551 wppa-settings-autosave.php:4236
|
1744 |
msgid "Image Factory mcr"
|
1745 |
msgstr "Image Factory mcr"
|
1746 |
|
1756 |
msgid "Set the upload limit (0 means unlimited)."
|
1757 |
msgstr "Régler la limite de téléchargement (0 signifie illimité)."
|
1758 |
|
1759 |
+
#: wppa-album-admin-autosave.php:581 wppa-settings-autosave.php:6269
|
1760 |
+
#: wppa-settings-autosave.php:8292
|
1761 |
msgid "for ever"
|
1762 |
msgstr "illimité"
|
1763 |
|
1764 |
#: wppa-album-admin-autosave.php:582 wppa-album-admin-autosave.php:594
|
1765 |
+
#: wppa-settings-autosave.php:6270 wppa-settings-autosave.php:8293
|
1766 |
msgid "per hour"
|
1767 |
msgstr "par heure"
|
1768 |
|
1769 |
#: wppa-album-admin-autosave.php:583 wppa-album-admin-autosave.php:595
|
1770 |
+
#: wppa-settings-autosave.php:6271 wppa-settings-autosave.php:8294
|
1771 |
msgid "per day"
|
1772 |
msgstr "par jour"
|
1773 |
|
1774 |
#: wppa-album-admin-autosave.php:584 wppa-album-admin-autosave.php:596
|
1775 |
+
#: wppa-settings-autosave.php:6272 wppa-settings-autosave.php:8295
|
1776 |
msgid "per week"
|
1777 |
msgstr "par semaine"
|
1778 |
|
1779 |
#: wppa-album-admin-autosave.php:585 wppa-album-admin-autosave.php:597
|
1780 |
+
#: wppa-settings-autosave.php:6273 wppa-settings-autosave.php:8296
|
1781 |
msgid "per month"
|
1782 |
msgstr "par mois"
|
1783 |
|
1784 |
#: wppa-album-admin-autosave.php:586 wppa-album-admin-autosave.php:598
|
1785 |
+
#: wppa-settings-autosave.php:6274 wppa-settings-autosave.php:8297
|
1786 |
msgid "per year"
|
1787 |
msgstr "par an"
|
1788 |
|
1854 |
msgid "Link type:"
|
1855 |
msgstr "Type de lien:"
|
1856 |
|
1857 |
+
#: wppa-album-admin-autosave.php:839 wppa-settings-autosave.php:8504
|
1858 |
msgid "the sub-albums and thumbnails"
|
1859 |
msgstr "les albums fils et vignettes"
|
1860 |
|
1861 |
+
#: wppa-album-admin-autosave.php:840 wppa-settings-autosave.php:8505
|
1862 |
msgid "the sub-albums"
|
1863 |
msgstr "les albums fils"
|
1864 |
|
1865 |
+
#: wppa-album-admin-autosave.php:841 wppa-settings-autosave.php:8506
|
1866 |
msgid "the thumbnails"
|
1867 |
msgstr "les vignettes"
|
1868 |
|
1869 |
+
#: wppa-album-admin-autosave.php:842 wppa-settings-autosave.php:8507
|
1870 |
msgid "the album photos as slideshow"
|
1871 |
msgstr "les photos de l'album comme diaporama"
|
1872 |
|
1874 |
msgid "the link page with a clean url"
|
1875 |
msgstr "la page de lien avec une URL claire"
|
1876 |
|
1877 |
+
#: wppa-album-admin-autosave.php:844 wppa-settings-autosave.php:8508
|
1878 |
msgid "no link at all"
|
1879 |
msgstr "Pas de lien du tout"
|
1880 |
|
1900 |
msgid "Link to:"
|
1901 |
msgstr "Lien vers:"
|
1902 |
|
1903 |
+
#: wppa-album-admin-autosave.php:872 wppa-settings-autosave.php:10351
|
1904 |
+
#: wppa-settings-autosave.php:10393 wppa-settings-autosave.php:10445
|
1905 |
msgid "There are no pages (yet) to link to."
|
1906 |
msgstr "Il n'y a pas (encore) de pages à lier"
|
1907 |
|
2025 |
#: wppa-lasten-widget.php:203 wppa-slideshow-widget.php:199
|
2026 |
#: wppa-thumbnail-widget.php:189 wppa-topten-widget.php:338
|
2027 |
#: wppa-upload-widget.php:85 wppa-upload.php:180 wppa-upload.php:321
|
2028 |
+
#: wppa-upload.php:398
|
2029 |
msgid "Album:"
|
2030 |
msgstr "Album:"
|
2031 |
|
2060 |
msgstr "Déplacer vers:"
|
2061 |
|
2062 |
#: wppa-album-admin-autosave.php:1134 wppa-photo-admin-autosave.php:2743
|
2063 |
+
#: wppa-settings-autosave.php:2960
|
2064 |
msgid "Cancel"
|
2065 |
msgstr "Annuler"
|
2066 |
|
2199 |
msgid "Unable to move photos to album %s. Album not deleted."
|
2200 |
msgstr "Impossible de déplacer les photos vers l'album %s. Album pas effacé."
|
2201 |
|
2202 |
+
#: wppa-album-admin-autosave.php:2196
|
|
|
|
|
|
|
|
|
|
|
|
|
2203 |
msgid "Album Deleted."
|
2204 |
msgstr "Album effacé."
|
2205 |
|
2206 |
+
#: wppa-album-admin-autosave.php:2218
|
2207 |
#, php-format
|
2208 |
msgid "auto select max %s random"
|
2209 |
msgstr "Sélection auto max %s aléatoire"
|
2210 |
|
2211 |
+
#: wppa-album-admin-autosave.php:2220
|
2212 |
#, php-format
|
2213 |
msgid "auto select max %s featured"
|
2214 |
msgstr "Sélection auto max %s recommandé"
|
2215 |
|
2216 |
+
#: wppa-album-admin-autosave.php:2222
|
2217 |
#, php-format
|
2218 |
msgid "max %s most recent added"
|
2219 |
msgstr "max %s ajoutés le plus récemment"
|
2220 |
|
2221 |
+
#: wppa-album-admin-autosave.php:2224
|
2222 |
#, php-format
|
2223 |
msgid "max %s from (grand)child albums"
|
2224 |
msgstr "max %s parmi les albums fils"
|
2225 |
|
2226 |
+
#: wppa-album-admin-autosave.php:2226
|
2227 |
#, php-format
|
2228 |
msgid "max %s most recent from (grand)child albums"
|
2229 |
msgstr "max %s plus récents parmi albums (petit)fils"
|
2230 |
|
2231 |
+
#: wppa-album-admin-autosave.php:2230
|
2232 |
msgid "--- random ---"
|
2233 |
msgstr "--- aléatoire ---"
|
2234 |
|
2235 |
+
#: wppa-album-admin-autosave.php:2232
|
2236 |
msgid "--- random featured ---"
|
2237 |
msgstr "--- aléatoire recommandé ---"
|
2238 |
|
2239 |
+
#: wppa-album-admin-autosave.php:2234
|
2240 |
msgid "--- most recent added ---"
|
2241 |
msgstr "--- ajouter le plus récemment ---"
|
2242 |
|
2243 |
+
#: wppa-album-admin-autosave.php:2236
|
2244 |
msgid "--- random from (grand)children ---"
|
2245 |
msgstr "--- aléatoire parmi les albums fils ---"
|
2246 |
|
2247 |
+
#: wppa-album-admin-autosave.php:2238
|
2248 |
msgid "--- most recent from (grand)children ---"
|
2249 |
msgstr "--- le plus récent du (petit)fils ---"
|
2250 |
|
2251 |
+
#: wppa-album-admin-autosave.php:2250
|
2252 |
msgid "Nameless, filename = "
|
2253 |
msgstr "Sans nom, nom du fichier = "
|
2254 |
|
2255 |
+
#: wppa-album-admin-autosave.php:2293
|
2256 |
msgid ""
|
2257 |
"You can edit top-level album sequence order here when you set the album "
|
2258 |
"order to \"Order #\" or \"Order # desc\" in Table IV-D1."
|
2261 |
"l'ordre de tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la table IV-"
|
2262 |
"D1."
|
2263 |
|
2264 |
+
#: wppa-album-admin-autosave.php:2296
|
2265 |
msgid ""
|
2266 |
"You can edit sub-album sequence order here when you set the album order to "
|
2267 |
"\"Order #\" or \"Order # desc\" in the \"Sub album sort order:\" selection "
|
2271 |
"tri des albums à \"Ordre #\" ou \"Ordre # desc\" dans la boîte de sélection "
|
2272 |
"\"Ordre de tri des albums fils:\" ci-dessus."
|
2273 |
|
2274 |
+
#: wppa-album-admin-autosave.php:2305
|
2275 |
msgid "Manage album order"
|
2276 |
msgstr "Gérer album ordre"
|
2277 |
|
2278 |
+
#: wppa-album-admin-autosave.php:2309
|
2279 |
msgid "Change sequence order by drag and drop, or use the up/down arrows."
|
2280 |
msgstr ""
|
2281 |
"Changer l'ordre de séquence par glisser-déposer, ou utilisez les flèches "
|
2282 |
"haut / bas."
|
2283 |
|
2284 |
+
#: wppa-album-admin-autosave.php:2312
|
2285 |
msgid "Do not leave this page unless the bar is entirely green."
|
2286 |
msgstr "Ne pas laisser cette page à moins que le bar est entièrement verte."
|
2287 |
|
2288 |
+
#: wppa-album-admin-autosave.php:2321 wppa-settings-autosave.php:8205
|
2289 |
+
#: wppa-settings-autosave.php:8216 wppa-stereo.php:31
|
2290 |
msgid "Color"
|
2291 |
msgstr "Couleur"
|
2292 |
|
2293 |
+
#: wppa-album-admin-autosave.php:2324
|
2294 |
msgid "Meaning"
|
2295 |
msgstr "Signification"
|
2296 |
|
2297 |
+
#: wppa-album-admin-autosave.php:2334
|
2298 |
msgid "Up to date"
|
2299 |
msgstr "A jour"
|
2300 |
|
2301 |
+
#: wppa-album-admin-autosave.php:2342
|
2302 |
msgid "Updating"
|
2303 |
msgstr "Mise à jour "
|
2304 |
|
2305 |
+
#: wppa-album-admin-autosave.php:2350
|
2306 |
msgid "Needs update"
|
2307 |
msgstr "Nécessite une mise à jour"
|
2308 |
|
2309 |
+
#: wppa-album-admin-autosave.php:2358 wppa-maintenance.php:75
|
2310 |
+
#: wppa-upload.php:623
|
2311 |
msgid "Error"
|
2312 |
msgstr "Erreur"
|
2313 |
|
2314 |
+
#: wppa-album-admin-autosave.php:2578
|
2315 |
msgid "To top"
|
2316 |
msgstr "En haut"
|
2317 |
|
2318 |
+
#: wppa-album-admin-autosave.php:2589
|
2319 |
msgid "One up"
|
2320 |
msgstr "Un haut"
|
2321 |
|
2322 |
+
#: wppa-album-admin-autosave.php:2600
|
2323 |
msgid "One down"
|
2324 |
msgstr "Un vers le bas"
|
2325 |
|
2326 |
+
#: wppa-album-admin-autosave.php:2611
|
2327 |
msgid "To bottom"
|
2328 |
msgstr "En bas"
|
2329 |
|
2330 |
+
#: wppa-album-admin-autosave.php:2622
|
2331 |
msgid "Id:"
|
2332 |
msgstr "ID:"
|
2333 |
|
2334 |
+
#: wppa-album-admin-autosave.php:2623
|
2335 |
msgid "Ord:"
|
2336 |
msgstr "Ord:"
|
2337 |
|
2348 |
msgstr "Vues :"
|
2349 |
|
2350 |
#: wppa-album-covers.php:1427 wppa-album-covers.php:1503
|
2351 |
+
#: wppa-album-covers.php:1511 wppa-album-covers.php:1758
|
2352 |
msgid "View the album"
|
2353 |
msgstr "Visualiser l'album"
|
2354 |
|
2358 |
msgstr[0] "Voir la photo de couverture"
|
2359 |
msgstr[1] "Visualiser les photos de couverture"
|
2360 |
|
2361 |
+
#: wppa-album-covers.php:1524
|
2362 |
msgid "View"
|
2363 |
msgstr "Visualiser"
|
2364 |
|
2365 |
+
#: wppa-album-covers.php:1528 wppa-album-covers.php:1536
|
2366 |
#, php-format
|
2367 |
msgid "%d album"
|
2368 |
msgid_plural "%d albums"
|
2369 |
msgstr[0] "%d album"
|
2370 |
msgstr[1] "%d albums"
|
2371 |
|
2372 |
+
#: wppa-album-covers.php:1531 wppa-album-covers.php:1545
|
2373 |
#, php-format
|
2374 |
msgid "%d photo"
|
2375 |
msgid_plural "%d photos"
|
2376 |
msgstr[0] "%d photo"
|
2377 |
msgstr[1] "%d photos"
|
2378 |
|
2379 |
+
#: wppa-album-covers.php:1542 wppa-boxes-html.php:1282 wppa-boxes-html.php:1595
|
2380 |
#: wppa-breadcrumb.php:175 wppa-breadcrumb.php:181 wppa-breadcrumb.php:188
|
2381 |
#: wppa-breadcrumb.php:412 wppa-breadcrumb.php:414 wppa-breadcrumb.php:420
|
2382 |
#: wppa-breadcrumb.php:422 wppa-breadcrumb.php:430 wppa-breadcrumb.php:446
|
2383 |
+
#: wppa-breadcrumb.php:459 wppa-breadcrumb.php:465 wppa-utils.php:1509
|
2384 |
+
#: wppa-utils.php:2184
|
2385 |
msgid "and"
|
2386 |
msgstr "et"
|
2387 |
|
2388 |
+
#: wppa-album-covers.php:1626
|
2389 |
msgid "New!"
|
2390 |
msgstr "Nouveau!"
|
2391 |
|
2392 |
+
#: wppa-album-covers.php:1629 wppa-thumbnails.php:2026 wppa-thumbnails.php:2027
|
2393 |
msgid "New"
|
2394 |
msgstr "Nouveau"
|
2395 |
|
2396 |
+
#: wppa-album-covers.php:1867 wppa-boxes-html.php:844 wppa-non-admin.php:798
|
2397 |
+
#: wppa-settings-autosave.php:2332 wppa-settings-autosave.php:5706
|
2398 |
+
#: wppa-settings-autosave.php:8663
|
2399 |
msgid "Slideshow"
|
2400 |
msgstr "Diaporama"
|
2401 |
|
2402 |
+
#: wppa-album-covers.php:1868
|
2403 |
msgid "Browse photos"
|
2404 |
msgstr "Visualiser les photos"
|
2405 |
|
2406 |
+
#: wppa-album-covers.php:1905 wppa-breadcrumb.php:414 wppa-breadcrumb.php:422
|
2407 |
#: wppa-breadcrumb.php:459 wppa-breadcrumb.php:465
|
2408 |
msgid "Category:"
|
2409 |
msgid_plural "Categories:"
|
2568 |
|
2569 |
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1704
|
2570 |
#: wppa-import.php:1639 wppa-items.php:461 wppa-potd-admin.php:100
|
2571 |
+
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:1416
|
2572 |
+
#: wppa-settings-autosave.php:1781 wppa-settings-autosave.php:1986
|
2573 |
+
#: wppa-settings-autosave.php:3823 wppa-settings-autosave.php:3837
|
2574 |
+
#: wppa-settings-autosave.php:3978 wppa-settings-autosave.php:4031
|
2575 |
+
#: wppa-settings-autosave.php:4143 wppa-settings-autosave.php:4160
|
2576 |
+
#: wppa-settings-autosave.php:4273 wppa-settings-autosave.php:5780
|
2577 |
+
#: wppa-settings-autosave.php:6398 wppa-settings-autosave.php:6547
|
2578 |
+
#: wppa-settings-autosave.php:8089 wppa-settings-autosave.php:8308
|
2579 |
+
#: wppa-settings-autosave.php:8384 wppa-settings-autosave.php:9325
|
2580 |
+
#: wppa-settings-autosave.php:9482 wppa-settings-autosave.php:9612
|
2581 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-shortcodes.php:626
|
2582 |
#: wppa-watermark.php:572
|
2583 |
msgid "--- none ---"
|
2608 |
msgstr "Résultats de recherche photos"
|
2609 |
|
2610 |
#: wppa-boxes-html.php:383 wppa-breadcrumb.php:163
|
2611 |
+
#: wppa-settings-autosave.php:360
|
2612 |
msgid "Albums"
|
2613 |
msgstr "Albums"
|
2614 |
|
2621 |
msgstr "Catégorie"
|
2622 |
|
2623 |
#: wppa-boxes-html.php:421 wppa-boxes-html.php:554
|
2624 |
+
#: wppa-settings-autosave.php:1674 wppa-settings-autosave.php:8204
|
2625 |
+
#: wppa-settings-autosave.php:8215
|
2626 |
msgid "Text"
|
2627 |
msgstr "Texte"
|
2628 |
|
2636 |
msgid "Items must meet all selected options."
|
2637 |
msgstr "Les entités doivent répondre à toutes les options sélectionnées."
|
2638 |
|
2639 |
+
#: wppa-boxes-html.php:546 wppa-settings-autosave.php:9658
|
2640 |
+
#: wppa-settings-autosave.php:9698 wppa-settings-autosave.php:9720
|
2641 |
+
#: wppa-settings-autosave.php:9766
|
2642 |
msgid "Tag"
|
2643 |
msgstr "Tag"
|
2644 |
|
2659 |
msgid "Super View Photos"
|
2660 |
msgstr "Photos en Super View"
|
2661 |
|
2662 |
+
#: wppa-boxes-html.php:836 wppa-settings-autosave.php:377
|
2663 |
+
#: wppa-settings-autosave.php:4959
|
2664 |
msgid "Thumbnails"
|
2665 |
msgstr "Vignettes"
|
2666 |
|
2712 |
msgid "Social media landing page"
|
2713 |
msgstr "Social media landing page"
|
2714 |
|
2715 |
+
#: wppa-boxes-html.php:1283 wppa-utils.php:1509
|
2716 |
#, php-format
|
2717 |
msgid "See this image on %s"
|
2718 |
msgstr "Voir cette image sur %s"
|
2773 |
msgid "Enter album name."
|
2774 |
msgstr "Entrer un nom d'album."
|
2775 |
|
2776 |
+
#: wppa-boxes-html.php:1999 wppa-boxes-html.php:2975
|
2777 |
msgid "Don't leave this blank!"
|
2778 |
msgstr "Ne laissez pas ceci vide !"
|
2779 |
|
2829 |
msgid "Select Photos"
|
2830 |
msgstr "Sélectionnez Photos"
|
2831 |
|
2832 |
+
#: wppa-boxes-html.php:2464
|
2833 |
#, php-format
|
2834 |
msgid "You may upload %d photo"
|
2835 |
msgid_plural ""
|
2840 |
"Vous pouvez charger jusqu'à %d photos à la fois si votre navigateur supporte "
|
2841 |
"la fonction HTML-5 multiple file upload"
|
2842 |
|
2843 |
+
#: wppa-boxes-html.php:2472
|
2844 |
#, php-format
|
2845 |
msgid "Max photo size: %d x %d (%2.1f MegaPixel)"
|
2846 |
msgstr "Taille photo max: %d x %d (%2.1f MegaPixel)"
|
2847 |
|
2848 |
+
#: wppa-boxes-html.php:2501 wppa-import.php:562 wppa-upload.php:189
|
2849 |
+
#: wppa-upload.php:331 wppa-upload.php:408
|
2850 |
msgid "Apply watermark file:"
|
2851 |
msgstr "Appliquer le filigrane:"
|
2852 |
|
2853 |
+
#: wppa-boxes-html.php:2523 wppa-import.php:566 wppa-upload.php:193
|
2854 |
+
#: wppa-upload.php:335 wppa-upload.php:412
|
2855 |
msgid "Position:"
|
2856 |
msgstr "Position:"
|
2857 |
|
2858 |
+
#: wppa-boxes-html.php:2551
|
2859 |
msgid ""
|
2860 |
"If you leave this blank, iptc tag 005 (Graphic name) will be used as "
|
2861 |
"photoname if available, else the original filename will be used as photo "
|
2865 |
"nom de photo si disponible sinon le nom original du fichier sera utilisé "
|
2866 |
"comme nom de photo. "
|
2867 |
|
2868 |
+
#: wppa-boxes-html.php:2556
|
2869 |
msgid ""
|
2870 |
"If you leave this blank, iptc tag 120 (Caption) will be used as photoname if "
|
2871 |
"available, else the original filename will be used as photo name."
|
2874 |
"photo si disponible sinon le nom de fichier original sera utilisé comme nom "
|
2875 |
"de photo."
|
2876 |
|
2877 |
+
#: wppa-boxes-html.php:2561
|
2878 |
msgid "If you leave this blank, \"Photo photoid\" will be used as photo name."
|
2879 |
msgstr ""
|
2880 |
"Si vous laissez ce champ vide, « Photo photoid » servira comme nom de la "
|
2881 |
"photo."
|
2882 |
|
2883 |
+
#: wppa-boxes-html.php:2567
|
2884 |
msgid ""
|
2885 |
"If you leave this blank, the original filename will be used as photo name."
|
2886 |
msgstr ""
|
2887 |
"Si vous laisser cela vide, le nom de fichier original sera utilisé comme nom "
|
2888 |
"de photo."
|
2889 |
|
2890 |
+
#: wppa-boxes-html.php:2572 wppa-settings-autosave.php:1720
|
2891 |
msgid "Photo name"
|
2892 |
msgstr "Nom de la photo"
|
2893 |
|
2894 |
+
#: wppa-boxes-html.php:2590
|
2895 |
msgid "Photo description"
|
2896 |
msgstr "Description de la photo"
|
2897 |
|
2898 |
+
#: wppa-boxes-html.php:2618
|
2899 |
msgid "hidden"
|
2900 |
msgstr "caché"
|
2901 |
|
2902 |
+
#: wppa-boxes-html.php:2688
|
2903 |
msgid "Preview tags:"
|
2904 |
msgstr "Aperçu tags:"
|
2905 |
|
2906 |
+
#: wppa-boxes-html.php:2709
|
2907 |
msgid "Blog it?"
|
2908 |
msgstr "Blog it?"
|
2909 |
|
2910 |
+
#: wppa-boxes-html.php:2719 wppa-boxes-html.php:2794
|
2911 |
msgid "Upload and blog"
|
2912 |
msgstr "Upload et blog"
|
2913 |
|
2914 |
+
#: wppa-boxes-html.php:2723 wppa-boxes-html.php:2794
|
2915 |
msgid "Upload photo"
|
2916 |
msgstr "Uploader une photo"
|
2917 |
|
2918 |
+
#: wppa-boxes-html.php:2747
|
2919 |
msgid "Post title:"
|
2920 |
msgstr "Titre du post:"
|
2921 |
|
2922 |
+
#: wppa-boxes-html.php:2757
|
2923 |
msgid "Text BEFORE the image:"
|
2924 |
msgstr "Texte AVANT l'image:"
|
2925 |
|
2926 |
+
#: wppa-boxes-html.php:2767
|
2927 |
msgid "Text AFTER the image:"
|
2928 |
msgstr "Texte APRÈS l'image:"
|
2929 |
|
2930 |
+
#: wppa-boxes-html.php:2787
|
2931 |
msgid "Please select an album and try again"
|
2932 |
msgstr "Veuillez sélectionner un album et recommencer"
|
2933 |
|
2934 |
+
#: wppa-boxes-html.php:2847
|
2935 |
msgid "Processing..."
|
2936 |
msgstr "En cours..."
|
2937 |
|
2938 |
+
#: wppa-boxes-html.php:2852 wppa-import.php:153
|
2939 |
msgid "Done!"
|
2940 |
msgstr "Fait!"
|
2941 |
|
2942 |
+
#: wppa-boxes-html.php:2860
|
2943 |
msgid "ERROR: unable to upload files."
|
2944 |
msgstr "Erreur: impossible de télécharger des fichiers."
|
2945 |
|
2946 |
+
#: wppa-boxes-html.php:2914
|
2947 |
msgid "Edit Album Info"
|
2948 |
msgstr "Modifier l’album"
|
2949 |
|
2950 |
+
#: wppa-boxes-html.php:2973
|
2951 |
msgid "Enter album name"
|
2952 |
msgstr "Entrer un nom d'album"
|
2953 |
|
2954 |
+
#: wppa-boxes-html.php:2995
|
2955 |
msgid "Album description:"
|
2956 |
msgstr "Description de l'album:"
|
2957 |
|
2958 |
+
#: wppa-boxes-html.php:3049
|
2959 |
msgid "Update album"
|
2960 |
msgstr "Update album"
|
2961 |
|
2962 |
+
#: wppa-boxes-html.php:3118
|
2963 |
msgid "wrote:"
|
2964 |
msgstr "a écrit:"
|
2965 |
|
2966 |
+
#: wppa-boxes-html.php:3180
|
2967 |
msgid "Avatar"
|
2968 |
msgstr "Avatar"
|
2969 |
|
2970 |
+
#: wppa-boxes-html.php:3223 wppa-links.php:851
|
2971 |
msgid "Awaiting moderation"
|
2972 |
msgstr "En attente de modération"
|
2973 |
|
2974 |
+
#: wppa-boxes-html.php:3226
|
2975 |
msgid "Marked as spam"
|
2976 |
msgstr "Marqué comme indésirable"
|
2977 |
|
2978 |
+
#: wppa-boxes-html.php:3250
|
2979 |
msgid "Edit!"
|
2980 |
msgstr "Éditer !"
|
2981 |
|
2982 |
+
#: wppa-boxes-html.php:3254
|
2983 |
msgid "Send!"
|
2984 |
msgstr "Transmettre !"
|
2985 |
|
2986 |
+
#: wppa-boxes-html.php:3315
|
2987 |
msgid "Your name:"
|
2988 |
msgstr "Votre nom:"
|
2989 |
|
2990 |
+
#: wppa-boxes-html.php:3330
|
2991 |
msgid "Your email:"
|
2992 |
msgstr "Votre email:"
|
2993 |
|
2994 |
+
#: wppa-boxes-html.php:3346
|
2995 |
msgid "Your comment:"
|
2996 |
msgstr "Votre commentaire:"
|
2997 |
|
2998 |
+
#: wppa-boxes-html.php:3390
|
2999 |
#, php-format
|
3000 |
msgid "You must <a href=\"%s\">login</a> to enter a comment"
|
3001 |
msgstr "Vous devez vous<a href=\"%s\">connecter</a> pour entrer un commentaire"
|
3002 |
|
3003 |
+
#: wppa-boxes-html.php:3393
|
3004 |
msgid "You must login to enter a comment"
|
3005 |
msgstr "Vous devez vous connecter pour entrer un commentaire"
|
3006 |
|
3007 |
+
#: wppa-boxes-html.php:3405 wppa-functions.php:2614 wppa-thumbnails.php:735
|
3008 |
#, php-format
|
3009 |
msgid "%d comment"
|
3010 |
msgid_plural "%d comments"
|
3011 |
msgstr[0] "%d commentaire"
|
3012 |
msgstr[1] "%d commentaires"
|
3013 |
|
3014 |
+
#: wppa-boxes-html.php:3409
|
3015 |
msgid "Leave a comment"
|
3016 |
msgstr "Laisser un commentaire"
|
3017 |
|
3018 |
+
#: wppa-boxes-html.php:3506
|
3019 |
msgid "Show IPTC data"
|
3020 |
msgstr "Afficher les données IPTC"
|
3021 |
|
3022 |
+
#: wppa-boxes-html.php:3517
|
3023 |
msgid "Hide IPTC data"
|
3024 |
msgstr "Cacher les données IPTC"
|
3025 |
|
3026 |
+
#: wppa-boxes-html.php:3565
|
3027 |
msgid "No IPTC data"
|
3028 |
msgstr "Pas de données IPTC"
|
3029 |
|
3030 |
+
#: wppa-boxes-html.php:3617
|
3031 |
msgid "Show EXIF data"
|
3032 |
msgstr "Afficher les données EXIF"
|
3033 |
|
3034 |
+
#: wppa-boxes-html.php:3628
|
3035 |
msgid "Hide EXIF data"
|
3036 |
msgstr "Cacher les données EXIF"
|
3037 |
|
3038 |
+
#: wppa-boxes-html.php:3680
|
3039 |
msgid "No EXIF data"
|
3040 |
msgstr "Pas de données EXIF"
|
3041 |
|
3042 |
+
#: wppa-boxes-html.php:3794 wppa-boxes-html.php:3799
|
3043 |
msgid "< Previous"
|
3044 |
msgstr "< Préc."
|
3045 |
|
3046 |
+
#: wppa-boxes-html.php:3805 wppa-boxes-html.php:3810
|
3047 |
msgid "Next >"
|
3048 |
msgstr "Suiv. >"
|
3049 |
|
3050 |
+
#: wppa-boxes-html.php:3912 wppa-boxes-html.php:3991
|
3051 |
msgid "See the authors albums"
|
3052 |
msgstr "Voir les albums des auteurs"
|
3053 |
|
3054 |
+
#: wppa-boxes-html.php:3916 wppa-boxes-html.php:3924 wppa-boxes-html.php:3995
|
3055 |
msgid "See the authors photos"
|
3056 |
msgstr "Voir les photos des auteurs"
|
3057 |
|
3058 |
+
#: wppa-boxes-html.php:3920 wppa-boxes-html.php:3928 wppa-boxes-html.php:3999
|
3059 |
msgid "See all the authors photos"
|
3060 |
msgstr "Voir toutes les photos des auteurs"
|
3061 |
|
3062 |
+
#: wppa-boxes-html.php:3954
|
3063 |
#, php-format
|
3064 |
msgid "Photo by: %s"
|
3065 |
msgstr "Photo par: %s"
|
3066 |
|
3067 |
+
#: wppa-boxes-html.php:3957 wppa-boxes-html.php:4020
|
3068 |
#, php-format
|
3069 |
msgid "%d max rating"
|
3070 |
msgid_plural "%d max ratings"
|
3071 |
msgstr[0] "%d max note"
|
3072 |
msgstr[1] "%d max notes"
|
3073 |
|
3074 |
+
#: wppa-boxes-html.php:3961 wppa-boxes-html.php:4024 wppa-non-admin.php:963
|
3075 |
#: wppa-topten-widget.php:208 wppa-topten-widget.php:225
|
3076 |
#: wppa-topten-widget.php:261
|
3077 |
#, php-format
|
3080 |
msgstr[0] "%d vote"
|
3081 |
msgstr[1] "%d votes"
|
3082 |
|
3083 |
+
#: wppa-boxes-html.php:3965
|
3084 |
#, php-format
|
3085 |
msgid "Rating: %4.2f."
|
3086 |
msgstr "Vote: %4.2f."
|
3087 |
|
3088 |
+
#: wppa-boxes-html.php:3973
|
3089 |
#, php-format
|
3090 |
msgid "Photo %s not found."
|
3091 |
msgstr "Photo %s non trouvée."
|
3092 |
|
3093 |
+
#: wppa-boxes-html.php:4028
|
3094 |
#, php-format
|
3095 |
msgid "Mean value: %4.2f."
|
3096 |
msgstr "Valeur moyenne: %4.2f."
|
3097 |
|
3098 |
+
#: wppa-boxes-html.php:4382
|
3099 |
msgid "Refresh"
|
3100 |
msgstr "Rafraichir"
|
3101 |
|
3287 |
msgid "Email:"
|
3288 |
msgstr "Email:"
|
3289 |
|
3290 |
+
#: wppa-comment-admin.php:80 wppa-utils.php:902
|
3291 |
msgid "Comment:"
|
3292 |
msgstr "Commentaire:"
|
3293 |
|
3353 |
msgid "Linkpage:"
|
3354 |
msgstr "Page lien:"
|
3355 |
|
3356 |
+
#: wppa-comment-admin.php:231 wppa-settings-autosave.php:457
|
3357 |
+
#: wppa-settings-autosave.php:8533
|
3358 |
msgid "--- Please select a page ---"
|
3359 |
msgstr "--- Choisir une page ---"
|
3360 |
|
3370 |
msgid "Display status:"
|
3371 |
msgstr "Statut affichage:"
|
3372 |
|
3373 |
+
#: wppa-comment-admin.php:252 wppa-settings-autosave.php:6401
|
3374 |
msgid "all"
|
3375 |
msgstr "tous"
|
3376 |
|
3427 |
msgstr "(Album)"
|
3428 |
|
3429 |
#: wppa-comment-admin.php:311 wppa-comment-admin.php:398 wppa-potd-admin.php:70
|
3430 |
+
#: wppa-potd-admin.php:357 wppa-settings-autosave.php:506
|
3431 |
+
#: wppa-settings-autosave.php:668 wppa-settings-autosave.php:690
|
3432 |
+
#: wppa-settings-autosave.php:1469 wppa-settings-autosave.php:1490
|
3433 |
+
#: wppa-settings-autosave.php:3054 wppa-settings-autosave.php:3075
|
3434 |
+
#: wppa-settings-autosave.php:3451 wppa-settings-autosave.php:3475
|
3435 |
+
#: wppa-settings-autosave.php:4851 wppa-settings-autosave.php:4872
|
3436 |
+
#: wppa-settings-autosave.php:5048 wppa-settings-autosave.php:5072
|
3437 |
+
#: wppa-settings-autosave.php:6130 wppa-settings-autosave.php:6835
|
3438 |
+
#: wppa-settings-autosave.php:6857 wppa-settings-autosave.php:7682
|
3439 |
+
#: wppa-settings-autosave.php:7706 wppa-settings-autosave.php:9636
|
3440 |
+
#: wppa-settings-autosave.php:9657 wppa-settings-autosave.php:9697
|
3441 |
+
#: wppa-settings-autosave.php:9719 wppa-settings-autosave.php:9765
|
3442 |
msgid "#"
|
3443 |
msgstr "#"
|
3444 |
|
3524 |
msgid "There are no commented photos (yet)"
|
3525 |
msgstr "Il n'y pas encore de photos commentariés"
|
3526 |
|
3527 |
+
#: wppa-common-functions.php:608 wppa-functions.php:4802
|
3528 |
#, php-format
|
3529 |
msgid "%d second"
|
3530 |
msgid_plural "%d seconds"
|
3531 |
msgstr[0] "%d seconde"
|
3532 |
msgstr[1] "%d secondes"
|
3533 |
|
3534 |
+
#: wppa-common-functions.php:612 wppa-functions.php:4798
|
3535 |
+
#: wppa-settings-autosave.php:6680 wppa-settings-autosave.php:6681
|
3536 |
#, php-format
|
3537 |
msgid "%d minute"
|
3538 |
msgid_plural "%d minutes"
|
3539 |
msgstr[0] "%d minute"
|
3540 |
msgstr[1] "%d minutes"
|
3541 |
|
3542 |
+
#: wppa-common-functions.php:616 wppa-functions.php:4794
|
3543 |
+
#: wppa-settings-autosave.php:6682 wppa-settings-autosave.php:8099
|
3544 |
#, php-format
|
3545 |
msgid "%d hour"
|
3546 |
msgid_plural "%d hours"
|
3547 |
msgstr[0] "%d heure"
|
3548 |
msgstr[1] "%d heures"
|
3549 |
|
3550 |
+
#: wppa-common-functions.php:620 wppa-functions.php:4790
|
3551 |
+
#: wppa-settings-autosave.php:6683 wppa-settings-autosave.php:8100
|
3552 |
+
#: wppa-settings-autosave.php:8101 wppa-settings-autosave.php:8102
|
3553 |
+
#: wppa-settings-autosave.php:8103 wppa-settings-autosave.php:8104
|
3554 |
+
#: wppa-settings-autosave.php:8105 wppa-settings-autosave.php:8107
|
3555 |
+
#: wppa-settings-autosave.php:8108 wppa-settings-autosave.php:8109
|
3556 |
+
#: wppa-settings-autosave.php:9385
|
3557 |
#, php-format
|
3558 |
msgid "%d day"
|
3559 |
msgid_plural "%d days"
|
3560 |
msgstr[0] "%d jour"
|
3561 |
msgstr[1] "%d jours"
|
3562 |
|
3563 |
+
#: wppa-common-functions.php:624 wppa-functions.php:4786
|
3564 |
+
#: wppa-settings-autosave.php:6684 wppa-settings-autosave.php:8106
|
3565 |
+
#: wppa-settings-autosave.php:8110 wppa-settings-autosave.php:8111
|
3566 |
+
#: wppa-settings-autosave.php:8112 wppa-settings-autosave.php:9386
|
3567 |
#, php-format
|
3568 |
msgid "%d week"
|
3569 |
msgid_plural "%d weeks"
|
3570 |
msgstr[0] "%d semaine"
|
3571 |
msgstr[1] "%d semaines"
|
3572 |
|
3573 |
+
#: wppa-common-functions.php:628 wppa-settings-autosave.php:8113
|
3574 |
+
#: wppa-settings-autosave.php:9387 wppa-settings-autosave.php:9388
|
3575 |
+
#: wppa-settings-autosave.php:9389 wppa-settings-autosave.php:9390
|
3576 |
+
#: wppa-settings-autosave.php:9391 wppa-settings-autosave.php:9393
|
3577 |
#, php-format
|
3578 |
msgid "%d month"
|
3579 |
msgid_plural "%d months"
|
3580 |
msgstr[0] "%d mois"
|
3581 |
msgstr[1] "%d mois"
|
3582 |
|
3583 |
+
#: wppa-common-functions.php:631 wppa-settings-autosave.php:9392
|
3584 |
+
#: wppa-settings-autosave.php:9394
|
3585 |
#, php-format
|
3586 |
msgid "%d year"
|
3587 |
msgid_plural "%d years"
|
3622 |
msgstr "--- une sélection ---"
|
3623 |
|
3624 |
#: wppa-common-functions.php:1790 wppa-import.php:1640 wppa-items.php:470
|
3625 |
+
#: wppa-settings-autosave.php:8308 wppa-settings-autosave.php:8384
|
3626 |
msgid "--- separate ---"
|
3627 |
msgstr "--- séparé ---"
|
3628 |
|
3698 |
msgid "n.a."
|
3699 |
msgstr "Non applicable"
|
3700 |
|
3701 |
+
#: wppa-exif-iptc-common.php:239 wppa-utils.php:2445
|
3702 |
msgid "Not Defined"
|
3703 |
msgstr "Non défini"
|
3704 |
|
3705 |
+
#: wppa-exif-iptc-common.php:240 wppa-utils.php:2446
|
3706 |
msgid "Manual"
|
3707 |
msgstr "Manuel"
|
3708 |
|
3709 |
+
#: wppa-exif-iptc-common.php:241 wppa-utils.php:2447
|
3710 |
msgid "Program AE"
|
3711 |
msgstr "Programme AE"
|
3712 |
|
3713 |
+
#: wppa-exif-iptc-common.php:242 wppa-utils.php:2448
|
3714 |
msgid "Aperture-priority AE"
|
3715 |
msgstr "Priorité ouverture AE"
|
3716 |
|
3717 |
+
#: wppa-exif-iptc-common.php:243 wppa-utils.php:2449
|
3718 |
msgid "Shutter speed priority AE"
|
3719 |
msgstr "Priorité vitesse d'obturation AE"
|
3720 |
|
3721 |
+
#: wppa-exif-iptc-common.php:244 wppa-utils.php:2450
|
3722 |
msgid "Creative (Slow speed)"
|
3723 |
msgstr "Créatif (vitesse lente)"
|
3724 |
|
3725 |
+
#: wppa-exif-iptc-common.php:245 wppa-utils.php:2451
|
3726 |
msgid "Action (High speed)"
|
3727 |
msgstr "Action (vitesse haute)"
|
3728 |
|
3729 |
+
#: wppa-exif-iptc-common.php:246 wppa-utils.php:2452
|
3730 |
msgid "Portrait"
|
3731 |
msgstr "Portrait"
|
3732 |
|
3733 |
+
#: wppa-exif-iptc-common.php:247 wppa-utils.php:2453
|
3734 |
msgid "Landscape"
|
3735 |
msgstr "Paysage"
|
3736 |
|
3737 |
+
#: wppa-exif-iptc-common.php:248 wppa-utils.php:2454
|
3738 |
msgid "Bulb"
|
3739 |
msgstr "Ampoule électrique"
|
3740 |
|
3741 |
+
#: wppa-exif-iptc-common.php:270 wppa-utils.php:2455
|
3742 |
msgid "Average"
|
3743 |
msgstr "Moyen"
|
3744 |
|
3745 |
+
#: wppa-exif-iptc-common.php:271 wppa-utils.php:2456
|
3746 |
msgid "Center-weighted average"
|
3747 |
msgstr "Mesure centrale pondérée"
|
3748 |
|
3749 |
+
#: wppa-exif-iptc-common.php:272 wppa-utils.php:2457
|
3750 |
msgid "Spot"
|
3751 |
msgstr "Spot"
|
3752 |
|
3753 |
+
#: wppa-exif-iptc-common.php:273 wppa-utils.php:2458
|
3754 |
msgid "Multi-spot"
|
3755 |
msgstr "Multi-spot"
|
3756 |
|
3757 |
+
#: wppa-exif-iptc-common.php:274 wppa-utils.php:2459
|
3758 |
msgid "Multi-segment"
|
3759 |
msgstr "Multi-segments"
|
3760 |
|
3761 |
+
#: wppa-exif-iptc-common.php:275 wppa-utils.php:2460
|
3762 |
msgid "Partial"
|
3763 |
msgstr "Partiel"
|
3764 |
|
3765 |
+
#: wppa-exif-iptc-common.php:276 wppa-settings-autosave.php:4976
|
3766 |
+
#: wppa-utils.php:2461
|
3767 |
msgid "Other"
|
3768 |
msgstr "Autre"
|
3769 |
|
3770 |
+
#: wppa-exif-iptc-common.php:312 wppa-utils.php:2462
|
3771 |
msgid "No Flash"
|
3772 |
msgstr "Pas de flash"
|
3773 |
|
3774 |
+
#: wppa-exif-iptc-common.php:314 wppa-utils.php:2463
|
3775 |
msgid "Fired"
|
3776 |
msgstr "Fired"
|
3777 |
|
3778 |
+
#: wppa-exif-iptc-common.php:316 wppa-utils.php:2464
|
3779 |
msgid "Fired, Return not detected"
|
3780 |
msgstr "Fired, Retour non détecté"
|
3781 |
|
3782 |
+
#: wppa-exif-iptc-common.php:318 wppa-utils.php:2465
|
3783 |
msgid "Fired, Return detected"
|
3784 |
msgstr "Fired, Retour détecté"
|
3785 |
|
3786 |
+
#: wppa-exif-iptc-common.php:320 wppa-utils.php:2466
|
3787 |
msgid "On, Did not fire"
|
3788 |
msgstr "Activé, Did not fire"
|
3789 |
|
3790 |
+
#: wppa-exif-iptc-common.php:322 wppa-utils.php:2467
|
3791 |
msgid "On, Fired"
|
3792 |
msgstr "Activé, Fired"
|
3793 |
|
3794 |
+
#: wppa-exif-iptc-common.php:324 wppa-utils.php:2468
|
3795 |
msgid "On, Return not detected"
|
3796 |
msgstr "Activé, Retour non détecté"
|
3797 |
|
3798 |
+
#: wppa-exif-iptc-common.php:326 wppa-utils.php:2469
|
3799 |
msgid "On, Return detected"
|
3800 |
msgstr "Activé, Retour détecté"
|
3801 |
|
3802 |
+
#: wppa-exif-iptc-common.php:328 wppa-utils.php:2470
|
3803 |
msgid "Off, Did not fire"
|
3804 |
msgstr "Désactivé, Did not fire"
|
3805 |
|
3806 |
+
#: wppa-exif-iptc-common.php:330 wppa-utils.php:2471
|
3807 |
msgid "Off, Did not fire, Return not detected"
|
3808 |
msgstr "Désactivé, Did not fire, Retour non détecté"
|
3809 |
|
3810 |
+
#: wppa-exif-iptc-common.php:332 wppa-utils.php:2472
|
3811 |
msgid "Auto, Did not fire"
|
3812 |
msgstr "Auto, Did not fire"
|
3813 |
|
3814 |
+
#: wppa-exif-iptc-common.php:334 wppa-utils.php:2473
|
3815 |
msgid "Auto, Fired"
|
3816 |
msgstr "Auto, Fired"
|
3817 |
|
3818 |
+
#: wppa-exif-iptc-common.php:336 wppa-utils.php:2474
|
3819 |
msgid "Auto, Fired, Return not detected"
|
3820 |
msgstr "Auto, Fired, Retour non détecté"
|
3821 |
|
3822 |
+
#: wppa-exif-iptc-common.php:338 wppa-utils.php:2475
|
3823 |
msgid "Auto, Fired, Return detected"
|
3824 |
msgstr "Auto, Fired, Retour détecté"
|
3825 |
|
3826 |
+
#: wppa-exif-iptc-common.php:340 wppa-utils.php:2476
|
3827 |
msgid "No flash function"
|
3828 |
msgstr "Pas de fonction flash"
|
3829 |
|
3830 |
+
#: wppa-exif-iptc-common.php:342 wppa-utils.php:2477
|
3831 |
msgid "Off, No flash function"
|
3832 |
msgstr "Désactivé, Pas de fonction flash"
|
3833 |
|
3834 |
+
#: wppa-exif-iptc-common.php:344 wppa-utils.php:2478
|
3835 |
msgid "Fired, Red-eye reduction"
|
3836 |
msgstr "Fired, Réduction yeux rouges"
|
3837 |
|
3838 |
+
#: wppa-exif-iptc-common.php:346 wppa-utils.php:2479
|
3839 |
msgid "Fired, Red-eye reduction, Return not detected"
|
3840 |
msgstr "Fired, Réduction yeux rouges, Retour non détecté"
|
3841 |
|
3842 |
+
#: wppa-exif-iptc-common.php:348 wppa-utils.php:2480
|
3843 |
msgid "Fired, Red-eye reduction, Return detected"
|
3844 |
msgstr "Fired, Réduction yeux rouges, Retour détecté"
|
3845 |
|
3846 |
+
#: wppa-exif-iptc-common.php:350 wppa-utils.php:2481
|
3847 |
msgid "On, Red-eye reduction"
|
3848 |
msgstr "Activé, Réduction yeux rouges"
|
3849 |
|
3850 |
+
#: wppa-exif-iptc-common.php:352 wppa-utils.php:2482
|
3851 |
msgid "Red-eye reduction, Return not detected"
|
3852 |
msgstr "Réduction yeux rouges, Retour non détecté"
|
3853 |
|
3854 |
+
#: wppa-exif-iptc-common.php:354 wppa-utils.php:2483
|
3855 |
msgid "On, Red-eye reduction, Return detected"
|
3856 |
msgstr "Activé, Réduction yeux rouges, Retour détecté"
|
3857 |
|
3858 |
+
#: wppa-exif-iptc-common.php:356 wppa-utils.php:2484
|
3859 |
msgid "Off, Red-eye reduction"
|
3860 |
msgstr "Désactivé, Réduction yeux rouges"
|
3861 |
|
3862 |
+
#: wppa-exif-iptc-common.php:358 wppa-utils.php:2485
|
3863 |
msgid "Auto, Did not fire, Red-eye reduction"
|
3864 |
msgstr "Auto, Did not fire, Réduction yeux rouges"
|
3865 |
|
3866 |
+
#: wppa-exif-iptc-common.php:360 wppa-utils.php:2486
|
3867 |
msgid "Auto, Fired, Red-eye reduction"
|
3868 |
msgstr "Auto, Fired, Réduction yeux rouges"
|
3869 |
|
3870 |
+
#: wppa-exif-iptc-common.php:362 wppa-utils.php:2487
|
3871 |
msgid "Auto, Fired, Red-eye reduction, Return not detected"
|
3872 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour non détecté"
|
3873 |
|
3874 |
+
#: wppa-exif-iptc-common.php:364 wppa-utils.php:2488
|
3875 |
msgid "Auto, Fired, Red-eye reduction, Return detected"
|
3876 |
msgstr "Auto, Fired, Réduction yeux rouges, Retour détecté"
|
3877 |
|
4055 |
msgid "Moderate comment admin"
|
4056 |
msgstr "Moderate comment admin"
|
4057 |
|
4058 |
+
#: wppa-functions.php:2403 wppa-functions.php:4599 wppa-import.php:1559
|
4059 |
+
#: wppa-upload.php:598
|
4060 |
msgid "Moderate manage photo"
|
4061 |
msgstr "Moderate manage photo"
|
4062 |
|
4203 |
msgid "Could not insert photo into db."
|
4204 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4205 |
|
4206 |
+
#: wppa-functions.php:4595 wppa-import.php:1555 wppa-upload.php:594
|
4207 |
#, php-format
|
4208 |
msgid "New photo uploaded: %s"
|
4209 |
msgstr "Nouvelle photo chargée: %s"
|
4210 |
|
4211 |
+
#: wppa-functions.php:4596 wppa-import.php:1556 wppa-upload.php:595
|
4212 |
#, php-format
|
4213 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4214 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4215 |
|
4216 |
+
#: wppa-functions.php:4598 wppa-import.php:1558 wppa-upload.php:597
|
4217 |
msgid "This upload requires moderation"
|
4218 |
msgstr "Cet upload nécessite une modération"
|
4219 |
|
4220 |
+
#: wppa-functions.php:4602 wppa-import.php:1562 wppa-upload.php:601
|
4221 |
msgid "Details:"
|
4222 |
msgstr "Détails:"
|
4223 |
|
4224 |
+
#: wppa-functions.php:4603 wppa-import.php:1563 wppa-upload.php:602
|
4225 |
#: wppa-utils.php:779 wppa-utils.php:791
|
4226 |
msgid "Manage photo"
|
4227 |
msgstr "Gérer photo"
|
4228 |
|
4229 |
+
#: wppa-functions.php:4783
|
4230 |
msgid "You can upload after"
|
4231 |
msgstr "Vous pouvez charger après"
|
4232 |
|
4233 |
+
#: wppa-functions.php:4827 wppa-functions.php:4831 wppa-functions.php:4838
|
4234 |
+
#: wppa-functions.php:4842 wppa-links.php:1258 wppa-non-admin.php:858
|
4235 |
+
#: wppa-settings-autosave.php:9805 wppa-settings-autosave.php:9817
|
4236 |
+
#: wppa-settings-autosave.php:9829 wppa-settings-autosave.php:9841
|
4237 |
+
#: wppa-settings-autosave.php:9853 wppa-settings-autosave.php:9865
|
4238 |
+
#: wppa-settings-autosave.php:9877 wppa-settings-autosave.php:9889
|
4239 |
msgid "Download"
|
4240 |
msgstr "Télécharger"
|
4241 |
|
4242 |
+
#: wppa-functions.php:4892
|
4243 |
msgid "Zoom in"
|
4244 |
msgstr "Zoom in"
|
4245 |
|
4246 |
+
#: wppa-functions.php:4923
|
4247 |
#, php-format
|
4248 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4249 |
msgstr ""
|
4250 |
"Vous pouvez voter à nouveau après %s jours, %s heures, %s minutes et %s "
|
4251 |
"secondes"
|
4252 |
|
4253 |
+
#: wppa-functions.php:4926
|
4254 |
#, php-format
|
4255 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4256 |
msgstr "Vous pouvez voter à nouveau après %s heures, %s minutes et %s secondes"
|
4257 |
|
4258 |
+
#: wppa-functions.php:4929
|
4259 |
#, php-format
|
4260 |
msgid "You can vote again after %s minutes and %s seconds"
|
4261 |
msgstr "Vous pouvez voter à nouveau après %s minutes et %s secondes"
|
4673 |
msgid "Duplicate"
|
4674 |
msgstr "Doublon"
|
4675 |
|
4676 |
+
#: wppa-import.php:1873 wppa-upload.php:540 wppa-upload.php:574
|
4677 |
msgid "Error inserting photo"
|
4678 |
msgstr "Erreur pendant l'insertion de la photo"
|
4679 |
|
5021 |
msgid "Bronze"
|
5022 |
msgstr "Bronze"
|
5023 |
|
5024 |
+
#: wppa-items.php:364 wppa-items.php:665 wppa-settings-autosave.php:2365
|
5025 |
+
#: wppa-settings-autosave.php:2394 wppa-settings-autosave.php:2405
|
5026 |
+
#: wppa-settings-autosave.php:3043 wppa-settings-autosave.php:3644
|
5027 |
msgid "none"
|
5028 |
msgstr "aucun"
|
5029 |
|
5285 |
msgid "Toggle fullscreen"
|
5286 |
msgstr "Tasculer en plein écran"
|
5287 |
|
5288 |
+
#: wppa-non-admin.php:799 wppa-settings-autosave.php:3844
|
5289 |
#: wppa-slideshow.php:328
|
5290 |
msgid "Start"
|
5291 |
msgstr "Démarrer"
|
5806 |
msgid "Re-upload file"
|
5807 |
msgstr "Re-téléchargement"
|
5808 |
|
5809 |
+
#: wppa-photo-admin-autosave.php:1192 wppa-settings-autosave.php:3277
|
5810 |
msgid "Upload"
|
5811 |
msgstr "Charger"
|
5812 |
|
5850 |
msgid "Same tab"
|
5851 |
msgstr "Même onglet"
|
5852 |
|
5853 |
+
#: wppa-photo-admin-autosave.php:1441 wppa-settings-autosave.php:5077
|
5854 |
+
#: wppa-settings-autosave.php:6135
|
5855 |
msgid "New tab"
|
5856 |
msgstr "Nouvel onglet"
|
5857 |
|
5995 |
msgstr "Confirmer le déplacement"
|
5996 |
|
5997 |
#: wppa-photo-admin-autosave.php:2018 wppa-photo-admin-autosave.php:2194
|
5998 |
+
#: wppa-potd-admin.php:321 wppa-settings-autosave.php:8903
|
5999 |
msgid "Preview"
|
6000 |
msgstr "Prévisualiser"
|
6001 |
|
6028 |
msgid "Id: "
|
6029 |
msgstr "ID:"
|
6030 |
|
6031 |
+
#: wppa-photo-admin-autosave.php:2402 wppa-settings-autosave.php:381
|
6032 |
msgid "Video"
|
6033 |
msgstr "Vidéo"
|
6034 |
|
6035 |
+
#: wppa-photo-admin-autosave.php:2403 wppa-settings-autosave.php:361
|
6036 |
msgid "Audio"
|
6037 |
msgstr "Audio"
|
6038 |
|
6045 |
msgstr "Cet album est vide."
|
6046 |
|
6047 |
#: wppa-photo-admin-autosave.php:2475 wppa-photo-admin-autosave.php:2496
|
6048 |
+
#: wppa-settings-autosave.php:4578 wppa-setup.php:355
|
6049 |
msgid "Required"
|
6050 |
msgstr "requis"
|
6051 |
|
6061 |
msgid "Count"
|
6062 |
msgstr "Compteur"
|
6063 |
|
6064 |
+
#: wppa-photo-admin-autosave.php:2614 wppa-settings-autosave.php:6588
|
6065 |
msgid "Tags"
|
6066 |
msgstr "Tags"
|
6067 |
|
6074 |
msgid "ERROR: File %s is not a valid picture file."
|
6075 |
msgstr "ERREUR: Le fichier %s n'est pas un fichier image valide."
|
6076 |
|
6077 |
+
#: wppa-photo-files.php:331 wppa-photo-files.php:332
|
6078 |
msgid "ERROR: Resized or copied image could not be created."
|
6079 |
msgstr "ERREUR: L'image copiée ou redimensionnée ne peut être créée."
|
6080 |
|
6089 |
"nécessaire."
|
6090 |
|
6091 |
#: wppa-potd-admin.php:73 wppa-potd-admin.php:360
|
6092 |
+
#: wppa-settings-autosave.php:509 wppa-settings-autosave.php:671
|
6093 |
+
#: wppa-settings-autosave.php:693 wppa-settings-autosave.php:1472
|
6094 |
+
#: wppa-settings-autosave.php:1493 wppa-settings-autosave.php:3057
|
6095 |
+
#: wppa-settings-autosave.php:3478 wppa-settings-autosave.php:4854
|
6096 |
+
#: wppa-settings-autosave.php:6838 wppa-settings-autosave.php:7709
|
6097 |
+
#: wppa-settings-autosave.php:9639
|
6098 |
msgid "Setting"
|
6099 |
msgstr "Réglages"
|
6100 |
|
6101 |
#: wppa-potd-admin.php:74 wppa-potd-admin.php:361
|
6102 |
+
#: wppa-settings-autosave.php:510 wppa-settings-autosave.php:672
|
6103 |
+
#: wppa-settings-autosave.php:694 wppa-settings-autosave.php:1473
|
6104 |
+
#: wppa-settings-autosave.php:1494 wppa-settings-autosave.php:3058
|
6105 |
+
#: wppa-settings-autosave.php:3082 wppa-settings-autosave.php:3458
|
6106 |
+
#: wppa-settings-autosave.php:3479 wppa-settings-autosave.php:4855
|
6107 |
+
#: wppa-settings-autosave.php:4879 wppa-settings-autosave.php:5055
|
6108 |
+
#: wppa-settings-autosave.php:5079 wppa-settings-autosave.php:6137
|
6109 |
+
#: wppa-settings-autosave.php:6840 wppa-settings-autosave.php:6864
|
6110 |
+
#: wppa-settings-autosave.php:7689 wppa-settings-autosave.php:7710
|
6111 |
+
#: wppa-settings-autosave.php:9640 wppa-settings-autosave.php:9662
|
6112 |
+
#: wppa-settings-autosave.php:9702 wppa-settings-autosave.php:9724
|
6113 |
+
#: wppa-settings-autosave.php:9770
|
6114 |
msgid "Help"
|
6115 |
msgstr "Aide"
|
6116 |
|
6140 |
"Saisissez la largeur d'affichage souhaitée de la photo dans la barre "
|
6141 |
"latérale."
|
6142 |
|
6143 |
+
#: wppa-potd-admin.php:93 wppa-settings-autosave.php:711
|
6144 |
+
#: wppa-settings-autosave.php:720 wppa-settings-autosave.php:842
|
6145 |
+
#: wppa-settings-autosave.php:1004 wppa-settings-autosave.php:1015
|
6146 |
msgid "pixels wide"
|
6147 |
msgstr "pixels en largeur"
|
6148 |
|
6155 |
msgstr ""
|
6156 |
"Entrez l'alignement d'affichage souhaité de la photo dans la barre latérale."
|
6157 |
|
6158 |
+
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3823
|
6159 |
+
#: wppa-settings-autosave.php:3837 wppa-settings-autosave.php:4094
|
6160 |
+
#: wppa-settings-autosave.php:9614 wppa-slideshow-widget.php:215
|
6161 |
#: wppa-tinymce-shortcodes.php:628
|
6162 |
msgid "center"
|
6163 |
msgstr "Centre"
|
6199 |
msgid "The counter links to."
|
6200 |
msgstr "Le compteur des liens vers."
|
6201 |
|
6202 |
+
#: wppa-potd-admin.php:156 wppa-settings-autosave.php:1067
|
6203 |
+
#: wppa-settings-autosave.php:5881 wppa-settings-autosave.php:5914
|
6204 |
+
#: wppa-settings-autosave.php:6011
|
6205 |
msgid "thumbnails"
|
6206 |
msgstr "vignettes"
|
6207 |
|
6208 |
+
#: wppa-potd-admin.php:156 wppa-settings-autosave.php:5882
|
6209 |
+
#: wppa-settings-autosave.php:5915 wppa-settings-autosave.php:6012
|
6210 |
msgid "slideshow"
|
6211 |
msgstr "diaporama"
|
6212 |
|
6239 |
msgstr "Sélectionnez les albums à utiliser pour la photo du jour."
|
6240 |
|
6241 |
#: wppa-potd-admin.php:190 wppa-potd-admin.php:644 wppa-potd-admin.php:669
|
6242 |
+
#: wppa-potd-admin.php:707 wppa-settings-autosave.php:344
|
6243 |
+
#: wppa-settings-autosave.php:7550 wppa-settings-autosave.php:7577
|
6244 |
+
#: wppa-settings-autosave.php:8772 wppa-settings-autosave.php:8774
|
6245 |
+
#: wppa-settings-autosave.php:10154 wppa-settings-autosave.php:10172
|
6246 |
+
#: wppa-settings-autosave.php:10192 wppa-settings-autosave.php:10209
|
6247 |
+
#: wppa-settings-autosave.php:10238 wppa-settings-autosave.php:10256
|
6248 |
+
#: wppa-settings-autosave.php:10280 wppa-settings-autosave.php:10301
|
6249 |
+
#: wppa-settings-autosave.php:10321 wppa-settings-autosave.php:10338
|
6250 |
+
#: wppa-settings-autosave.php:10382 wppa-settings-autosave.php:10435
|
6251 |
+
#: wppa-settings-autosave.php:10467
|
6252 |
msgid "Setting unmodified"
|
6253 |
msgstr "Configuration inchangée"
|
6254 |
|
6417 |
"Il y a trop de photos dans la sélection pour pouvoir afficher une "
|
6418 |
"prévisualisation ( %d )"
|
6419 |
|
6420 |
+
#: wppa-potd-admin.php:573 wppa-settings-autosave.php:10082
|
6421 |
msgid "The default for this setting is:"
|
6422 |
msgstr "Le réglage par défaut pour cette option est:"
|
6423 |
|
6424 |
+
#: wppa-potd-admin.php:590 wppa-settings-autosave.php:10099
|
6425 |
msgid "Click for help"
|
6426 |
msgstr "Cliquer pour l'aide"
|
6427 |
|
6428 |
+
#: wppa-potd-admin.php:614 wppa-settings-autosave.php:10483
|
6429 |
msgid "Checked"
|
6430 |
msgstr "Coché"
|
6431 |
|
6432 |
+
#: wppa-potd-admin.php:615 wppa-settings-autosave.php:10484
|
6433 |
msgid "Unchecked"
|
6434 |
msgstr "Décoché"
|
6435 |
|
6436 |
+
#: wppa-potd-admin.php:616 wppa-settings-autosave.php:5137
|
6437 |
+
#: wppa-settings-autosave.php:5180 wppa-settings-autosave.php:5258
|
6438 |
+
#: wppa-settings-autosave.php:5301 wppa-settings-autosave.php:5351
|
6439 |
+
#: wppa-settings-autosave.php:5400 wppa-settings-autosave.php:5449
|
6440 |
+
#: wppa-settings-autosave.php:5503 wppa-settings-autosave.php:5541
|
6441 |
+
#: wppa-settings-autosave.php:5593 wppa-settings-autosave.php:5635
|
6442 |
+
#: wppa-settings-autosave.php:5677 wppa-settings-autosave.php:5718
|
6443 |
+
#: wppa-settings-autosave.php:10485
|
6444 |
msgid "no link at all."
|
6445 |
msgstr "pas de lien du tout."
|
6446 |
|
6447 |
+
#: wppa-potd-admin.php:617 wppa-settings-autosave.php:5138
|
6448 |
+
#: wppa-settings-autosave.php:5181 wppa-settings-autosave.php:5259
|
6449 |
+
#: wppa-settings-autosave.php:5302 wppa-settings-autosave.php:5352
|
6450 |
+
#: wppa-settings-autosave.php:5401 wppa-settings-autosave.php:5450
|
6451 |
+
#: wppa-settings-autosave.php:5504 wppa-settings-autosave.php:5542
|
6452 |
+
#: wppa-settings-autosave.php:5594 wppa-settings-autosave.php:5636
|
6453 |
+
#: wppa-settings-autosave.php:5678 wppa-settings-autosave.php:5719
|
6454 |
+
#: wppa-settings-autosave.php:10486
|
6455 |
msgid "the plain photo (file)."
|
6456 |
msgstr "la photo originale (fichier)."
|
6457 |
|
6458 |
+
#: wppa-potd-admin.php:618 wppa-settings-autosave.php:5141
|
6459 |
+
#: wppa-settings-autosave.php:5184 wppa-settings-autosave.php:5260
|
6460 |
+
#: wppa-settings-autosave.php:5305 wppa-settings-autosave.php:5355
|
6461 |
+
#: wppa-settings-autosave.php:5404 wppa-settings-autosave.php:5453
|
6462 |
+
#: wppa-settings-autosave.php:5543 wppa-settings-autosave.php:5596
|
6463 |
+
#: wppa-settings-autosave.php:5638 wppa-settings-autosave.php:5680
|
6464 |
+
#: wppa-settings-autosave.php:10487
|
6465 |
msgid "the full size photo in a slideshow."
|
6466 |
msgstr "la photo pleine grandeur dans un diaporama."
|
6467 |
|
6468 |
+
#: wppa-potd-admin.php:619 wppa-settings-autosave.php:5142
|
6469 |
+
#: wppa-settings-autosave.php:5185 wppa-settings-autosave.php:5261
|
6470 |
+
#: wppa-settings-autosave.php:5307 wppa-settings-autosave.php:5357
|
6471 |
+
#: wppa-settings-autosave.php:5406 wppa-settings-autosave.php:5455
|
6472 |
+
#: wppa-settings-autosave.php:5545 wppa-settings-autosave.php:5597
|
6473 |
+
#: wppa-settings-autosave.php:5639 wppa-settings-autosave.php:5681
|
6474 |
+
#: wppa-settings-autosave.php:5720 wppa-settings-autosave.php:10488
|
6475 |
msgid "the fullsize photo on its own."
|
6476 |
msgstr "la photo pleine grandeur à lui seul."
|
6477 |
|
6478 |
+
#: wppa-potd-admin.php:620 wppa-settings-autosave.php:10489
|
6479 |
msgid "the photo specific link."
|
6480 |
msgstr "le lien spécifique de la photo."
|
6481 |
|
6482 |
+
#: wppa-potd-admin.php:621 wppa-settings-autosave.php:5140
|
6483 |
+
#: wppa-settings-autosave.php:5183 wppa-settings-autosave.php:5595
|
6484 |
+
#: wppa-settings-autosave.php:5637 wppa-settings-autosave.php:5679
|
6485 |
+
#: wppa-settings-autosave.php:10490
|
6486 |
msgid "the content of the album."
|
6487 |
msgstr "le contenu de l'album."
|
6488 |
|
6489 |
+
#: wppa-potd-admin.php:622 wppa-settings-autosave.php:5182
|
6490 |
+
#: wppa-settings-autosave.php:10491
|
6491 |
msgid "defined at widget activation."
|
6492 |
msgstr "défini à l'activation du widget."
|
6493 |
|
6494 |
+
#: wppa-potd-admin.php:623 wppa-settings-autosave.php:5139
|
6495 |
+
#: wppa-settings-autosave.php:10492
|
6496 |
msgid "defined on widget admin page."
|
6497 |
msgstr "réglages sur la page d'admin des widgets."
|
6498 |
|
6499 |
+
#: wppa-potd-admin.php:624 wppa-settings-autosave.php:5505
|
6500 |
+
#: wppa-settings-autosave.php:10493
|
6501 |
msgid "same as title."
|
6502 |
msgstr "identique au titre."
|
6503 |
|
6504 |
#: wppa-potd-admin.php:636 wppa-potd-admin.php:659 wppa-potd-admin.php:680
|
6505 |
+
#: wppa-settings-autosave.php:10144 wppa-settings-autosave.php:10164
|
6506 |
+
#: wppa-settings-autosave.php:10182 wppa-settings-autosave.php:10201
|
6507 |
+
#: wppa-settings-autosave.php:10231 wppa-settings-autosave.php:10248
|
6508 |
+
#: wppa-settings-autosave.php:10272 wppa-settings-autosave.php:10293
|
6509 |
+
#: wppa-settings-autosave.php:10313 wppa-settings-autosave.php:10355
|
6510 |
msgid "Slug ="
|
6511 |
msgstr "Slug ="
|
6512 |
|
6513 |
+
#: wppa-potd-admin.php:636 wppa-settings-autosave.php:10248
|
6514 |
+
#: wppa-settings-autosave.php:10272 wppa-settings-autosave.php:10293
|
6515 |
+
#: wppa-settings-autosave.php:10313
|
6516 |
msgid "Values = yes, no"
|
6517 |
msgstr "Valeurs=oui,non"
|
6518 |
|
6519 |
+
#: wppa-potd-admin.php:680 wppa-settings-autosave.php:10355
|
6520 |
msgid "Values = "
|
6521 |
msgstr "Values = "
|
6522 |
|
6597 |
msgid "Enable subsearch"
|
6598 |
msgstr "Activer subsearch"
|
6599 |
|
6600 |
+
#: wppa-search-widget.php:134 wppa-settings-autosave.php:6063
|
6601 |
msgid "Landing page"
|
6602 |
msgstr "Page de destination"
|
6603 |
|
6708 |
msgid "Blogid ="
|
6709 |
msgstr "Blogid ="
|
6710 |
|
6711 |
+
#: wppa-settings-autosave.php:294
|
6712 |
msgid "Please de-activate plugin <i style=\"font-size:14px;\">"
|
6713 |
msgstr "Veuillez désactiver le greffon (plugin) <i style=\"font-size:14px;\">"
|
6714 |
|
6715 |
+
#: wppa-settings-autosave.php:294
|
6716 |
msgid ". </i>This plugin will cause wppa+ to function not properly."
|
6717 |
msgstr ""
|
6718 |
". </i>Ce greffon (plugin) risque fortement d'empêcher WPPA+ de fonctionner "
|
6719 |
"correctement."
|
6720 |
|
6721 |
+
#: wppa-settings-autosave.php:304
|
6722 |
msgid "Please note that plugin <i style=\"font-size:14px;\">"
|
6723 |
msgstr "Veuillez noter que ce greffon (plugin) <i style=\"font-size:14px;\">"
|
6724 |
|
6725 |
+
#: wppa-settings-autosave.php:304
|
6726 |
msgid "</i> can cause wppa+ to function not properly if it is misconfigured."
|
6727 |
msgstr ""
|
6728 |
"</i> peut provoquer de sérieux dysfonctionnements de WPPA+ si mal il est mal "
|
6729 |
"configuré."
|
6730 |
|
6731 |
+
#: wppa-settings-autosave.php:309
|
6732 |
msgid ""
|
6733 |
"There is a serious misconfiguration in your servers PHP config. Function "
|
6734 |
"wppa_imagecreatefromjpeg() does not exist. You will encounter problems when "
|
6742 |
"fournisseur d’hébergement pour ajouter le support de GD avec une version "
|
6743 |
"minimale de 1.8."
|
6744 |
|
6745 |
+
#: wppa-settings-autosave.php:314
|
6746 |
msgid "Rebuilding the Album index needs completion. See Table VIII"
|
6747 |
msgstr ""
|
6748 |
"Reconstruire l'index des albums nécessite une finalisation. Voir table VIII"
|
6749 |
|
6750 |
+
#: wppa-settings-autosave.php:315
|
6751 |
msgid "Rebuilding the Photo index needs completion. See Table VIII"
|
6752 |
msgstr ""
|
6753 |
"Reconstruire l'index des photos nécessite une finalisation. Voir table VIII"
|
6754 |
|
6755 |
+
#: wppa-settings-autosave.php:317
|
6756 |
msgid "Remove empty albums needs completion. See Table VIII"
|
6757 |
msgstr "Retirer les albums vides nécessite une finalisation. Voir table VIII"
|
6758 |
|
6759 |
+
#: wppa-settings-autosave.php:318
|
6760 |
msgid "Applying new photo description needs completion. See Table VIII"
|
6761 |
msgstr ""
|
6762 |
"Appliquer la nouvelle description de photo nécessite une finalisation. Voir "
|
6763 |
"table VIII"
|
6764 |
|
6765 |
+
#: wppa-settings-autosave.php:319
|
6766 |
msgid "Appending to photo description needs completion. See Table VIII"
|
6767 |
msgstr ""
|
6768 |
"Ajouter à la description de photo nécessite une finalisation. Voir table VIII"
|
6769 |
|
6770 |
+
#: wppa-settings-autosave.php:320
|
6771 |
msgid "Removing from photo description needs completion. See Table VIII"
|
6772 |
msgstr ""
|
6773 |
"Retirer de la description photo nécessite une finalisation. Voir table VIII"
|
6774 |
|
6775 |
+
#: wppa-settings-autosave.php:321
|
6776 |
msgid "Removing file extensions needs completion. See Table VIII"
|
6777 |
msgstr ""
|
6778 |
"Retirer les extensions de fichier nécessite une finalisation. Voir table VIII"
|
6779 |
|
6780 |
+
#: wppa-settings-autosave.php:322
|
6781 |
msgid "Regenerating the Thumbnails needs completion. See Table VIII"
|
6782 |
msgstr "Régénérer les vignettes nécessite une finalisation. Voir table VIII"
|
6783 |
|
6784 |
+
#: wppa-settings-autosave.php:323
|
6785 |
msgid "Rerating needs completion. See Table VIII"
|
6786 |
msgstr "Le recalcul des notes nécessite une finalisation. Voir table VIII"
|
6787 |
|
6788 |
+
#: wppa-settings-autosave.php:331
|
6789 |
msgid ""
|
6790 |
"A thumbframe width or height should not be smaller than a thumbnail size. "
|
6791 |
"Please correct the corresponding setting(s) in Table I-C"
|
6794 |
"de la vignette. Veuillez corriger le(s) réglage(s) correspondants dans la "
|
6795 |
"table I-C"
|
6796 |
|
6797 |
+
#: wppa-settings-autosave.php:336
|
6798 |
msgid "Show legenda"
|
6799 |
msgstr "Montrer la légende"
|
6800 |
|
6801 |
+
#: wppa-settings-autosave.php:338
|
6802 |
msgid "Legenda:"
|
6803 |
msgstr "Légende:"
|
6804 |
|
6805 |
+
#: wppa-settings-autosave.php:339 wppa-settings-autosave.php:341
|
6806 |
+
#: wppa-settings-autosave.php:2070 wppa-settings-autosave.php:5810
|
6807 |
msgid "Button"
|
6808 |
msgstr "Bouton"
|
6809 |
|
6810 |
+
#: wppa-settings-autosave.php:339
|
6811 |
msgid "action that causes page reload."
|
6812 |
msgstr "action qui provoque le rechargement de la page."
|
6813 |
|
6814 |
+
#: wppa-settings-autosave.php:341 wppa-settings-autosave.php:10516
|
6815 |
+
#: wppa-settings-autosave.php:10535
|
6816 |
msgid "Are you sure?"
|
6817 |
msgstr "Êtes-vous sûr ?"
|
6818 |
|
6819 |
+
#: wppa-settings-autosave.php:342
|
6820 |
msgid "action that does not cause page reload."
|
6821 |
msgstr "action qui ne provoque pas le rechargement de la page."
|
6822 |
|
6823 |
+
#: wppa-settings-autosave.php:346
|
6824 |
msgid "Update in progress"
|
6825 |
msgstr "Mise à jour en cours"
|
6826 |
|
6827 |
+
#: wppa-settings-autosave.php:348
|
6828 |
msgid "Setting updated"
|
6829 |
msgstr "Réglages mis à jour"
|
6830 |
|
6831 |
+
#: wppa-settings-autosave.php:350
|
6832 |
msgid "Update failed"
|
6833 |
msgstr "Mise à jour échouée"
|
6834 |
|
6835 |
+
#: wppa-settings-autosave.php:352
|
6836 |
msgid "Hide this"
|
6837 |
msgstr "Cacher"
|
6838 |
|
6839 |
+
#: wppa-settings-autosave.php:358
|
6840 |
msgid "System"
|
6841 |
msgstr "Système"
|
6842 |
|
6843 |
+
#: wppa-settings-autosave.php:359
|
6844 |
msgid "Access"
|
6845 |
msgstr "Accès"
|
6846 |
|
6847 |
+
#: wppa-settings-autosave.php:363
|
6848 |
msgid "Counts"
|
6849 |
msgstr "Compteur"
|
6850 |
|
6851 |
+
#: wppa-settings-autosave.php:364
|
6852 |
msgid "Covers"
|
6853 |
msgstr "Couvertures"
|
6854 |
|
6855 |
+
#: wppa-settings-autosave.php:365
|
6856 |
msgid "Layout"
|
6857 |
msgstr "Disposition"
|
6858 |
|
6859 |
+
#: wppa-settings-autosave.php:366 wppa-settings-autosave.php:5027
|
6860 |
msgid "Lightbox"
|
6861 |
msgstr "Lightbox"
|
6862 |
|
6863 |
+
#: wppa-settings-autosave.php:367
|
6864 |
msgid "Links"
|
6865 |
msgstr "Liens"
|
6866 |
|
6867 |
+
#: wppa-settings-autosave.php:368
|
6868 |
+
msgid "Mail"
|
6869 |
+
msgstr "Courrier"
|
6870 |
+
|
6871 |
+
#: wppa-settings-autosave.php:369
|
6872 |
msgid "Metadata"
|
6873 |
msgstr "Métadonnée"
|
6874 |
|
6875 |
+
#: wppa-settings-autosave.php:370
|
6876 |
msgid "Navigation"
|
6877 |
msgstr "Navigation"
|
6878 |
|
6879 |
+
#: wppa-settings-autosave.php:372 wppa-settings-autosave.php:8935
|
6880 |
+
#: wppa-settings-autosave.php:8980
|
6881 |
msgid "Rating"
|
6882 |
msgstr "Note"
|
6883 |
|
6884 |
+
#: wppa-settings-autosave.php:374
|
6885 |
msgid "Sizes"
|
6886 |
msgstr "Tailles"
|
6887 |
|
6888 |
+
#: wppa-settings-autosave.php:375
|
6889 |
msgid "Slideshows"
|
6890 |
msgstr "Diaporamas"
|
6891 |
|
6892 |
+
#: wppa-settings-autosave.php:376
|
6893 |
msgid "Social Media"
|
6894 |
msgstr "Réseaux sociaux"
|
6895 |
|
6896 |
+
#: wppa-settings-autosave.php:378
|
6897 |
msgid "Uploads"
|
6898 |
msgstr "Chargements"
|
6899 |
|
6900 |
+
#: wppa-settings-autosave.php:379
|
6901 |
msgid "Widgets"
|
6902 |
msgstr "Widgets"
|
6903 |
|
6904 |
+
#: wppa-settings-autosave.php:380 wppa-settings-autosave.php:8753
|
6905 |
msgid "Watermark"
|
6906 |
msgstr "Filigrane"
|
6907 |
|
6908 |
+
#: wppa-settings-autosave.php:388
|
6909 |
msgid "Click on the banner of a (sub)table to open/close it, or"
|
6910 |
msgstr "Cliquer sur la bannière d'un (sous)table pour l'ouvrir/la fermer, ou"
|
6911 |
|
6912 |
+
#: wppa-settings-autosave.php:390
|
6913 |
msgid "Show settings related to:"
|
6914 |
msgstr "Montrer les réglages associés à:"
|
6915 |
|
6916 |
+
#: wppa-settings-autosave.php:396
|
6917 |
msgid "and ( optionally ) to:"
|
6918 |
msgstr "et (optionnellement) à:"
|
6919 |
|
6920 |
+
#: wppa-settings-autosave.php:412
|
6921 |
msgid "Quick setup"
|
6922 |
msgstr "Config. rapide"
|
6923 |
|
6924 |
+
#: wppa-settings-autosave.php:414
|
6925 |
msgid "Do a quick initial setup"
|
6926 |
msgstr "Config. rapide initiale"
|
6927 |
|
6928 |
+
#: wppa-settings-autosave.php:415
|
6929 |
msgid "Close quick setup"
|
6930 |
msgstr "Fermer config. rapide"
|
6931 |
|
6932 |
+
#: wppa-settings-autosave.php:455
|
6933 |
msgid "--- The same post or page ---"
|
6934 |
msgstr "--- Même article ou page ---"
|
6935 |
|
6936 |
+
#: wppa-settings-autosave.php:486
|
6937 |
msgid "--- No page to link to (yet) ---"
|
6938 |
msgstr "- Pas de page à lier (pour le moment) -"
|
6939 |
|
6940 |
+
#: wppa-settings-autosave.php:491
|
6941 |
msgid "--- Will be auto created ---"
|
6942 |
msgstr "--- Sera créé automatiquement ---"
|
6943 |
|
6944 |
+
#: wppa-settings-autosave.php:498
|
6945 |
msgid "Table O:"
|
6946 |
msgstr "Table O:"
|
6947 |
|
6948 |
+
#: wppa-settings-autosave.php:498
|
6949 |
msgid "Quick Setup:"
|
6950 |
msgstr "Configuration rapide:"
|
6951 |
|
6952 |
+
#: wppa-settings-autosave.php:499
|
6953 |
msgid "This table enables you to quickly do an inital setup."
|
6954 |
msgstr "Cette table permet de faire une configuration initiale rapide."
|
6955 |
|
6956 |
+
#: wppa-settings-autosave.php:521
|
6957 |
msgid ""
|
6958 |
"To quickly setup WPPA+ please answer the following questions. You can alway "
|
6959 |
"change any setting later. <a>Click on me!</a>"
|
6962 |
"suivantes. Vous pouvez toujours modifier n’importe quel réglage plus tard. "
|
6963 |
"<a>Cliquez sur moi !</a>"
|
6964 |
|
6965 |
+
#: wppa-settings-autosave.php:523
|
6966 |
msgid "Is your theme <i>responsive</i>?"
|
6967 |
msgstr "Votre thème est-il <i>adaptatif</i>?"
|
6968 |
|
6969 |
+
#: wppa-settings-autosave.php:524
|
6970 |
msgid ""
|
6971 |
"Responsive themes have a layout that varies with the size of the browser "
|
6972 |
"window."
|
6974 |
"Les thèmes adaptatifs ont une disposition qui varie avec la taille de la "
|
6975 |
"fenêtre du navigateur."
|
6976 |
|
6977 |
+
#: wppa-settings-autosave.php:525
|
6978 |
msgid ""
|
6979 |
"WPPA+ needs to know this to automaticly adept the width of the display to "
|
6980 |
"the available width on the page."
|
6982 |
"WPPA+ a besoin de cette information pour adapter la largeur de l'affichage a "
|
6983 |
"celle de la page."
|
6984 |
|
6985 |
+
#: wppa-settings-autosave.php:532
|
6986 |
msgid "Do you want to downsize photos during upload?"
|
6987 |
msgstr "Voulez vous réduire la taille des photos pendant le chargement?"
|
6988 |
|
6989 |
+
#: wppa-settings-autosave.php:533
|
6990 |
msgid ""
|
6991 |
"Downsizing photos make them load faster to the visitor, without loosing "
|
6992 |
"display quality"
|
6994 |
"Réduire la taille des photos rend leur affichage plus rapide, sans perte de "
|
6995 |
"qualité de rendu"
|
6996 |
|
6997 |
+
#: wppa-settings-autosave.php:534
|
6998 |
msgid ""
|
6999 |
"If you answer yes, the photos will be downsized to max 1024 x 768 pixels. "
|
7000 |
"You can change this later, if you like"
|
7002 |
"Si vous répondez oui, les photos seront redimensionnées au max à 1024x768 "
|
7003 |
"pixels. Vous pourrez changer cela plus tard, si vous voulez"
|
7004 |
|
7005 |
+
#: wppa-settings-autosave.php:541
|
7006 |
msgid "Do you want to save the original photofiles?"
|
7007 |
msgstr "Êtes-vous sûr de vouloir sauvegarder les photos originales?"
|
7008 |
|
7009 |
+
#: wppa-settings-autosave.php:542
|
7010 |
msgid "This will require considerable disk space on the server."
|
7011 |
msgstr "Ceci va demander un espace disque important sur le serveur."
|
7012 |
|
7013 |
+
#: wppa-settings-autosave.php:543
|
7014 |
msgid ""
|
7015 |
"If you answer yes, you will be able to remove watermarks you applied with "
|
7016 |
"wppa+ in a later stage, redo downsizing to a larger size afterwards, and "
|
7021 |
"taille supérieure après coup, et fournir des images téléchargeables en "
|
7022 |
"pleine taille."
|
7023 |
|
7024 |
+
#: wppa-settings-autosave.php:550
|
7025 |
msgid "May visitors upload photos?"
|
7026 |
msgstr "Les visiteurs peuvent-ils charger des photos?"
|
7027 |
|
7028 |
+
#: wppa-settings-autosave.php:551
|
7029 |
msgid ""
|
7030 |
"It is safe to do so, but i will have to do some settings to keep it safe!"
|
7031 |
msgstr ""
|
7032 |
"Faire de cette manière est sûr, mais Je vais devoir faire certains réglages "
|
7033 |
"pour que cela soit ok!"
|
7034 |
|
7035 |
+
#: wppa-settings-autosave.php:552
|
7036 |
msgid ""
|
7037 |
"If you answer yes, i will assume you want to enable logged in users to "
|
7038 |
"upload photos at the front-end of the website and allow them to edit their "
|
7042 |
"connectés à charger des photos via le site et à modifier le nom et la "
|
7043 |
"description de leurs photos."
|
7044 |
|
7045 |
+
#: wppa-settings-autosave.php:553
|
7046 |
msgid ""
|
7047 |
"The photos will be hold for moderation, the admin will get notified by email."
|
7048 |
msgstr ""
|
7049 |
"Les photos seront mises en attente de libération, l'administrateur sera "
|
7050 |
"notifié par mail."
|
7051 |
|
7052 |
+
#: wppa-settings-autosave.php:554
|
7053 |
msgid ""
|
7054 |
"Each user will get his own album to upload to. These settings can be changed "
|
7055 |
"later."
|
7057 |
"Chaque utilisateur aura son propre album à compléter. Ces réglages peuvent "
|
7058 |
"être modifiés après coup."
|
7059 |
|
7060 |
+
#: wppa-settings-autosave.php:561
|
7061 |
msgid "Do you want the rating system active?"
|
7062 |
msgstr "Voulez vous que le système de notation soit activé?"
|
7063 |
|
7064 |
+
#: wppa-settings-autosave.php:562
|
7065 |
msgid "Enable the rating system and show the votes in the slideshow."
|
7066 |
msgstr "Activer le système de notation et montrer les votes dans le diaporama."
|
7067 |
|
7068 |
+
#: wppa-settings-autosave.php:563
|
7069 |
msgid "You can configure the details of the rating system later"
|
7070 |
msgstr "Vous pouvez configurer les détails du système de notation plus tard."
|
7071 |
|
7072 |
+
#: wppa-settings-autosave.php:570
|
7073 |
msgid "Do you want the comment system active?"
|
7074 |
msgstr "Voulez vous que le système de commentaire soit activé?"
|
7075 |
|
7076 |
+
#: wppa-settings-autosave.php:571
|
7077 |
msgid "Enable the comment system and show the comments in the slideshow."
|
7078 |
msgstr ""
|
7079 |
"Activer le système de commentaire et montrer les commentaires dans le "
|
7080 |
"diaporama."
|
7081 |
|
7082 |
+
#: wppa-settings-autosave.php:572
|
7083 |
msgid "You can configure the details of the comment system later"
|
7084 |
msgstr "Vous pouvez configurer les détails du système de commentaire plus tard"
|
7085 |
|
7086 |
+
#: wppa-settings-autosave.php:579
|
7087 |
msgid "Do you want the social media share buttons displayed?"
|
7088 |
msgstr ""
|
7089 |
"Voulez vous que le bouton de partage sur les réseaux sociaux soit affiché?"
|
7090 |
|
7091 |
+
#: wppa-settings-autosave.php:580
|
7092 |
msgid "Display the social media buttons in the slideshow"
|
7093 |
msgstr "Afficher les boutons de réseaux sociaux dans le diaporama"
|
7094 |
|
7095 |
+
#: wppa-settings-autosave.php:581
|
7096 |
msgid ""
|
7097 |
"These buttons share the specific photo rather than the page where it is "
|
7098 |
"displayed on"
|
7100 |
"Ces boutons partagent une photo spécifique plutôt que la page où celle ci "
|
7101 |
"est affichée"
|
7102 |
|
7103 |
+
#: wppa-settings-autosave.php:588
|
7104 |
msgid "Are you going to use IPTC data?"
|
7105 |
msgstr "Voulez vous utiliser les données IPTC ?"
|
7106 |
|
7107 |
+
#: wppa-settings-autosave.php:589
|
7108 |
msgid ""
|
7109 |
"IPTC data is information you may have added in a photo manipulation program."
|
7110 |
msgstr ""
|
7111 |
"Les données IPTC sont les informations que vous avez éventuellement ajoutées "
|
7112 |
"dans un programme de retouche d'image."
|
7113 |
|
7114 |
+
#: wppa-settings-autosave.php:590 wppa-settings-autosave.php:599
|
7115 |
msgid ""
|
7116 |
"The information can be displayed in slideshows and in photo descriptions."
|
7117 |
msgstr ""
|
7118 |
"Cette information peut être affichée dans les diaporama et dans la "
|
7119 |
"description des photos."
|
7120 |
|
7121 |
+
#: wppa-settings-autosave.php:597
|
7122 |
msgid "Are you going to use EXIF data?"
|
7123 |
msgstr "Voulez vous utiliser les données EXIF ?"
|
7124 |
|
7125 |
+
#: wppa-settings-autosave.php:598
|
7126 |
msgid ""
|
7127 |
"EXIF data is information from the camera like model no, focal distance and "
|
7128 |
"aperture used."
|
7131 |
"numérique. Par exemple le numéro de modèle, la focale et l'ouverture "
|
7132 |
"utilisées."
|
7133 |
|
7134 |
+
#: wppa-settings-autosave.php:606
|
7135 |
msgid "Are you going to use GPX data?"
|
7136 |
msgstr "Voulez vous utiliser les données GPX ?"
|
7137 |
|
7138 |
+
#: wppa-settings-autosave.php:607
|
7139 |
msgid ""
|
7140 |
"Some cameras and mobile devices save the geographic location where the photo "
|
7141 |
"is taken."
|
7143 |
"Certains appareils enregistrent la position géographique lors de la prise de "
|
7144 |
"la photo."
|
7145 |
|
7146 |
+
#: wppa-settings-autosave.php:608
|
7147 |
msgid "A Google map can be displayed in slideshows."
|
7148 |
msgstr "Une carte Google peut être affichée dans les diaporamas."
|
7149 |
|
7150 |
+
#: wppa-settings-autosave.php:615
|
7151 |
msgid "Are you going to use Fotomoto?"
|
7152 |
msgstr "Voulez vous utiliser Fotomoto?"
|
7153 |
|
7154 |
+
#: wppa-settings-autosave.php:616
|
7155 |
msgid ""
|
7156 |
"<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> is an "
|
7157 |
"on-line print service."
|
7159 |
"<a href=\"http://www.fotomoto.com/\" target=\"_blank\" >Fotomoto</a> est un "
|
7160 |
"service d'impression en ligne."
|
7161 |
|
7162 |
+
#: wppa-settings-autosave.php:617
|
7163 |
msgid "If you answer Yes, you will have to open an account on Fotomoto."
|
7164 |
msgstr ""
|
7165 |
"Si vous répondez oui, vous devrez créer un compte sur le site web de "
|
7166 |
"Fotomoto."
|
7167 |
|
7168 |
+
#: wppa-settings-autosave.php:624
|
7169 |
msgid "Are you going to add videofiles?"
|
7170 |
msgstr "Allez vous charger des fichiers vidéo?"
|
7171 |
|
7172 |
+
#: wppa-settings-autosave.php:625
|
7173 |
msgid "You can mix videos and photos in any album."
|
7174 |
msgstr "Vous pouvez mélanger des photos et des vidéos dans les albums."
|
7175 |
|
7176 |
+
#: wppa-settings-autosave.php:626 wppa-settings-autosave.php:635
|
7177 |
+
#: wppa-settings-autosave.php:644
|
7178 |
msgid "You can configure the details later"
|
7179 |
msgstr "Vous pouvez configurer les détails plus tard"
|
7180 |
|
7181 |
+
#: wppa-settings-autosave.php:633
|
7182 |
msgid "Are you going to add audiofiles?"
|
7183 |
msgstr "Allez vous charger des fichiers audio?"
|
7184 |
|
7185 |
+
#: wppa-settings-autosave.php:634
|
7186 |
msgid "You can add audio to photos in any album."
|
7187 |
msgstr "Vous pouvez ajouter de l'audio aux photos dans les albums."
|
7188 |
|
7189 |
+
#: wppa-settings-autosave.php:642
|
7190 |
msgid "Are you going to upload 3D stereo photos?"
|
7191 |
msgstr "Allez vous charger des photo en 3D stéréo?"
|
7192 |
|
7193 |
+
#: wppa-settings-autosave.php:643
|
7194 |
msgid "You can add l-r and r-l stereo photo pairs."
|
7195 |
msgstr "Vous pouvez ajouter des paires de photos stéréo g-d et d-g."
|
7196 |
|
7197 |
+
#: wppa-settings-autosave.php:651
|
7198 |
msgid "Done?"
|
7199 |
msgstr "Fait?"
|
7200 |
|
7201 |
+
#: wppa-settings-autosave.php:652
|
7202 |
msgid "If you are ready answering these questions, select <b>yes</b>"
|
7203 |
msgstr "Si vous êtes prêt(e) répondre à ces questions, choisissez <b>oui</b>"
|
7204 |
|
7205 |
+
#: wppa-settings-autosave.php:653
|
7206 |
msgid ""
|
7207 |
"You can change any setting later, and be more specific and add a lot of "
|
7208 |
"settings. For now it is enough, go create albums and upload photos!"
|
7211 |
"de nombreuses options. Pour le moment, c'est suffisant, aller créer des "
|
7212 |
"albums et charger des photos!"
|
7213 |
|
7214 |
+
#: wppa-settings-autosave.php:657
|
7215 |
msgid ""
|
7216 |
"Thank you!. The most important settings are done now. You can refine your "
|
7217 |
"settings, the behaviour and appearance of WPPA+ in the Tables below."
|
7220 |
"affiner vos réglages, le comportement et l'apparence de WPPA+ dans les "
|
7221 |
"tables ci dessous."
|
7222 |
|
7223 |
+
#: wppa-settings-autosave.php:682
|
7224 |
msgid "Table I:"
|
7225 |
msgstr "Table I:"
|
7226 |
|
7227 |
+
#: wppa-settings-autosave.php:682
|
7228 |
msgid "Sizes:"
|
7229 |
msgstr "Tailles:"
|
7230 |
|
7231 |
+
#: wppa-settings-autosave.php:683
|
7232 |
msgid ""
|
7233 |
"This table describes all the sizes and size options (except fontsizes) for "
|
7234 |
"the generation and display of the WPPA+ elements."
|
7237 |
"(excepté les tailles de police) pour la génération et affichage des élément "
|
7238 |
"de WPPA+."
|
7239 |
|
7240 |
+
#: wppa-settings-autosave.php:701
|
7241 |
msgid "WPPA+ global system related size settings"
|
7242 |
msgstr "Réglages systèmes globaux de WPPA+ liés aux tailles"
|
7243 |
|
7244 |
+
#: wppa-settings-autosave.php:703
|
7245 |
msgid "Column Width"
|
7246 |
msgstr "Largeur de colonne"
|
7247 |
|
7248 |
+
#: wppa-settings-autosave.php:704
|
7249 |
msgid "The width of the main column in your theme's display area."
|
7250 |
msgstr ""
|
7251 |
"La largeur de la colonne principale dans la zone d’affichage de votre thème."
|
7252 |
|
7253 |
+
#: wppa-settings-autosave.php:705
|
7254 |
msgid "Enter the width of the main column in your theme's display area."
|
7255 |
msgstr ""
|
7256 |
"Entrer la largeur de la colonne principale dans la zone d’affichage de votre "
|
7257 |
"thème."
|
7258 |
|
7259 |
+
#: wppa-settings-autosave.php:706
|
7260 |
msgid ""
|
7261 |
"You should set this value correctly to make sure the fullsize images are "
|
7262 |
"properly aligned horizontally."
|
7264 |
"Vous devriez régler cette valeur correctement pour vous assurer que les "
|
7265 |
"images pleine taille soient correctement alignées horizontalement."
|
7266 |
|
7267 |
+
#: wppa-settings-autosave.php:707
|
7268 |
msgid ""
|
7269 |
"You may enter 'auto' for use in themes that have a floating content column."
|
7270 |
msgstr ""
|
7271 |
"Vous devriez entrer 'auto'' si vous utilisez un thème qui a une colonne avec "
|
7272 |
"contenu flottant."
|
7273 |
|
7274 |
+
#: wppa-settings-autosave.php:708
|
7275 |
msgid "The use of 'auto' is required for responsive themes."
|
7276 |
msgstr ""
|
7277 |
"L'utilisation du paramètre 'auto' est requis pour les thèmes adaptatifs."
|
7278 |
|
7279 |
+
#: wppa-settings-autosave.php:716
|
7280 |
msgid "Initial Width"
|
7281 |
msgstr "Largeur initiale"
|
7282 |
|
7283 |
+
#: wppa-settings-autosave.php:717
|
7284 |
msgid "The most often displayed colun width in responsive theme"
|
7285 |
msgstr ""
|
7286 |
"La largeur de la colonne la plus souvent affichée dans un thème adaptatif"
|
7287 |
|
7288 |
+
#: wppa-settings-autosave.php:718
|
7289 |
msgid ""
|
7290 |
"Change this value only if your responsive theme shows initially a wrong "
|
7291 |
"column width."
|
7293 |
"Changer cette valeur uniquement si votre thème adaptatif affiche "
|
7294 |
"initialement une largeur de colonne incorrecte."
|
7295 |
|
7296 |
+
#: wppa-settings-autosave.php:725
|
7297 |
msgid "Resize on Upload"
|
7298 |
msgstr "Redimensionner au chargement"
|
7299 |
|
7300 |
+
#: wppa-settings-autosave.php:726
|
7301 |
msgid "Indicate if the photos should be resized during upload."
|
7302 |
msgstr ""
|
7303 |
"Indiquez si les photos doivent être redimensionnées lors du chargement."
|
7304 |
|
7305 |
+
#: wppa-settings-autosave.php:727
|
7306 |
msgid ""
|
7307 |
"If you check this item, the size of the photos will be reduced to the "
|
7308 |
"dimension specified in the next item during the upload/import process."
|
7310 |
"Si vous cochez cet item, la taille des photos sera réduite aux dimensions "
|
7311 |
"spécifiées dans l'item suivant pendant le processus de chargement/import."
|
7312 |
|
7313 |
+
#: wppa-settings-autosave.php:728
|
7314 |
msgid "The photos will never be stretched during upload if they are smaller."
|
7315 |
msgstr ""
|
7316 |
"Les photos ne seront jamais étirées pendant le chargement si elles ont plus "
|
7317 |
"petites."
|
7318 |
|
7319 |
+
#: wppa-settings-autosave.php:736
|
7320 |
msgid "Resize to"
|
7321 |
msgstr "Redimensionner à"
|
7322 |
|
7323 |
+
#: wppa-settings-autosave.php:737
|
7324 |
msgid "Resize photos to fit within a given area."
|
7325 |
msgstr "Redimensionner les photos pour s'adapter à unr zone donnée."
|
7326 |
|
7327 |
+
#: wppa-settings-autosave.php:738
|
7328 |
msgid "Specify the screensize for the unscaled photos."
|
7329 |
msgstr "Spécifier la taille écran pour les photos non mises à l'échelle."
|
7330 |
|
7331 |
+
#: wppa-settings-autosave.php:739
|
7332 |
msgid ""
|
7333 |
"The use of a non-default value is particularly usefull when you make use of "
|
7334 |
"lightbox functionality."
|
7336 |
"L'utilisation de valeurs personnalisées est préférable lorsque vous utilisez "
|
7337 |
"la fonctionnalité Lightbox."
|
7338 |
|
7339 |
+
#: wppa-settings-autosave.php:741 wppa-settings-autosave.php:763
|
7340 |
+
#: wppa-settings-autosave.php:774 wppa-settings-autosave.php:783
|
7341 |
+
#: wppa-settings-autosave.php:828 wppa-settings-autosave.php:874
|
7342 |
+
#: wppa-settings-autosave.php:897 wppa-settings-autosave.php:904
|
7343 |
+
#: wppa-settings-autosave.php:923 wppa-settings-autosave.php:944
|
7344 |
+
#: wppa-settings-autosave.php:954 wppa-settings-autosave.php:1048
|
7345 |
+
#: wppa-settings-autosave.php:1082 wppa-settings-autosave.php:1102
|
7346 |
+
#: wppa-settings-autosave.php:1111 wppa-settings-autosave.php:1122
|
7347 |
+
#: wppa-settings-autosave.php:1134 wppa-settings-autosave.php:1155
|
7348 |
+
#: wppa-settings-autosave.php:1175 wppa-settings-autosave.php:1238
|
7349 |
+
#: wppa-settings-autosave.php:1247 wppa-settings-autosave.php:1258
|
7350 |
+
#: wppa-settings-autosave.php:1278 wppa-settings-autosave.php:1298
|
7351 |
+
#: wppa-settings-autosave.php:1318 wppa-settings-autosave.php:1338
|
7352 |
+
#: wppa-settings-autosave.php:1358 wppa-settings-autosave.php:1378
|
7353 |
+
#: wppa-settings-autosave.php:1387 wppa-settings-autosave.php:1396
|
7354 |
+
#: wppa-settings-autosave.php:1429 wppa-settings-autosave.php:1438
|
7355 |
+
#: wppa-settings-autosave.php:1450 wppa-settings-autosave.php:1459
|
7356 |
+
#: wppa-settings-autosave.php:2972 wppa-settings-autosave.php:4900
|
7357 |
+
#: wppa-settings-autosave.php:4917 wppa-settings-autosave.php:4934
|
7358 |
+
#: wppa-settings-autosave.php:4951 wppa-settings-autosave.php:4968
|
7359 |
+
#: wppa-settings-autosave.php:4985 wppa-settings-autosave.php:5002
|
7360 |
+
#: wppa-settings-autosave.php:5019 wppa-settings-autosave.php:5036
|
7361 |
+
#: wppa-settings-autosave.php:6376 wppa-settings-autosave.php:9298
|
7362 |
+
#: wppa-settings-autosave.php:9494 wppa-settings-autosave.php:9536
|
7363 |
+
#: wppa-settings-autosave.php:9554
|
7364 |
msgid "pixels"
|
7365 |
msgstr "pixels"
|
7366 |
|
7367 |
+
#: wppa-settings-autosave.php:742
|
7368 |
msgid "Fit within rectangle as set in Table I-B1,2"
|
7369 |
msgstr "Ajuster au rectangle comme réglé dans la table I-B1,2"
|
7370 |
|
7371 |
+
#: wppa-settings-autosave.php:749
|
7372 |
msgid "Photocount threshold"
|
7373 |
msgstr "Seuil de comptage photo"
|
7374 |
|
7375 |
+
#: wppa-settings-autosave.php:750
|
7376 |
msgid "Number of photos in an album must exceed."
|
7377 |
msgstr "Le nombre de photos dans un album doit excéder."
|
7378 |
|
7379 |
+
#: wppa-settings-autosave.php:751
|
7380 |
msgid ""
|
7381 |
"Photos do not show up in the album unless there are more than this number of "
|
7382 |
"photos in the album. This allows you to have cover photos on an album that "
|
7389 |
"fils. Généralement réglé à 0 (toujours montrer) ou 1 (pour une photo de "
|
7390 |
"couverture)."
|
7391 |
|
7392 |
+
#: wppa-settings-autosave.php:753 wppa-settings-autosave.php:792
|
7393 |
+
#: wppa-settings-autosave.php:1267 wppa-settings-autosave.php:1307
|
7394 |
+
#: wppa-settings-autosave.php:1327 wppa-settings-autosave.php:1367
|
7395 |
+
#: wppa-settings-autosave.php:4255 wppa-settings-autosave.php:6290
|
7396 |
+
#: wppa-settings-autosave.php:8290
|
7397 |
msgid "photos"
|
7398 |
msgstr "photos"
|
7399 |
|
7400 |
+
#: wppa-settings-autosave.php:758
|
7401 |
msgid "Border thickness"
|
7402 |
msgstr "Épaisseur de bordure"
|
7403 |
|
7404 |
+
#: wppa-settings-autosave.php:759
|
7405 |
msgid "Thickness of wppa+ box borders."
|
7406 |
msgstr "Épaisseur de la bordure pour la boîte WPPA+"
|
7407 |
|
7408 |
+
#: wppa-settings-autosave.php:760
|
7409 |
msgid ""
|
7410 |
"Enter the thickness for the border of the WPPA+ boxes. A number of 0 means: "
|
7411 |
"no border."
|
7413 |
"Entrer l'épaisseur des bordures des boîtes WPPA+. Une valeur à 0 veut dire: "
|
7414 |
"pas de bordure."
|
7415 |
|
7416 |
+
#: wppa-settings-autosave.php:761 wppa-settings-autosave.php:771
|
7417 |
msgid "WPPA+ boxes are: the navigation bars and the filmstrip."
|
7418 |
msgstr "Les boîtes WPPA+ sont: les barres de navigation et le filmstrip."
|
7419 |
|
7420 |
+
#: wppa-settings-autosave.php:769
|
7421 |
msgid "Radius of wppa+ box borders."
|
7422 |
msgstr "Rayon de la bordure pour la boîte WPPA+"
|
7423 |
|
7424 |
+
#: wppa-settings-autosave.php:770
|
7425 |
msgid ""
|
7426 |
"Enter the corner radius for the border of the WPPA+ boxes. A number of 0 "
|
7427 |
"means: no rounded corners."
|
7429 |
"Entrer le rayon de l'arrondi de bordure des boîtes WPPA+. Une valeur à 0 "
|
7430 |
"veut dire: pas de coins arrondis."
|
7431 |
|
7432 |
+
#: wppa-settings-autosave.php:772
|
7433 |
msgid "Note that rounded corners are only supported by modern browsers."
|
7434 |
msgstr ""
|
7435 |
"Noter que les coins arrondis sont seulement supportés dans les navigateurs "
|
7436 |
"modernes."
|
7437 |
|
7438 |
+
#: wppa-settings-autosave.php:780
|
7439 |
msgid "Distance between wppa+ boxes."
|
7440 |
msgstr "Distance entre les boîtes WPPA+"
|
7441 |
|
7442 |
+
#: wppa-settings-autosave.php:788
|
7443 |
msgid "Related count"
|
7444 |
msgstr "Comptage lié"
|
7445 |
|
7446 |
+
#: wppa-settings-autosave.php:789
|
7447 |
msgid "The default maximum number of related photos to find."
|
7448 |
msgstr "La valeur par défaut du nombre max de photos concernées à trouver."
|
7449 |
|
7450 |
+
#: wppa-settings-autosave.php:790
|
7451 |
msgid ""
|
7452 |
"When using shortcodes like [wppa type=\"album\" album=\"#related,desc,23\"][/"
|
7453 |
"wppa], the maximum number is 23. Omitting the number gives the maximum of "
|
7457 |
"\"#related,desc,23\"][/wppa], le nombre maximum autorisé est 23. Omettre le "
|
7458 |
"nombre règle la valeur au maximum."
|
7459 |
|
7460 |
+
#: wppa-settings-autosave.php:798
|
7461 |
msgid "The maximum number of pagelinks to be displayed."
|
7462 |
msgstr "Le nombre maximum de liens de page pouvant être affichés."
|
7463 |
|
7464 |
+
#: wppa-settings-autosave.php:801
|
7465 |
msgid "pages"
|
7466 |
msgstr "pages"
|
7467 |
|
7468 |
+
#: wppa-settings-autosave.php:806
|
7469 |
msgid "Max file name length"
|
7470 |
msgstr "Longueur max. du nom de fichier"
|
7471 |
|
7472 |
+
#: wppa-settings-autosave.php:807
|
7473 |
msgid "The max length of a photo file name excluding the extension."
|
7474 |
msgstr ""
|
7475 |
"La longueur maximum d'un nom de fichier photo (sans excluant l'extension)."
|
7476 |
|
7477 |
+
#: wppa-settings-autosave.php:808 wppa-settings-autosave.php:817
|
7478 |
msgid "A setting of 0 means: unlimited."
|
7479 |
msgstr "Réglage à 0 veut dire: pas de limite."
|
7480 |
|
7481 |
+
#: wppa-settings-autosave.php:810 wppa-settings-autosave.php:819
|
7482 |
msgid "chars"
|
7483 |
msgstr "caractères"
|
7484 |
|
7485 |
+
#: wppa-settings-autosave.php:815
|
7486 |
msgid "Max photo name length"
|
7487 |
msgstr "Longueur max. du nom de photo"
|
7488 |
|
7489 |
+
#: wppa-settings-autosave.php:816
|
7490 |
msgid "The max length of a photo name."
|
7491 |
msgstr "La longueur maximum d'un nom de photo."
|
7492 |
|
7493 |
+
#: wppa-settings-autosave.php:825
|
7494 |
msgid "The height of your sticky header."
|
7495 |
msgstr "La hauteur de votre tête de collant."
|
7496 |
|
7497 |
+
#: wppa-settings-autosave.php:826
|
7498 |
msgid "If your theme has a sticky header, enter its height here."
|
7499 |
msgstr "Si votre thème a un tête de collant, entrez sa hauteur ici."
|
7500 |
|
7501 |
+
#: wppa-settings-autosave.php:834
|
7502 |
msgid "Slideshow related size settings"
|
7503 |
msgstr "Réglages de taille pour le diaporama"
|
7504 |
|
7505 |
+
#: wppa-settings-autosave.php:836
|
7506 |
msgid "Maximum Width"
|
7507 |
msgstr "Largeur maximum"
|
7508 |
|
7509 |
+
#: wppa-settings-autosave.php:837
|
7510 |
msgid "The maximum width photos will be displayed in slideshows."
|
7511 |
msgstr "La largeur maximum des photos affichées dans les diaporamas."
|
7512 |
|
7513 |
+
#: wppa-settings-autosave.php:838 wppa-settings-autosave.php:849
|
7514 |
msgid ""
|
7515 |
"Enter the largest size in pixels as how you want your photos to be displayed."
|
7516 |
msgstr ""
|
7517 |
"Entrez la plus grande taille en pixels que vous souhaiteriez pour "
|
7518 |
"l’affichage de vos photos. "
|
7519 |
|
7520 |
+
#: wppa-settings-autosave.php:839
|
7521 |
msgid ""
|
7522 |
"This is usually the same as the Column Width (Table I-A1), but it may differ."
|
7523 |
msgstr ""
|
7524 |
"C'est généralement la même que la largeur de colonne (Table I-A1), mais cela "
|
7525 |
"peut varier."
|
7526 |
|
7527 |
+
#: wppa-settings-autosave.php:847
|
7528 |
msgid "Maximum Height"
|
7529 |
msgstr "Hauteur maximum"
|
7530 |
|
7531 |
+
#: wppa-settings-autosave.php:848
|
7532 |
msgid "The maximum height photos will be displayed in slideshows."
|
7533 |
msgstr "La hauteur maximum des photos affichées dans les diaporamas."
|
7534 |
|
7535 |
+
#: wppa-settings-autosave.php:850
|
7536 |
msgid ""
|
7537 |
"This setting defines the height of the space reserved for photos in "
|
7538 |
"slideshows."
|
7540 |
"Ces réglages définissent la hauteur de l'espace réservé pour les photos dans "
|
7541 |
"les diaporamas."
|
7542 |
|
7543 |
+
#: wppa-settings-autosave.php:851
|
7544 |
msgid ""
|
7545 |
"If you change the width of a display by the size=\"..\" shortcode attribute, "
|
7546 |
"this value changes proportionally to match the aspect ratio as defined by "
|
7550 |
"shortcode, cette valeur change proportionnellement pour correspondre au "
|
7551 |
"rapport d'aspect tel que défini par le présent et le réglage précédent."
|
7552 |
|
7553 |
+
#: wppa-settings-autosave.php:853 wppa-settings-autosave.php:1026
|
7554 |
+
#: wppa-settings-autosave.php:1037
|
7555 |
msgid "pixels high"
|
7556 |
msgstr "pixels en hauteur"
|
7557 |
|
7558 |
+
#: wppa-settings-autosave.php:858
|
7559 |
msgid "Stretch to fit"
|
7560 |
msgstr "Etirer pour adapter"
|
7561 |
|
7562 |
+
#: wppa-settings-autosave.php:859
|
7563 |
msgid "Stretch photos that are too small."
|
7564 |
msgstr "Etirer les photos qui sont trop petites."
|
7565 |
|
7566 |
+
#: wppa-settings-autosave.php:860
|
7567 |
msgid ""
|
7568 |
"Images will be stretched to the Maximum Size at display time if they are "
|
7569 |
"smaller. Leaving unchecked is recommended. It is better to upload photos "
|
7573 |
"elles sont plus petites. Laisser décoché est recommandé. C'est mieux de "
|
7574 |
"charger des photos qui sont adaptées à la taille que vous utilisez!"
|
7575 |
|
7576 |
+
#: wppa-settings-autosave.php:867
|
7577 |
msgid "Slideshow borderwidth"
|
7578 |
msgstr "Épaisseur de bordure du diaporama"
|
7579 |
|
7580 |
+
#: wppa-settings-autosave.php:868
|
7581 |
msgid "The width of the border around slideshow images."
|
7582 |
msgstr "La largeur de la bordure autour des images du diaporama."
|
7583 |
|
7584 |
+
#: wppa-settings-autosave.php:869
|
7585 |
msgid ""
|
7586 |
"The border is made by the image background being larger than the image "
|
7587 |
"itsself (padding)."
|
7589 |
"La bordure est faite avec l'image d'arrière plan plus grande que l'image "
|
7590 |
"elle-même (padding)."
|
7591 |
|
7592 |
+
#: wppa-settings-autosave.php:870
|
7593 |
msgid ""
|
7594 |
"Additionally there may be a one pixel outline of a different color. See "
|
7595 |
"Table III-A2."
|
7597 |
"Additionnellement il peut y avoir un surlignement de un pixel d'une couleur "
|
7598 |
"différente. Voir table III-A2."
|
7599 |
|
7600 |
+
#: wppa-settings-autosave.php:871
|
7601 |
msgid "The number you enter here is exclusive the one pixel outline."
|
7602 |
msgstr ""
|
7603 |
"Le nombre que vous entrez ici est exclusif au surlignement de un pixel."
|
7604 |
|
7605 |
+
#: wppa-settings-autosave.php:872
|
7606 |
msgid "If you leave this entry empty, there will be no outline either."
|
7607 |
msgstr "Si vous laissez cela vide, il n'y aura aucun surlignage."
|
7608 |
|
7609 |
+
#: wppa-settings-autosave.php:879
|
7610 |
msgid "Numbar Max"
|
7611 |
msgstr "Numbar Max"
|
7612 |
|
7613 |
+
#: wppa-settings-autosave.php:880
|
7614 |
msgid "Maximum numbers to display."
|
7615 |
msgstr "Le nombre maximum à afficher"
|
7616 |
|
7617 |
+
#: wppa-settings-autosave.php:881
|
7618 |
msgid ""
|
7619 |
"In order to attemt to fit on one line, the numbers will be replaced by dots "
|
7620 |
"- except the current - when there are more than this number of photos in a "
|
7624 |
"- excepté celui qui est courant - quand il y a plus que ce nombre de photos "
|
7625 |
"dans un diaporama."
|
7626 |
|
7627 |
+
#: wppa-settings-autosave.php:883
|
7628 |
msgid "numbers"
|
7629 |
msgstr "nombres"
|
7630 |
|
7631 |
+
#: wppa-settings-autosave.php:888
|
7632 |
msgid "Share button size"
|
7633 |
msgstr "Taille du bouton de partage"
|
7634 |
|
7635 |
+
#: wppa-settings-autosave.php:889
|
7636 |
msgid "The size of the social media icons in the Share box"
|
7637 |
msgstr "La taille des icônes des réseaux sociaux dans la boite de partage"
|
7638 |
|
7639 |
+
#: wppa-settings-autosave.php:899
|
7640 |
msgid "Mini Treshold"
|
7641 |
msgstr "Seuil min."
|
7642 |
|
7643 |
+
#: wppa-settings-autosave.php:900
|
7644 |
msgid "Show mini text at slideshow smaller then."
|
7645 |
msgstr "Montrer mini texte pendant le diaporama plus petit ensuite."
|
7646 |
|
7647 |
+
#: wppa-settings-autosave.php:901
|
7648 |
msgid ""
|
7649 |
"Display Next and Prev. as opposed to Next photo and Previous photo when the "
|
7650 |
"cotainer is smaller than this size."
|
7652 |
"Afficher Suiv. et Préc. à la place de Photo suivante et photo précédente "
|
7653 |
"quand le container est plus petit que cette taille."
|
7654 |
|
7655 |
+
#: wppa-settings-autosave.php:902
|
7656 |
msgid "Special use in responsive themes."
|
7657 |
msgstr "Utilisation spéciale dans les thèmes adaptatifs."
|
7658 |
|
7659 |
+
#: wppa-settings-autosave.php:910
|
7660 |
msgid "The maximum number of slides in a certain view. 0 means no pagination"
|
7661 |
msgstr ""
|
7662 |
"Le nombre maximum de diapos dans une certaine vue. 0 signifie pas de "
|
7663 |
"pagination"
|
7664 |
|
7665 |
+
#: wppa-settings-autosave.php:913 wppa-settings-autosave.php:932
|
7666 |
msgid "slides"
|
7667 |
msgstr "diapos"
|
7668 |
|
7669 |
+
#: wppa-settings-autosave.php:918
|
7670 |
msgid "Filmstrip Thumbnail Size"
|
7671 |
msgstr "Filmstrip Taille des vignettes"
|
7672 |
|
7673 |
+
#: wppa-settings-autosave.php:919
|
7674 |
msgid "The size of the filmstrip images."
|
7675 |
msgstr "La taille des images filmstrip."
|
7676 |
|
7677 |
+
#: wppa-settings-autosave.php:920 wppa-settings-autosave.php:941
|
7678 |
+
#: wppa-settings-autosave.php:951 wppa-settings-autosave.php:1152
|
7679 |
+
#: wppa-settings-autosave.php:1162 wppa-settings-autosave.php:1172
|
7680 |
+
#: wppa-settings-autosave.php:1182
|
7681 |
msgid "This size applies to the width or height, whichever is the largest."
|
7682 |
msgstr ""
|
7683 |
"Cette taille s'applique à la largeur ou hauteur, peu importe laquelle est la "
|
7684 |
"plus grande."
|
7685 |
|
7686 |
+
#: wppa-settings-autosave.php:921 wppa-settings-autosave.php:942
|
7687 |
+
#: wppa-settings-autosave.php:952
|
7688 |
msgid ""
|
7689 |
"Changing the thumbnail size may result in all thumbnails being regenerated. "
|
7690 |
"this may take a while."
|
7692 |
"Modifier la taille des vignettes peut nécessiter qu'elles soient toutes "
|
7693 |
"régénérées. Cela peut prendre du temps."
|
7694 |
|
7695 |
+
#: wppa-settings-autosave.php:929
|
7696 |
msgid "The max number of slides in a slideonly display"
|
7697 |
msgstr "Le nombre maximum des diapositives dans une présentation slideonly"
|
7698 |
|
7699 |
+
#: wppa-settings-autosave.php:937
|
7700 |
msgid "Thumbnail photos related size settings"
|
7701 |
msgstr "Réglages liés à la taille des vignettes"
|
7702 |
|
7703 |
+
#: wppa-settings-autosave.php:939
|
7704 |
msgid "Thumbnail Size"
|
7705 |
msgstr "Taille vignette"
|
7706 |
|
7707 |
+
#: wppa-settings-autosave.php:940
|
7708 |
msgid "The size of the thumbnail images."
|
7709 |
msgstr "La taille des vignettes"
|
7710 |
|
7711 |
+
#: wppa-settings-autosave.php:949
|
7712 |
msgid "Thumbnail Size Alt"
|
7713 |
msgstr "Taille vignette alt."
|
7714 |
|
7715 |
+
#: wppa-settings-autosave.php:950
|
7716 |
msgid "The alternative size of the thumbnail images."
|
7717 |
msgstr "La taille alternative des vignettes"
|
7718 |
|
7719 |
+
#: wppa-settings-autosave.php:959
|
7720 |
msgid "Thumbnail Aspect"
|
7721 |
msgstr "Aspect vignette"
|
7722 |
|
7723 |
+
#: wppa-settings-autosave.php:960
|
7724 |
msgid "Aspect ration of thumbnail image"
|
7725 |
msgstr "Aspect ratio de la vignette"
|
7726 |
|
7727 |
+
#: wppa-settings-autosave.php:964
|
7728 |
msgid "--- same as fullsize ---"
|
7729 |
msgstr "--- Identique pleine taille ---"
|
7730 |
|
7731 |
+
#: wppa-settings-autosave.php:965
|
7732 |
msgid "--- square clipped ---"
|
7733 |
msgstr "--- rogné : dalle ---"
|
7734 |
|
7735 |
+
#: wppa-settings-autosave.php:966
|
7736 |
msgid "4:5 landscape clipped"
|
7737 |
msgstr "rogné : paysage 4:5"
|
7738 |
|
7739 |
+
#: wppa-settings-autosave.php:967
|
7740 |
msgid "3:4 landscape clipped"
|
7741 |
msgstr "rogné : paysage 3:4"
|
7742 |
|
7743 |
+
#: wppa-settings-autosave.php:968
|
7744 |
msgid "2:3 landscape clipped"
|
7745 |
msgstr "rogné : paysage 2:3"
|
7746 |
|
7747 |
+
#: wppa-settings-autosave.php:969
|
7748 |
msgid "9:16 landscape clipped"
|
7749 |
msgstr "rogné : paysage 9:16"
|
7750 |
|
7751 |
+
#: wppa-settings-autosave.php:970
|
7752 |
msgid "1:2 landscape clipped"
|
7753 |
msgstr "rogné : paysage 1:2"
|
7754 |
|
7755 |
+
#: wppa-settings-autosave.php:971
|
7756 |
msgid "--- square padded ---"
|
7757 |
msgstr "--- padded : dalle ---"
|
7758 |
|
7759 |
+
#: wppa-settings-autosave.php:972
|
7760 |
msgid "4:5 landscape padded"
|
7761 |
msgstr "padded : paysage 4:5"
|
7762 |
|
7763 |
+
#: wppa-settings-autosave.php:973
|
7764 |
msgid "3:4 landscape padded"
|
7765 |
msgstr "padded : paysage 3:4"
|
7766 |
|
7767 |
+
#: wppa-settings-autosave.php:974
|
7768 |
msgid "2:3 landscape padded"
|
7769 |
msgstr "padded : paysage 2:3"
|
7770 |
|
7771 |
+
#: wppa-settings-autosave.php:975
|
7772 |
msgid "9:16 landscape padded"
|
7773 |
msgstr "padded : paysage 9:16"
|
7774 |
|
7775 |
+
#: wppa-settings-autosave.php:976
|
7776 |
msgid "1:2 landscape padded"
|
7777 |
msgstr "padded : paysage 1:2"
|
7778 |
|
7779 |
+
#: wppa-settings-autosave.php:998
|
7780 |
msgid "Thumbframe width"
|
7781 |
msgstr "Largeur cadre vignettes"
|
7782 |
|
7783 |
+
#: wppa-settings-autosave.php:999
|
7784 |
msgid "The width of the thumbnail frame."
|
7785 |
msgstr "La largeur du cadre des vignettes."
|
7786 |
|
7787 |
+
#: wppa-settings-autosave.php:1000 wppa-settings-autosave.php:1011
|
7788 |
msgid "Set the width of the thumbnail frame."
|
7789 |
msgstr "La largeur du cadre de vignettes."
|
7790 |
|
7791 |
+
#: wppa-settings-autosave.php:1001 wppa-settings-autosave.php:1012
|
7792 |
+
#: wppa-settings-autosave.php:1023 wppa-settings-autosave.php:1034
|
7793 |
+
#: wppa-settings-autosave.php:1045
|
7794 |
msgid "Set width, height and spacing for the thumbnail frames."
|
7795 |
msgstr "Régler largeur, hauteur et espacement pour les cadres vignettes."
|
7796 |
|
7797 |
+
#: wppa-settings-autosave.php:1002 wppa-settings-autosave.php:1013
|
7798 |
+
#: wppa-settings-autosave.php:1024 wppa-settings-autosave.php:1035
|
7799 |
+
#: wppa-settings-autosave.php:1046
|
7800 |
msgid ""
|
7801 |
"These sizes should be large enough for a thumbnail image and - optionally - "
|
7802 |
"the text under it."
|
7804 |
"Ces tailles doivent être suffisamment grandes pour une vignette et - "
|
7805 |
"optionnellement - le texte en dessous."
|
7806 |
|
7807 |
+
#: wppa-settings-autosave.php:1009
|
7808 |
msgid "Thumbframe width Alt"
|
7809 |
msgstr "Largeur cadre vignettes alt."
|
7810 |
|
7811 |
+
#: wppa-settings-autosave.php:1010
|
7812 |
msgid "The width of the alternative thumbnail frame."
|
7813 |
msgstr "La largeur du cadre de vignettes alternatif."
|
7814 |
|
7815 |
+
#: wppa-settings-autosave.php:1020
|
7816 |
msgid "Thumbframe height"
|
7817 |
msgstr "Hauteur cadre vignettes"
|
7818 |
|
7819 |
+
#: wppa-settings-autosave.php:1021
|
7820 |
msgid "The height of the thumbnail frame."
|
7821 |
msgstr "La hauteur du cadre de vignettes."
|
7822 |
|
7823 |
+
#: wppa-settings-autosave.php:1022 wppa-settings-autosave.php:1033
|
7824 |
msgid "Set the height of the thumbnail frame."
|
7825 |
msgstr "La hauteur du cadre des vignettes."
|
7826 |
|
7827 |
+
#: wppa-settings-autosave.php:1031
|
7828 |
msgid "Thumbframe height Alt"
|
7829 |
msgstr "Hauteur cadre vignettes alt."
|
7830 |
|
7831 |
+
#: wppa-settings-autosave.php:1032
|
7832 |
msgid "The height of the alternative thumbnail frame."
|
7833 |
msgstr "La hauteur du cadre de vignettes alternatif."
|
7834 |
|
7835 |
+
#: wppa-settings-autosave.php:1042
|
7836 |
msgid "Thumbnail spacing"
|
7837 |
msgstr "Espacement vignettes"
|
7838 |
|
7839 |
+
#: wppa-settings-autosave.php:1043
|
7840 |
msgid "The spacing between adjacent thumbnail frames."
|
7841 |
msgstr "L'espacement entre des cadres de vignettes adjacents."
|
7842 |
|
7843 |
+
#: wppa-settings-autosave.php:1044
|
7844 |
msgid "Set the minimal spacing between the adjacent thumbnail frames"
|
7845 |
msgstr "Règle l'espacement minimal entre deux cadres de vignette"
|
7846 |
|
7847 |
+
#: wppa-settings-autosave.php:1053
|
7848 |
msgid "Auto spacing"
|
7849 |
msgstr "Espacement automatique"
|
7850 |
|
7851 |
+
#: wppa-settings-autosave.php:1054
|
7852 |
msgid "Space the thumbnail frames automatic."
|
7853 |
msgstr "Espace les cadres de vignette automatiquement."
|
7854 |
|
7855 |
+
#: wppa-settings-autosave.php:1055
|
7856 |
msgid ""
|
7857 |
"If you check this box, the thumbnail images will be evenly distributed over "
|
7858 |
"the available width."
|
7860 |
"Si vous cochez cette case, les vignettes seront distribuées de façon égale "
|
7861 |
"sur la largeur disponible."
|
7862 |
|
7863 |
+
#: wppa-settings-autosave.php:1056
|
7864 |
msgid ""
|
7865 |
"In this case, the thumbnail spacing value (setting I-9) will be regarded as "
|
7866 |
"a minimum value."
|
7868 |
"Dans ce cas, l'espacement des vignettes (réglage I-9) sera considéré comme "
|
7869 |
"une valeur minimum."
|
7870 |
|
7871 |
+
#: wppa-settings-autosave.php:1063 wppa-settings-autosave.php:1201
|
7872 |
msgid "Page size"
|
7873 |
msgstr "Taille de la page"
|
7874 |
|
7875 |
+
#: wppa-settings-autosave.php:1064
|
7876 |
msgid "Max number of thumbnails per page."
|
7877 |
msgstr "Nombre maximum de vignettes par page."
|
7878 |
|
7879 |
+
#: wppa-settings-autosave.php:1065
|
7880 |
msgid ""
|
7881 |
"Enter the maximum number of thumbnail images per page. A value of 0 "
|
7882 |
"indicates no pagination."
|
7884 |
"Entrer le nombre maximum de vignettes par page. Une valeur de 0 indique pas "
|
7885 |
"de pagination."
|
7886 |
|
7887 |
+
#: wppa-settings-autosave.php:1073
|
7888 |
msgid "The size of the thumbnail popup images."
|
7889 |
msgstr "La taille du popup vignettes."
|
7890 |
|
7891 |
+
#: wppa-settings-autosave.php:1074
|
7892 |
msgid ""
|
7893 |
"Enter the size of the popup images. This size should be larger than the "
|
7894 |
"thumbnail size."
|
7896 |
"Entrer la taille du popup vignettes. Cette taille doit être plus grande que "
|
7897 |
"la taille des vignettes."
|
7898 |
|
7899 |
+
#: wppa-settings-autosave.php:1075
|
7900 |
msgid "This size should also be at least the cover image size."
|
7901 |
msgstr "Cette taille doit aussi être au moins celle de l'image de couverture."
|
7902 |
|
7903 |
+
#: wppa-settings-autosave.php:1076
|
7904 |
msgid ""
|
7905 |
"Changing the popup size may result in all thumbnails being regenerated. this "
|
7906 |
"may take a while."
|
7908 |
"Modifier la taille du popup peut entraîner la régénération de toutes les "
|
7909 |
"vignettes. Ceci peut prendre du temps."
|
7910 |
|
7911 |
+
#: wppa-settings-autosave.php:1077
|
7912 |
msgid ""
|
7913 |
"Although this setting has only visual effect if \"Thumb popup\" (Table IV-"
|
7914 |
"C8) is checked,"
|
7916 |
"Bien que ce réglage n'influe que sur le rendu visuel, si \"Popup vignette"
|
7917 |
"\" (table IV-C8) est coché,"
|
7918 |
|
7919 |
+
#: wppa-settings-autosave.php:1078
|
7920 |
msgid ""
|
7921 |
"the value must be right as it is the physical size of the thumbnail and "
|
7922 |
"coverphoto images."
|
7924 |
"la valeur doit être valide car c'est la taille physique de la vignette et "
|
7925 |
"des photos de couvertures."
|
7926 |
|
7927 |
+
#: wppa-settings-autosave.php:1085
|
7928 |
msgid "Use thumbs if fit"
|
7929 |
msgstr "Utiliser les vignettes si adapté"
|
7930 |
|
7931 |
+
#: wppa-settings-autosave.php:1086
|
7932 |
msgid "Use the thumbnail image files if they are large enough."
|
7933 |
msgstr "Utiliser les fichiers de vignette si ils sont assez grands."
|
7934 |
|
7935 |
+
#: wppa-settings-autosave.php:1087
|
7936 |
msgid "This setting speeds up page loading for small photos."
|
7937 |
msgstr ""
|
7938 |
"Ces réglages accélèrent le chargement de la page pour de petites photos."
|
7939 |
|
7940 |
+
#: wppa-settings-autosave.php:1088
|
7941 |
msgid ""
|
7942 |
"Do NOT use this when your thumbnails have a forced aspect ratio (when Table "
|
7943 |
"I-C2 is set to anything different from --- same as fullsize ---)"
|
7945 |
"Ne PAS utiliser ceci quand vos vignettes ont un ratio forcé (quand le "
|
7946 |
"réglage table I-C2 est réglé différemment de --- même que pleine taille ---)"
|
7947 |
|
7948 |
+
#: wppa-settings-autosave.php:1095
|
7949 |
msgid "Album cover related size settings"
|
7950 |
msgstr "Réglages de taille concernant la couverture de l'album"
|
7951 |
|
7952 |
+
#: wppa-settings-autosave.php:1098
|
7953 |
msgid "Maximum width for a album cover display."
|
7954 |
msgstr "Largeur maximum pour l’affichage d'une couverture d'album."
|
7955 |
|
7956 |
+
#: wppa-settings-autosave.php:1099
|
7957 |
msgid ""
|
7958 |
"Display covers in 2 or more columns if the display area is wider than the "
|
7959 |
"given width."
|
7961 |
"Affiche les couvertures en 2 colonnes ou plus si la zone d'affichage est "
|
7962 |
"plus grande que la largeur donnée."
|
7963 |
|
7964 |
+
#: wppa-settings-autosave.php:1100
|
7965 |
msgid ""
|
7966 |
"This also applies for 'thumbnails as covers', and will NOT apply to single "
|
7967 |
"items."
|
7969 |
"Cela s'applique aussi à 'vignettes comme couvertures', et ne s'appliquera "
|
7970 |
"PAS à des items uniques."
|
7971 |
|
7972 |
+
#: wppa-settings-autosave.php:1107
|
7973 |
msgid "Min Cover height"
|
7974 |
msgstr "Hauteur minimum de la couverture"
|
7975 |
|
7976 |
+
#: wppa-settings-autosave.php:1108
|
7977 |
msgid "Minimal height of an album cover."
|
7978 |
msgstr "Hauteur minimale d'une couverture d'album."
|
7979 |
|
7980 |
+
#: wppa-settings-autosave.php:1109
|
7981 |
msgid ""
|
7982 |
"If you use this setting to make the albums the same height and you are not "
|
7983 |
"satisfied about the lay-out, try increasing the value in the next setting"
|
7986 |
"n'êtes pas satisfaits de la disposition, essayer d'augmenter la valeur du "
|
7987 |
"réglage suivant"
|
7988 |
|
7989 |
+
#: wppa-settings-autosave.php:1116
|
7990 |
msgid "Min Text frame height"
|
7991 |
msgstr "Hateur minimum du cadre de texte"
|
7992 |
|
7993 |
+
#: wppa-settings-autosave.php:1117
|
7994 |
msgid "The minimal cover text frame height incl header."
|
7995 |
msgstr "La hauteur minimale du cadre de texte de couverture entête incluse."
|
7996 |
|
7997 |
+
#: wppa-settings-autosave.php:1118
|
7998 |
msgid ""
|
7999 |
"The height starting with the album title up to and including the view- and "
|
8000 |
"the slideshow- links."
|
8002 |
"La hauteur à partir du titre de l'album jusqu'aux liens de la vue et du "
|
8003 |
"diaporama inclus."
|
8004 |
|
8005 |
+
#: wppa-settings-autosave.php:1119
|
8006 |
msgid ""
|
8007 |
"This setting enables you to give the album covers the same height while the "
|
8008 |
"title does not need to fit on one line."
|
8010 |
"Ce réglage vous permet de donner aux couvertures d'album une hauteur "
|
8011 |
"identique alors que le titre peut faire plus d'une ligne."
|
8012 |
|
8013 |
+
#: wppa-settings-autosave.php:1120
|
8014 |
msgid "This is the recommended setting to line-up your covers!"
|
8015 |
msgstr "Ceci est le réglage recommandé pour aligner vos couvertures!"
|
8016 |
|
8017 |
+
#: wppa-settings-autosave.php:1127
|
8018 |
msgid "Min Description height"
|
8019 |
msgstr "Hauteur minimum de la description"
|
8020 |
|
8021 |
+
#: wppa-settings-autosave.php:1128
|
8022 |
msgid "The minimal height of the album description text frame."
|
8023 |
msgstr "La hauteur minimale du cadre de texte de description de l'album."
|
8024 |
|
8025 |
+
#: wppa-settings-autosave.php:1129
|
8026 |
msgid "The minimal height of the description field in an album cover display."
|
8027 |
msgstr "La hauteur minimale du champ de description de la couverture d'album."
|
8028 |
|
8029 |
+
#: wppa-settings-autosave.php:1130
|
8030 |
msgid ""
|
8031 |
"This setting enables you to give the album covers the same height provided "
|
8032 |
"that the cover images are equally sized and the titles fit on one line."
|
8035 |
"identique alors que les images de couverture sont de taille égale et que les "
|
8036 |
"titres tiennent sur une ligne."
|
8037 |
|
8038 |
+
#: wppa-settings-autosave.php:1131
|
8039 |
msgid ""
|
8040 |
"To force the coverphotos have equal heights, tick the box in Table I-D7."
|
8041 |
msgstr ""
|
8042 |
"Pour forcer une hauteur identique pour les photos de couverture, cocher la "
|
8043 |
"case dans la table I-D7."
|
8044 |
|
8045 |
+
#: wppa-settings-autosave.php:1132
|
8046 |
msgid ""
|
8047 |
"You may need this setting if changing the previous setting is not sufficient "
|
8048 |
"to line-up the covers."
|
8050 |
"Ce réglage peut être nécessaire si la modification du réglage précédent "
|
8051 |
"n'est pas suffisant pour aligner les couvertures."
|
8052 |
|
8053 |
+
#: wppa-settings-autosave.php:1139
|
8054 |
msgid "Coverphoto responsive"
|
8055 |
msgstr "Photo de couverture réactive"
|
8056 |
|
8057 |
+
#: wppa-settings-autosave.php:1140
|
8058 |
msgid "Check this box if you want a responsive coverphoto."
|
8059 |
msgstr "Cochez cette case si vous voulez une photo de couverture réactive."
|
8060 |
|
8061 |
+
#: wppa-settings-autosave.php:1150 wppa-settings-autosave.php:1160
|
8062 |
msgid "Coverphoto size"
|
8063 |
msgstr "Taille de la photo de couverture"
|
8064 |
|
8065 |
+
#: wppa-settings-autosave.php:1151 wppa-settings-autosave.php:1161
|
8066 |
msgid "The size of the coverphoto."
|
8067 |
msgstr "La taille de la photo de couverture."
|
8068 |
|
8069 |
+
#: wppa-settings-autosave.php:1153 wppa-settings-autosave.php:1163
|
8070 |
+
#: wppa-settings-autosave.php:1173 wppa-settings-autosave.php:1183
|
8071 |
msgid ""
|
8072 |
"Changing the coverphoto size may result in all thumbnails being regenerated. "
|
8073 |
"this may take a while."
|
8075 |
"Changer la photo de couverture peut entraîner la régénération de toutes les "
|
8076 |
"vignettes. Cela peut prendre du temps."
|
8077 |
|
8078 |
+
#: wppa-settings-autosave.php:1165 wppa-settings-autosave.php:1185
|
8079 |
msgid "percent"
|
8080 |
msgstr "pourcent"
|
8081 |
|
8082 |
+
#: wppa-settings-autosave.php:1170 wppa-settings-autosave.php:1180
|
8083 |
msgid "Coverphoto size multi"
|
8084 |
msgstr "Taille de la photo de couverture (multi)"
|
8085 |
|
8086 |
+
#: wppa-settings-autosave.php:1171 wppa-settings-autosave.php:1181
|
8087 |
msgid "The size of coverphotos if more than one."
|
8088 |
msgstr "La taille des photos de couverture si il y en a plus d'une."
|
8089 |
|
8090 |
+
#: wppa-settings-autosave.php:1190
|
8091 |
msgid "Size is height"
|
8092 |
msgstr "La taille correspond à la hauteur"
|
8093 |
|
8094 |
+
#: wppa-settings-autosave.php:1191
|
8095 |
msgid "The size of the coverphoto is the height of it."
|
8096 |
msgstr "La taille de la photo de couverture est sa hauteur."
|
8097 |
|
8098 |
+
#: wppa-settings-autosave.php:1192
|
8099 |
msgid ""
|
8100 |
"If set: the previous setting is the height, if unset: the largest of width "
|
8101 |
"and height."
|
8103 |
"Si réglé: le précédent réglage est la hauteur, si non réglé: la plus grande "
|
8104 |
"de ces deux valeurs: hauteur, largeur."
|
8105 |
|
8106 |
+
#: wppa-settings-autosave.php:1193
|
8107 |
msgid ""
|
8108 |
"This setting applies for coverphoto position top or bottom only (Table IV-"
|
8109 |
"D3)."
|
8111 |
"Ce réglage s'applique à la position de la photo de couverture pour haut ou "
|
8112 |
"bas uniquement (table IV-D3)."
|
8113 |
|
8114 |
+
#: wppa-settings-autosave.php:1194
|
8115 |
msgid "This makes it easyer to make the covers of equal height."
|
8116 |
msgstr ""
|
8117 |
"Ceci permet de plus facilement rendre identique la hauteur des couvertures."
|
8118 |
|
8119 |
+
#: wppa-settings-autosave.php:1202
|
8120 |
msgid "Max number of covers per page."
|
8121 |
msgstr "Nombre maximum de couvertures par page."
|
8122 |
|
8123 |
+
#: wppa-settings-autosave.php:1203
|
8124 |
msgid ""
|
8125 |
"Enter the maximum number of album covers per page. A value of 0 indicates no "
|
8126 |
"pagination."
|
8128 |
"Entrer le nombre maximum de couvertures d'album par page. Une valeur de 0 "
|
8129 |
"signifie pas de pagination."
|
8130 |
|
8131 |
+
#: wppa-settings-autosave.php:1205
|
8132 |
msgid "covers"
|
8133 |
msgstr "Couvertures"
|
8134 |
|
8135 |
+
#: wppa-settings-autosave.php:1210
|
8136 |
msgid "Rating and comment related size settings"
|
8137 |
msgstr "Réglages de tailles pour les notes et commentaires"
|
8138 |
|
8139 |
+
#: wppa-settings-autosave.php:1212
|
8140 |
msgid "Rating size"
|
8141 |
msgstr "Taille note"
|
8142 |
|
8143 |
+
#: wppa-settings-autosave.php:1213
|
8144 |
msgid "Select the number of voting stars."
|
8145 |
msgstr "Choisir le nombre d'étoiles pour le vote."
|
8146 |
|
8147 |
+
#: wppa-settings-autosave.php:1216
|
8148 |
msgid "Standard: 5 stars"
|
8149 |
msgstr "Standard: 5 étoiles"
|
8150 |
|
8151 |
+
#: wppa-settings-autosave.php:1216
|
8152 |
msgid "Extended: 10 stars"
|
8153 |
msgstr "Étendu: 10 étoiles"
|
8154 |
|
8155 |
+
#: wppa-settings-autosave.php:1216
|
8156 |
msgid "One button vote"
|
8157 |
msgstr "One button vote"
|
8158 |
|
8159 |
+
#: wppa-settings-autosave.php:1223
|
8160 |
msgid "Display precision"
|
8161 |
msgstr "Précision d'affichage"
|
8162 |
|
8163 |
+
#: wppa-settings-autosave.php:1224
|
8164 |
msgid "Select the desired rating display precision."
|
8165 |
msgstr "Choisir la précision désirée pour l'affichage des notes."
|
8166 |
|
8167 |
+
#: wppa-settings-autosave.php:1227
|
8168 |
msgid "decimal places"
|
8169 |
msgstr "emplacement des décimales"
|
8170 |
|
8171 |
+
#: wppa-settings-autosave.php:1235
|
8172 |
msgid "Size of Avatar images."
|
8173 |
msgstr "Taille des images avatar."
|
8174 |
|
8175 |
+
#: wppa-settings-autosave.php:1236
|
8176 |
msgid "The size of the square avatar; must be > 0 and < 256"
|
8177 |
msgstr "La taille du carré d'avatar doit être >0 et <256"
|
8178 |
|
8179 |
+
#: wppa-settings-autosave.php:1243
|
8180 |
msgid "Rating space"
|
8181 |
msgstr "Espacement note"
|
8182 |
|
8183 |
+
#: wppa-settings-autosave.php:1244
|
8184 |
msgid "Space between avg and my rating stars"
|
8185 |
msgstr "Espace entre moyenne et mes notes (étoiles)"
|
8186 |
|
8187 |
+
#: wppa-settings-autosave.php:1252
|
8188 |
msgid "Widget related size settings"
|
8189 |
msgstr "Réglages de taille pour les widgets"
|
8190 |
|
8191 |
+
#: wppa-settings-autosave.php:1254
|
8192 |
msgid "Widget width"
|
8193 |
msgstr "Largeur du widget"
|
8194 |
|
8195 |
+
#: wppa-settings-autosave.php:1255
|
8196 |
msgid "The useable width within widgets."
|
8197 |
msgstr "La largeur utilisable dans le widget"
|
8198 |
|
8199 |
+
#: wppa-settings-autosave.php:1256
|
8200 |
msgid ""
|
8201 |
"Widget width for photo of the day, general purpose (default), slideshow "
|
8202 |
"(default) and upload widgets."
|
8204 |
"Largeur pour les widgets Photo du Jour, usage général (défault), diaporama "
|
8205 |
"(défault) et Chargement."
|
8206 |
|
8207 |
+
#: wppa-settings-autosave.php:1263
|
8208 |
msgid "TopTen count"
|
8209 |
msgstr "Comptage TopTen"
|
8210 |
|
8211 |
+
#: wppa-settings-autosave.php:1264
|
8212 |
msgid "Number of photos in TopTen widget."
|
8213 |
msgstr "Nombre de photos dans le widget TopTen."
|
8214 |
|
8215 |
+
#: wppa-settings-autosave.php:1265
|
8216 |
msgid "Enter the maximum number of rated photos in the TopTen widget."
|
8217 |
msgstr "Entrez le nombre maximum de photos avec votes dans le widget TopTen."
|
8218 |
|
8219 |
+
#: wppa-settings-autosave.php:1272
|
8220 |
msgid "TopTen size"
|
8221 |
msgstr "Taille TopTen"
|
8222 |
|
8223 |
+
#: wppa-settings-autosave.php:1273
|
8224 |
msgid "Size of thumbnails in TopTen widget."
|
8225 |
msgstr "Taille des vignettes dans le widget TopTen."
|
8226 |
|
8227 |
+
#: wppa-settings-autosave.php:1274
|
8228 |
msgid "Enter the size for the mini photos in the TopTen widget."
|
8229 |
msgstr "Entrer la taille pour les mini photos dans le widget TopTen."
|
8230 |
|
8231 |
+
#: wppa-settings-autosave.php:1275 wppa-settings-autosave.php:1295
|
8232 |
+
#: wppa-settings-autosave.php:1315 wppa-settings-autosave.php:1335
|
8233 |
+
#: wppa-settings-autosave.php:1355 wppa-settings-autosave.php:1375
|
8234 |
msgid "The size applies to the width or height, whatever is the largest."
|
8235 |
msgstr ""
|
8236 |
"La taille s'applique à la largeur ou la hauteur, peu importe laquelle est la "
|
8237 |
"plus grande."
|
8238 |
|
8239 |
+
#: wppa-settings-autosave.php:1276 wppa-settings-autosave.php:1296
|
8240 |
+
#: wppa-settings-autosave.php:1316 wppa-settings-autosave.php:1336
|
8241 |
+
#: wppa-settings-autosave.php:1356 wppa-settings-autosave.php:1376
|
8242 |
msgid ""
|
8243 |
"Recommended values: 86 for a two column and 56 for a three column display."
|
8244 |
msgstr ""
|
8245 |
"Valeurs recommandées: 86 pour un affichage deux colonnes et 56 pour trois "
|
8246 |
"colonnes."
|
8247 |
|
8248 |
+
#: wppa-settings-autosave.php:1283
|
8249 |
msgid "Comment count"
|
8250 |
msgstr "Comptage Commentaires"
|
8251 |
|
8252 |
+
#: wppa-settings-autosave.php:1284
|
8253 |
msgid "Number of entries in Comment widget."
|
8254 |
msgstr "Nombre d'entrées dans le widget Commentaires."
|
8255 |
|
8256 |
+
#: wppa-settings-autosave.php:1285
|
8257 |
msgid "Enter the maximum number of entries in the Comment widget."
|
8258 |
msgstr "Entrez le nombre maximum d'entrées dans le widget Commentaires."
|
8259 |
|
8260 |
+
#: wppa-settings-autosave.php:1287
|
8261 |
msgid "entries"
|
8262 |
msgstr "entrées"
|
8263 |
|
8264 |
+
#: wppa-settings-autosave.php:1292
|
8265 |
msgid "Comment size"
|
8266 |
msgstr "Taille de Commentaires"
|
8267 |
|
8268 |
+
#: wppa-settings-autosave.php:1293
|
8269 |
msgid "Size of thumbnails in Comment widget."
|
8270 |
msgstr "Taille des vignettes dans le widget Commentaires."
|
8271 |
|
8272 |
+
#: wppa-settings-autosave.php:1294
|
8273 |
msgid "Enter the size for the mini photos in the Comment widget."
|
8274 |
msgstr "Entrer la taille pour les mini photos dans le widget Commentaires."
|
8275 |
|
8276 |
+
#: wppa-settings-autosave.php:1303
|
8277 |
msgid "Thumbnail count"
|
8278 |
msgstr "Comptage Vignettes"
|
8279 |
|
8280 |
+
#: wppa-settings-autosave.php:1304
|
8281 |
msgid "Number of photos in Thumbnail widget."
|
8282 |
msgstr "Nombre de photos dans le widget Vignettes."
|
8283 |
|
8284 |
+
#: wppa-settings-autosave.php:1305
|
8285 |
msgid "Enter the maximum number of rated photos in the Thumbnail widget."
|
8286 |
msgstr ""
|
8287 |
"Entrer le nombre maximum de photos avec votes dans le widget Vignettes."
|
8288 |
|
8289 |
+
#: wppa-settings-autosave.php:1312
|
8290 |
msgid "Thumbnail widget size"
|
8291 |
msgstr "Taille du widget Vignettes"
|
8292 |
|
8293 |
+
#: wppa-settings-autosave.php:1313
|
8294 |
msgid "Size of thumbnails in Thumbnail widget."
|
8295 |
msgstr "Taille des vignettes dans le widget Vignettes."
|
8296 |
|
8297 |
+
#: wppa-settings-autosave.php:1314
|
8298 |
msgid "Enter the size for the mini photos in the Thumbnail widget."
|
8299 |
msgstr "Entrer la taille pour les mini photos dans le widget Vignettes."
|
8300 |
|
8301 |
+
#: wppa-settings-autosave.php:1323
|
8302 |
msgid "LasTen count"
|
8303 |
msgstr "Comptage LastTen"
|
8304 |
|
8305 |
+
#: wppa-settings-autosave.php:1324
|
8306 |
msgid "Number of photos in Last Ten widget."
|
8307 |
msgstr "Nombre de photos dans le widget LastTen."
|
8308 |
|
8309 |
+
#: wppa-settings-autosave.php:1325
|
8310 |
msgid "Enter the maximum number of photos in the LasTen widget."
|
8311 |
msgstr "Entrer la nombre maximum de photos dans le widget LastTen."
|
8312 |
|
8313 |
+
#: wppa-settings-autosave.php:1332
|
8314 |
msgid "LasTen size"
|
8315 |
msgstr "Taille de LastTen"
|
8316 |
|
8317 |
+
#: wppa-settings-autosave.php:1333
|
8318 |
msgid "Size of thumbnails in Last Ten widget."
|
8319 |
msgstr "Taille des vignettes dans le widget LastTen."
|
8320 |
|
8321 |
+
#: wppa-settings-autosave.php:1334
|
8322 |
msgid "Enter the size for the mini photos in the LasTen widget."
|
8323 |
msgstr "Entrer la taille pour les mini photos dans le widget LastTen."
|
8324 |
|
8325 |
+
#: wppa-settings-autosave.php:1343
|
8326 |
msgid "Album widget count"
|
8327 |
msgstr "Comptage widget Album"
|
8328 |
|
8329 |
+
#: wppa-settings-autosave.php:1344
|
8330 |
msgid "Number of albums in Album widget."
|
8331 |
msgstr "Nombre d'albums dans le widget Albums."
|
8332 |
|
8333 |
+
#: wppa-settings-autosave.php:1345
|
8334 |
msgid ""
|
8335 |
"Enter the maximum number of thumbnail photos of albums in the Album widget."
|
8336 |
msgstr ""
|
8337 |
"Entrer le nombre maximum de vignettes photo d'albums dans le widget Albums."
|
8338 |
|
8339 |
+
#: wppa-settings-autosave.php:1347 wppa-settings-autosave.php:6306
|
8340 |
msgid "albums"
|
8341 |
msgstr "albums"
|
8342 |
|
8343 |
+
#: wppa-settings-autosave.php:1352
|
8344 |
msgid "Album widget size"
|
8345 |
msgstr "Taille du widget Album"
|
8346 |
|
8347 |
+
#: wppa-settings-autosave.php:1353
|
8348 |
msgid "Size of thumbnails in Album widget."
|
8349 |
msgstr "Taille des vignettes dans le widget Albums."
|
8350 |
|
8351 |
+
#: wppa-settings-autosave.php:1354
|
8352 |
msgid "Enter the size for the mini photos in the Album widget."
|
8353 |
msgstr "Entrer la taille pour les mini photos dans le widget Albums."
|
8354 |
|
8355 |
+
#: wppa-settings-autosave.php:1363
|
8356 |
msgid "FeaTen count"
|
8357 |
msgstr "Comptage FeaTen"
|
8358 |
|
8359 |
+
#: wppa-settings-autosave.php:1364
|
8360 |
msgid "Number of photos in Featured Ten widget."
|
8361 |
msgstr "Nombre de photos dans le widget Featured Ten."
|
8362 |
|
8363 |
+
#: wppa-settings-autosave.php:1365
|
8364 |
msgid "Enter the maximum number of photos in the FeaTen widget."
|
8365 |
msgstr "Entrer le nombre maximum de photos dans le widget FeaTen."
|
8366 |
|
8367 |
+
#: wppa-settings-autosave.php:1372
|
8368 |
msgid "FeaTen size"
|
8369 |
msgstr "Taille FeaTen"
|
8370 |
|
8371 |
+
#: wppa-settings-autosave.php:1373
|
8372 |
msgid "Size of thumbnails in Featured Ten widget."
|
8373 |
msgstr "Taille des vignettes dans le widget FeaTen."
|
8374 |
|
8375 |
+
#: wppa-settings-autosave.php:1374
|
8376 |
msgid "Enter the size for the mini photos in the FeaTen widget."
|
8377 |
msgstr "Entrer la taille pour les mini photos dans le widget FeaTen."
|
8378 |
|
8379 |
+
#: wppa-settings-autosave.php:1383
|
8380 |
msgid "Tagcloud min size"
|
8381 |
msgstr "Taille minimum du Nuage de tags"
|
8382 |
|
8383 |
+
#: wppa-settings-autosave.php:1384
|
8384 |
msgid "Minimal fontsize in tagclouds"
|
8385 |
msgstr "Taille de police minimale dans les nuages de tags"
|
8386 |
|
8387 |
+
#: wppa-settings-autosave.php:1392
|
8388 |
msgid "Tagcloud max size"
|
8389 |
msgstr "Taille maximum du nuage de tags"
|
8390 |
|
8391 |
+
#: wppa-settings-autosave.php:1393
|
8392 |
msgid "Maximal fontsize in tagclouds"
|
8393 |
msgstr "Taille de police maximale dans les nuages de tags"
|
8394 |
|
8395 |
+
#: wppa-settings-autosave.php:1401
|
8396 |
msgid ""
|
8397 |
"Lightbox related size settings. These settings have effect only when Table "
|
8398 |
"IX-J3 is set to wppa"
|
8400 |
"Réglages de taille pour Lightbox. Ces réglages n'ont d'effet que lorsque "
|
8401 |
"table IX-J3 est réglé à WPPA"
|
8402 |
|
8403 |
+
#: wppa-settings-autosave.php:1404
|
8404 |
msgid ""
|
8405 |
"Number of lines on the lightbox description area, exclusive the n/m line."
|
8406 |
msgstr ""
|
8407 |
"Nombre de lignes dans la zone de description de Lightbox, en excluant la "
|
8408 |
"ligne n/m."
|
8409 |
|
8410 |
+
#: wppa-settings-autosave.php:1405
|
8411 |
msgid "Enter a number in the range from 0 to 24 or auto"
|
8412 |
msgstr "Entrer un nombre dans une plage allant de 0 à 24 ou auto"
|
8413 |
|
8414 |
+
#: wppa-settings-autosave.php:1407
|
8415 |
msgid "lines"
|
8416 |
msgstr "lignes"
|
8417 |
|
8418 |
+
#: wppa-settings-autosave.php:1412
|
8419 |
msgid "Magnifier cursor size"
|
8420 |
msgstr "Taille du curseur loupe"
|
8421 |
|
8422 |
+
#: wppa-settings-autosave.php:1413
|
8423 |
msgid "Select the size of the magnifier cursor."
|
8424 |
msgstr "Choisir la taille du curseur loupe."
|
8425 |
|
8426 |
+
#: wppa-settings-autosave.php:1416
|
8427 |
msgid "small"
|
8428 |
msgstr "petit"
|
8429 |
|
8430 |
+
#: wppa-settings-autosave.php:1416 wppa-settings-autosave.php:3043
|
8431 |
msgid "medium"
|
8432 |
msgstr "moyen"
|
8433 |
|
8434 |
+
#: wppa-settings-autosave.php:1416
|
8435 |
msgid "large"
|
8436 |
msgstr "grand"
|
8437 |
|
8438 |
+
#: wppa-settings-autosave.php:1426
|
8439 |
msgid "Border width for lightbox display."
|
8440 |
msgstr "Largeur de bordure de Lightbox."
|
8441 |
|
8442 |
+
#: wppa-settings-autosave.php:1435
|
8443 |
msgid "Border radius for lightbox display."
|
8444 |
msgstr "Rayon de bordure de Lightbox."
|
8445 |
|
8446 |
+
#: wppa-settings-autosave.php:1444
|
8447 |
msgid "Video related size settings"
|
8448 |
msgstr "Réglages liés à la taille des vidéos"
|
8449 |
|
8450 |
+
#: wppa-settings-autosave.php:1446
|
8451 |
msgid "Default width"
|
8452 |
msgstr "Largeur par défaut"
|
8453 |
|
8454 |
+
#: wppa-settings-autosave.php:1447
|
8455 |
msgid "The width of most videos"
|
8456 |
msgstr "La largeur de la plupart des vidéos"
|
8457 |
|
8458 |
+
#: wppa-settings-autosave.php:1455
|
8459 |
msgid "Default height"
|
8460 |
msgstr "Hauteur par défaut"
|
8461 |
|
8462 |
+
#: wppa-settings-autosave.php:1456
|
8463 |
msgid "The height of most videos"
|
8464 |
msgstr "La hauteur de la plupart des vidéos"
|
8465 |
|
8466 |
+
#: wppa-settings-autosave.php:1482
|
8467 |
msgid "Table II:"
|
8468 |
msgstr "Table II:"
|
8469 |
|
8470 |
+
#: wppa-settings-autosave.php:1482
|
8471 |
msgid "Visibility:"
|
8472 |
msgstr "Visibilité:"
|
8473 |
|
8474 |
+
#: wppa-settings-autosave.php:1483
|
8475 |
msgid "This table describes the visibility of certain wppa+ elements."
|
8476 |
msgstr "Cette table décrit la visibilité de certains éléments de WPPA+."
|
8477 |
|
8478 |
+
#: wppa-settings-autosave.php:1501
|
8479 |
msgid "Breadcrumb related visibility settings"
|
8480 |
msgstr "Réglage pour l'affichage du chemin de fer"
|
8481 |
|
8482 |
+
#: wppa-settings-autosave.php:1503
|
8483 |
msgid "Breadcrumb on posts"
|
8484 |
msgstr "Chemin de fer sur les articles"
|
8485 |
|
8486 |
+
#: wppa-settings-autosave.php:1504 wppa-settings-autosave.php:1514
|
8487 |
msgid "Show breadcrumb navigation bars."
|
8488 |
msgstr "Montrer les chemins de fer."
|
8489 |
|
8490 |
+
#: wppa-settings-autosave.php:1505 wppa-settings-autosave.php:1515
|
8491 |
msgid "Indicate whether a breadcrumb navigation should be displayed"
|
8492 |
msgstr "Indique si une barre de chemin de fer doit être affichée"
|
8493 |
|
8494 |
+
#: wppa-settings-autosave.php:1513
|
8495 |
msgid "Breadcrumb on pages"
|
8496 |
msgstr "Chemin de fer sur les pages"
|
8497 |
|
8498 |
+
#: wppa-settings-autosave.php:1523
|
8499 |
msgid "Breadcrumb on search results"
|
8500 |
msgstr "Chemin de fer pour les résultats de recherche"
|
8501 |
|
8502 |
+
#: wppa-settings-autosave.php:1524
|
8503 |
msgid "Show breadcrumb navigation bars on the search results page."
|
8504 |
msgstr ""
|
8505 |
"Montrer les barres de chemin de fer dans la page des résultats de recherche."
|
8506 |
|
8507 |
+
#: wppa-settings-autosave.php:1525
|
8508 |
msgid ""
|
8509 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8510 |
"search results."
|
8512 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8513 |
"résultats de recherche."
|
8514 |
|
8515 |
+
#: wppa-settings-autosave.php:1532
|
8516 |
msgid "Breadcrumb on topten displays"
|
8517 |
msgstr "Chemin de fer dans les affichages de TopTen"
|
8518 |
|
8519 |
+
#: wppa-settings-autosave.php:1533
|
8520 |
msgid "Show breadcrumb navigation bars on topten displays."
|
8521 |
msgstr "Montrer les barres de chemin de fer dans les affichages TopTen."
|
8522 |
|
8523 |
+
#: wppa-settings-autosave.php:1534
|
8524 |
msgid ""
|
8525 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8526 |
"topten displays."
|
8528 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8529 |
"affichages TopTen"
|
8530 |
|
8531 |
+
#: wppa-settings-autosave.php:1541
|
8532 |
msgid "Breadcrumb on last ten displays"
|
8533 |
msgstr "Chemin de fer dans les affichages de LastTen"
|
8534 |
|
8535 |
+
#: wppa-settings-autosave.php:1542
|
8536 |
msgid "Show breadcrumb navigation bars on last ten displays."
|
8537 |
msgstr "Montrer les chemins de fer dans les affichages de LastTen."
|
8538 |
|
8539 |
+
#: wppa-settings-autosave.php:1543
|
8540 |
msgid ""
|
8541 |
"Indicate whether a breadcrumb navigation should be displayed above the last "
|
8542 |
"ten displays."
|
8544 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8545 |
"affichages LastTen."
|
8546 |
|
8547 |
+
#: wppa-settings-autosave.php:1550
|
8548 |
msgid "Breadcrumb on comment ten displays"
|
8549 |
msgstr "Chemin de fer dans les affichages CommentTen"
|
8550 |
|
8551 |
+
#: wppa-settings-autosave.php:1551
|
8552 |
msgid "Show breadcrumb navigation bars on comment ten displays."
|
8553 |
msgstr "Montrer les barres de chemin de fer dans les affichages de CommentTen."
|
8554 |
|
8555 |
+
#: wppa-settings-autosave.php:1552
|
8556 |
msgid ""
|
8557 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8558 |
"comment ten displays."
|
8560 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8561 |
"affichages CommentTen."
|
8562 |
|
8563 |
+
#: wppa-settings-autosave.php:1559
|
8564 |
msgid "Breadcrumb on tag result displays"
|
8565 |
msgstr "Chemin de fer dans les affichages TagResult"
|
8566 |
|
8567 |
+
#: wppa-settings-autosave.php:1560
|
8568 |
msgid "Show breadcrumb navigation bars on tag result displays."
|
8569 |
msgstr "Montrer les barres de chemin de fer dans les affichages TagResult."
|
8570 |
|
8571 |
+
#: wppa-settings-autosave.php:1561
|
8572 |
msgid ""
|
8573 |
"Indicate whether a breadcrumb navigation should be displayed above the tag "
|
8574 |
"result displays."
|
8576 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8577 |
"affichages TagResult."
|
8578 |
|
8579 |
+
#: wppa-settings-autosave.php:1568
|
8580 |
msgid "Breadcrumb on featured ten displays"
|
8581 |
msgstr "Chemin de fer dans les affichages FeaTen"
|
8582 |
|
8583 |
+
#: wppa-settings-autosave.php:1569
|
8584 |
msgid "Show breadcrumb navigation bars on featured ten displays."
|
8585 |
msgstr "Montrer les barres de chemin de fer dans les affichages FeaTen."
|
8586 |
|
8587 |
+
#: wppa-settings-autosave.php:1570
|
8588 |
msgid ""
|
8589 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8590 |
"featured ten displays."
|
8592 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8593 |
"affichages FeaTen."
|
8594 |
|
8595 |
+
#: wppa-settings-autosave.php:1577
|
8596 |
msgid "Breadcrumb on related photos displays"
|
8597 |
msgstr "Chemin de fer dans les affichages Related Photos"
|
8598 |
|
8599 |
+
#: wppa-settings-autosave.php:1578
|
8600 |
msgid "Show breadcrumb navigation bars on related photos displays."
|
8601 |
msgstr ""
|
8602 |
"\"Montrer les barres de chemin de fer dans les affichages Related Photos."
|
8603 |
|
8604 |
+
#: wppa-settings-autosave.php:1579
|
8605 |
msgid ""
|
8606 |
"Indicate whether a breadcrumb navigation should be displayed above the "
|
8607 |
"related photos displays."
|
8609 |
"Indique si une barre de chemin de fer doit être affichée au dessus des "
|
8610 |
"affichages Related Photos."
|
8611 |
|
8612 |
+
#: wppa-settings-autosave.php:1586 wppa-setup.php:803
|
8613 |
msgid "Home"
|
8614 |
msgstr "Accueil"
|
8615 |
|
8616 |
+
#: wppa-settings-autosave.php:1587
|
8617 |
msgid "Show \"Home\" in breadcrumb."
|
8618 |
msgstr "Montrer \"Accueil\" dans le chemin de fer."
|
8619 |
|
8620 |
+
#: wppa-settings-autosave.php:1588
|
8621 |
msgid ""
|
8622 |
"Indicate whether the breadcrumb navigation should start with a \"Home\"-link"
|
8623 |
msgstr "Indique si le chemin de fer doit commencer avec un lien \"Accueil\""
|
8624 |
|
8625 |
+
#: wppa-settings-autosave.php:1595
|
8626 |
msgid "Home text"
|
8627 |
msgstr "Texte d'accueil"
|
8628 |
|
8629 |
+
#: wppa-settings-autosave.php:1596
|
8630 |
msgid "The text to use as \"Home\""
|
8631 |
msgstr "Le texte à utiliser comme \"Accueil\""
|
8632 |
|
8633 |
+
#: wppa-settings-autosave.php:1605
|
8634 |
msgid "Show the page(s) in breadcrumb."
|
8635 |
msgstr "Montrer le(s) page(s) dans le chemin de fer."
|
8636 |
|
8637 |
+
#: wppa-settings-autosave.php:1606
|
8638 |
msgid ""
|
8639 |
"Indicate whether the breadcrumb navigation should show the page(hierarchy)"
|
8640 |
msgstr "Indique si le chemin de fer doit montrer la hiérarchie des pages"
|
8641 |
|
8642 |
+
#: wppa-settings-autosave.php:1613
|
8643 |
msgid "Separator"
|
8644 |
msgstr "Séparateur"
|
8645 |
|
8646 |
+
#: wppa-settings-autosave.php:1614
|
8647 |
msgid "Breadcrumb separator symbol."
|
8648 |
msgstr "Symbole de séparation du chemin de fer."
|
8649 |
|
8650 |
+
#: wppa-settings-autosave.php:1615
|
8651 |
msgid "Select the desired breadcrumb separator element."
|
8652 |
msgstr "Choisir le symbole séparateur du chemin de fer."
|
8653 |
|
8654 |
+
#: wppa-settings-autosave.php:1616
|
8655 |
msgid "A text string may contain valid html."
|
8656 |
msgstr "Une chaîne de texte peut contenir du HTML valide."
|
8657 |
|
8658 |
+
#: wppa-settings-autosave.php:1617
|
8659 |
msgid ""
|
8660 |
"An image will be scaled automatically if you set the navigation font size."
|
8661 |
msgstr ""
|
8662 |
"Une image sera mise à l’échelle automatiquement si vous réglez la tailles "
|
8663 |
"des police de navigation."
|
8664 |
|
8665 |
+
#: wppa-settings-autosave.php:1619
|
8666 |
msgid "Text (html):"
|
8667 |
msgstr "Texte (html):"
|
8668 |
|
8669 |
+
#: wppa-settings-autosave.php:1619
|
8670 |
msgid "Image (url):"
|
8671 |
msgstr "Image (url):"
|
8672 |
|
8673 |
+
#: wppa-settings-autosave.php:1627
|
8674 |
msgid "Html"
|
8675 |
msgstr "HTML"
|
8676 |
|
8677 |
+
#: wppa-settings-autosave.php:1628
|
8678 |
msgid "Breadcrumb separator text."
|
8679 |
msgstr "Texte du séparateur du chemin de fer."
|
8680 |
|
8681 |
+
#: wppa-settings-autosave.php:1629
|
8682 |
msgid "Enter the HTML code that produces the separator symbol you want."
|
8683 |
msgstr ""
|
8684 |
"Entrez le code HTML qui correspond au symbole séparateur que vous voulez."
|
8685 |
|
8686 |
+
#: wppa-settings-autosave.php:1630
|
8687 |
msgid ""
|
8688 |
"It may be as simple as '-' (without the quotes) or as complex as a tag like "
|
8689 |
"<div>..</div>."
|
8691 |
"Cela peut être aussi simple que '-' (sans les apostrophes) ou complexe qu'un "
|
8692 |
"tag comme <DIV>..</DIV>."
|
8693 |
|
8694 |
+
#: wppa-settings-autosave.php:1637
|
8695 |
msgid "Image Url"
|
8696 |
msgstr "URL de l'image"
|
8697 |
|
8698 |
+
#: wppa-settings-autosave.php:1638
|
8699 |
msgid "Full url to separator image."
|
8700 |
msgstr "URL complète du séparateur d'image."
|
8701 |
|
8702 |
+
#: wppa-settings-autosave.php:1639
|
8703 |
msgid ""
|
8704 |
"Enter the full url to the image you want to use for the separator symbol."
|
8705 |
msgstr ""
|
8706 |
"Entrez l'URL complète de l'image que vous voulez utiliser comme symbole de "
|
8707 |
"séparation."
|
8708 |
|
8709 |
+
#: wppa-settings-autosave.php:1646
|
8710 |
msgid "Pagelink position"
|
8711 |
msgstr "Position du lien de page"
|
8712 |
|
8713 |
+
#: wppa-settings-autosave.php:1647
|
8714 |
msgid "The location for the pagelinks bar."
|
8715 |
msgstr "L'emplacement pour la barre des liens de page."
|
8716 |
|
8717 |
+
#: wppa-settings-autosave.php:1650 wppa-settings-autosave.php:4200
|
8718 |
msgid "Top"
|
8719 |
msgstr "Haut"
|
8720 |
|
8721 |
+
#: wppa-settings-autosave.php:1650 wppa-settings-autosave.php:4200
|
8722 |
msgid "Bottom"
|
8723 |
msgstr "Bas"
|
8724 |
|
8725 |
+
#: wppa-settings-autosave.php:1650
|
8726 |
msgid "Both"
|
8727 |
msgstr "Les deux"
|
8728 |
|
8729 |
+
#: wppa-settings-autosave.php:1657
|
8730 |
msgid "Thumblink on slideshow"
|
8731 |
msgstr "Lien vignette sur le diaporama"
|
8732 |
|
8733 |
+
#: wppa-settings-autosave.php:1658
|
8734 |
msgid "Show a thumb link on slideshow bc."
|
8735 |
msgstr "Montrer un lien vignette sur le chemin de fer du diaporama."
|
8736 |
|
8737 |
+
#: wppa-settings-autosave.php:1659
|
8738 |
msgid "Show a link to thumbnail display on an breadcrumb above a slideshow"
|
8739 |
msgstr "Montrer un lien vignette dans un chemin de fer au dessus du diaporama"
|
8740 |
|
8741 |
+
#: wppa-settings-autosave.php:1666
|
8742 |
msgid "Slideshow related visibility settings"
|
8743 |
msgstr "Réglages d'affichage pour le diaporama"
|
8744 |
|
8745 |
+
#: wppa-settings-autosave.php:1668
|
8746 |
msgid "Navigation type"
|
8747 |
msgstr "Type de navigation"
|
8748 |
|
8749 |
+
#: wppa-settings-autosave.php:1669
|
8750 |
msgid "Select the type of navigation you want."
|
8751 |
msgstr "Sélectionnez le type de navigation souhaitée."
|
8752 |
|
8753 |
+
#: wppa-settings-autosave.php:1672
|
8754 |
msgid "Icons"
|
8755 |
msgstr "Icônes"
|
8756 |
|
8757 |
+
#: wppa-settings-autosave.php:1673
|
8758 |
msgid "Icons on mobile, text on pc"
|
8759 |
msgstr "Icônes sur mobile, texte sur pc"
|
8760 |
|
8761 |
+
#: wppa-settings-autosave.php:1684
|
8762 |
msgid "Start/stop"
|
8763 |
msgstr "Lancer/Arrêter"
|
8764 |
|
8765 |
+
#: wppa-settings-autosave.php:1685
|
8766 |
msgid "Show the Start/Stop slideshow bar."
|
8767 |
msgstr "Montrer la barre Lancer/Arrêter diaporama."
|
8768 |
|
8769 |
+
#: wppa-settings-autosave.php:1686
|
8770 |
msgid ""
|
8771 |
"If checked: display the start/stop slideshow navigation bar above the full-"
|
8772 |
"size images and slideshow"
|
8774 |
"Si coché: affiche la barre de navigation Démarrer/Arrêter au dessus des "
|
8775 |
"images pleine taille et du diaporama"
|
8776 |
|
8777 |
+
#: wppa-settings-autosave.php:1693
|
8778 |
msgid "Browse bar"
|
8779 |
msgstr "Barre de navigation"
|
8780 |
|
8781 |
+
#: wppa-settings-autosave.php:1694
|
8782 |
msgid "Show Browse photos bar."
|
8783 |
msgstr "Montrer barre de navigation photos."
|
8784 |
|
8785 |
+
#: wppa-settings-autosave.php:1695
|
8786 |
msgid ""
|
8787 |
"If checked: display the preveous/next navigation bar under the full-size "
|
8788 |
"images and slideshow"
|
8790 |
"Si coché: affaiche la barre de navigation Précédent/Suivant sous les images "
|
8791 |
"pleine taille et diaporama"
|
8792 |
|
8793 |
+
#: wppa-settings-autosave.php:1702
|
8794 |
msgid "Filmstrip"
|
8795 |
msgstr "Filmstrip"
|
8796 |
|
8797 |
+
#: wppa-settings-autosave.php:1703
|
8798 |
msgid "Show Filmstrip navigation bar."
|
8799 |
msgstr "Montrer la barre de navigation Filmstrip"
|
8800 |
|
8801 |
+
#: wppa-settings-autosave.php:1704
|
8802 |
msgid ""
|
8803 |
"If checked: display the filmstrip navigation bar under the full_size images "
|
8804 |
"and slideshow"
|
8806 |
"Si coché: affiche la barre de navigation Filmstrip sous les images pleine "
|
8807 |
"taille et diaporama"
|
8808 |
|
8809 |
+
#: wppa-settings-autosave.php:1711
|
8810 |
msgid "Film seam"
|
8811 |
msgstr "Film seam"
|
8812 |
|
8813 |
+
#: wppa-settings-autosave.php:1712
|
8814 |
msgid "Show seam between end and start of film."
|
8815 |
msgstr "Montrer Seam entre la fin et le débit du film."
|
8816 |
|
8817 |
+
#: wppa-settings-autosave.php:1713
|
8818 |
msgid "If checked: display the wrap-around point in the filmstrip"
|
8819 |
msgstr "Si coché: affiche le point wrap-around dans le filmstrip"
|
8820 |
|
8821 |
+
#: wppa-settings-autosave.php:1721
|
8822 |
msgid "Display photo name."
|
8823 |
msgstr "Afficher le nom de la photo."
|
8824 |
|
8825 |
+
#: wppa-settings-autosave.php:1722
|
8826 |
msgid "If checked: display the name of the photo under the slideshow image."
|
8827 |
msgstr "Si coché: affiche le nom de la photo sous l'image dans le diaporama."
|
8828 |
|
8829 |
+
#: wppa-settings-autosave.php:1729 wppa-settings-autosave.php:2134
|
8830 |
msgid "Add (Owner)"
|
8831 |
msgstr "Ajouter (Propriétaire)"
|
8832 |
|
8833 |
+
#: wppa-settings-autosave.php:1730 wppa-settings-autosave.php:2135
|
8834 |
msgid "Add the uploaders display name in parenthesis to the name."
|
8835 |
msgstr ""
|
8836 |
"Ajouter le nom de l'utilisateur qui a chargé la photo - entre parenthèses "
|
8837 |
"après le nom de la photo."
|
8838 |
|
8839 |
+
#: wppa-settings-autosave.php:1738
|
8840 |
msgid "Photo desc"
|
8841 |
msgstr "Description photo"
|
8842 |
|
8843 |
+
#: wppa-settings-autosave.php:1739
|
8844 |
msgid "Display Photo description."
|
8845 |
msgstr "Afficher la description de la photo."
|
8846 |
|
8847 |
+
#: wppa-settings-autosave.php:1740
|
8848 |
msgid ""
|
8849 |
"If checked: display the description of the photo under the slideshow image."
|
8850 |
msgstr ""
|
8851 |
"Si coché: affiche la description de la photo sous l'image dans le diaporama."
|
8852 |
|
8853 |
+
#: wppa-settings-autosave.php:1747
|
8854 |
msgid "Hide when empty"
|
8855 |
msgstr "Cacher quand vide"
|
8856 |
|
8857 |
+
#: wppa-settings-autosave.php:1748
|
8858 |
msgid "Hide the descriptionbox when empty."
|
8859 |
msgstr "Cache la boîte de description quand vide."
|
8860 |
|
8861 |
+
#: wppa-settings-autosave.php:1756
|
8862 |
msgid "Rating system"
|
8863 |
msgstr "Système de notation"
|
8864 |
|
8865 |
+
#: wppa-settings-autosave.php:1757
|
8866 |
msgid "Enable the rating system."
|
8867 |
msgstr "Activer le système de notation."
|
8868 |
|
8869 |
+
#: wppa-settings-autosave.php:1758
|
8870 |
msgid "If checked, the photo rating system will be enabled."
|
8871 |
msgstr "Si coché, le système de notation sera activé pour les photos."
|
8872 |
|
8873 |
+
#: wppa-settings-autosave.php:1766
|
8874 |
msgid "Comments system"
|
8875 |
msgstr "Système de commentaires"
|
8876 |
|
8877 |
+
#: wppa-settings-autosave.php:1767
|
8878 |
msgid "Enable the comments system."
|
8879 |
msgstr "Activer le système de commentaires."
|
8880 |
|
8881 |
+
#: wppa-settings-autosave.php:1768
|
8882 |
msgid ""
|
8883 |
"Display the comments box under the fullsize images and let users enter their "
|
8884 |
"comments on individual photos."
|
8886 |
"Afficher la boîte de commentaires sous les images pleine taille et autoriser "
|
8887 |
"les utilisateurs commenter des photos individuellement."
|
8888 |
|
8889 |
+
#: wppa-settings-autosave.php:1776
|
8890 |
msgid "Comment Avatar default"
|
8891 |
msgstr "Comment Avatar default"
|
8892 |
|
8893 |
+
#: wppa-settings-autosave.php:1777
|
8894 |
msgid "Show Avatars with the comments if not --- none ---"
|
8895 |
msgstr ""
|
8896 |
"Montrer les avatars avec les commentaires, --- aucun --- dans le cas "
|
8897 |
"contraire"
|
8898 |
|
8899 |
+
#: wppa-settings-autosave.php:1782
|
8900 |
msgid "mystery man"
|
8901 |
msgstr "homme mystère"
|
8902 |
|
8903 |
+
#: wppa-settings-autosave.php:1783
|
8904 |
msgid "identicon"
|
8905 |
msgstr "Identicon"
|
8906 |
|
8907 |
+
#: wppa-settings-autosave.php:1784
|
8908 |
msgid "monsterid"
|
8909 |
msgstr "Monsterid"
|
8910 |
|
8911 |
+
#: wppa-settings-autosave.php:1785
|
8912 |
msgid "wavatar"
|
8913 |
msgstr "Wavatar"
|
8914 |
|
8915 |
+
#: wppa-settings-autosave.php:1786
|
8916 |
msgid "retro"
|
8917 |
msgstr "retro"
|
8918 |
|
8919 |
+
#: wppa-settings-autosave.php:1787
|
8920 |
msgid "--- url ---"
|
8921 |
msgstr "--- URL ---"
|
8922 |
|
8923 |
+
#: wppa-settings-autosave.php:1802
|
8924 |
msgid "Comment Avatar url"
|
8925 |
msgstr "URL de l'avatar de commentaire"
|
8926 |
|
8927 |
+
#: wppa-settings-autosave.php:1803
|
8928 |
msgid "Comment Avatar default url."
|
8929 |
msgstr "URL par défaut de l'avatar de commentaire."
|
8930 |
|
8931 |
+
#: wppa-settings-autosave.php:1811
|
8932 |
msgid "Big Browse Buttons"
|
8933 |
msgstr "Gros boutons de navigation"
|
8934 |
|
8935 |
+
#: wppa-settings-autosave.php:1812
|
8936 |
msgid "Enable invisible browsing buttons."
|
8937 |
msgstr "Activer les boutons de navigation invisibles."
|
8938 |
|
8939 |
+
#: wppa-settings-autosave.php:1813 wppa-settings-autosave.php:2417
|
8940 |
msgid ""
|
8941 |
"If checked, the fullsize image is covered by two invisible areas that act as "
|
8942 |
"browse buttons."
|
8944 |
"Si coché, l'image pleine taille est recouverte de deux zones invisibles qui "
|
8945 |
"fonctionnent comme des boutons de navigation."
|
8946 |
|
8947 |
+
#: wppa-settings-autosave.php:1814 wppa-settings-autosave.php:2418
|
8948 |
+
#: wppa-settings-autosave.php:2428
|
8949 |
msgid ""
|
8950 |
"Make sure the Full height (Table I-B2) is properly configured to prevent "
|
8951 |
"these areas to overlap unwanted space."
|
8953 |
"Assurez vous que la pleine taille (table I-B2) est correctement configurée "
|
8954 |
"pour éviter que ces zones ne recouvrent d'autres espaces d’affichage."
|
8955 |
|
8956 |
+
#: wppa-settings-autosave.php:1821
|
8957 |
msgid "Ugly Browse Buttons"
|
8958 |
msgstr "Boutons de navigation rudimentaires"
|
8959 |
|
8960 |
+
#: wppa-settings-autosave.php:1822
|
8961 |
msgid "Enable the ugly browsing buttons."
|
8962 |
msgstr "Activer les boutons de navigation rudimentaires."
|
8963 |
|
8964 |
+
#: wppa-settings-autosave.php:1823
|
8965 |
msgid "If checked, the fullsize image is covered by two browse buttons."
|
8966 |
msgstr ""
|
8967 |
"Si coché: deux boutons de navigation seront affichés sur l'image pleine "
|
8968 |
"taille."
|
8969 |
|
8970 |
+
#: wppa-settings-autosave.php:1834
|
8971 |
msgid "Start/stop icons"
|
8972 |
msgstr "Icônes Start/Stop"
|
8973 |
|
8974 |
+
#: wppa-settings-autosave.php:1835
|
8975 |
msgid "Show start and stop icons at the center of the slide"
|
8976 |
msgstr "Montrer les icônes Démarrer et Arrêter au centre de la diapositive"
|
8977 |
|
8978 |
+
#: wppa-settings-autosave.php:1847
|
8979 |
msgid "Show custom box"
|
8980 |
msgstr "Montrer boîte personnalisée"
|
8981 |
|
8982 |
+
#: wppa-settings-autosave.php:1848
|
8983 |
msgid "Display the custom box in the slideshow"
|
8984 |
msgstr "Afficher la boîte personnalisée dans le diaporama"
|
8985 |
|
8986 |
+
#: wppa-settings-autosave.php:1849 wppa-settings-autosave.php:1860
|
8987 |
msgid ""
|
8988 |
"You can fill the custom box with any html you like. It will not be checked, "
|
8989 |
"so it is your own responsability to close tags properly."
|
8991 |
"Vous pouvez remplir la boîte personnalisée avec du code HTML. Il ne sera pas "
|
8992 |
"vérifié, c'est à vous de fermer les balises HTML correctement."
|
8993 |
|
8994 |
+
#: wppa-settings-autosave.php:1850 wppa-settings-autosave.php:1861
|
8995 |
msgid "The position of the box can be defined in Table IX-E."
|
8996 |
msgstr "La position de la boîte peut être réglée dans la table IX-E."
|
8997 |
|
8998 |
+
#: wppa-settings-autosave.php:1858
|
8999 |
msgid "Custom content"
|
9000 |
msgstr "Contenu personnalisé"
|
9001 |
|
9002 |
+
#: wppa-settings-autosave.php:1859
|
9003 |
msgid "The content (html) of the custom box."
|
9004 |
msgstr "Le contenu (HTML) de la boîte personnalisée."
|
9005 |
|
9006 |
+
#: wppa-settings-autosave.php:1868
|
9007 |
msgid "Slideshow/Number bar"
|
9008 |
msgstr "Barre menu Diaporama/Numéro"
|
9009 |
|
9010 |
+
#: wppa-settings-autosave.php:1869
|
9011 |
msgid "Display the Slideshow / Number bar."
|
9012 |
msgstr "Afficher la barre Diaporama / Numérotation."
|
9013 |
|
9014 |
+
#: wppa-settings-autosave.php:1870
|
9015 |
msgid "If checked: display the number boxes on slideshow"
|
9016 |
msgstr "Si coché: affiche les boites de numérotation dans le diaporama"
|
9017 |
|
9018 |
+
#: wppa-settings-autosave.php:1878
|
9019 |
msgid "IPTC system"
|
9020 |
msgstr "Système IPTC"
|
9021 |
|
9022 |
+
#: wppa-settings-autosave.php:1879
|
9023 |
msgid "Enable the iptc system."
|
9024 |
msgstr "Activer le système IPTC."
|
9025 |
|
9026 |
+
#: wppa-settings-autosave.php:1880
|
9027 |
msgid "Display the iptc box under the fullsize images."
|
9028 |
msgstr "Affiche la boîte IPTC sous les images pleine taille."
|
9029 |
|
9030 |
+
#: wppa-settings-autosave.php:1888
|
9031 |
msgid "IPTC open"
|
9032 |
msgstr "IPTC ouvert"
|
9033 |
|
9034 |
+
#: wppa-settings-autosave.php:1889
|
9035 |
msgid "Display the iptc box initially opened."
|
9036 |
msgstr "Affiche la boîte IPTC initialement ouverte."
|
9037 |
|
9038 |
+
#: wppa-settings-autosave.php:1890
|
9039 |
msgid "Display the iptc box under the fullsize images initially open."
|
9040 |
msgstr ""
|
9041 |
"Affiche la boîte IPTC sous les images pleine taille initialement ouvertes."
|
9042 |
|
9043 |
+
#: wppa-settings-autosave.php:1898
|
9044 |
msgid "EXIF system"
|
9045 |
msgstr "Système EXIF"
|
9046 |
|
9047 |
+
#: wppa-settings-autosave.php:1899
|
9048 |
msgid "Enable the exif system."
|
9049 |
msgstr "Activer le système EXIF."
|
9050 |
|
9051 |
+
#: wppa-settings-autosave.php:1900
|
9052 |
msgid "Display the exif box under the fullsize images."
|
9053 |
msgstr "Affiche la boîte EXIF sous les images pleine taille."
|
9054 |
|
9055 |
+
#: wppa-settings-autosave.php:1908
|
9056 |
msgid "EXIF open"
|
9057 |
msgstr "EXIF ouvert"
|
9058 |
|
9059 |
+
#: wppa-settings-autosave.php:1909
|
9060 |
msgid "Display the exif box initially opened."
|
9061 |
msgstr "Affiche la boîte EXIF initialement ouverte."
|
9062 |
|
9063 |
+
#: wppa-settings-autosave.php:1910
|
9064 |
msgid "Display the exif box under the fullsize images initially open."
|
9065 |
msgstr ""
|
9066 |
"Affiche la boîte EXIF sous les images pleine taille initialement ouvertes."
|
9067 |
|
9068 |
+
#: wppa-settings-autosave.php:1918
|
9069 |
msgid "Social media share box related visibility settings"
|
9070 |
msgstr "Réglages d’affichage de la boîte de réseaux sociaux"
|
9071 |
|
9072 |
+
#: wppa-settings-autosave.php:1920
|
9073 |
msgid "Show Share Box"
|
9074 |
msgstr "Montrer la boîte de partage"
|
9075 |
|
9076 |
+
#: wppa-settings-autosave.php:1921
|
9077 |
msgid "Display the share social media buttons box."
|
9078 |
msgstr "Afficher la boîte de boutons réseau sociaux."
|
9079 |
|
9080 |
+
#: wppa-settings-autosave.php:1930 wppa-settings-autosave.php:9541
|
9081 |
msgid "Hide when running"
|
9082 |
msgstr "Cacher lorsqu'en fonctionnement"
|
9083 |
|
9084 |
+
#: wppa-settings-autosave.php:1931
|
9085 |
msgid "Hide the SM box when slideshow runs."
|
9086 |
msgstr "Cacher la boîte de partage lorsque le diaporama tourne."
|
9087 |
|
9088 |
+
#: wppa-settings-autosave.php:1939
|
9089 |
msgid "Show Share Box Widget"
|
9090 |
msgstr "Montrer les boutons de partage: widgets"
|
9091 |
|
9092 |
+
#: wppa-settings-autosave.php:1940
|
9093 |
msgid "Display the share social media buttons box in widgets."
|
9094 |
msgstr "Afficher les boutons de partage sociaux dans les widgets."
|
9095 |
|
9096 |
+
#: wppa-settings-autosave.php:1941
|
9097 |
msgid ""
|
9098 |
"This setting applies to normal slideshows in widgets, not to the "
|
9099 |
"slideshowwidget as that is a slideonly display."
|
9101 |
"Ce réglage s'applique aux diaporamas normaux dans les widgets, pas au widget "
|
9102 |
"Slideshow car il a un affichage spécifique."
|
9103 |
|
9104 |
+
#: wppa-settings-autosave.php:1949
|
9105 |
msgid "Show Share Buttons Thumbs"
|
9106 |
msgstr "Montrer les boutons de partage: vignettes"
|
9107 |
|
9108 |
+
#: wppa-settings-autosave.php:1950
|
9109 |
msgid "Display the share social media buttons under thumbnails."
|
9110 |
msgstr "Afficher les boutons de réseaux sociaux sous les vignettes."
|
9111 |
|
9112 |
+
#: wppa-settings-autosave.php:1959
|
9113 |
msgid "Show Share Buttons Lightbox"
|
9114 |
msgstr "Montrer les boutons de partage: Lightbox"
|
9115 |
|
9116 |
+
#: wppa-settings-autosave.php:1960
|
9117 |
msgid "Display the share social media buttons on lightbox displays."
|
9118 |
msgstr "Afficher les boutons de partage sociaux dans les affichages Lightbox."
|
9119 |
|
9120 |
+
#: wppa-settings-autosave.php:1969
|
9121 |
msgid "Show Share Buttons Mphoto"
|
9122 |
msgstr "Montrer boutons de partage: Mphoto"
|
9123 |
|
9124 |
+
#: wppa-settings-autosave.php:1970
|
9125 |
msgid "Display the share social media buttons on mphoto displays."
|
9126 |
msgstr "Afficher les boutons de réseaux sociaux dans les affichages mphoto."
|
9127 |
|
9128 |
+
#: wppa-settings-autosave.php:1979
|
9129 |
msgid "Void pages share"
|
9130 |
msgstr "Void pages share"
|
9131 |
|
9132 |
+
#: wppa-settings-autosave.php:1980
|
9133 |
msgid "Do not show share on these pages"
|
9134 |
msgstr "Ne montrez pas d’action sur ces pages"
|
9135 |
|
9136 |
+
#: wppa-settings-autosave.php:1981
|
9137 |
msgid "Use this for pages that require the user is logged in"
|
9138 |
msgstr "Utilisez les pages qui nécessitent l'utilisateur est connecté"
|
9139 |
|
9140 |
+
#: wppa-settings-autosave.php:1985
|
9141 |
msgid "--- Select one or more pages ---"
|
9142 |
msgstr "---Sélectionnez une ou plusieurs pages---"
|
9143 |
|
9144 |
+
#: wppa-settings-autosave.php:1994
|
9145 |
msgid "Show QR Code"
|
9146 |
msgstr "Montrer le QR code"
|
9147 |
|
9148 |
+
#: wppa-settings-autosave.php:1995
|
9149 |
msgid "Display the QR code in the share box."
|
9150 |
msgstr "Afficher le QR code dans la boîte de partage."
|
9151 |
|
9152 |
+
#: wppa-settings-autosave.php:2003
|
9153 |
msgid "Show Twitter button"
|
9154 |
msgstr "Montrer bouton Twitter"
|
9155 |
|
9156 |
+
#: wppa-settings-autosave.php:2004
|
9157 |
msgid "Display the Twitter button in the share box."
|
9158 |
msgstr "Afficher le bouton Twitter dans la boîte de partage."
|
9159 |
|
9160 |
+
#: wppa-settings-autosave.php:2012
|
9161 |
msgid "The creator's Twitter account"
|
9162 |
msgstr "L’identifiant du compte Twitter du créateur"
|
9163 |
|
9164 |
+
#: wppa-settings-autosave.php:2013
|
9165 |
msgid "The Twitter @username a twitter card should be attributed to."
|
9166 |
msgstr "Le Twitter @UserName une carte twitter devrait être attribuée à."
|
9167 |
|
9168 |
+
#: wppa-settings-autosave.php:2014
|
9169 |
msgid ""
|
9170 |
"If you want to share the image directly - by a so called twitter card - you "
|
9171 |
"must enter your twitter account name here"
|
9173 |
"Si vous souhaitez partager l’image directement - par une carte dite de "
|
9174 |
"twitter - vous devez entrer votre nom de compte twitter ici"
|
9175 |
|
9176 |
+
#: wppa-settings-autosave.php:2021
|
9177 |
msgid "Show Google+ button"
|
9178 |
msgstr "Montrer bouton Google+"
|
9179 |
|
9180 |
+
#: wppa-settings-autosave.php:2022
|
9181 |
msgid "Display the Google+ button in the share box."
|
9182 |
msgstr "Afficher le bouton Google+ dans la boîte de partage."
|
9183 |
|
9184 |
+
#: wppa-settings-autosave.php:2030
|
9185 |
msgid "Show Pinterest button"
|
9186 |
msgstr "Montrer bouton Pinterest"
|
9187 |
|
9188 |
+
#: wppa-settings-autosave.php:2031
|
9189 |
msgid "Display the Pintrest button in the share box."
|
9190 |
msgstr "Afficher le bouton Pinterest dans la boîte de partage."
|
9191 |
|
9192 |
+
#: wppa-settings-autosave.php:2039
|
9193 |
msgid "Show LinkedIn button"
|
9194 |
msgstr "Montrer bouton LinkedIn"
|
9195 |
|
9196 |
+
#: wppa-settings-autosave.php:2040
|
9197 |
msgid "Display the LinkedIn button in the share box."
|
9198 |
msgstr "Afficher le bouton LinkedIn dans la boîte de partage."
|
9199 |
|
9200 |
+
#: wppa-settings-autosave.php:2048
|
9201 |
msgid "Show Facebook share button"
|
9202 |
msgstr "Montrer bouton Facebook share"
|
9203 |
|
9204 |
+
#: wppa-settings-autosave.php:2049 wppa-settings-autosave.php:2058
|
9205 |
msgid "Display the Facebook button in the share box."
|
9206 |
msgstr "Afficher le bouton Facebook dans la boîte de partage."
|
9207 |
|
9208 |
+
#: wppa-settings-autosave.php:2057
|
9209 |
msgid "Show Facebook like button"
|
9210 |
msgstr "Montrer bouton Facebook like"
|
9211 |
|
9212 |
+
#: wppa-settings-autosave.php:2066
|
9213 |
msgid "Display type"
|
9214 |
msgstr "Type d’affichage"
|
9215 |
|
9216 |
+
#: wppa-settings-autosave.php:2067
|
9217 |
msgid "Select the Facebook button display type."
|
9218 |
msgstr "Choisir le type d’affichage du bouton Facebook."
|
9219 |
|
9220 |
+
#: wppa-settings-autosave.php:2070
|
9221 |
msgid "Button with counter"
|
9222 |
msgstr "Bouton avec compteur"
|
9223 |
|
9224 |
+
#: wppa-settings-autosave.php:2070
|
9225 |
msgid "Box with counter"
|
9226 |
msgstr "Boîte avec compteur"
|
9227 |
|
9228 |
+
#: wppa-settings-autosave.php:2077
|
9229 |
msgid "Show Facebook comment box"
|
9230 |
msgstr "Montrer la boîte de commentaire Facebook"
|
9231 |
|
9232 |
+
#: wppa-settings-autosave.php:2078
|
9233 |
msgid "Display the Facebook comment dialog box in the share box."
|
9234 |
msgstr ""
|
9235 |
"Afficher la boîte de saisie de commentaire Facebook dans la boîte de partage."
|
9236 |
|
9237 |
+
#: wppa-settings-autosave.php:2086
|
9238 |
msgid "Facebook User Id"
|
9239 |
msgstr "ID utilisateur Facebook"
|
9240 |
|
9241 |
+
#: wppa-settings-autosave.php:2087
|
9242 |
msgid "Enter your facebook user id to be able to moderate comments and sends"
|
9243 |
msgstr ""
|
9244 |
"Entrez votre ID d'utilisateur Facebook pour pouvoir modérer les commentaires "
|
9245 |
"et envois"
|
9246 |
|
9247 |
+
#: wppa-settings-autosave.php:2095
|
9248 |
msgid "Facebook App Id"
|
9249 |
msgstr "ID d'application Facebook"
|
9250 |
|
9251 |
+
#: wppa-settings-autosave.php:2096
|
9252 |
msgid "Enter your facebook app id to be able to moderate comments and sends"
|
9253 |
msgstr ""
|
9254 |
"Entrer votre ID d'application Facebook pour pouvoir modérer les commentaires "
|
9255 |
"et envois"
|
9256 |
|
9257 |
+
#: wppa-settings-autosave.php:2104
|
9258 |
msgid "Facebook js SDK"
|
9259 |
msgstr "SDK Facebook js"
|
9260 |
|
9261 |
+
#: wppa-settings-autosave.php:2105
|
9262 |
msgid "Load Facebook js SDK"
|
9263 |
msgstr "Charger le SDK Facebook js"
|
9264 |
|
9265 |
+
#: wppa-settings-autosave.php:2106
|
9266 |
msgid ""
|
9267 |
"Uncheck this box only when there is a conflict with an other plugin that "
|
9268 |
"also loads the Facebook js SDK."
|
9270 |
"Décochez cette case seulement quand il y a un conflit avec un autre plugin "
|
9271 |
"(greffon) qui charge le SDK Facebook js."
|
9272 |
|
9273 |
+
#: wppa-settings-autosave.php:2113
|
9274 |
msgid "Share single image"
|
9275 |
msgstr "Partager image"
|
9276 |
|
9277 |
+
#: wppa-settings-autosave.php:2114
|
9278 |
msgid "Share a link to a single image, not the slideshow."
|
9279 |
msgstr "Partager un lien vers une image, pas vers le diaporama."
|
9280 |
|
9281 |
+
#: wppa-settings-autosave.php:2115
|
9282 |
msgid ""
|
9283 |
"The sharelink points to a page with a single image rather than to the page "
|
9284 |
"with the photo in the slideshow."
|
9286 |
"Le lien de partage pointe vers une page avec une image seule plutôt que vers "
|
9287 |
"la page avec la photo dans le diaporama."
|
9288 |
|
9289 |
+
#: wppa-settings-autosave.php:2123
|
9290 |
msgid "Thumbnail display related visibility settings"
|
9291 |
msgstr "Réglages pour l'affichage des vignettes"
|
9292 |
|
9293 |
+
#: wppa-settings-autosave.php:2125
|
9294 |
msgid "Thumbnail name"
|
9295 |
msgstr "Vignettes, nom"
|
9296 |
|
9297 |
+
#: wppa-settings-autosave.php:2126
|
9298 |
msgid "Display Thumbnail name."
|
9299 |
msgstr "Afficher le nom de la vignette."
|
9300 |
|
9301 |
+
#: wppa-settings-autosave.php:2127
|
9302 |
msgid "Display photo name under thumbnail images."
|
9303 |
msgstr "Afficher le nom de la photo sous les vignettes."
|
9304 |
|
9305 |
+
#: wppa-settings-autosave.php:2143
|
9306 |
msgid "Thumbnail desc"
|
9307 |
msgstr "Vignettes, description"
|
9308 |
|
9309 |
+
#: wppa-settings-autosave.php:2144
|
9310 |
msgid "Display Thumbnail description."
|
9311 |
msgstr "Affichage vignette, description."
|
9312 |
|
9313 |
+
#: wppa-settings-autosave.php:2145
|
9314 |
msgid "Display description of the photo under thumbnail images."
|
9315 |
msgstr "Afficher la description de la photo sous les vignettes."
|
9316 |
|
9317 |
+
#: wppa-settings-autosave.php:2152
|
9318 |
msgid "Thumbnail rating"
|
9319 |
msgstr "Vignettes, note"
|
9320 |
|
9321 |
+
#: wppa-settings-autosave.php:2153
|
9322 |
msgid "Display Thumbnail Rating."
|
9323 |
msgstr "Affichage vignette, note."
|
9324 |
|
9325 |
+
#: wppa-settings-autosave.php:2154
|
9326 |
msgid "Display the rating of the photo under the thumbnail image."
|
9327 |
msgstr "Afficher la note de la photo sous la vignette."
|
9328 |
|
9329 |
+
#: wppa-settings-autosave.php:2161
|
9330 |
msgid "Thumbnail comcount"
|
9331 |
msgstr "Vignettes, compteur commentaires"
|
9332 |
|
9333 |
+
#: wppa-settings-autosave.php:2162
|
9334 |
msgid "Display Thumbnail Comment count."
|
9335 |
msgstr "Affichage vignette, compteur commentaires."
|
9336 |
|
9337 |
+
#: wppa-settings-autosave.php:2163
|
9338 |
msgid "Display the number of comments to the photo under the thumbnail image."
|
9339 |
msgstr "Afficher le nombre de commentaires de la photo sous la vignette."
|
9340 |
|
9341 |
+
#: wppa-settings-autosave.php:2170
|
9342 |
msgid "Thumbnail viewcount"
|
9343 |
msgstr "Vignettes, compteur de vues"
|
9344 |
|
9345 |
+
#: wppa-settings-autosave.php:2171
|
9346 |
msgid "Display the number of views."
|
9347 |
msgstr "Affichage vignette, compteur de vues."
|
9348 |
|
9349 |
+
#: wppa-settings-autosave.php:2172
|
9350 |
msgid "Display the number of views under the thumbnail image."
|
9351 |
msgstr "Afficher le nombre de vues sous la vignette."
|
9352 |
|
9353 |
+
#: wppa-settings-autosave.php:2179
|
9354 |
msgid "Thumbnail virt album"
|
9355 |
msgstr "Vignettes, album virtuel"
|
9356 |
|
9357 |
+
#: wppa-settings-autosave.php:2180
|
9358 |
msgid "Display the real album name on virtual album display."
|
9359 |
msgstr "Affiche le nom d'album réel dans l'album virtuel."
|
9360 |
|
9361 |
+
#: wppa-settings-autosave.php:2181
|
9362 |
msgid ""
|
9363 |
"Display the album name of the photo in parenthesis under the thumbnail on "
|
9364 |
"virtual album displays like search results etc."
|
9366 |
"Afficher le nom de l'album (entre parenthèses) auquel appartient la photo "
|
9367 |
"sous la vignette dans l'album virtuel (comme résultats de recherches etc.)"
|
9368 |
|
9369 |
+
#: wppa-settings-autosave.php:2188
|
9370 |
msgid "Thumbnail video"
|
9371 |
msgstr "Vignettes, vidéo"
|
9372 |
|
9373 |
+
#: wppa-settings-autosave.php:2189
|
9374 |
msgid "Show video controls on thumbnail displays."
|
9375 |
msgstr "Montrer les contrôles vidéo dans les affichages vignettes."
|
9376 |
|
9377 |
+
#: wppa-settings-autosave.php:2190
|
9378 |
msgid ""
|
9379 |
"Works on default thumbnail type only. You can play the video only when the "
|
9380 |
"link is set to no link at all."
|
9382 |
"Marche seulement pour les vignettes par défaut. Vous pouvez lancer la vidéo "
|
9383 |
"seulement lorsque le lien est réglé à pas de lien."
|
9384 |
|
9385 |
+
#: wppa-settings-autosave.php:2197
|
9386 |
msgid "Thumbnail audio"
|
9387 |
msgstr "Vignettes, audio"
|
9388 |
|
9389 |
+
#: wppa-settings-autosave.php:2198
|
9390 |
msgid "Show audio controls on thumbnail displays."
|
9391 |
msgstr "Montrer les contrôles audio dans les affichages vignettes."
|
9392 |
|
9393 |
+
#: wppa-settings-autosave.php:2206
|
9394 |
msgid "Popup name"
|
9395 |
msgstr "Popups, nom"
|
9396 |
|
9397 |
+
#: wppa-settings-autosave.php:2207
|
9398 |
msgid "Display Thumbnail name on popup."
|
9399 |
msgstr "Affiche le nom de la vignette dans le popup."
|
9400 |
|
9401 |
+
#: wppa-settings-autosave.php:2208
|
9402 |
msgid "Display photo name under thumbnail images on the popup."
|
9403 |
msgstr "Afficher le nom de la photo sous les vignettes dans le popup."
|
9404 |
|
9405 |
+
#: wppa-settings-autosave.php:2215
|
9406 |
msgid "Popup (owner)"
|
9407 |
msgstr "Popup (propriétaire)"
|
9408 |
|
9409 |
+
#: wppa-settings-autosave.php:2216
|
9410 |
msgid "Display owner on popup."
|
9411 |
msgstr "Popup, affichage du nom du propriétaire."
|
9412 |
|
9413 |
+
#: wppa-settings-autosave.php:2217
|
9414 |
msgid "Display photo owner under thumbnail images on the popup."
|
9415 |
msgstr "Afficher le propriétaire de la photo sous les vignettes dans le popup."
|
9416 |
|
9417 |
+
#: wppa-settings-autosave.php:2224
|
9418 |
msgid "Popup desc"
|
9419 |
msgstr "Popups, description"
|
9420 |
|
9421 |
+
#: wppa-settings-autosave.php:2225
|
9422 |
msgid "Display Thumbnail description on popup."
|
9423 |
msgstr "Popup, affichage de la description de la photo."
|
9424 |
|
9425 |
+
#: wppa-settings-autosave.php:2226
|
9426 |
msgid "Display description of the photo under thumbnail images on the popup."
|
9427 |
msgstr "Afficher la description de la photo sous les vignettes dans le popup."
|
9428 |
|
9429 |
+
#: wppa-settings-autosave.php:2233
|
9430 |
msgid "Popup desc no links"
|
9431 |
msgstr "Popups, pas de lien dans la description"
|
9432 |
|
9433 |
+
#: wppa-settings-autosave.php:2234
|
9434 |
msgid "Strip html anchor tags from descriptions on popups"
|
9435 |
msgstr "Enlève "
|
9436 |
|
9437 |
+
#: wppa-settings-autosave.php:2235
|
9438 |
msgid ""
|
9439 |
"Use this option to prevent the display of links that cannot be activated."
|
9440 |
msgstr ""
|
9441 |
"Utiliser ce réglage pour éviter l'affichage de liens qui ne peuvent être "
|
9442 |
"utilisés."
|
9443 |
|
9444 |
+
#: wppa-settings-autosave.php:2242
|
9445 |
msgid "Popup rating"
|
9446 |
msgstr "Popups, note"
|
9447 |
|
9448 |
+
#: wppa-settings-autosave.php:2243
|
9449 |
msgid "Display Thumbnail Rating on popup."
|
9450 |
msgstr "Afficher la note de la vignette sur le popup."
|
9451 |
|
9452 |
+
#: wppa-settings-autosave.php:2244
|
9453 |
msgid "Display the rating of the photo under the thumbnail image on the popup."
|
9454 |
msgstr "Afficher la note de la photo sous la vignette sur le popup."
|
9455 |
|
9456 |
+
#: wppa-settings-autosave.php:2251
|
9457 |
msgid "Popup comcount"
|
9458 |
msgstr "Popups, ComCount"
|
9459 |
|
9460 |
+
#: wppa-settings-autosave.php:2252
|
9461 |
msgid "Display Thumbnail Comment count on popup."
|
9462 |
msgstr "Afficher le nombre de commentaires de la vignette sur le popup."
|
9463 |
|
9464 |
+
#: wppa-settings-autosave.php:2253
|
9465 |
msgid ""
|
9466 |
"Display the number of comments of the photo under the thumbnail image on the "
|
9467 |
"popup."
|
9468 |
msgstr ""
|
9469 |
"Afficher le nombre de commentaires de la photo sous la vignette sur le popup."
|
9470 |
|
9471 |
+
#: wppa-settings-autosave.php:2260
|
9472 |
msgid "Show rating count"
|
9473 |
msgstr "Montrer le nombre de notes"
|
9474 |
|
9475 |
+
#: wppa-settings-autosave.php:2261
|
9476 |
msgid "Display the number of votes along with average ratings."
|
9477 |
msgstr "Afficher le nombre de votes avec les notes moyennes."
|
9478 |
|
9479 |
+
#: wppa-settings-autosave.php:2262
|
9480 |
msgid ""
|
9481 |
"If checked, the number of votes is displayed along with average rating "
|
9482 |
"displays on thumbnail and popup displays."
|
9484 |
"Si coché, le nombre de votes est affiché avec la note moyenne sur la "
|
9485 |
"vignette et le popup."
|
9486 |
|
9487 |
+
#: wppa-settings-autosave.php:2269
|
9488 |
msgid "Show name on thumb area"
|
9489 |
msgstr "Montrer le nom sur la zone vignette"
|
9490 |
|
9491 |
+
#: wppa-settings-autosave.php:2270
|
9492 |
msgid "Select if and where to display the album name on the thumbnail display."
|
9493 |
msgstr ""
|
9494 |
"Choisir si le nom de l'album est affiché sur la vignette ainsi que sa "
|
9495 |
"position."
|
9496 |
|
9497 |
+
#: wppa-settings-autosave.php:2273 wppa-settings-autosave.php:2284
|
9498 |
+
#: wppa-settings-autosave.php:2313 wppa-settings-autosave.php:4576
|
9499 |
msgid "None"
|
9500 |
msgstr "Aucun"
|
9501 |
|
9502 |
+
#: wppa-settings-autosave.php:2273 wppa-settings-autosave.php:2284
|
9503 |
+
#: wppa-settings-autosave.php:2313 wppa-settings-autosave.php:3644
|
9504 |
msgid "At the top"
|
9505 |
msgstr "En haut"
|
9506 |
|
9507 |
+
#: wppa-settings-autosave.php:2273 wppa-settings-autosave.php:2284
|
9508 |
+
#: wppa-settings-autosave.php:2313 wppa-settings-autosave.php:3644
|
9509 |
msgid "At the bottom"
|
9510 |
msgstr "En bas"
|
9511 |
|
9512 |
+
#: wppa-settings-autosave.php:2280
|
9513 |
msgid "Show desc on thumb area"
|
9514 |
msgstr "Montrer la description sur la vignette"
|
9515 |
|
9516 |
+
#: wppa-settings-autosave.php:2281
|
9517 |
msgid ""
|
9518 |
"Select if and where to display the album description on the thumbnail "
|
9519 |
"display."
|
9521 |
"Choisir si la description de l'album est affiché sur la vignette ainsi que "
|
9522 |
"sa position."
|
9523 |
|
9524 |
+
#: wppa-settings-autosave.php:2291
|
9525 |
msgid "Show Edit/Delete links"
|
9526 |
msgstr "Montrer liens Modifier/Effacer"
|
9527 |
|
9528 |
+
#: wppa-settings-autosave.php:2292
|
9529 |
msgid "Show these links under default thumbnails for owner and admin."
|
9530 |
msgstr ""
|
9531 |
"Montrer ces liens sous la vignette par défaut pour propriétaire et "
|
9532 |
"administrateur."
|
9533 |
|
9534 |
+
#: wppa-settings-autosave.php:2300
|
9535 |
msgid "Show empty thumbnail area"
|
9536 |
msgstr "Montrer zone de vignette vide"
|
9537 |
|
9538 |
+
#: wppa-settings-autosave.php:2301
|
9539 |
msgid "Display thumbnail areas with upload link only for empty albums."
|
9540 |
msgstr ""
|
9541 |
"Afficher les zones de vignette avec le lien de chargement seulement pour les "
|
9542 |
"albums vides."
|
9543 |
|
9544 |
+
#: wppa-settings-autosave.php:2309
|
9545 |
msgid "Upload/create link on thumbnail area"
|
9546 |
msgstr "Télécharger/créer un lien sur la zone de vignette"
|
9547 |
|
9548 |
+
#: wppa-settings-autosave.php:2310
|
9549 |
msgid "Select the location of the upload and crete links."
|
9550 |
msgstr "Sélectionnez l’emplacement des liens upload et Creer."
|
9551 |
|
9552 |
+
#: wppa-settings-autosave.php:2321
|
9553 |
msgid "Album cover related visibility settings"
|
9554 |
msgstr "Réglages pour l'affichage des couvertures d'album"
|
9555 |
|
9556 |
+
#: wppa-settings-autosave.php:2323
|
9557 |
msgid "Covertext"
|
9558 |
msgstr "Texte de couverture"
|
9559 |
|
9560 |
+
#: wppa-settings-autosave.php:2324
|
9561 |
msgid "Show the text on the album cover."
|
9562 |
msgstr "Montrer le texte sur la couverture de l'album."
|
9563 |
|
9564 |
+
#: wppa-settings-autosave.php:2325
|
9565 |
msgid "Display the album decription on the album cover"
|
9566 |
msgstr "Afficher la description de l'album sur la couverture"
|
9567 |
|
9568 |
+
#: wppa-settings-autosave.php:2333
|
9569 |
msgid "Enable the slideshow."
|
9570 |
msgstr "Activer le diaporama."
|
9571 |
|
9572 |
+
#: wppa-settings-autosave.php:2334
|
9573 |
msgid ""
|
9574 |
"If you do not want slideshows: uncheck this box. Browsing full size images "
|
9575 |
"will remain possible."
|
9577 |
"Si vous ne voulez pas de diaporamas: décochez cette case. Naviguer dans les "
|
9578 |
"images pleine taille sera toujours possible."
|
9579 |
|
9580 |
+
#: wppa-settings-autosave.php:2341
|
9581 |
msgid "Slideshow/Browse"
|
9582 |
msgstr "Diaporama/Naviguer"
|
9583 |
|
9584 |
+
#: wppa-settings-autosave.php:2342
|
9585 |
msgid "Display the Slideshow / Browse photos link on album covers"
|
9586 |
msgstr ""
|
9587 |
"Afficher le lien photo Diaporama / Naviguer sur les couvertures d'album"
|
9588 |
|
9589 |
+
#: wppa-settings-autosave.php:2343
|
9590 |
msgid ""
|
9591 |
"This setting causes the Slideshow link to be displayed on the album cover."
|
9592 |
msgstr ""
|
9593 |
"Ce réglage permet l’affichage du lien du diaporama sur la couverture de "
|
9594 |
"l'album."
|
9595 |
|
9596 |
+
#: wppa-settings-autosave.php:2344
|
9597 |
msgid ""
|
9598 |
"If slideshows are disabled in item 2 in this table, you will see a browse "
|
9599 |
"link to fullsize images."
|
9601 |
"Si les diaporamas sont désactivés dans l'item 2 de cette table, vous verrez "
|
9602 |
"un lien vers les images pleine taille."
|
9603 |
|
9604 |
+
#: wppa-settings-autosave.php:2345
|
9605 |
msgid "If you do not want the browse link either, uncheck this item."
|
9606 |
msgstr ""
|
9607 |
"Si vous ne voulez pas non plus du lien de navigation, décochez cet item."
|
9608 |
|
9609 |
+
#: wppa-settings-autosave.php:2352
|
9610 |
msgid "View ..."
|
9611 |
msgstr "Voir..."
|
9612 |
|
9613 |
+
#: wppa-settings-autosave.php:2353
|
9614 |
msgid "Display the View xx albums and yy photos link on album covers"
|
9615 |
msgstr ""
|
9616 |
"Afficher le lien Voir xx albums et yy photos sur les couvertures d'album"
|
9617 |
|
9618 |
+
#: wppa-settings-autosave.php:2361
|
9619 |
msgid "Treecount"
|
9620 |
msgstr "Treecount"
|
9621 |
|
9622 |
+
#: wppa-settings-autosave.php:2362
|
9623 |
msgid "Disaplay the total number of (sub)albums and photos in subalbums"
|
9624 |
msgstr ""
|
9625 |
"Afficher le nombre total d'albums fils et des photos qui y sont contenues"
|
9626 |
|
9627 |
+
#: wppa-settings-autosave.php:2363
|
9628 |
msgid ""
|
9629 |
"Displays the total number of sub albums and photos in the entire album tree "
|
9630 |
"in parenthesis if the numbers differ from the direct content of the album."
|
9632 |
"Affiche le nombre total d'albums fils et de photos dans l'arborescence "
|
9633 |
"entière entre parenthèses si le nombre diffère du contenu direct de l'album."
|
9634 |
|
9635 |
+
#: wppa-settings-autosave.php:2365
|
9636 |
msgid "detailed"
|
9637 |
msgstr "détaillé"
|
9638 |
|
9639 |
+
#: wppa-settings-autosave.php:2365
|
9640 |
msgid "totals only"
|
9641 |
msgstr "totaux seulement"
|
9642 |
|
9643 |
+
#: wppa-settings-autosave.php:2372
|
9644 |
msgid "Show categories"
|
9645 |
msgstr "Montrer catégories"
|
9646 |
|
9647 |
+
#: wppa-settings-autosave.php:2373
|
9648 |
msgid "Display the album categories on the covers."
|
9649 |
msgstr "Afficher les catégories d'album sur les couvertures."
|
9650 |
|
9651 |
+
#: wppa-settings-autosave.php:2381
|
9652 |
msgid "Skip empty albums"
|
9653 |
msgstr "Ignorer les albums vides"
|
9654 |
|
9655 |
+
#: wppa-settings-autosave.php:2382
|
9656 |
msgid "Do not show empty albums, except for admin and owner."
|
9657 |
msgstr ""
|
9658 |
"Ne pas montrer les albums vides, sauf pour administrateur et propriétaire."
|
9659 |
|
9660 |
+
#: wppa-settings-autosave.php:2390
|
9661 |
msgid "Count on title"
|
9662 |
msgstr "Compte sur le titre"
|
9663 |
|
9664 |
+
#: wppa-settings-autosave.php:2391
|
9665 |
msgid "Show photocount along with album title. "
|
9666 |
msgstr "Afficher nombre des photos avec titre de l'album."
|
9667 |
|
9668 |
+
#: wppa-settings-autosave.php:2394 wppa-settings-autosave.php:2405
|
9669 |
msgid "top album only"
|
9670 |
msgstr "top album seulement"
|
9671 |
|
9672 |
+
#: wppa-settings-autosave.php:2394 wppa-settings-autosave.php:2405
|
9673 |
msgid "total tree"
|
9674 |
msgstr "arbre totale"
|
9675 |
|
9676 |
+
#: wppa-settings-autosave.php:2401
|
9677 |
msgid "Viewcount on cover"
|
9678 |
msgstr "Compteur vues sur couverture"
|
9679 |
|
9680 |
+
#: wppa-settings-autosave.php:2402
|
9681 |
msgid "Show total photo viewcount on album covers."
|
9682 |
msgstr "Afficher nombre total de vues photo sur les pochettes d'albums."
|
9683 |
|
9684 |
+
#: wppa-settings-autosave.php:2413
|
9685 |
msgid "Widget related visibility settings"
|
9686 |
msgstr "Réglages pour l'affichage des widgets"
|
9687 |
|
9688 |
+
#: wppa-settings-autosave.php:2415
|
9689 |
msgid "Big Browse Buttons in widget"
|
9690 |
msgstr "Gros boutons de navigation dans le widget"
|
9691 |
|
9692 |
+
#: wppa-settings-autosave.php:2416
|
9693 |
msgid "Enable invisible browsing buttons in widget slideshows."
|
9694 |
msgstr ""
|
9695 |
"Activer les boutons de navigation invisibles dans les diaporamas de widget."
|
9696 |
|
9697 |
+
#: wppa-settings-autosave.php:2425
|
9698 |
msgid "Ugly Browse Buttons in widget"
|
9699 |
msgstr "Boutons de navigation rudimentaires dans le widget"
|
9700 |
|
9701 |
+
#: wppa-settings-autosave.php:2426
|
9702 |
msgid "Enable ugly browsing buttons in widget slideshows."
|
9703 |
msgstr ""
|
9704 |
"Activer les boutons de navigation rudimentaires dans les diaporamas de "
|
9705 |
"widget."
|
9706 |
|
9707 |
+
#: wppa-settings-autosave.php:2427
|
9708 |
msgid "If checked, the fullsize image is covered by browse buttons."
|
9709 |
msgstr ""
|
9710 |
"Si coché, l'image pleine taille est recouverte par le boutons de navigation."
|
9711 |
|
9712 |
+
#: wppa-settings-autosave.php:2435
|
9713 |
msgid "Album widget tooltip"
|
9714 |
msgstr "Tooltip dans le widget album"
|
9715 |
|
9716 |
+
#: wppa-settings-autosave.php:2436
|
9717 |
msgid "Show the album description on hoovering thumbnail in album widget"
|
9718 |
msgstr ""
|
9719 |
"Montrer la description de l'album en survolant la vignette dans le widget "
|
9720 |
"album"
|
9721 |
|
9722 |
+
#: wppa-settings-autosave.php:2444 wppa-settings-autosave.php:4707
|
9723 |
msgid ""
|
9724 |
"Lightbox related settings. These settings have effect only when Table IX-J3 "
|
9725 |
"is set to wppa"
|
9727 |
"Réglages pour Lightbox. Ces réglages n'ont d'effet que si table IX-J3 est "
|
9728 |
"réglé à WPPA"
|
9729 |
|
9730 |
+
#: wppa-settings-autosave.php:2457
|
9731 |
msgid "Overlay theme color"
|
9732 |
msgstr "Couleur de l'overlay du thème"
|
9733 |
|
9734 |
+
#: wppa-settings-autosave.php:2458
|
9735 |
msgid "The color of the image border and text background."
|
9736 |
msgstr "La couleur de la bordure de l'image et de l'arrière plan du texte."
|
9737 |
|
9738 |
+
#: wppa-settings-autosave.php:2461 wppa-settings-autosave.php:2472
|
9739 |
msgid "Black"
|
9740 |
msgstr "Noir"
|
9741 |
|
9742 |
+
#: wppa-settings-autosave.php:2461 wppa-settings-autosave.php:2472
|
9743 |
msgid "White"
|
9744 |
msgstr "Blanc"
|
9745 |
|
9746 |
+
#: wppa-settings-autosave.php:2468
|
9747 |
msgid "Overlay background color"
|
9748 |
msgstr "Couleur d'arrière plan de l'overlay"
|
9749 |
|
9750 |
+
#: wppa-settings-autosave.php:2469
|
9751 |
msgid "The color of the outer background."
|
9752 |
msgstr "La couleur du dernier arrière plan."
|
9753 |
|
9754 |
+
#: wppa-settings-autosave.php:2479
|
9755 |
msgid "Overlay slide name"
|
9756 |
msgstr "Nom de la diapositive d'overlay"
|
9757 |
|
9758 |
+
#: wppa-settings-autosave.php:2480
|
9759 |
msgid "Show name if from slide."
|
9760 |
msgstr "Montrer le nom si celui venant de la diapositive."
|
9761 |
|
9762 |
+
#: wppa-settings-autosave.php:2481
|
9763 |
msgid ""
|
9764 |
"Shows the photos name on a lightbox display when initiated from a slide."
|
9765 |
msgstr ""
|
9766 |
"Montrer le nom des photos dans un affichage Lightbox si lancé à partir d'une "
|
9767 |
"diapositive."
|
9768 |
|
9769 |
+
#: wppa-settings-autosave.php:2482 wppa-settings-autosave.php:2492
|
9770 |
msgid ""
|
9771 |
"This setting also applies to film thumbnails if Table VI-11 is set to "
|
9772 |
"lightbox overlay."
|
9774 |
"Ce réglage s'applique aussi aux vignettes de film si table VI-11 est réglé à "
|
9775 |
"Lightbox overlay."
|
9776 |
|
9777 |
+
#: wppa-settings-autosave.php:2489
|
9778 |
msgid "Overlay slide desc"
|
9779 |
msgstr "Description diapositive overlay"
|
9780 |
|
9781 |
+
#: wppa-settings-autosave.php:2490
|
9782 |
msgid "Show description if from slide."
|
9783 |
msgstr "Montrer la description si celle venant de la diapositive."
|
9784 |
|
9785 |
+
#: wppa-settings-autosave.php:2491
|
9786 |
msgid ""
|
9787 |
"Shows the photos description on a lightbox display when initiated from a "
|
9788 |
"slide."
|
9790 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9791 |
"depuis une diapositive."
|
9792 |
|
9793 |
+
#: wppa-settings-autosave.php:2499
|
9794 |
msgid "Overlay thumb name"
|
9795 |
msgstr "Nom vignette overlay"
|
9796 |
|
9797 |
+
#: wppa-settings-autosave.php:2500
|
9798 |
msgid "Show the photos name if from thumb."
|
9799 |
msgstr "Montrer le nom des photos si celle venant de la vignette."
|
9800 |
|
9801 |
+
#: wppa-settings-autosave.php:2501
|
9802 |
msgid ""
|
9803 |
"Shows the name on a lightbox display when initiated from a standard "
|
9804 |
"thumbnail or a widget thumbnail."
|
9806 |
"Montre le nom dans un affichage Lightbox quand lancé depuis une vignette "
|
9807 |
"standard ou widget Thumbnail."
|
9808 |
|
9809 |
+
#: wppa-settings-autosave.php:2502 wppa-settings-autosave.php:2512
|
9810 |
msgid ""
|
9811 |
"This setting applies to standard thumbnails, thumbnail-, comment-, topten- "
|
9812 |
"and lasten-widget."
|
9814 |
"Ce réglage s'applique aux vignettes standard, widget-Thumbnail, -Comment, -"
|
9815 |
"TopTen et -LastTen."
|
9816 |
|
9817 |
+
#: wppa-settings-autosave.php:2509
|
9818 |
msgid "Overlay thumb desc"
|
9819 |
msgstr "Description vignette overlay"
|
9820 |
|
9821 |
+
#: wppa-settings-autosave.php:2510
|
9822 |
msgid "Show description if from thumb."
|
9823 |
msgstr "Montrer la description si celle venant de la vignette."
|
9824 |
|
9825 |
+
#: wppa-settings-autosave.php:2511
|
9826 |
msgid ""
|
9827 |
"Shows the photos description on a lightbox display when initiated from a "
|
9828 |
"standard thumbnail or a widget thumbnail."
|
9830 |
"Montre la description des photos dans un affichage Lightbox quand lancé à "
|
9831 |
"partir d'une vignette standard ou d'un widget Thumbnail."
|
9832 |
|
9833 |
+
#: wppa-settings-autosave.php:2519
|
9834 |
msgid "Overlay potd name"
|
9835 |
msgstr "Nom PhotoOfTheDay overlay"
|
9836 |
|
9837 |
+
#: wppa-settings-autosave.php:2520
|
9838 |
msgid "Show the photos name if from photo of the day."
|
9839 |
msgstr "Montrer le nom des photos si celle venant de PhotoOfTheDay."
|
9840 |
|
9841 |
+
#: wppa-settings-autosave.php:2521
|
9842 |
msgid ""
|
9843 |
"Shows the name on a lightbox display when initiated from the photo of the "
|
9844 |
"day."
|
9845 |
msgstr ""
|
9846 |
"Montre le nom sur un affichage Lightbox quand lancé depuis PhotoOfTheDay."
|
9847 |
|
9848 |
+
#: wppa-settings-autosave.php:2528
|
9849 |
msgid "Overlay potd desc"
|
9850 |
msgstr "Description PhotoOfTheDay overlay"
|
9851 |
|
9852 |
+
#: wppa-settings-autosave.php:2529
|
9853 |
msgid "Show description if from from photo of the day."
|
9854 |
msgstr "Montrer description si celle venant de PhotoOfTheDay."
|
9855 |
|
9856 |
+
#: wppa-settings-autosave.php:2530
|
9857 |
msgid ""
|
9858 |
"Shows the photos description on a lightbox display when initiated from the "
|
9859 |
"photo of the day."
|
9861 |
"Montre la description des photos sur un affichage Lightbox quand lancé "
|
9862 |
"depuis PhotoOfTheDay."
|
9863 |
|
9864 |
+
#: wppa-settings-autosave.php:2537
|
9865 |
msgid "Overlay sphoto name"
|
9866 |
msgstr "Nom single photo overlay"
|
9867 |
|
9868 |
+
#: wppa-settings-autosave.php:2538
|
9869 |
msgid "Show the photos name if from a single photo."
|
9870 |
msgstr "Montrer le nom des photos si celui venant d'une photo unique."
|
9871 |
|
9872 |
+
#: wppa-settings-autosave.php:2539
|
9873 |
msgid ""
|
9874 |
"Shows the name on a lightbox display when initiated from a single photo."
|
9875 |
msgstr ""
|
9876 |
"Montre le nom dans un affichage Lightbox quand lancé depuis une photo unique."
|
9877 |
|
9878 |
+
#: wppa-settings-autosave.php:2546
|
9879 |
msgid "Overlay sphoto desc"
|
9880 |
msgstr "Description single photo overlay"
|
9881 |
|
9882 |
+
#: wppa-settings-autosave.php:2547
|
9883 |
msgid "Show description if from from a single photo."
|
9884 |
msgstr "Montrer la description si celle venant d'une photo unique."
|
9885 |
|
9886 |
+
#: wppa-settings-autosave.php:2548
|
9887 |
msgid ""
|
9888 |
"Shows the photos description on a lightbox display when initiated from a "
|
9889 |
"single photo."
|
9891 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9892 |
"depuis une photo unique."
|
9893 |
|
9894 |
+
#: wppa-settings-autosave.php:2555
|
9895 |
msgid "Overlay mphoto name"
|
9896 |
msgstr "Nom media photo overlay"
|
9897 |
|
9898 |
+
#: wppa-settings-autosave.php:2556
|
9899 |
msgid "Show the photos name if from a single media style photo."
|
9900 |
msgstr ""
|
9901 |
"Montrer le nom des photos si celui venant d'une photo single media style."
|
9902 |
|
9903 |
+
#: wppa-settings-autosave.php:2557
|
9904 |
msgid ""
|
9905 |
"Shows the name on a lightbox display when initiated from a single media "
|
9906 |
"style photo."
|
9908 |
"Montre le nom de la photo dans un afficahge Lightbox quand lancé depuis une "
|
9909 |
"photo single media style."
|
9910 |
|
9911 |
+
#: wppa-settings-autosave.php:2564
|
9912 |
msgid "Overlay mphoto desc"
|
9913 |
msgstr "Description media photo overlay"
|
9914 |
|
9915 |
+
#: wppa-settings-autosave.php:2565
|
9916 |
msgid "Show description if from from a media style photo."
|
9917 |
msgstr "Montrer la description si celle venant d'une photo single media style."
|
9918 |
|
9919 |
+
#: wppa-settings-autosave.php:2566
|
9920 |
msgid ""
|
9921 |
"Shows the photos description on a lightbox display when initiated from a "
|
9922 |
"single media style photo."
|
9924 |
"Montre la description des photos dans un affichage Lightbox quand lancé "
|
9925 |
"depuis une photo single media style."
|
9926 |
|
9927 |
+
#: wppa-settings-autosave.php:2573
|
9928 |
msgid "Overlay albumwidget name"
|
9929 |
msgstr "Nom widget Album overlay"
|
9930 |
|
9931 |
+
#: wppa-settings-autosave.php:2574
|
9932 |
msgid "Show the photos name if from the album widget."
|
9933 |
msgstr "Montrer le nom des photos si celui venant du widget Album."
|
9934 |
|
9935 |
+
#: wppa-settings-autosave.php:2575
|
9936 |
msgid ""
|
9937 |
"Shows the name on a lightbox display when initiated from the album widget."
|
9938 |
msgstr ""
|
9939 |
"Montre le nom sur un affichage Lightbox quand lancé depuis le widget Album."
|
9940 |
|
9941 |
+
#: wppa-settings-autosave.php:2582
|
9942 |
msgid "Overlay albumwidget desc"
|
9943 |
msgstr "Description widget Album overlay"
|
9944 |
|
9945 |
+
#: wppa-settings-autosave.php:2583
|
9946 |
msgid "Show description if from from the album widget."
|
9947 |
msgstr "Montrer la description si celle venant du widget Album."
|
9948 |
|
9949 |
+
#: wppa-settings-autosave.php:2584
|
9950 |
msgid ""
|
9951 |
"Shows the photos description on a lightbox display when initiated from the "
|
9952 |
"album widget."
|
9954 |
"Montre la description des photos saur un affichage Lightbox quand lancé "
|
9955 |
"depuis le widget Album."
|
9956 |
|
9957 |
+
#: wppa-settings-autosave.php:2591
|
9958 |
msgid "Overlay coverphoto name"
|
9959 |
msgstr "Nom CoverPhoto overlay"
|
9960 |
|
9961 |
+
#: wppa-settings-autosave.php:2592
|
9962 |
msgid "Show the photos name if from the album cover."
|
9963 |
msgstr "Montrer le nom des photos si venant de la couverture d'album."
|
9964 |
|
9965 |
+
#: wppa-settings-autosave.php:2593
|
9966 |
msgid ""
|
9967 |
"Shows the name on a lightbox display when initiated from the album "
|
9968 |
"coverphoto."
|
9970 |
"Montre le nom sur un affichage lightbox quand lancé depuis la couverture de "
|
9971 |
"l'album."
|
9972 |
|
9973 |
+
#: wppa-settings-autosave.php:2600
|
9974 |
msgid "Overlay coverphoto desc"
|
9975 |
msgstr "Description CoverPhoto overlay"
|
9976 |
|
9977 |
+
#: wppa-settings-autosave.php:2601
|
9978 |
msgid "Show description if from from the album cover."
|
9979 |
msgstr "Montrer la description si celle venant de la couverture de l'album."
|
9980 |
|
9981 |
+
#: wppa-settings-autosave.php:2602
|
9982 |
msgid ""
|
9983 |
"Shows the photos description on a lightbox display when initiated from the "
|
9984 |
"album coverphoto."
|
9986 |
"Montre la description dans un affichage Lightbox quand lancé depuis la photo "
|
9987 |
"de couverture de l'album."
|
9988 |
|
9989 |
+
#: wppa-settings-autosave.php:2609
|
9990 |
msgid "Overlay add owner"
|
9991 |
msgstr "Propriétaire ajout overlay"
|
9992 |
|
9993 |
+
#: wppa-settings-autosave.php:2610
|
9994 |
msgid "Add the owner to the photo name on lightbox displays."
|
9995 |
msgstr "Ajouter le propriétaire de la photo sur les affichages Lightbox."
|
9996 |
|
9997 |
+
#: wppa-settings-autosave.php:2611
|
9998 |
msgid ""
|
9999 |
"This setting is independant of the show name switches and is a global "
|
10000 |
"setting."
|
10001 |
msgstr "Ce réglage est indépendant des boutons Show name et est global."
|
10002 |
|
10003 |
+
#: wppa-settings-autosave.php:2618
|
10004 |
msgid "Overlay show start/stop"
|
10005 |
msgstr "Montrer Démarrer/Arrêter overlay"
|
10006 |
|
10007 |
+
#: wppa-settings-autosave.php:2619
|
10008 |
msgid "Show Start and Stop for running slideshow on lightbox."
|
10009 |
msgstr "Montrer Démarrer et Arrêter pour lancer le diaporama sur Lightbox."
|
10010 |
|
10011 |
+
#: wppa-settings-autosave.php:2627
|
10012 |
msgid "Overlay show legenda"
|
10013 |
msgstr "Montrer légende overlay"
|
10014 |
|
10015 |
+
#: wppa-settings-autosave.php:2628
|
10016 |
msgid "Show \"Press f for fullsize\" etc. on lightbox."
|
10017 |
msgstr "Montrer \"Appuyez sur f pour plein écran\" etc. sur Lightbox."
|
10018 |
|
10019 |
+
#: wppa-settings-autosave.php:2629
|
10020 |
msgid "Independant of this setting, it will not show up on mobile devices."
|
10021 |
msgstr ""
|
10022 |
"Indépendant de ce réglage, ne sera pas affiché sur les terminaux mobiles."
|
10023 |
|
10024 |
+
#: wppa-settings-autosave.php:2636
|
10025 |
msgid "Show fullscreen icons"
|
10026 |
msgstr "Montrer les icônes plein écran"
|
10027 |
|
10028 |
+
#: wppa-settings-autosave.php:2637
|
10029 |
msgid "Shows fullscreen and back to normal icon buttons on upper right corner"
|
10030 |
msgstr ""
|
10031 |
"Montre les boutons icônes plein écran et retour à l’affichage fenêtré dans "
|
10032 |
"le coin haut droit"
|
10033 |
|
10034 |
+
#: wppa-settings-autosave.php:2645
|
10035 |
msgid "Show rating"
|
10036 |
msgstr "Afficher la note"
|
10037 |
|
10038 |
+
#: wppa-settings-autosave.php:2646
|
10039 |
msgid "Shows and enables rating on lightbox."
|
10040 |
msgstr "Affiche et permet Note sur la visionneuse."
|
10041 |
|
10042 |
+
#: wppa-settings-autosave.php:2647
|
10043 |
msgid ""
|
10044 |
"This works for 5 and 10 stars only, not for single votes or numerical display"
|
10045 |
msgstr ""
|
10046 |
"Cela fonctionne pour 5 et 10 étoiles, et non pour des votes simples ou "
|
10047 |
"affichage numérique"
|
10048 |
|
10049 |
+
#: wppa-settings-autosave.php:2654
|
10050 |
msgid "Overlay show counter"
|
10051 |
msgstr "Montrer compteur overlay"
|
10052 |
|
10053 |
+
#: wppa-settings-autosave.php:2655
|
10054 |
msgid "Show the x/y counter below the image."
|
10055 |
msgstr "Montrer le compteur x/y au dessous de l'image."
|
10056 |
|
10057 |
+
#: wppa-settings-autosave.php:2663
|
10058 |
msgid "Show Zoom in"
|
10059 |
msgstr "Montrer Zoom in"
|
10060 |
|
10061 |
+
#: wppa-settings-autosave.php:2664
|
10062 |
msgid "Display tooltip \"Zoom in\" along with the magnifier cursor."
|
10063 |
msgstr "Afficher le tooltip \"Zoom in\" avec le curseur loupe."
|
10064 |
|
10065 |
+
#: wppa-settings-autosave.php:2665
|
10066 |
msgid ""
|
10067 |
"If you select ---none--- in Table I-G2 for magnifier size, the tooltop "
|
10068 |
"contains the photo name."
|
10070 |
"Si vous choisissez --- Aucun --- dans table I-G2 pour la taille de la loupe, "
|
10071 |
"le tooltip contient le nom de la photo."
|
10072 |
|
10073 |
+
#: wppa-settings-autosave.php:2673
|
10074 |
msgid "Frontend upload configuration settings"
|
10075 |
msgstr "Réglages pour le chargement (upload) par le frontend"
|
10076 |
|
10077 |
+
#: wppa-settings-autosave.php:2675
|
10078 |
msgid "User upload Photos"
|
10079 |
msgstr "Photos chargées par l'utilisateur"
|
10080 |
|
10081 |
+
#: wppa-settings-autosave.php:2676
|
10082 |
msgid "Enable frontend upload."
|
10083 |
msgstr "Permettre chargement via le frontend."
|
10084 |
|
10085 |
+
#: wppa-settings-autosave.php:2677
|
10086 |
msgid ""
|
10087 |
"If you check this item, frontend upload will be enabled according to the "
|
10088 |
"rules set in the following items of this table."
|
10090 |
"Si vous cochez cet item, le chargement par le frontend sera activé en accord "
|
10091 |
"avec les règles définies dans les items suivants de cette table."
|
10092 |
|
10093 |
+
#: wppa-settings-autosave.php:2685
|
10094 |
msgid "User upload Video"
|
10095 |
msgstr "Envoyer une vidéo"
|
10096 |
|
10097 |
+
#: wppa-settings-autosave.php:2686
|
10098 |
msgid "Enable frontend upload of video."
|
10099 |
msgstr "Activez le frontend upload de la vidéo."
|
10100 |
|
10101 |
+
#: wppa-settings-autosave.php:2687 wppa-settings-autosave.php:2697
|
10102 |
msgid "Requires Table II-H1 to be ticked."
|
10103 |
msgstr "Nécessite le Table II-H1 être cochée."
|
10104 |
|
10105 |
+
#: wppa-settings-autosave.php:2695
|
10106 |
msgid "User upload Audio"
|
10107 |
msgstr "Télécharger un fichier Audio"
|
10108 |
|
10109 |
+
#: wppa-settings-autosave.php:2696
|
10110 |
msgid "Enable frontend upload of audio."
|
10111 |
msgstr "Activez le frontend Télécharger audio."
|
10112 |
|
10113 |
+
#: wppa-settings-autosave.php:2705
|
10114 |
msgid "User upload Photos login"
|
10115 |
msgstr "Login de chargement photos utilisateur"
|
10116 |
|
10117 |
+
#: wppa-settings-autosave.php:2706
|
10118 |
msgid "Frontend upload requires the user is logged in."
|
10119 |
msgstr "Le chargement via frontend nécessite que l'utilisateur soit connecté."
|
10120 |
|
10121 |
+
#: wppa-settings-autosave.php:2707
|
10122 |
msgid ""
|
10123 |
"If you uncheck this box, make sure you check the item Owners only in Table "
|
10124 |
"VII-D1."
|
10126 |
"Si vous décochez cette case, assurez vous de cocher l'item Propriétaires "
|
10127 |
"uniquement dans table VII-D1."
|
10128 |
|
10129 |
+
#: wppa-settings-autosave.php:2708
|
10130 |
msgid ""
|
10131 |
"Also: set the owner to ---public--- of the albums that are allowed to be "
|
10132 |
"uploaded to."
|
10134 |
"Aussi: régler propriétaire à --- public --- \" dans les albums pour lesquels "
|
10135 |
"il sera autorisé de charger des média."
|
10136 |
|
10137 |
+
#: wppa-settings-autosave.php:2715
|
10138 |
msgid "User upload Ajax"
|
10139 |
msgstr "Chargement AJAX utilisateur"
|
10140 |
|
10141 |
+
#: wppa-settings-autosave.php:2716
|
10142 |
msgid "Shows the upload progression bar."
|
10143 |
msgstr "Montrer la barre progression du chargement."
|
10144 |
|
10145 |
+
#: wppa-settings-autosave.php:2724
|
10146 |
msgid "Show Copyright"
|
10147 |
msgstr "Montrer Copyright"
|
10148 |
|
10149 |
+
#: wppa-settings-autosave.php:2725
|
10150 |
msgid "Show a copyright warning on frontend upload locations."
|
10151 |
msgstr ""
|
10152 |
"Montrer un avertissement de copyright à l'endroit du chargement via le "
|
10153 |
"frontend."
|
10154 |
|
10155 |
+
#: wppa-settings-autosave.php:2734
|
10156 |
msgid "Copyright notice"
|
10157 |
msgstr "Note Copyright"
|
10158 |
|
10159 |
+
#: wppa-settings-autosave.php:2735
|
10160 |
msgid "The message to be displayed."
|
10161 |
msgstr "Le message a afficher."
|
10162 |
|
10163 |
+
#: wppa-settings-autosave.php:2743
|
10164 |
msgid "User Watermark"
|
10165 |
msgstr "Filigrane utilisateur"
|
10166 |
|
10167 |
+
#: wppa-settings-autosave.php:2744
|
10168 |
msgid "Uploading users may select watermark settings"
|
10169 |
msgstr ""
|
10170 |
"Les utilisateurs autorisés à charger peuvent gérer les options de filigrane"
|
10171 |
|
10172 |
+
#: wppa-settings-autosave.php:2745
|
10173 |
msgid ""
|
10174 |
"If checked, anyone who can upload and/or import photos can overrule the "
|
10175 |
"default watermark settings."
|
10177 |
"Si coché, les utilisateurs autorisés à charger et/ou importer des photos "
|
10178 |
"peuvent passer outre les options par défaut du filigrane."
|
10179 |
|
10180 |
+
#: wppa-settings-autosave.php:2752
|
10181 |
msgid "User name"
|
10182 |
msgstr "Nom utilisateur"
|
10183 |
|
10184 |
+
#: wppa-settings-autosave.php:2753
|
10185 |
msgid "Uploading users may overrule the default name."
|
10186 |
msgstr "L'utilisateur autorisé à charger peut passer outre le nom par défaut."
|
10187 |
|
10188 |
+
#: wppa-settings-autosave.php:2754
|
10189 |
msgid ""
|
10190 |
"If checked, the default photo name as defined in Table IX-D13 may be "
|
10191 |
"overruled by the user."
|
10193 |
"Si coché, le nom par défaut de la photo comme défini dans table IX-D13 ne "
|
10194 |
"s'applique pas pour l'utilisateur."
|
10195 |
|
10196 |
+
#: wppa-settings-autosave.php:2761
|
10197 |
msgid "Apply Newphoto desc user"
|
10198 |
msgstr "Appliquer la description utilisateur pour la nouvelle photo"
|
10199 |
|
10200 |
+
#: wppa-settings-autosave.php:2762
|
10201 |
msgid "Give each new frontend uploaded photo a standard description."
|
10202 |
msgstr ""
|
10203 |
"Donne à chaque nouvelle photo chargée par le frontend une description "
|
10204 |
"standard."
|
10205 |
|
10206 |
+
#: wppa-settings-autosave.php:2763
|
10207 |
msgid ""
|
10208 |
"If checked, each new photo will get the description (template) as specified "
|
10209 |
"in Table IX-D5."
|
10211 |
"Si coché, chaque nouvelle photo recevra une description selon un modèle "
|
10212 |
"comme spécifié dans table IX-D5."
|
10213 |
|
10214 |
+
#: wppa-settings-autosave.php:2770
|
10215 |
msgid "User desc"
|
10216 |
msgstr "Description utilisateur"
|
10217 |
|
10218 |
+
#: wppa-settings-autosave.php:2771
|
10219 |
msgid "Uploading users may overrule the default description."
|
10220 |
msgstr ""
|
10221 |
"Les utilisateurs autoriser à charger des fichiers peuvent passer outre la "
|
10222 |
"description par défaut."
|
10223 |
|
10224 |
+
#: wppa-settings-autosave.php:2779
|
10225 |
msgid "User upload custom"
|
10226 |
msgstr "Personnalisation pour les utilisateurs autorisés à charger"
|
10227 |
|
10228 |
+
#: wppa-settings-autosave.php:2780
|
10229 |
msgid "Frontend upload can fill in custom data fields."
|
10230 |
msgstr ""
|
10231 |
"Possibilité de remplir des champ de donnée personnalisés lors du chargement "
|
10232 |
"frontend."
|
10233 |
|
10234 |
+
#: wppa-settings-autosave.php:2788
|
10235 |
msgid "User upload tags"
|
10236 |
msgstr "Tags chargement utilisateur"
|
10237 |
|
10238 |
+
#: wppa-settings-autosave.php:2789
|
10239 |
msgid "Frontend upload can add tags."
|
10240 |
msgstr "Possibilité d'ajouter des tag lors du chargement frontend."
|
10241 |
|
10242 |
+
#: wppa-settings-autosave.php:2790
|
10243 |
msgid "You can configure the details of tag addition in Table IX-D18.x"
|
10244 |
msgstr ""
|
10245 |
"Vous pouvez configurer les détails pour l'ajout de tag dans table IX-D18.x"
|
10246 |
|
10247 |
+
#: wppa-settings-autosave.php:2798 wppa-settings-autosave.php:2826
|
10248 |
+
#: wppa-settings-autosave.php:2854
|
10249 |
msgid "Tag selection box"
|
10250 |
msgstr "Boîte de sélection de tag"
|
10251 |
|
10252 |
+
#: wppa-settings-autosave.php:2799 wppa-settings-autosave.php:2827
|
10253 |
+
#: wppa-settings-autosave.php:2855
|
10254 |
msgid "Front-end upload tags selecion box."
|
10255 |
msgstr "Boîte de sélection des tags de chargement par frontend."
|
10256 |
|
10257 |
+
#: wppa-settings-autosave.php:2803 wppa-settings-autosave.php:2831
|
10258 |
+
#: wppa-settings-autosave.php:2859
|
10259 |
msgid "On:"
|
10260 |
msgstr "Sur:"
|
10261 |
|
10262 |
+
#: wppa-settings-autosave.php:2803 wppa-settings-autosave.php:2831
|
10263 |
+
#: wppa-settings-autosave.php:2859
|
10264 |
msgid "Multi:"
|
10265 |
msgstr "Multi:"
|
10266 |
|
10267 |
+
#: wppa-settings-autosave.php:2808 wppa-settings-autosave.php:2836
|
10268 |
+
#: wppa-settings-autosave.php:2864
|
10269 |
msgid "Caption box"
|
10270 |
msgstr "Boîte de légende"
|
10271 |
|
10272 |
+
#: wppa-settings-autosave.php:2809 wppa-settings-autosave.php:2837
|
10273 |
+
#: wppa-settings-autosave.php:2865
|
10274 |
msgid "The title of the tag selection box."
|
10275 |
msgstr "Le titre de la boîte de sélection de tag."
|
10276 |
|
10277 |
+
#: wppa-settings-autosave.php:2817 wppa-settings-autosave.php:2845
|
10278 |
+
#: wppa-settings-autosave.php:2873
|
10279 |
msgid "Tags box"
|
10280 |
msgstr "Boîte de tags"
|
10281 |
|
10282 |
+
#: wppa-settings-autosave.php:2818 wppa-settings-autosave.php:2846
|
10283 |
+
#: wppa-settings-autosave.php:2874
|
10284 |
msgid "The tags in the selection box."
|
10285 |
msgstr "Les tags dans la boîte de sélection."
|
10286 |
|
10287 |
+
#: wppa-settings-autosave.php:2819 wppa-settings-autosave.php:2847
|
10288 |
+
#: wppa-settings-autosave.php:2875
|
10289 |
msgid ""
|
10290 |
"Enter the tags you want to appear in the selection box. Empty means: all "
|
10291 |
"existing tags"
|
10293 |
"Entrez les tags que vous désirez voir apparaître dans la boîte de sélection. "
|
10294 |
"Laisser vide signifie: tous les tags existants"
|
10295 |
|
10296 |
+
#: wppa-settings-autosave.php:2882
|
10297 |
msgid "New tags"
|
10298 |
msgstr "Nouveaux tags:"
|
10299 |
|
10300 |
+
#: wppa-settings-autosave.php:2883
|
10301 |
msgid "Input field for any user defined tags."
|
10302 |
msgstr "Champ de saisie pour les tags définis par l'utilisateur."
|
10303 |
|
10304 |
+
#: wppa-settings-autosave.php:2891
|
10305 |
msgid "New tags caption"
|
10306 |
msgstr "Nouvelle légende pour les tags"
|
10307 |
|
10308 |
+
#: wppa-settings-autosave.php:2892
|
10309 |
msgid "The caption above the tags input field."
|
10310 |
msgstr "La légende au dessus du champ de saisie des tags."
|
10311 |
|
10312 |
+
#: wppa-settings-autosave.php:2900
|
10313 |
msgid "Preview tags"
|
10314 |
msgstr "Aperçu tags"
|
10315 |
|
10316 |
+
#: wppa-settings-autosave.php:2901
|
10317 |
msgid "Show a preview of all tags that will be added to the photo info."
|
10318 |
msgstr ""
|
10319 |
"Montre une prévisualisation de tous les tags qui seront ajoutés aux "
|
10320 |
"informations de la photo."
|
10321 |
|
10322 |
+
#: wppa-settings-autosave.php:2909
|
10323 |
msgid "Camera connect"
|
10324 |
msgstr "Caméra connecter"
|
10325 |
|
10326 |
+
#: wppa-settings-autosave.php:2910
|
10327 |
msgid "Connect frontend upload to camara on mobile devices with camera"
|
10328 |
msgstr ""
|
10329 |
"Se connecter frontend télécharger à camara sur les appareils mobiles avec "
|
10330 |
"appareil photo"
|
10331 |
|
10332 |
+
#: wppa-settings-autosave.php:2918
|
10333 |
msgid "Blog It!"
|
10334 |
msgstr "Blog It!"
|
10335 |
|
10336 |
+
#: wppa-settings-autosave.php:2919
|
10337 |
msgid "Enable blogging photos."
|
10338 |
msgstr "Activer les blogs de photos."
|
10339 |
|
10340 |
+
#: wppa-settings-autosave.php:2920
|
10341 |
msgid "Users need the capability edit_posts to directly blog photos."
|
10342 |
msgstr ""
|
10343 |
"Les utilisateurs ont besoin les edit_posts de capacité de blog directement "
|
10344 |
"des photos."
|
10345 |
|
10346 |
+
#: wppa-settings-autosave.php:2922
|
10347 |
msgid "disabled"
|
10348 |
msgstr "désactivé"
|
10349 |
|
10350 |
+
#: wppa-settings-autosave.php:2923
|
10351 |
msgid "optional"
|
10352 |
msgstr "optionnel"
|
10353 |
|
10354 |
+
#: wppa-settings-autosave.php:2924
|
10355 |
msgid "always"
|
10356 |
msgstr "toujours"
|
10357 |
|
10358 |
+
#: wppa-settings-autosave.php:2935
|
10359 |
msgid "Blog It need moderation"
|
10360 |
msgstr "Blog Il faut modération"
|
10361 |
|
10362 |
+
#: wppa-settings-autosave.php:2936
|
10363 |
msgid "Posts with blogged photos need moderation."
|
10364 |
msgstr "Messages avec photos Blogs ont besoin de modération."
|
10365 |
|
10366 |
+
#: wppa-settings-autosave.php:2944
|
10367 |
msgid "Blog It shortcode"
|
10368 |
msgstr "Blog Il shortcode"
|
10369 |
|
10370 |
+
#: wppa-settings-autosave.php:2945
|
10371 |
msgid "Shortcode to be used on the blog post"
|
10372 |
msgstr "Shortcode à utiliser sur le message de blog"
|
10373 |
|
10374 |
+
#: wppa-settings-autosave.php:2946
|
10375 |
msgid "Make sure it contains photo=\"#id\""
|
10376 |
msgstr "Assurez-vous qu'il contient photo=\"#id\""
|
10377 |
|
10378 |
+
#: wppa-settings-autosave.php:2954
|
10379 |
msgid "Miscellaneous visibility settings"
|
10380 |
msgstr "Réglages divers pour l'apparence"
|
10381 |
|
10382 |
+
#: wppa-settings-autosave.php:2956
|
10383 |
msgid "Frontend ending label"
|
10384 |
msgstr "Texte de fin du frontend"
|
10385 |
|
10386 |
+
#: wppa-settings-autosave.php:2957
|
10387 |
msgid "Frontend upload / create / edit dialog closing label text."
|
10388 |
msgstr ""
|
10389 |
"Texte de fermeture de la boîte de dialogue Charger / Créer / Modifier du "
|
10390 |
"frontend."
|
10391 |
|
10392 |
+
#: wppa-settings-autosave.php:2960
|
10393 |
msgid "Abort"
|
10394 |
msgstr "Abandonner"
|
10395 |
|
10396 |
+
#: wppa-settings-autosave.php:2960
|
10397 |
msgid "Close"
|
10398 |
msgstr "Fermer"
|
10399 |
|
10400 |
+
#: wppa-settings-autosave.php:2960
|
10401 |
msgid "Exit"
|
10402 |
msgstr "Sortir"
|
10403 |
|
10404 |
+
#: wppa-settings-autosave.php:2960
|
10405 |
msgid "Quit"
|
10406 |
msgstr "Quitter"
|
10407 |
|
10408 |
+
#: wppa-settings-autosave.php:2968
|
10409 |
msgid "Widget thumbs fontsize"
|
10410 |
msgstr "Taille de police de caractère pour les vignettes des widgets"
|
10411 |
|
10412 |
+
#: wppa-settings-autosave.php:2969
|
10413 |
msgid "Font size for thumbnail subtext in widgets."
|
10414 |
msgstr ""
|
10415 |
"Taille de la police de caractère du sous texte des vignettes dans les "
|
10416 |
"widgets."
|
10417 |
|
10418 |
+
#: wppa-settings-autosave.php:2977
|
10419 |
msgid "Owner on new line"
|
10420 |
msgstr "Propriétaire sur nouvelle ligne"
|
10421 |
|
10422 |
+
#: wppa-settings-autosave.php:2978
|
10423 |
msgid "Place the (owner) text on a new line."
|
10424 |
msgstr "Place le texte (du propriétaire) sur une nouvelle ligne."
|
10425 |
|
10426 |
+
#: wppa-settings-autosave.php:2986
|
10427 |
msgid "Custom datafields albums"
|
10428 |
msgstr "Champ de données personnalisés albums"
|
10429 |
|
10430 |
+
#: wppa-settings-autosave.php:2987
|
10431 |
msgid "Define up to 10 custom data fields for albums."
|
10432 |
msgstr "Définir jusqu'à 10 champs de données personnalisés pour les albums."
|
10433 |
|
10434 |
+
#: wppa-settings-autosave.php:2997 wppa-settings-autosave.php:3023
|
10435 |
#, php-format
|
10436 |
msgid "Name, vis, edit %s"
|
10437 |
msgstr "Nom, vis, mod. %s"
|
10438 |
|
10439 |
+
#: wppa-settings-autosave.php:2998 wppa-settings-autosave.php:3024
|
10440 |
#, php-format
|
10441 |
msgid "The caption for field %s, visibility and editability at frontend."
|
10442 |
msgstr ""
|
10443 |
"La légende de champ %s, de visibilité et de caractère modifiable à frontend."
|
10444 |
|
10445 |
+
#: wppa-settings-autosave.php:2999 wppa-settings-autosave.php:3025
|
10446 |
#, php-format
|
10447 |
msgid ""
|
10448 |
"If you check the first box, the value of this field is displayable in photo "
|
10451 |
"Si vous cochez la première case, la valeur de ce champ est affichable dans "
|
10452 |
"les descriptions de photo à l’interface avec le mot clé w#c%s"
|
10453 |
|
10454 |
+
#: wppa-settings-autosave.php:3000 wppa-settings-autosave.php:3026
|
10455 |
msgid ""
|
10456 |
"If you check the second box, the value of this field is editable at the "
|
10457 |
"frontend new style dialog."
|
10459 |
"Si vous cochez la deuxième case, la valeur de ce champ est modifiable dans "
|
10460 |
"la boîte de dialogue style nouveau frontend."
|
10461 |
|
10462 |
+
#: wppa-settings-autosave.php:3012
|
10463 |
msgid "Custom datafields photos"
|
10464 |
msgstr "Champ de données personnalisés Photos"
|
10465 |
|
10466 |
+
#: wppa-settings-autosave.php:3013
|
10467 |
msgid "Define up to 10 custom data fields for photos."
|
10468 |
msgstr "Définir jusqu'à 10 champs personnalisés pour les photos."
|
10469 |
|
10470 |
+
#: wppa-settings-autosave.php:3039
|
10471 |
msgid "Navigation symbols style"
|
10472 |
msgstr "Style de navigation symboles"
|
10473 |
|
10474 |
+
#: wppa-settings-autosave.php:3040
|
10475 |
msgid "The corner rounding size of navigation icons."
|
10476 |
msgstr "La taille coin arrondi des icônes de navigation."
|
10477 |
|
10478 |
+
#: wppa-settings-autosave.php:3043
|
10479 |
msgid "light"
|
10480 |
msgstr "léger"
|
10481 |
|
10482 |
+
#: wppa-settings-autosave.php:3043
|
10483 |
msgid "heavy"
|
10484 |
msgstr "Intense"
|
10485 |
|
10486 |
+
#: wppa-settings-autosave.php:3067
|
10487 |
msgid "Table III:"
|
10488 |
msgstr "Table III:"
|
10489 |
|
10490 |
+
#: wppa-settings-autosave.php:3067
|
10491 |
msgid "Backgrounds:"
|
10492 |
msgstr "Arrière plans:"
|
10493 |
|
10494 |
+
#: wppa-settings-autosave.php:3068
|
10495 |
msgid "This table describes the backgrounds of wppa+ elements."
|
10496 |
msgstr "Cette table décrit l'arrière plan des éléments de WPPA+."
|
10497 |
|
10498 |
+
#: wppa-settings-autosave.php:3078 wppa-settings-autosave.php:3454
|
10499 |
+
#: wppa-settings-autosave.php:8874
|
10500 |
msgid "Background color"
|
10501 |
msgstr "Couleur d'arrière plan"
|
10502 |
|
10503 |
+
#: wppa-settings-autosave.php:3079 wppa-settings-autosave.php:3081
|
10504 |
+
#: wppa-settings-autosave.php:3455 wppa-settings-autosave.php:3457
|
10505 |
msgid "Sample"
|
10506 |
msgstr "Echantillon"
|
10507 |
|
10508 |
+
#: wppa-settings-autosave.php:3080 wppa-settings-autosave.php:3456
|
10509 |
msgid "Border color"
|
10510 |
msgstr "Couleur de bordure"
|
10511 |
|
10512 |
+
#: wppa-settings-autosave.php:3089
|
10513 |
msgid "Slideshow elements backgrounds"
|
10514 |
msgstr "Arrière plan des éléments du diaporama"
|
10515 |
|
10516 |
+
#: wppa-settings-autosave.php:3091
|
10517 |
msgid "Nav"
|
10518 |
msgstr "Nav"
|
10519 |
|
10520 |
+
#: wppa-settings-autosave.php:3092
|
10521 |
msgid "Navigation bars."
|
10522 |
msgstr "Barres de navigation."
|
10523 |
|
10524 |
+
#: wppa-settings-autosave.php:3093
|
10525 |
msgid "Enter valid CSS colors for navigation backgrounds and borders."
|
10526 |
msgstr ""
|
10527 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10528 |
"plan et des bordures de navigation."
|
10529 |
|
10530 |
+
#: wppa-settings-autosave.php:3104
|
10531 |
msgid "SlideImg"
|
10532 |
msgstr "SlideImg"
|
10533 |
|
10534 |
+
#: wppa-settings-autosave.php:3105
|
10535 |
msgid "Fullsize Slideshow Photos."
|
10536 |
msgstr "Photos diaporama en taille max."
|
10537 |
|
10538 |
+
#: wppa-settings-autosave.php:3106
|
10539 |
msgid "Enter valid CSS colors for fullsize photo backgrounds and borders."
|
10540 |
msgstr ""
|
10541 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10542 |
"plan et des bordures des photos pleine taille."
|
10543 |
|
10544 |
+
#: wppa-settings-autosave.php:3107
|
10545 |
msgid "The colors may be equal or \"transparent\""
|
10546 |
msgstr "Les couleurs peuvent être égales ou \"transparentes\""
|
10547 |
|
10548 |
+
#: wppa-settings-autosave.php:3108
|
10549 |
msgid ""
|
10550 |
"For more information about slideshow image borders see the help on Table I-B4"
|
10551 |
msgstr ""
|
10552 |
"Pour plus d'informations sur les bordures d'images du diaporama, voir "
|
10553 |
"l'aide: table I-B4\""
|
10554 |
|
10555 |
+
#: wppa-settings-autosave.php:3119 wppa-settings-autosave.php:4993
|
10556 |
msgid "Numbar"
|
10557 |
msgstr "Numbar"
|
10558 |
|
10559 |
+
#: wppa-settings-autosave.php:3120
|
10560 |
msgid "Number bar box background."
|
10561 |
msgstr "Arrière plan de Numbar"
|
10562 |
|
10563 |
+
#: wppa-settings-autosave.php:3121
|
10564 |
msgid "Enter valid CSS colors for numbar box backgrounds and borders."
|
10565 |
msgstr ""
|
10566 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10567 |
"plan et des bordures de Numbar."
|
10568 |
|
10569 |
+
#: wppa-settings-autosave.php:3132
|
10570 |
msgid "Numbar active"
|
10571 |
msgstr "Numbar activée"
|
10572 |
|
10573 |
+
#: wppa-settings-autosave.php:3133
|
10574 |
msgid "Number bar active box background."
|
10575 |
msgstr "Arrière plan de la boîte Numbar active."
|
10576 |
|
10577 |
+
#: wppa-settings-autosave.php:3134
|
10578 |
msgid "Enter valid CSS colors for numbar active box backgrounds and borders."
|
10579 |
msgstr ""
|
10580 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10581 |
"plan et des bordures de la boîte Numbar active."
|
10582 |
|
10583 |
+
#: wppa-settings-autosave.php:3145
|
10584 |
msgid "Name/desc"
|
10585 |
msgstr "Nom/desc"
|
10586 |
|
10587 |
+
#: wppa-settings-autosave.php:3146
|
10588 |
msgid "Name and Description bars."
|
10589 |
msgstr "Barres nom et decription."
|
10590 |
|
10591 |
+
#: wppa-settings-autosave.php:3147
|
10592 |
msgid ""
|
10593 |
"Enter valid CSS colors for name and description box backgrounds and borders."
|
10594 |
msgstr ""
|
10595 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10596 |
"plan et des bordures des boîtes nom et description."
|
10597 |
|
10598 |
+
#: wppa-settings-autosave.php:3159
|
10599 |
msgid "Comment input and display areas."
|
10600 |
msgstr "Zones d'entrée et d'affichage de commentaires"
|
10601 |
|
10602 |
+
#: wppa-settings-autosave.php:3160
|
10603 |
msgid "Enter valid CSS colors for comment box backgrounds and borders."
|
10604 |
msgstr ""
|
10605 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10606 |
"plan et des bordures de la boîte commentaires."
|
10607 |
|
10608 |
+
#: wppa-settings-autosave.php:3171 wppa-settings-autosave.php:8934
|
10609 |
+
#: wppa-settings-autosave.php:8979
|
10610 |
msgid "Custom"
|
10611 |
msgstr "Personalisé"
|
10612 |
|
10613 |
+
#: wppa-settings-autosave.php:3172
|
10614 |
msgid "Custom box background."
|
10615 |
msgstr "Arrière plan de la boîte personnalisée."
|
10616 |
|
10617 |
+
#: wppa-settings-autosave.php:3173
|
10618 |
msgid "Enter valid CSS colors for custom box backgrounds and borders."
|
10619 |
msgstr ""
|
10620 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10621 |
"plan et des bordures de la boîte pesonnalisée."
|
10622 |
|
10623 |
+
#: wppa-settings-autosave.php:3184
|
10624 |
msgid "IPTC"
|
10625 |
msgstr "IPTC"
|
10626 |
|
10627 |
+
#: wppa-settings-autosave.php:3185
|
10628 |
msgid "IPTC display box background."
|
10629 |
msgstr "Arrière plan de la boîte IPTC."
|
10630 |
|
10631 |
+
#: wppa-settings-autosave.php:3186
|
10632 |
msgid "Enter valid CSS colors for iptc box backgrounds and borders."
|
10633 |
msgstr ""
|
10634 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10635 |
"plan et des bordures de la boîte IPTC."
|
10636 |
|
10637 |
+
#: wppa-settings-autosave.php:3197
|
10638 |
msgid "EXIF"
|
10639 |
msgstr "EXIF"
|
10640 |
|
10641 |
+
#: wppa-settings-autosave.php:3198
|
10642 |
msgid "EXIF display box background."
|
10643 |
msgstr "Arrière plan de la boîte EXIF."
|
10644 |
|
10645 |
+
#: wppa-settings-autosave.php:3199
|
10646 |
msgid "Enter valid CSS colors for exif box backgrounds and borders."
|
10647 |
msgstr ""
|
10648 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10649 |
"plan et des bordures de la boîte EXIF."
|
10650 |
|
10651 |
+
#: wppa-settings-autosave.php:3210
|
10652 |
msgid "Share"
|
10653 |
msgstr "Partager"
|
10654 |
|
10655 |
+
#: wppa-settings-autosave.php:3211
|
10656 |
msgid "Share box display background."
|
10657 |
msgstr "Arrière plan de la boîte de partage."
|
10658 |
|
10659 |
+
#: wppa-settings-autosave.php:3212
|
10660 |
msgid "Enter valid CSS colors for share box backgrounds and borders."
|
10661 |
msgstr ""
|
10662 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10663 |
"plan et des bordures de la boîte de partage."
|
10664 |
|
10665 |
+
#: wppa-settings-autosave.php:3223
|
10666 |
msgid "Other backgrounds and colors"
|
10667 |
msgstr "Autres plans arrière et des couleurs"
|
10668 |
|
10669 |
+
#: wppa-settings-autosave.php:3225
|
10670 |
msgid "Even"
|
10671 |
msgstr "Pair"
|
10672 |
|
10673 |
+
#: wppa-settings-autosave.php:3226
|
10674 |
msgid "Even background."
|
10675 |
msgstr "Arrière plan identique."
|
10676 |
|
10677 |
+
#: wppa-settings-autosave.php:3227
|
10678 |
msgid ""
|
10679 |
"Enter valid CSS colors for even numbered backgrounds and borders of album "
|
10680 |
"covers and thumbnail displays 'As covers'."
|
10683 |
"plan et des bordures des couvertures d'album (et des vignettes affichées "
|
10684 |
"'comme couverture') paires."
|
10685 |
|
10686 |
+
#: wppa-settings-autosave.php:3238
|
10687 |
msgid "Odd"
|
10688 |
msgstr "Impair"
|
10689 |
|
10690 |
+
#: wppa-settings-autosave.php:3239
|
10691 |
msgid "Odd background."
|
10692 |
msgstr "Arrière plan impair."
|
10693 |
|
10694 |
+
#: wppa-settings-autosave.php:3240
|
10695 |
msgid ""
|
10696 |
"Enter valid CSS colors for odd numbered backgrounds and borders of album "
|
10697 |
"covers and thumbnail displays 'As covers'."
|
10700 |
"plan et des bordures des couvertures d'album (et des vignettes affichées "
|
10701 |
"'comme couverture') impaires."
|
10702 |
|
10703 |
+
#: wppa-settings-autosave.php:3251
|
10704 |
msgid "Thumbnail padding"
|
10705 |
msgstr "Remplissage vignettes"
|
10706 |
|
10707 |
+
#: wppa-settings-autosave.php:3252
|
10708 |
msgid "Thumbnail padding color if thumbnail aspect is a padded setting."
|
10709 |
msgstr ""
|
10710 |
"Couleur de remplissage vignettes si l'aspect de la vignette est réglé sur "
|
10711 |
"remplit (padded)."
|
10712 |
|
10713 |
+
#: wppa-settings-autosave.php:3253
|
10714 |
msgid ""
|
10715 |
"Enter valid CSS color hexadecimal like #000000 for black or #ffffff for "
|
10716 |
"white for the padded thumbnails."
|
10718 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs comme #000000 "
|
10719 |
"pour le noir ou #ffffff pour le blanc pour le remplissage des vignettes."
|
10720 |
|
10721 |
+
#: wppa-settings-autosave.php:3264
|
10722 |
msgid "Img"
|
10723 |
msgstr "IMG"
|
10724 |
|
10725 |
+
#: wppa-settings-autosave.php:3265
|
10726 |
msgid "Cover Photos and popups."
|
10727 |
msgstr "Photos de couverture et popups."
|
10728 |
|
10729 |
+
#: wppa-settings-autosave.php:3266
|
10730 |
msgid ""
|
10731 |
"Enter valid CSS colors for Cover photo and popup backgrounds and borders."
|
10732 |
msgstr ""
|
10733 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10734 |
"plan et des bordures pour les photos de couvertures et popups."
|
10735 |
|
10736 |
+
#: wppa-settings-autosave.php:3278
|
10737 |
msgid "Upload box background."
|
10738 |
msgstr "Arrière plan de la boîte de chargement."
|
10739 |
|
10740 |
+
#: wppa-settings-autosave.php:3279
|
10741 |
msgid "Enter valid CSS colors for upload box backgrounds and borders."
|
10742 |
msgstr ""
|
10743 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10744 |
"plan et des bordures pour la boîte de chargement."
|
10745 |
|
10746 |
+
#: wppa-settings-autosave.php:3290
|
10747 |
msgid "Multitag"
|
10748 |
msgstr "Multitag"
|
10749 |
|
10750 |
+
#: wppa-settings-autosave.php:3291
|
10751 |
msgid "Multitag box background."
|
10752 |
msgstr "Arrière plan de la boîte Multitag."
|
10753 |
|
10754 |
+
#: wppa-settings-autosave.php:3292
|
10755 |
msgid "Enter valid CSS colors for multitag box backgrounds and borders."
|
10756 |
msgstr ""
|
10757 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10758 |
"plan et des bordures pour la boîte Multitag."
|
10759 |
|
10760 |
+
#: wppa-settings-autosave.php:3303
|
10761 |
msgid "Tagcloud"
|
10762 |
msgstr "TagCloud"
|
10763 |
|
10764 |
+
#: wppa-settings-autosave.php:3304
|
10765 |
msgid "Tagcloud box background."
|
10766 |
msgstr "Arrière plan de la boîte TagCloud."
|
10767 |
|
10768 |
+
#: wppa-settings-autosave.php:3305
|
10769 |
msgid "Enter valid CSS colors for tagcloud box backgrounds and borders."
|
10770 |
msgstr ""
|
10771 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10772 |
"plan et des bordures pour la boîte TagCloud."
|
10773 |
|
10774 |
+
#: wppa-settings-autosave.php:3316
|
10775 |
msgid "Superview"
|
10776 |
msgstr "SuperView"
|
10777 |
|
10778 |
+
#: wppa-settings-autosave.php:3317
|
10779 |
msgid "Superview box background."
|
10780 |
msgstr "Arrière plan de la boîte SuperView."
|
10781 |
|
10782 |
+
#: wppa-settings-autosave.php:3318
|
10783 |
msgid "Enter valid CSS colors for superview box backgrounds and borders."
|
10784 |
msgstr ""
|
10785 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10786 |
"plan et des bordures pour la boîte SuperView."
|
10787 |
|
10788 |
+
#: wppa-settings-autosave.php:3330
|
10789 |
msgid "Search box background."
|
10790 |
msgstr "Arrière plan de la boîte de recherche."
|
10791 |
|
10792 |
+
#: wppa-settings-autosave.php:3331
|
10793 |
msgid "Enter valid CSS colors for search box backgrounds and borders."
|
10794 |
msgstr ""
|
10795 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10796 |
"plan et des bordures pour la boîte de recherche."
|
10797 |
|
10798 |
+
#: wppa-settings-autosave.php:3342
|
10799 |
msgid "BestOf"
|
10800 |
msgstr "BestOf"
|
10801 |
|
10802 |
+
#: wppa-settings-autosave.php:3343
|
10803 |
msgid "BestOf box background."
|
10804 |
msgstr "Arrière plan de la boîte BestOf."
|
10805 |
|
10806 |
+
#: wppa-settings-autosave.php:3344
|
10807 |
msgid "Enter valid CSS colors for bestof box backgrounds and borders."
|
10808 |
msgstr ""
|
10809 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10810 |
"plan et des bordures pour la boîte BestOf."
|
10811 |
|
10812 |
+
#: wppa-settings-autosave.php:3355
|
10813 |
msgid "Calendar"
|
10814 |
msgstr "Calendrier"
|
10815 |
|
10816 |
+
#: wppa-settings-autosave.php:3356
|
10817 |
msgid "Calendar box background."
|
10818 |
msgstr "Arrière plan de la boîte calendrier."
|
10819 |
|
10820 |
+
#: wppa-settings-autosave.php:3357
|
10821 |
msgid "Enter valid CSS colors for calendar box backgrounds and borders."
|
10822 |
msgstr ""
|
10823 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10824 |
"plan et des bordures pour la boîte calendrier."
|
10825 |
|
10826 |
+
#: wppa-settings-autosave.php:3368
|
10827 |
msgid "Stereo"
|
10828 |
msgstr "Stéréo"
|
10829 |
|
10830 |
+
#: wppa-settings-autosave.php:3369
|
10831 |
msgid "Stereo mode selection box background."
|
10832 |
msgstr "Arrière plan de la boîte de sélection du mode stéréo."
|
10833 |
|
10834 |
+
#: wppa-settings-autosave.php:3370
|
10835 |
msgid ""
|
10836 |
"Enter valid CSS colors for stereo mode selection box backgrounds and borders."
|
10837 |
msgstr ""
|
10838 |
"Entrer des valeurs de couleurs CSS valides pour les couleurs de l'arrière "
|
10839 |
"plan et des bordures pour la boîte de sélection du mode stéréo."
|
10840 |
|
10841 |
+
#: wppa-settings-autosave.php:3381
|
10842 |
msgid "Admins choice"
|
10843 |
msgstr "Choix des admins"
|
10844 |
|
10845 |
+
#: wppa-settings-autosave.php:3382
|
10846 |
msgid "Admins choice box background."
|
10847 |
msgstr "Fond de boîte admins choix."
|
10848 |
|
10849 |
+
#: wppa-settings-autosave.php:3383
|
10850 |
msgid "Enter valid CSS colors for admins choice box backgrounds and borders."
|
10851 |
msgstr ""
|
10852 |
"Entrez valides couleurs CSS pour les bordures et les arrière-plans de boîte "
|
10853 |
"choix admins."
|
10854 |
|
10855 |
+
#: wppa-settings-autosave.php:3394
|
10856 |
msgid "Modal render box"
|
10857 |
msgstr "Modal boîte rendre"
|
10858 |
|
10859 |
+
#: wppa-settings-autosave.php:3395
|
10860 |
msgid "The background for the Ajax modal rendering box."
|
10861 |
msgstr "Le fond de la boîte modale de rendu Ajax."
|
10862 |
|
10863 |
+
#: wppa-settings-autosave.php:3396
|
10864 |
msgid "Recommended color: your theme background color."
|
10865 |
msgstr "Couleur recommandée: votre couleur thème de fond."
|
10866 |
|
10867 |
+
#: wppa-settings-autosave.php:3407
|
10868 |
msgid "Navigation symbols"
|
10869 |
msgstr "Symboles de navigation"
|
10870 |
|
10871 |
+
#: wppa-settings-autosave.php:3408
|
10872 |
msgid "Navigation symbol background and fill colors."
|
10873 |
msgstr "Navigation symboles couleurs de fond et de remplissage."
|
10874 |
|
10875 |
+
#: wppa-settings-autosave.php:3420
|
10876 |
msgid "Navigation symbols Lightbox"
|
10877 |
msgstr "Symboles de navigation Lightbox"
|
10878 |
|
10879 |
+
#: wppa-settings-autosave.php:3421
|
10880 |
msgid "Navigation symbol background and fill colors Lightbox."
|
10881 |
msgstr "Navigation symboles couleurs de fond et de remplissage Lightbox."
|
10882 |
|
10883 |
+
#: wppa-settings-autosave.php:3467
|
10884 |
msgid "Table IV:"
|
10885 |
msgstr "Table IV:"
|
10886 |
|
10887 |
+
#: wppa-settings-autosave.php:3467
|
10888 |
msgid "Behaviour:"
|
10889 |
msgstr "Comportement:"
|
10890 |
|
10891 |
+
#: wppa-settings-autosave.php:3468
|
10892 |
msgid "This table describes the dynamic behaviour of certain wppa+ elements."
|
10893 |
msgstr ""
|
10894 |
"Cette table décrit le comportement dynamique de certains éléments de WPPA+."
|
10895 |
|
10896 |
+
#: wppa-settings-autosave.php:3486
|
10897 |
msgid "System related settings"
|
10898 |
msgstr "Réglages liés au système"
|
10899 |
|
10900 |
+
#: wppa-settings-autosave.php:3488
|
10901 |
msgid "Use Ajax"
|
10902 |
msgstr "Utiliser AJAX"
|
10903 |
|
10904 |
+
#: wppa-settings-autosave.php:3489
|
10905 |
msgid "Use Ajax as much as is possible and implemented."
|
10906 |
msgstr "Utiliser Ajax autant que possible lorsqu'il est implémenté."
|
10907 |
|
10908 |
+
#: wppa-settings-autosave.php:3490
|
10909 |
msgid ""
|
10910 |
"If this box is ticked, page content updates from within wppa+ displays will "
|
10911 |
"be Ajax based as much as possible."
|
10913 |
"Si cette case est cochée, le rafraîchissement du contenu des pages de "
|
10914 |
"l'affichage WPPA+ sera autant que possible basé sur Ajax."
|
10915 |
|
10916 |
+
#: wppa-settings-autosave.php:3498
|
10917 |
msgid "Ajax NON Admin"
|
10918 |
msgstr "Ajax NON admin"
|
10919 |
|
10920 |
+
#: wppa-settings-autosave.php:3499
|
10921 |
msgid "Frontend ajax use no admin files."
|
10922 |
msgstr "Le frontend Ajax n'utilise pas de fichiers admin."
|
10923 |
|
10924 |
+
#: wppa-settings-autosave.php:3500
|
10925 |
msgid "If you want to password protect wp-admin, check this box."
|
10926 |
msgstr "Si vous voulez protéger wp-admin par mot de passe, cochez cette case."
|
10927 |
|
10928 |
+
#: wppa-settings-autosave.php:3501
|
10929 |
msgid ""
|
10930 |
"In rare cases changing page content does not work when this box is checked. "
|
10931 |
"Verify the functionality!"
|
10933 |
"Dans de rares cas, changer le contenu de la page ne fonctionne pas quand "
|
10934 |
"cette case est cochée. Vérifier la fonctionnalité!"
|
10935 |
|
10936 |
+
#: wppa-settings-autosave.php:3508
|
10937 |
msgid "Modal boxes"
|
10938 |
msgstr "Boîtes modales"
|
10939 |
|
10940 |
+
#: wppa-settings-autosave.php:3509
|
10941 |
msgid "Place Ajax rendered content in modal boxes"
|
10942 |
msgstr "Placer Ajax rendu contenu dans des boîtes modales"
|
10943 |
|
10944 |
+
#: wppa-settings-autosave.php:3517
|
10945 |
msgid "Photo names in urls"
|
10946 |
msgstr "Nom des photos dans les URLs"
|
10947 |
|
10948 |
+
#: wppa-settings-autosave.php:3518
|
10949 |
msgid "Display photo names in urls."
|
10950 |
msgstr "Afficher le nom des photos dans les URLs."
|
10951 |
|
10952 |
+
#: wppa-settings-autosave.php:3519
|
10953 |
msgid "Urls to wppa+ displays will contain photonames in stead of numbers."
|
10954 |
msgstr ""
|
10955 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms de photo "
|
10956 |
"au lieu de nombres."
|
10957 |
|
10958 |
+
#: wppa-settings-autosave.php:3520
|
10959 |
msgid ""
|
10960 |
"It is your responsability to avoid duplicate names of photos in the same "
|
10961 |
"album."
|
10962 |
msgstr ""
|
10963 |
"C'est à vous d'éviter les doublons de nom de photos dans le même album."
|
10964 |
|
10965 |
+
#: wppa-settings-autosave.php:3527
|
10966 |
msgid "Album names in urls"
|
10967 |
msgstr "Nom des albums dans les URLs"
|
10968 |
|
10969 |
+
#: wppa-settings-autosave.php:3528
|
10970 |
msgid "Display album names in urls."
|
10971 |
msgstr "Afficher le nom des albums dans les URLs."
|
10972 |
|
10973 |
+
#: wppa-settings-autosave.php:3529
|
10974 |
msgid "Urls to wppa+ displays will contain albumnames in stead of numbers."
|
10975 |
msgstr ""
|
10976 |
"Les URLs pointant vers les affichages WPPA+ contiendront les noms d'album au "
|
10977 |
"lieu de nombres."
|
10978 |
|
10979 |
+
#: wppa-settings-autosave.php:3530
|
10980 |
msgid ""
|
10981 |
"It is your responsability to avoid duplicate names of albums in the system."
|
10982 |
msgstr "C'est à vous d'éviter les doublons de nom d'albums dans le système."
|
10983 |
|
10984 |
+
#: wppa-settings-autosave.php:3537
|
10985 |
msgid "Use short query args"
|
10986 |
msgstr "Utiliser des arguments de requête courts"
|
10987 |
|
10988 |
+
#: wppa-settings-autosave.php:3538
|
10989 |
msgid "Use &album=... &photo=..."
|
10990 |
msgstr "Utiliser &album=... &photo=..."
|
10991 |
|
10992 |
+
#: wppa-settings-autosave.php:3539
|
10993 |
msgid ""
|
10994 |
"Urls to wppa+ displays will contain &album=... &photo=... in stead of &wppa-"
|
10995 |
"album=... &wppa-photo=..."
|
10997 |
"Les URLs vers les contenus WPPA+ contiendront &album=... &photo=... à la "
|
10998 |
"place de &wppa-album=... &wppa-photo=..."
|
10999 |
|
11000 |
+
#: wppa-settings-autosave.php:3540
|
11001 |
msgid ""
|
11002 |
"Use this setting only when there are no conflicts with other plugins that "
|
11003 |
"may interprete arguments like &album= etc."
|
11006 |
"greffons (plugins) qui pourraient interpréter des arguments tels que &album= "
|
11007 |
"etc."
|
11008 |
|
11009 |
+
#: wppa-settings-autosave.php:3547
|
11010 |
msgid "Enable pretty links"
|
11011 |
msgstr "Activer Pretty Links"
|
11012 |
|
11013 |
+
#: wppa-settings-autosave.php:3548
|
11014 |
msgid "Enable the generation and understanding of pretty links."
|
11015 |
msgstr "Active la génération et l'interprêtation des Pretty Links."
|
11016 |
|
11017 |
+
#: wppa-settings-autosave.php:3549
|
11018 |
msgid ""
|
11019 |
"If checked, links to social media and the qr code will have \"/token1/token2/"
|
11020 |
"\" etc in stead of \"&arg1=..&arg2=..\" etc."
|
11022 |
"Si coché, les liens vers les média sociaux et le QR Code aura \"/token1/"
|
11023 |
"token2/\" etc à la place de \"&arg1=..&arg2=..\" etc."
|
11024 |
|
11025 |
+
#: wppa-settings-autosave.php:3550
|
11026 |
msgid ""
|
11027 |
"These types of links will be interpreted and cause a redirection on entering."
|
11028 |
msgstr ""
|
11029 |
"Ces types de liens seront interprétés et fonctionnent avec une redirection à "
|
11030 |
"l'entrée."
|
11031 |
|
11032 |
+
#: wppa-settings-autosave.php:3551
|
11033 |
msgid ""
|
11034 |
"It is recommended to check this box. It shortens links dramatically and "
|
11035 |
"simplifies qr codes."
|
11037 |
"Il est recommandé de cocher cette case. Cela rend les liens plus courts et "
|
11038 |
"simplifie les QR Codes."
|
11039 |
|
11040 |
+
#: wppa-settings-autosave.php:3552
|
11041 |
msgid ""
|
11042 |
"However, you may encounter conflicts with themes and/or other plugins, so "
|
11043 |
"test it troughly!"
|
11045 |
"Cependant, il peut se produire des conflits avec certains thèmes et/ou "
|
11046 |
"greffons (plugins), testez le bien avant de l'utiliser!"
|
11047 |
|
11048 |
+
#: wppa-settings-autosave.php:3553
|
11049 |
msgid ""
|
11050 |
"Table IV-A2 (Photo names in urls) must be UNchecked for this setting to work!"
|
11051 |
msgstr ""
|
11052 |
"Table IV-A2 (Nom des photos dans les URLs) doit être DÉcoché pour que ce "
|
11053 |
"réglage fonctionne!"
|
11054 |
|
11055 |
+
#: wppa-settings-autosave.php:3560
|
11056 |
msgid "Enable encrypted links"
|
11057 |
msgstr "Activer les liens cryptés"
|
11058 |
|
11059 |
+
#: wppa-settings-autosave.php:3561
|
11060 |
msgid "Encrypt album and photo ids in links."
|
11061 |
msgstr "Crypter les album et photo ID dans les liens."
|
11062 |
|
11063 |
+
#: wppa-settings-autosave.php:3564
|
11064 |
msgid "The page will be reloaded."
|
11065 |
msgstr "La page sera rechargée."
|
11066 |
|
11067 |
+
#: wppa-settings-autosave.php:3570
|
11068 |
msgid "Refuse unencrypted"
|
11069 |
msgstr "Refuser non cryptés"
|
11070 |
|
11071 |
+
#: wppa-settings-autosave.php:3571
|
11072 |
msgid "When encrypted is enabled, refuse unencrypted urls."
|
11073 |
msgstr "Lorsque chiffré est activé, refuser les urls non chiffrées."
|
11074 |
|
11075 |
+
#: wppa-settings-autosave.php:3579
|
11076 |
msgid "Update addressline"
|
11077 |
msgstr "Mettre à jour la ligne d'adresse"
|
11078 |
|
11079 |
+
#: wppa-settings-autosave.php:3580
|
11080 |
msgid "Update the addressline after an ajax action or next slide."
|
11081 |
msgstr "Met à jour la ligne d'adresse après une action Ajax ou diapo suivante."
|
11082 |
|
11083 |
+
#: wppa-settings-autosave.php:3581
|
11084 |
msgid ""
|
11085 |
"If checked, refreshing the page will show the current content and the "
|
11086 |
"browsers back and forth arrows will browse the history on the page."
|
11088 |
"Si coché, rafraîchir la page affichera le contenu courant et les boutons "
|
11089 |
"Précédent et Suivant du navigateur parcoureront l'historique sur la page."
|
11090 |
|
11091 |
+
#: wppa-settings-autosave.php:3582
|
11092 |
msgid ""
|
11093 |
"If unchecked, refreshing the page will re-display the content of the "
|
11094 |
"original page."
|
11095 |
msgstr ""
|
11096 |
"Si décoché, rafraîchir la page ré-affichera le contenu de la page originale."
|
11097 |
|
11098 |
+
#: wppa-settings-autosave.php:3583
|
11099 |
msgid ""
|
11100 |
"This will only work on browsers that support history.pushState() and "
|
11101 |
"therefor NOT in IE"
|
11103 |
"Cela ne marchera que sur les navigateurs qui supportent la fonction history."
|
11104 |
"pushState() et donc PAS dans IE"
|
11105 |
|
11106 |
+
#: wppa-settings-autosave.php:3584
|
11107 |
msgid "Switching this off will affect the browsers behaviour."
|
11108 |
msgstr "Désactiver ceci modifiera le comportement du navigateur."
|
11109 |
|
11110 |
+
#: wppa-settings-autosave.php:3591
|
11111 |
msgid "Render shortcode always"
|
11112 |
msgstr "Toujours tenir compte du shortcode"
|
11113 |
|
11114 |
+
#: wppa-settings-autosave.php:3592
|
11115 |
msgid "This will skip the check on proper initialisation."
|
11116 |
msgstr "Ceci désactive la vérification d'un démarrage correct."
|
11117 |
|
11118 |
+
#: wppa-settings-autosave.php:3593
|
11119 |
msgid ""
|
11120 |
"This setting is required for certain themes like Gantry to prevent the "
|
11121 |
"display of wppa placeholders like [WPPA+ Photo display]."
|
11123 |
"Ce réglage est requis pour certains thèmes comme Gantry pour empêcher "
|
11124 |
"l’affichage d'éléments de WPPA comme [WPPA+ Photo display]."
|
11125 |
|
11126 |
+
#: wppa-settings-autosave.php:3600
|
11127 |
msgid "Track viewcounts"
|
11128 |
msgstr "Tracer le nombre de vues"
|
11129 |
|
11130 |
+
#: wppa-settings-autosave.php:3601
|
11131 |
msgid "Register number of views of albums and photos."
|
11132 |
msgstr "Enregistrer le nombre de vues des albums et photos."
|
11133 |
|
11134 |
+
#: wppa-settings-autosave.php:3609
|
11135 |
msgid "Track clickcounts"
|
11136 |
msgstr "Tracer le nombre de clics"
|
11137 |
|
11138 |
+
#: wppa-settings-autosave.php:3610
|
11139 |
msgid "Register number of clicks on photos that link to an url."
|
11140 |
msgstr ""
|
11141 |
"Inscrire le nombre de clics sur les photos qui ont un lien vers une url."
|
11142 |
|
11143 |
+
#: wppa-settings-autosave.php:3618
|
11144 |
msgid "Auto page"
|
11145 |
msgstr "Page auto"
|
11146 |
|
11147 |
+
#: wppa-settings-autosave.php:3619
|
11148 |
msgid "Create a wp page for every fullsize image."
|
11149 |
msgstr "Créer une page WP pour chaque image pleine taille."
|
11150 |
|
11151 |
+
#: wppa-settings-autosave.php:3623
|
11152 |
msgid "Please reload this page after changing!"
|
11153 |
msgstr "Veuillez recharger cette page après la modification!"
|
11154 |
|
11155 |
+
#: wppa-settings-autosave.php:3629
|
11156 |
msgid "Auto page display"
|
11157 |
msgstr "Affichage page auto"
|
11158 |
|
11159 |
+
#: wppa-settings-autosave.php:3630
|
11160 |
msgid "The type of display on the autopage pages."
|
11161 |
msgstr "Le type d'affichage des pages automatiques."
|
11162 |
|
11163 |
+
#: wppa-settings-autosave.php:3633
|
11164 |
msgid "Single photo"
|
11165 |
msgstr "Photo seule"
|
11166 |
|
11167 |
+
#: wppa-settings-autosave.php:3633
|
11168 |
msgid "Media type photo"
|
11169 |
msgstr "Media type photo"
|
11170 |
|
11171 |
+
#: wppa-settings-autosave.php:3633
|
11172 |
msgid "In the style of a slideshow"
|
11173 |
msgstr "Dans le style du diaporama"
|
11174 |
|
11175 |
+
#: wppa-settings-autosave.php:3640
|
11176 |
msgid "Auto page links"
|
11177 |
msgstr "Liens page auto"
|
11178 |
|
11179 |
+
#: wppa-settings-autosave.php:3641
|
11180 |
msgid "The location for the pagelinks."
|
11181 |
msgstr "Le positionnement des liens page."
|
11182 |
|
11183 |
+
#: wppa-settings-autosave.php:3644
|
11184 |
msgid "At top and bottom"
|
11185 |
msgstr "En haut et en bas"
|
11186 |
|
11187 |
+
#: wppa-settings-autosave.php:3651
|
11188 |
msgid "Defer javascript"
|
11189 |
msgstr "Report Javascript"
|
11190 |
|
11191 |
+
#: wppa-settings-autosave.php:3652
|
11192 |
msgid "Put javascript near the end of the page."
|
11193 |
msgstr "Met le Javascript vers la fin de la page."
|
11194 |
|
11195 |
+
#: wppa-settings-autosave.php:3653
|
11196 |
msgid ""
|
11197 |
"If checkd: May fix layout problems and broken slideshows. May speed up or "
|
11198 |
"slow down page appearing."
|
11200 |
"Si coché: peut régler des problèmes de disposition et diaporama mal rendus. "
|
11201 |
"Peut accélérer ou ralentir l'affichage de la page."
|
11202 |
|
11203 |
+
#: wppa-settings-autosave.php:3660
|
11204 |
msgid "Inline styles"
|
11205 |
msgstr "Styles inline"
|
11206 |
|
11207 |
+
#: wppa-settings-autosave.php:3661
|
11208 |
msgid "Set style specifications inline."
|
11209 |
msgstr "Régle les spécifications de style inline."
|
11210 |
|
11211 |
+
#: wppa-settings-autosave.php:3662
|
11212 |
msgid "If checked: May fix layout problems, but slows down page appearing."
|
11213 |
msgstr ""
|
11214 |
"Si coché: peut régler des problèmes de disposition, mais ralentit "
|
11215 |
"l'affichage de la page."
|
11216 |
|
11217 |
+
#: wppa-settings-autosave.php:3669
|
11218 |
msgid "Custom style"
|
11219 |
msgstr "Style personalisé"
|
11220 |
|
11221 |
+
#: wppa-settings-autosave.php:3670
|
11222 |
msgid "Enter custom style specs here."
|
11223 |
msgstr "Entrer les spécifications du style personnalisé ici."
|
11224 |
|
11225 |
+
#: wppa-settings-autosave.php:3678
|
11226 |
msgid "Use customized style file"
|
11227 |
msgstr "Utiliser fichier de style personnalisé"
|
11228 |
|
11229 |
+
#: wppa-settings-autosave.php:3679 wppa-settings-autosave.php:3688
|
11230 |
msgid "This feature is highly discouraged."
|
11231 |
msgstr "User de cette fonctionnalité est hautement déconseillé."
|
11232 |
|
11233 |
+
#: wppa-settings-autosave.php:3687
|
11234 |
msgid "Use customized theme file"
|
11235 |
msgstr "Utiliser fichier de thème personnalisé"
|
11236 |
|
11237 |
+
#: wppa-settings-autosave.php:3696
|
11238 |
msgid "Enable photo html access"
|
11239 |
msgstr "Autoriser l'accès HTML photo"
|
11240 |
|
11241 |
+
#: wppa-settings-autosave.php:3697
|
11242 |
msgid ""
|
11243 |
"Creates .htaccess files in .../uploads/wppa/ and .../uploads/wppa/thumbs/"
|
11244 |
msgstr ""
|
11245 |
"Crée des fichiers .htaccess dans ... /uploads/wppa/ et ... /uploads/wppa/"
|
11246 |
"thumbs/"
|
11247 |
|
11248 |
+
#: wppa-settings-autosave.php:3700
|
11249 |
msgid "create 'all access' .htaccess files"
|
11250 |
msgstr "créer des fichiers .htaccess « all access »"
|
11251 |
|
11252 |
+
#: wppa-settings-autosave.php:3701
|
11253 |
msgid "remove .htaccess files"
|
11254 |
msgstr "supprimer les fichiers .htaccess"
|
11255 |
|
11256 |
+
#: wppa-settings-autosave.php:3702
|
11257 |
msgid "create 'no hotlinking' .htaccess files"
|
11258 |
msgstr "ne créer des fichiers .htaccess « aucun hotlinking »"
|
11259 |
|
11260 |
+
#: wppa-settings-autosave.php:3703
|
11261 |
msgid "do not change existing .htaccess file(s)"
|
11262 |
msgstr "ne modifiez pas les fichiers .htaccess existant"
|
11263 |
|
11264 |
+
#: wppa-settings-autosave.php:3715
|
11265 |
msgid "Lazy or HTML comp"
|
11266 |
msgstr "HTML lazy ou avec compression"
|
11267 |
|
11268 |
+
#: wppa-settings-autosave.php:3716
|
11269 |
msgid "Tick this box when you use lazy load or html compression."
|
11270 |
msgstr ""
|
11271 |
"Cocher cette case quand vous utilisez lazy load ou la compression HTML."
|
11272 |
|
11273 |
+
#: wppa-settings-autosave.php:3717
|
11274 |
msgid ""
|
11275 |
"If the filmstrip images do not show up and you have a lazy load or html "
|
11276 |
"optimizing plugin active: Check this box"
|
11278 |
"Si les images filmstrip ne s'affichent pas et que vous utilisez lazy load ou "
|
11279 |
"un greffon d'optimisation HTML actif: cochez cette case"
|
11280 |
|
11281 |
+
#: wppa-settings-autosave.php:3724
|
11282 |
msgid "Thumbs first"
|
11283 |
msgstr "Vignettes en premier"
|
11284 |
|
11285 |
+
#: wppa-settings-autosave.php:3725
|
11286 |
msgid "When displaying album content: thumbnails before subalbums."
|
11287 |
msgstr ""
|
11288 |
"Lors de l'affichage du contenu de l'album: vignettes avant les albums fils."
|
11289 |
|
11290 |
+
#: wppa-settings-autosave.php:3733
|
11291 |
msgid "Login links"
|
11292 |
msgstr "Liens de connexion"
|
11293 |
|
11294 |
+
#: wppa-settings-autosave.php:3734
|
11295 |
msgid "You must login to... links to login page."
|
11296 |
msgstr "Vous devez vous connectez à... liens vers la page de connexion."
|
11297 |
|
11298 |
+
#: wppa-settings-autosave.php:3742
|
11299 |
msgid "Enable Video"
|
11300 |
msgstr "Activer vidéo"
|
11301 |
|
11302 |
+
#: wppa-settings-autosave.php:3743
|
11303 |
msgid "Enables video support."
|
11304 |
msgstr "Active le support de la vidéo."
|
11305 |
|
11306 |
+
#: wppa-settings-autosave.php:3752
|
11307 |
msgid "Enable Audio"
|
11308 |
msgstr "Activer audio"
|
11309 |
|
11310 |
+
#: wppa-settings-autosave.php:3753
|
11311 |
msgid "Enables audio support."
|
11312 |
msgstr "Active le support de l'audio."
|
11313 |
|
11314 |
+
#: wppa-settings-autosave.php:3761
|
11315 |
msgid "Enable 3D Stereo"
|
11316 |
msgstr "Activer 3D stéréo"
|
11317 |
|
11318 |
+
#: wppa-settings-autosave.php:3762
|
11319 |
msgid "Enables 3D stereo photo support."
|
11320 |
msgstr "Active le support de la photo stéréo 3D."
|
11321 |
|
11322 |
+
#: wppa-settings-autosave.php:3770
|
11323 |
msgid "Relative urls"
|
11324 |
msgstr "URLs ralatives"
|
11325 |
|
11326 |
+
#: wppa-settings-autosave.php:3771
|
11327 |
msgid "Use relative urls only."
|
11328 |
msgstr "Utiliser les URLs relatives uniquement."
|
11329 |
|
11330 |
+
#: wppa-settings-autosave.php:3779
|
11331 |
msgid "Capitalize tags and cats"
|
11332 |
msgstr "Capitaliser les tags et les cats"
|
11333 |
|
11334 |
+
#: wppa-settings-autosave.php:3780
|
11335 |
msgid "Format tags and cats to start with one capital character"
|
11336 |
msgstr ""
|
11337 |
"Balises de format tags et cats de commencer par un caractère de capital"
|
11338 |
|
11339 |
+
#: wppa-settings-autosave.php:3788
|
11340 |
msgid "Enable Admins Choice"
|
11341 |
msgstr "Activer Admins Choice"
|
11342 |
|
11343 |
+
#: wppa-settings-autosave.php:3789
|
11344 |
msgid "Enable the creation of zipfiles with selected photos."
|
11345 |
msgstr "Permettent de créer des zipfiles avec les photos sélectionnées."
|
11346 |
|
11347 |
+
#: wppa-settings-autosave.php:3790
|
11348 |
msgid "Activate the Admins Choice widget to make the zipfiles downloadable."
|
11349 |
msgstr ""
|
11350 |
"Activer le widget de choix des Admins pour faire le zipfiles téléchargeable."
|
11351 |
|
11352 |
+
#: wppa-settings-autosave.php:3797
|
11353 |
msgid "Make owner like photoname"
|
11354 |
msgstr "Faire le propriétaire comme nom de photo"
|
11355 |
|
11356 |
+
#: wppa-settings-autosave.php:3798
|
11357 |
msgid "Change the owner to the user who's display name equals photoname."
|
11358 |
msgstr ""
|
11359 |
"Changer le propriétaire à l’utilisateur qui a afficher nom équivaut à nom de "
|
11360 |
"photo."
|
11361 |
|
11362 |
+
#: wppa-settings-autosave.php:3806
|
11363 |
msgid "JS and CSS when needed"
|
11364 |
msgstr "JS et CSS en cas de besoin"
|
11365 |
|
11366 |
+
#: wppa-settings-autosave.php:3807
|
11367 |
msgid "Loads .js and .css files only when they are used on the page."
|
11368 |
msgstr "Charge .js et .css seulement quand ils sont utilisés sur la page."
|
11369 |
|
11370 |
+
#: wppa-settings-autosave.php:3808
|
11371 |
msgid ""
|
11372 |
"This is a self learning system. The first time a page is loaded that "
|
11373 |
"requires wppa .css or .js files, the page will reload."
|
11375 |
"Ceci est un système d'auto-apprentissage. La première fois qu'une page est "
|
11376 |
"chargée qui nécessite .css ou .js fichiers, la page se rechargera."
|
11377 |
|
11378 |
+
#: wppa-settings-autosave.php:3816
|
11379 |
msgid "Slideshow related settings"
|
11380 |
msgstr "Réglages pour le diaporama"
|
11381 |
|
11382 |
+
#: wppa-settings-autosave.php:3818
|
11383 |
msgid "V align"
|
11384 |
msgstr "Alignement vertical"
|
11385 |
|
11386 |
+
#: wppa-settings-autosave.php:3819
|
11387 |
msgid "Vertical alignment of slideshow images."
|
11388 |
msgstr "Alignement vertical des images du diaporama."
|
11389 |
|
11390 |
+
#: wppa-settings-autosave.php:3820
|
11391 |
msgid "Specify the vertical alignment of slideshow images."
|
11392 |
msgstr "Définit l'alignement vertical des images du diaporama."
|
11393 |
|
11394 |
+
#: wppa-settings-autosave.php:3821
|
11395 |
msgid ""
|
11396 |
"If you select --- none ---, the photos will not be centered horizontally "
|
11397 |
"either."
|
11399 |
"Si vous choisissez --- aucun ---, les photos ne seront pas non plus centrées "
|
11400 |
"horizontalement."
|
11401 |
|
11402 |
+
#: wppa-settings-autosave.php:3823 wppa-settings-autosave.php:4094
|
11403 |
#: wppa-slideshow-widget.php:214
|
11404 |
msgid "top"
|
11405 |
msgstr "haut"
|
11406 |
|
11407 |
+
#: wppa-settings-autosave.php:3823 wppa-settings-autosave.php:4094
|
11408 |
#: wppa-slideshow-widget.php:216
|
11409 |
msgid "bottom"
|
11410 |
msgstr "Bas"
|
11411 |
|
11412 |
+
#: wppa-settings-autosave.php:3823 wppa-slideshow-widget.php:217
|
11413 |
msgid "fit"
|
11414 |
msgstr "auto adaptation"
|
11415 |
|
11416 |
+
#: wppa-settings-autosave.php:3831
|
11417 |
msgid "H align"
|
11418 |
msgstr "Alignement horizontal"
|
11419 |
|
11420 |
+
#: wppa-settings-autosave.php:3832
|
11421 |
msgid "Horizontal alignment of slideshow images."
|
11422 |
msgstr "Alignement horizontal des images du diaporama."
|
11423 |
|
11424 |
+
#: wppa-settings-autosave.php:3833
|
11425 |
msgid ""
|
11426 |
"Specify the horizontal alignment of slideshow images. If you specify --- "
|
11427 |
"none --- , no horizontal alignment will take place."
|
11429 |
"Définit l'alignement horizontal des images du diaporama. Si vous choisissez "
|
11430 |
"--- aucun ---, il n'y aura pas d'alignement horizontal."
|
11431 |
|
11432 |
+
#: wppa-settings-autosave.php:3834
|
11433 |
msgid ""
|
11434 |
"This setting is only usefull when the Column Width differs from the Maximum "
|
11435 |
"Width."
|
11437 |
"Ce réglage n'est utile que lorsque la largeur de colonne diffère de la "
|
11438 |
"largeur maximum."
|
11439 |
|
11440 |
+
#: wppa-settings-autosave.php:3835
|
11441 |
msgid "(Settings I-A1 and I-B1)"
|
11442 |
msgstr "(Réglages I-A1 et I-B1)"
|
11443 |
|
11444 |
+
#: wppa-settings-autosave.php:3845
|
11445 |
msgid "Start slideshow running."
|
11446 |
msgstr "Démarrage du diaporama."
|
11447 |
|
11448 |
+
#: wppa-settings-autosave.php:3846
|
11449 |
msgid ""
|
11450 |
"If you select \"running\", the slideshow will start running immediately, if "
|
11451 |
"you select \"still at first photo\", the first photo will be displayed in "
|
11455 |
"vous choisissez \"fixe: première photo\", la première photo sera affichée en "
|
11456 |
"mode navigation."
|
11457 |
|
11458 |
+
#: wppa-settings-autosave.php:3847
|
11459 |
msgid ""
|
11460 |
"If you select \"still at first norated\", the first photo that the visitor "
|
11461 |
"did not gave a rating will be displayed in browse mode."
|
11463 |
"Si vous choisissez \"fixe: première photo non notée\", la première photo que "
|
11464 |
"le visiteur n'a pas notée sera affichée en mode navigation."
|
11465 |
|
11466 |
+
#: wppa-settings-autosave.php:3849
|
11467 |
msgid "running"
|
11468 |
msgstr "immédiat"
|
11469 |
|
11470 |
+
#: wppa-settings-autosave.php:3850
|
11471 |
msgid "still at first photo"
|
11472 |
msgstr "fixe: première photo"
|
11473 |
|
11474 |
+
#: wppa-settings-autosave.php:3851
|
11475 |
msgid "still at first norated"
|
11476 |
msgstr "fixe: première photo non notée"
|
11477 |
|
11478 |
+
#: wppa-settings-autosave.php:3862
|
11479 |
msgid "Start slideonly"
|
11480 |
msgstr "Démarrer diapo seulement"
|
11481 |
|
11482 |
+
#: wppa-settings-autosave.php:3863
|
11483 |
msgid "Start slideonly slideshow running."
|
11484 |
msgstr "Démarrage du diaporama en mode diapo seulement."
|
11485 |
|
11486 |
+
#: wppa-settings-autosave.php:3871 wppa-settings-autosave.php:4787
|
11487 |
msgid "Video autostart"
|
11488 |
msgstr "Démarrage auto des vidéos"
|
11489 |
|
11490 |
+
#: wppa-settings-autosave.php:3872
|
11491 |
msgid "Autoplay videos in slideshows."
|
11492 |
msgstr "Joue les vidéos automatiquement dans les diaporamas."
|
11493 |
|
11494 |
+
#: wppa-settings-autosave.php:3881 wppa-settings-autosave.php:4796
|
11495 |
msgid "Audio autostart"
|
11496 |
msgstr "Démarrage auto des fichiers audio"
|
11497 |
|
11498 |
+
#: wppa-settings-autosave.php:3882
|
11499 |
msgid "Autoplay audios in slideshows."
|
11500 |
msgstr "Joue les fichiers audio automatiquement dans les diaporamas."
|
11501 |
|
11502 |
+
#: wppa-settings-autosave.php:3890
|
11503 |
msgid "Animation type"
|
11504 |
msgstr "Type d'animation"
|
11505 |
|
11506 |
+
#: wppa-settings-autosave.php:3891
|
11507 |
msgid "The way successive slides appear."
|
11508 |
msgstr "La façon dont les diapo successives s’enchaînent."
|
11509 |
|
11510 |
+
#: wppa-settings-autosave.php:3892
|
11511 |
msgid ""
|
11512 |
"Select the way the old slide is to be replaced by the new one in the "
|
11513 |
"slideshow/browse fullsize display."
|
11515 |
"Choisir la façon dont la nouvelle diapo remplace l'ancienne dans l’affichage "
|
11516 |
"pleine taille du diaporama/navigation."
|
11517 |
|
11518 |
+
#: wppa-settings-autosave.php:3894
|
11519 |
msgid "Fade out and in simultaneous"
|
11520 |
msgstr "Fondu simultané"
|
11521 |
|
11522 |
+
#: wppa-settings-autosave.php:3895
|
11523 |
msgid "Fade in after fade out"
|
11524 |
msgstr "Fondu enchaîné"
|
11525 |
|
11526 |
+
#: wppa-settings-autosave.php:3896
|
11527 |
msgid "Shift adjacent"
|
11528 |
msgstr "Translation adjacente"
|
11529 |
|
11530 |
+
#: wppa-settings-autosave.php:3897
|
11531 |
msgid "Stack on"
|
11532 |
msgstr "Empilage"
|
11533 |
|
11534 |
+
#: wppa-settings-autosave.php:3898
|
11535 |
msgid "Stack off"
|
11536 |
msgstr "Dés-empilage"
|
11537 |
|
11538 |
+
#: wppa-settings-autosave.php:3899
|
11539 |
msgid "Turn over"
|
11540 |
msgstr "Roulement"
|
11541 |
|
11542 |
+
#: wppa-settings-autosave.php:3913
|
11543 |
msgid "Timeout"
|
11544 |
msgstr "Timeout"
|
11545 |
|
11546 |
+
#: wppa-settings-autosave.php:3914
|
11547 |
msgid "Slideshow timeout."
|
11548 |
msgstr "Timeout du diaporama."
|
11549 |
|
11550 |
+
#: wppa-settings-autosave.php:3915
|
11551 |
msgid ""
|
11552 |
"Select the time a single slide will be visible when the slideshow is started."
|
11553 |
msgstr ""
|
11554 |
"Choisir le temps pendant lequel une diapo sera visible quand le diaporama "
|
11555 |
"est démarré."
|
11556 |
|
11557 |
+
#: wppa-settings-autosave.php:3924
|
11558 |
msgid "Speed"
|
11559 |
msgstr "Vitesse"
|
11560 |
|
11561 |
+
#: wppa-settings-autosave.php:3925
|
11562 |
msgid "Slideshow animation speed."
|
11563 |
msgstr "Vitesse d'animation du diaporama."
|
11564 |
|
11565 |
+
#: wppa-settings-autosave.php:3926
|
11566 |
msgid "Specify the animation speed to be used in slideshows."
|
11567 |
msgstr "Définir la vitesse d'animation à utiliser dans les diaporamas."
|
11568 |
|
11569 |
+
#: wppa-settings-autosave.php:3927
|
11570 |
msgid "This is the time it takes a photo to fade in or out."
|
11571 |
msgstr "C'est le temps que met une photo à apparaître ou à s'estomper."
|
11572 |
|
11573 |
+
#: wppa-settings-autosave.php:3929 wppa-settings-autosave.php:4321
|
11574 |
+
#: wppa-settings-autosave.php:4733 wppa-settings-autosave.php:6679
|
11575 |
+
#: wppa-settings-autosave.php:7905 wppa-settings-autosave.php:7916
|
11576 |
+
#: wppa-settings-autosave.php:7927 wppa-settings-autosave.php:7938
|
11577 |
+
#: wppa-settings-autosave.php:8098
|
11578 |
msgid "--- off ---"
|
11579 |
msgstr "--- désactivé ---"
|
11580 |
|
11581 |
+
#: wppa-settings-autosave.php:3929
|
11582 |
msgid "very fast (200 ms.)"
|
11583 |
msgstr "très rapide (200 ms.)"
|
11584 |
|
11585 |
+
#: wppa-settings-autosave.php:3929
|
11586 |
msgid "fast (400 ms.)"
|
11587 |
msgstr "rapide (400 ms.)"
|
11588 |
|
11589 |
+
#: wppa-settings-autosave.php:3929
|
11590 |
msgid "normal (800 ms.)"
|
11591 |
msgstr "normal (800 ms.)"
|
11592 |
|
11593 |
+
#: wppa-settings-autosave.php:3929
|
11594 |
msgid "slow (1.2 s.)"
|
11595 |
msgstr "lent (1.2 s.)"
|
11596 |
|
11597 |
+
#: wppa-settings-autosave.php:3929
|
11598 |
msgid "very slow (2 s.)"
|
11599 |
msgstr "très lent (2 s.)"
|
11600 |
|
11601 |
+
#: wppa-settings-autosave.php:3929
|
11602 |
msgid "extremely slow (4 s.)"
|
11603 |
msgstr "extrèmement lent (4 s.)"
|
11604 |
|
11605 |
+
#: wppa-settings-autosave.php:3936
|
11606 |
msgid "Slide hover pause"
|
11607 |
msgstr "Pause lors du survol"
|
11608 |
|
11609 |
+
#: wppa-settings-autosave.php:3937
|
11610 |
msgid "Running Slideshow suspends during mouse hover."
|
11611 |
msgstr "Le diaporama s'arrête lorsque le curseur de la souris le survole."
|
11612 |
|
11613 |
+
#: wppa-settings-autosave.php:3945
|
11614 |
msgid "Slideshow wrap around"
|
11615 |
msgstr "Bouclage du diaporama"
|
11616 |
|
11617 |
+
#: wppa-settings-autosave.php:3946
|
11618 |
msgid "The slideshow wraps around the start and end"
|
11619 |
msgstr "Le diaporama passe en boucle"
|
11620 |
|
11621 |
+
#: wppa-settings-autosave.php:3954
|
11622 |
msgid "Full desc align"
|
11623 |
msgstr "Alignement desc. pleine taille"
|
11624 |
|
11625 |
+
#: wppa-settings-autosave.php:3955
|
11626 |
msgid "The alignment of the descriptions under fullsize images and slideshows."
|
11627 |
msgstr ""
|
11628 |
"L'alignement des descriptions sous les images pleine taille et diaporamas."
|
11629 |
|
11630 |
+
#: wppa-settings-autosave.php:3958 wppa-settings-autosave.php:4082
|
11631 |
+
#: wppa-settings-autosave.php:4200
|
11632 |
msgid "Left"
|
11633 |
msgstr "Gauche"
|
11634 |
|
11635 |
+
#: wppa-settings-autosave.php:3958
|
11636 |
msgid "Center"
|
11637 |
msgstr "Centre"
|
11638 |
|
11639 |
+
#: wppa-settings-autosave.php:3958 wppa-settings-autosave.php:4082
|
11640 |
+
#: wppa-settings-autosave.php:4200
|
11641 |
msgid "Right"
|
11642 |
msgstr "Droite"
|
11643 |
|
11644 |
+
#: wppa-settings-autosave.php:3965
|
11645 |
msgid "Remove redundant space"
|
11646 |
msgstr "Enlever les espaces répétés"
|
11647 |
|
11648 |
+
#: wppa-settings-autosave.php:3966
|
11649 |
msgid "Removes unwanted <p> and <br> tags in fullsize descriptions."
|
11650 |
msgstr ""
|
11651 |
"Enlève les balises <p> et <br> dans les descriptions pleine taille."
|
11652 |
|
11653 |
+
#: wppa-settings-autosave.php:3967
|
11654 |
msgid ""
|
11655 |
"This setting has only effect when Table IX-A7 (foreign shortcodes) is "
|
11656 |
"checked."
|
11658 |
"Ce réglage n'a d'effet que lorsque table IX-A7 (shortcodes étrangers) est "
|
11659 |
"coché."
|
11660 |
|
11661 |
+
#: wppa-settings-autosave.php:3974 wppa-settings-autosave.php:4139
|
11662 |
+
#: wppa-settings-autosave.php:4269
|
11663 |
msgid "Run nl2br or wpautop on description"
|
11664 |
msgstr "Exécutez nl2br ou wpautop sur la description"
|
11665 |
|
11666 |
+
#: wppa-settings-autosave.php:3975
|
11667 |
msgid "Adds <br> or <p> and <br> tags in fullsize descriptions."
|
11668 |
msgstr ""
|
11669 |
"Ajoute <br> ou <p> et <br> balises dans les descriptions de "
|
11670 |
"fullsize."
|
11671 |
|
11672 |
+
#: wppa-settings-autosave.php:3979 wppa-settings-autosave.php:4144
|
11673 |
+
#: wppa-settings-autosave.php:4274
|
11674 |
msgid "Linebreaks only"
|
11675 |
msgstr "linebreaks seulement"
|
11676 |
|
11677 |
+
#: wppa-settings-autosave.php:3980 wppa-settings-autosave.php:4145
|
11678 |
+
#: wppa-settings-autosave.php:4275
|
11679 |
msgid "Linebreaks and paragraphs"
|
11680 |
msgstr "Linebreaks et les paragraphes"
|
11681 |
|
11682 |
+
#: wppa-settings-autosave.php:3988
|
11683 |
msgid "Auto open comments"
|
11684 |
msgstr "Ouverture auto des commentaires"
|
11685 |
|
11686 |
+
#: wppa-settings-autosave.php:3989
|
11687 |
msgid "Automatic opens comments box when slideshow does not run."
|
11688 |
msgstr ""
|
11689 |
"Ouverture automatique de la boîte de commentaires lorsque le diaporama ne "
|
11690 |
"tourne pas."
|
11691 |
|
11692 |
+
#: wppa-settings-autosave.php:3997
|
11693 |
msgid "Film hover goto"
|
11694 |
msgstr "Aller à lors du survol du filmstrip"
|
11695 |
|
11696 |
+
#: wppa-settings-autosave.php:3998
|
11697 |
msgid "Go to slide when hovering filmstrip thumbnail."
|
11698 |
msgstr "Va à la diapo lors du survol de la vignette filmstrip."
|
11699 |
|
11700 |
+
#: wppa-settings-autosave.php:3999
|
11701 |
msgid "Do not use this setting when slides have different aspect ratios!"
|
11702 |
msgstr "Ne pas utiliser ce réglage quand les diapo ont des ratios différents!"
|
11703 |
|
11704 |
+
#: wppa-settings-autosave.php:4006
|
11705 |
msgid "Slide swipe"
|
11706 |
msgstr "Swipe sur les diapos"
|
11707 |
|
11708 |
+
#: wppa-settings-autosave.php:4007
|
11709 |
msgid "Enable touch events swipe left-right on slides on touch screens."
|
11710 |
msgstr ""
|
11711 |
"Active les fonctionnalités Swipe gauche-droite pour les diapos sur les "
|
11712 |
"écrans tactiles."
|
11713 |
|
11714 |
+
#: wppa-settings-autosave.php:4015
|
11715 |
msgid "Slide page Ajax"
|
11716 |
msgstr "Ajax page diapo"
|
11717 |
|
11718 |
+
#: wppa-settings-autosave.php:4016
|
11719 |
msgid "Pagelinks slideshow use Ajax"
|
11720 |
msgstr "Les diaporamas des pages de liens utilisent Ajax"
|
11721 |
|
11722 |
+
#: wppa-settings-autosave.php:4017
|
11723 |
msgid "On some systems you need to disable ajax here."
|
11724 |
msgstr "Sur certains systèmes, vous devrez désactiver Ajax ici."
|
11725 |
|
11726 |
+
#: wppa-settings-autosave.php:4025
|
11727 |
msgid "Thumbnail related settings"
|
11728 |
msgstr "Réglages pour les vignettes"
|
11729 |
|
11730 |
+
#: wppa-settings-autosave.php:4028
|
11731 |
msgid "Photo ordering sequence method."
|
11732 |
msgstr "Méthode utilisée pour le tri des photos."
|
11733 |
|
11734 |
+
#: wppa-settings-autosave.php:4029
|
11735 |
msgid ""
|
11736 |
"Specify the way the photos should be ordered. This is the default setting. "
|
11737 |
"You can overrule the default sorting order on a per album basis."
|
11740 |
"défaut. Vous avez la possibilité de régler la méthode de tri séparément pour "
|
11741 |
"chaque album."
|
11742 |
|
11743 |
+
#: wppa-settings-autosave.php:4066
|
11744 |
msgid "Thumbnail type"
|
11745 |
msgstr "Type de vignette"
|
11746 |
|
11747 |
+
#: wppa-settings-autosave.php:4067
|
11748 |
msgid "The way the thumbnail images are displayed."
|
11749 |
msgstr "La façon dont les vignettes sont affichées."
|
11750 |
|
11751 |
+
#: wppa-settings-autosave.php:4068
|
11752 |
msgid ""
|
11753 |
"You may select an altenative display method for thumbnails. Note that some "
|
11754 |
"of the thumbnail settings do not apply to all available display methods."
|
11757 |
"certains réglages pour les vignettes ne s'appliquent pas à toutes les "
|
11758 |
"méthodes d'affichage."
|
11759 |
|
11760 |
+
#: wppa-settings-autosave.php:4070 wppa-settings-autosave.php:4094
|
11761 |
#: wppa-tinymce-shortcodes.php:515 wppa-tinymce-shortcodes.php:534
|
11762 |
#: wppa-watermark.php:569 wppa-watermark.php:634
|
11763 |
msgid "--- default ---"
|
11764 |
msgstr "--- défaut ---"
|
11765 |
|
11766 |
+
#: wppa-settings-autosave.php:4070
|
11767 |
msgid "like album covers"
|
11768 |
msgstr "comme les couvertures d'album"
|
11769 |
|
11770 |
+
#: wppa-settings-autosave.php:4070
|
11771 |
msgid "like album covers mcr"
|
11772 |
msgstr "comme mcr des couvertures d'album"
|
11773 |
|
11774 |
+
#: wppa-settings-autosave.php:4070
|
11775 |
msgid "masonry style columns"
|
11776 |
msgstr "colonnes style maçonnerie"
|
11777 |
|
11778 |
+
#: wppa-settings-autosave.php:4070
|
11779 |
msgid "masonry style rows"
|
11780 |
msgstr "lignes style maçonnerie"
|
11781 |
|
11782 |
+
#: wppa-settings-autosave.php:4078 wppa-settings-autosave.php:4194
|
11783 |
msgid "Placement"
|
11784 |
msgstr "Placement"
|
11785 |
|
11786 |
+
#: wppa-settings-autosave.php:4079
|
11787 |
msgid "Thumbnail image left or right."
|
11788 |
msgstr "vignette à gauche ou a droite."
|
11789 |
|
11790 |
+
#: wppa-settings-autosave.php:4080
|
11791 |
msgid "Indicate the placement position of the thumbnailphoto you wish."
|
11792 |
msgstr "Indique l'emplacement voulu de la vignette photo."
|
11793 |
|
11794 |
+
#: wppa-settings-autosave.php:4089
|
11795 |
msgid "Vertical alignment"
|
11796 |
msgstr "Alignement vertical"
|
11797 |
|
11798 |
+
#: wppa-settings-autosave.php:4090
|
11799 |
msgid "Vertical alignment of thumbnails."
|
11800 |
msgstr "Alignement vertical des vignettes."
|
11801 |
|
11802 |
+
#: wppa-settings-autosave.php:4091
|
11803 |
msgid ""
|
11804 |
"Specify the vertical alignment of thumbnail images. Use this setting when "
|
11805 |
"albums contain both portrait and landscape photos."
|
11807 |
"Spécifie l’alignement vertical des vignettes. Utiliser ce réglage quand les "
|
11808 |
"couvertures d'album contiennent des photos en mode portrait et paysage."
|
11809 |
|
11810 |
+
#: wppa-settings-autosave.php:4092
|
11811 |
msgid ""
|
11812 |
"It is NOT recommended to use the value --- default ---; it will affect the "
|
11813 |
"horizontal alignment also and is meant to be used with custom css."
|
11816 |
"l'alignement horizontal aussi et il est prévu pour être utilisé avec le CSS "
|
11817 |
"personnalisé."
|
11818 |
|
11819 |
+
#: wppa-settings-autosave.php:4101
|
11820 |
msgid "Thumb mouseover"
|
11821 |
msgstr "Survol vignette"
|
11822 |
|
11823 |
+
#: wppa-settings-autosave.php:4102
|
11824 |
msgid "Apply thumbnail mouseover effect."
|
11825 |
msgstr "Appliquer l'effet de survol des vignettes."
|
11826 |
|
11827 |
+
#: wppa-settings-autosave.php:4103
|
11828 |
msgid "Check this box to use mouseover effect on thumbnail images."
|
11829 |
msgstr "Cochez cette case pour utiliser l'effet de survol sur les vignettes."
|
11830 |
|
11831 |
+
#: wppa-settings-autosave.php:4111
|
11832 |
msgid "Thumb opacity"
|
11833 |
msgstr "Opacité des vignettes"
|
11834 |
|
11835 |
+
#: wppa-settings-autosave.php:4112 wppa-settings-autosave.php:4219
|
11836 |
msgid "Initial opacity value."
|
11837 |
msgstr "Valeur d'opacité initiale."
|
11838 |
|
11839 |
+
#: wppa-settings-autosave.php:4113 wppa-settings-autosave.php:4220
|
11840 |
+
#: wppa-settings-autosave.php:4370
|
11841 |
msgid "Enter percentage of opacity. 100% is opaque, 0% is transparant"
|
11842 |
msgstr "Entrer le pourcentage d'opacité. 100% : opaque, 0% : transparent"
|
11843 |
|
11844 |
+
#: wppa-settings-autosave.php:4115 wppa-settings-autosave.php:4222
|
11845 |
+
#: wppa-settings-autosave.php:4373 wppa-settings-autosave.php:4713
|
11846 |
msgid "%"
|
11847 |
msgstr "%"
|
11848 |
|
11849 |
+
#: wppa-settings-autosave.php:4120
|
11850 |
msgid "Thumb popup"
|
11851 |
msgstr "Popup vignette"
|
11852 |
|
11853 |
+
#: wppa-settings-autosave.php:4121
|
11854 |
msgid "Use popup effect on thumbnail images."
|
11855 |
msgstr "Utiliser l'effet popup sur les vignettes."
|
11856 |
|
11857 |
+
#: wppa-settings-autosave.php:4122
|
11858 |
msgid "Thumbnails pop-up to a larger image when hovered."
|
11859 |
msgstr ""
|
11860 |
"Une vue plus grande de l'image s'affiche dans un popup lorsqu'on survole la "
|
11861 |
"vignette."
|
11862 |
|
11863 |
+
#: wppa-settings-autosave.php:4130
|
11864 |
msgid "Align subtext"
|
11865 |
msgstr "aligner le sous texte"
|
11866 |
|
11867 |
+
#: wppa-settings-autosave.php:4131
|
11868 |
msgid "Set thumbnail subtext on equal height."
|
11869 |
msgstr "Régler le sous texte des vignettes à hauteur égale."
|
11870 |
|
11871 |
+
#: wppa-settings-autosave.php:4140
|
11872 |
msgid "Adds <br> or <p> and <br> tags in thumbnail descriptions."
|
11873 |
msgstr ""
|
11874 |
"Ajoute <br> ou <p> et <br> balises dans la description des "
|
11875 |
"vignettes."
|
11876 |
|
11877 |
+
#: wppa-settings-autosave.php:4154
|
11878 |
msgid "Album and covers related settings"
|
11879 |
msgstr "Réglages pour les albums et les couvertures"
|
11880 |
|
11881 |
+
#: wppa-settings-autosave.php:4156
|
11882 |
msgid "Album order"
|
11883 |
msgstr "Tri des albums"
|
11884 |
|
11885 |
+
#: wppa-settings-autosave.php:4157
|
11886 |
msgid "Album ordering sequence method."
|
11887 |
msgstr "Méthode de tri des albums."
|
11888 |
|
11889 |
+
#: wppa-settings-autosave.php:4158
|
11890 |
msgid "Specify the way the albums should be ordered."
|
11891 |
msgstr "Spécifier la façon dont les albums doivent être triés."
|
11892 |
|
11893 |
+
#: wppa-settings-autosave.php:4183
|
11894 |
msgid "Default coverphoto selection"
|
11895 |
msgstr "Sélection de la photo de couverture par défaut"
|
11896 |
|
11897 |
+
#: wppa-settings-autosave.php:4184
|
11898 |
msgid "Default select cover photo method."
|
11899 |
msgstr "Réglage par défaut de la sélection de la photo de couverture."
|
11900 |
|
11901 |
+
#: wppa-settings-autosave.php:4185
|
11902 |
msgid ""
|
11903 |
"This is the initial value on album creation only. It can be overruled on the "
|
11904 |
"edit album page."
|
11906 |
"C'est la valeur initiale à la création de l'album. Cela peut être modifié "
|
11907 |
"dans la page de modification de l'album."
|
11908 |
|
11909 |
+
#: wppa-settings-autosave.php:4186
|
11910 |
msgid "Random from album"
|
11911 |
msgstr "Aléatoire à partir de l'album"
|
11912 |
|
11913 |
+
#: wppa-settings-autosave.php:4186
|
11914 |
msgid "Random featured from album"
|
11915 |
msgstr "Aléatoire recommandé de l'album"
|
11916 |
|
11917 |
+
#: wppa-settings-autosave.php:4186
|
11918 |
msgid "Most recently added to album"
|
11919 |
msgstr "Dernières photos mises à jour"
|
11920 |
|
11921 |
+
#: wppa-settings-autosave.php:4186
|
11922 |
msgid "Random from album or any sub album"
|
11923 |
msgstr "Aléatoire depuis un album ou (fils)"
|
11924 |
|
11925 |
+
#: wppa-settings-autosave.php:4195
|
11926 |
msgid "Cover image position."
|
11927 |
msgstr "Position de l'image de couverture."
|
11928 |
|
11929 |
+
#: wppa-settings-autosave.php:4196
|
11930 |
msgid ""
|
11931 |
"Enter the position that you want to be used for the default album cover "
|
11932 |
"selected in Table IV-D6."
|
11934 |
"Entrer le placement que vous voulez utiliser par défaut pour la couverture "
|
11935 |
"d'album par défaut choisie dans table IV-D6."
|
11936 |
|
11937 |
+
#: wppa-settings-autosave.php:4197
|
11938 |
msgid ""
|
11939 |
"For covertype Image Factory: left will be treated as top and right will be "
|
11940 |
"treted as bottom."
|
11942 |
"Pour covertype Image Factory: gauche sera considéré comme haut et droite "
|
11943 |
"comme bas."
|
11944 |
|
11945 |
+
#: wppa-settings-autosave.php:4198
|
11946 |
msgid ""
|
11947 |
"For covertype Long Descriptions: top will be treated as left and bottom will "
|
11948 |
"be treted as right."
|
11950 |
"Pour covertype Long Descriptions: haut sera considéré comme gauche et bas "
|
11951 |
"comme droite."
|
11952 |
|
11953 |
+
#: wppa-settings-autosave.php:4208
|
11954 |
msgid "Cover mouseover"
|
11955 |
msgstr "Survol couverture"
|
11956 |
|
11957 |
+
#: wppa-settings-autosave.php:4209
|
11958 |
msgid "Apply coverphoto mouseover effect."
|
11959 |
msgstr "Appliquer l'effet de survol de la photo de couverture."
|
11960 |
|
11961 |
+
#: wppa-settings-autosave.php:4210
|
11962 |
msgid "Check this box to use mouseover effect on cover images."
|
11963 |
msgstr ""
|
11964 |
"Cochez cette case pour utiliser l'effet de survol sur les photos de "
|
11965 |
"couverture."
|
11966 |
|
11967 |
+
#: wppa-settings-autosave.php:4218
|
11968 |
msgid "Cover opacity"
|
11969 |
msgstr "Opacité de la couverture"
|
11970 |
|
11971 |
+
#: wppa-settings-autosave.php:4227
|
11972 |
msgid "Cover type"
|
11973 |
msgstr "Type de couverture"
|
11974 |
|
11975 |
+
#: wppa-settings-autosave.php:4228
|
11976 |
msgid "Select the default cover type."
|
11977 |
msgstr "Choisir le type de couverture par défaut."
|
11978 |
|
11979 |
+
#: wppa-settings-autosave.php:4229
|
11980 |
msgid ""
|
11981 |
"Types with the addition mcr are suitable for Multi Column in a Responsive "
|
11982 |
"theme"
|
11984 |
"Les types avec l'ajout de mcr sont appropriés pour le Multi Colonne dans un "
|
11985 |
"thème Responsive"
|
11986 |
|
11987 |
+
#: wppa-settings-autosave.php:4252
|
11988 |
msgid "The umber of coverphotos. Must be > 1 and < 25."
|
11989 |
msgstr "Le nombre de photos de couvertures. Doit être > 1 et < 25."
|
11990 |
|
11991 |
+
#: wppa-settings-autosave.php:4260
|
11992 |
msgid "Cats include subs"
|
11993 |
msgstr "Les cats comprennent les sous-albums"
|
11994 |
|
11995 |
+
#: wppa-settings-autosave.php:4261
|
11996 |
msgid "Child albums are included in Category based shortcodes."
|
11997 |
msgstr "Albums enfant sont inclus dans la catégorie basé shortcodes."
|
11998 |
|
11999 |
+
#: wppa-settings-autosave.php:4262
|
12000 |
msgid ""
|
12001 |
"When you use album=\"#cat,...\", in a shortcode, the child albums will be "
|
12002 |
"included."
|
12004 |
"Lorsque vous utilisez album=\"#cat,...\", dans un shortcode, les albums "
|
12005 |
"d’enfant seront incluses."
|
12006 |
|
12007 |
+
#: wppa-settings-autosave.php:4270
|
12008 |
msgid "Adds <br> or <p> and <br> tags in album descriptions."
|
12009 |
msgstr ""
|
12010 |
"Ajoute <br> ou <p> et <br> balises dans les descriptions de l'album."
|
12011 |
|
12012 |
+
#: wppa-settings-autosave.php:4284
|
12013 |
msgid "Rating related settings"
|
12014 |
msgstr "Réglages pour la notation"
|
12015 |
|
12016 |
+
#: wppa-settings-autosave.php:4286
|
12017 |
msgid "Rating login"
|
12018 |
msgstr "Connexion pour la notation"
|
12019 |
|
12020 |
+
#: wppa-settings-autosave.php:4287
|
12021 |
msgid "Users must login to rate photos."
|
12022 |
msgstr "Les utilisateurs doivent se connecter pour voter."
|
12023 |
|
12024 |
+
#: wppa-settings-autosave.php:4288
|
12025 |
msgid ""
|
12026 |
"If users want to vote for a photo (rating 1..5 stars) the must login first. "
|
12027 |
"The avarage rating will always be displayed as long as the rating system is "
|
12031 |
"ils doivent se connecter avant. La note moyenne sera toujours affichée "
|
12032 |
"lorsque la notation est active."
|
12033 |
|
12034 |
+
#: wppa-settings-autosave.php:4295
|
12035 |
msgid "Rating change"
|
12036 |
msgstr "Changement de la notation"
|
12037 |
|
12038 |
+
#: wppa-settings-autosave.php:4296 wppa-settings-autosave.php:4297
|
12039 |
msgid "Users may change their ratings."
|
12040 |
msgstr "Les utilisateurs peuvent changer leurs notations."
|
12041 |
|
12042 |
+
#: wppa-settings-autosave.php:4298 wppa-settings-autosave.php:4352
|
12043 |
+
#: wppa-settings-autosave.php:4371 wppa-settings-autosave.php:4384
|
12044 |
+
#: wppa-settings-autosave.php:4394 wppa-settings-autosave.php:4404
|
12045 |
+
#: wppa-settings-autosave.php:4414
|
12046 |
msgid ""
|
12047 |
"If \"One button vote\" is selected in Table I-E1, this setting has no meaning"
|
12048 |
msgstr ""
|
12049 |
"Si \"One button vote\" est choisi dans table I-E1, ce réglage n'a pas de sens"
|
12050 |
|
12051 |
+
#: wppa-settings-autosave.php:4306
|
12052 |
msgid "Rating multi"
|
12053 |
msgstr "Multi notation"
|
12054 |
|
12055 |
+
#: wppa-settings-autosave.php:4307
|
12056 |
msgid "Users may give multiple votes."
|
12057 |
msgstr "Les utilisateurs peuvent voter plusieurs fois."
|
12058 |
|
12059 |
+
#: wppa-settings-autosave.php:4308
|
12060 |
msgid ""
|
12061 |
"Users may give multiple votes. (This has no effect when users may change "
|
12062 |
"their votes.)"
|
12064 |
"Les utilisateurs peuvent voter plusieurs fois. (Cela n'a pas d'effet quand "
|
12065 |
"les utilisateurs peuvent changer leurs votes.)"
|
12066 |
|
12067 |
+
#: wppa-settings-autosave.php:4317
|
12068 |
msgid "Rating daily"
|
12069 |
msgstr "Notation de tous les jours"
|
12070 |
|
12071 |
+
#: wppa-settings-autosave.php:4318
|
12072 |
msgid "Users may rate only once per period"
|
12073 |
msgstr "Utilisateurs peuvent noter qu’une seule fois par période"
|
12074 |
|
12075 |
+
#: wppa-settings-autosave.php:4321
|
12076 |
msgid "Week"
|
12077 |
msgstr "Semaine"
|
12078 |
|
12079 |
+
#: wppa-settings-autosave.php:4321
|
12080 |
msgid "Day"
|
12081 |
msgstr "Jour"
|
12082 |
|
12083 |
+
#: wppa-settings-autosave.php:4321
|
12084 |
msgid "Hour"
|
12085 |
msgstr "Heure"
|
12086 |
|
12087 |
+
#: wppa-settings-autosave.php:4329
|
12088 |
msgid "Rate own photos"
|
12089 |
msgstr "Noter ses propres photos"
|
12090 |
|
12091 |
+
#: wppa-settings-autosave.php:4330
|
12092 |
msgid "It is allowed to rate photos by the uploader himself."
|
12093 |
msgstr "L'utilisateur qui a chargé une photo peut aussi la noter."
|
12094 |
|
12095 |
+
#: wppa-settings-autosave.php:4339
|
12096 |
msgid "Rating requires comment"
|
12097 |
msgstr "Commentaire requis pour notation"
|
12098 |
|
12099 |
+
#: wppa-settings-autosave.php:4340
|
12100 |
msgid "Users must clarify their vote in a comment."
|
12101 |
msgstr "Les utilisateurs doivent justifier leur vote dans un commentaire."
|
12102 |
|
12103 |
+
#: wppa-settings-autosave.php:4350
|
12104 |
msgid "This value counts dislike rating."
|
12105 |
msgstr "Cette valeur compte les notes défavorables."
|
12106 |
|
12107 |
+
#: wppa-settings-autosave.php:4351
|
12108 |
msgid ""
|
12109 |
"This value will be used for a dislike rating on calculation of avarage "
|
12110 |
"ratings."
|
12112 |
"Cette valeur sera utilisée pour une note des avis défavorables dans le "
|
12113 |
"calcul des notes moyennes."
|
12114 |
|
12115 |
+
#: wppa-settings-autosave.php:4354
|
12116 |
msgid "points"
|
12117 |
msgstr "points"
|
12118 |
|
12119 |
+
#: wppa-settings-autosave.php:4359
|
12120 |
msgid "Next after vote"
|
12121 |
msgstr "Suivant après le vote"
|
12122 |
|
12123 |
+
#: wppa-settings-autosave.php:4360
|
12124 |
msgid "Goto next slide after voting"
|
12125 |
msgstr "Aller à la diapositive suivante après le vote"
|
12126 |
|
12127 |
+
#: wppa-settings-autosave.php:4361
|
12128 |
msgid ""
|
12129 |
"If checked, the visitor goes straight to the slide following the slide he "
|
12130 |
"voted. This will speed up mass voting."
|
12132 |
"Si coché, le visiteur va directement à la diapo suivant celle pour laquelle "
|
12133 |
"il a voté. Cela accélère le vote en masse."
|
12134 |
|
12135 |
+
#: wppa-settings-autosave.php:4368
|
12136 |
msgid "Star off opacity"
|
12137 |
msgstr "Opacité étoile éteinte"
|
12138 |
|
12139 |
+
#: wppa-settings-autosave.php:4369
|
12140 |
msgid "Rating star off state opacity value."
|
12141 |
msgstr "Valeur de l'opacité de l'étoile pour l'état éteint."
|
12142 |
|
12143 |
+
#: wppa-settings-autosave.php:4379
|
12144 |
msgid "Notify admin every x times."
|
12145 |
msgstr "Notifier l'administrateur toutes les x fois."
|
12146 |
|
12147 |
+
#: wppa-settings-autosave.php:4380
|
12148 |
msgid ""
|
12149 |
"If this number is positive, there will be a thumb down icon in the rating "
|
12150 |
"bar."
|
12152 |
"Si ce nombre est positif, il y aura une icône pouce bas dans la barre de "
|
12153 |
"notation."
|
12154 |
|
12155 |
+
#: wppa-settings-autosave.php:4381
|
12156 |
msgid ""
|
12157 |
"Cicking the icon indicates a user wants to report that an image is "
|
12158 |
"inappropiate."
|
12160 |
"Un utilisateur qui voudra signaler qu'une image est inappropriée n'aura qu'a "
|
12161 |
"cliquer sur cette icône."
|
12162 |
|
12163 |
+
#: wppa-settings-autosave.php:4382
|
12164 |
msgid "Admin will be notified by email after every x reports."
|
12165 |
msgstr "L'administrateur sera notifié par email tous les x signalements."
|
12166 |
|
12167 |
+
#: wppa-settings-autosave.php:4383 wppa-settings-autosave.php:4393
|
12168 |
+
#: wppa-settings-autosave.php:4403
|
12169 |
msgid "A value of 0 disables this feature."
|
12170 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
12171 |
|
12172 |
+
#: wppa-settings-autosave.php:4386 wppa-settings-autosave.php:4396
|
12173 |
+
#: wppa-settings-autosave.php:4406
|
12174 |
msgid "reports"
|
12175 |
msgstr "rapports"
|
12176 |
|
12177 |
+
#: wppa-settings-autosave.php:4391
|
12178 |
msgid "Pending after"
|
12179 |
msgstr "En attente après"
|
12180 |
|
12181 |
+
#: wppa-settings-autosave.php:4392
|
12182 |
msgid "Set status to pending after xx dislike votes."
|
12183 |
msgstr "Règle le statut à en attente après xx votes défavorables."
|
12184 |
|
12185 |
+
#: wppa-settings-autosave.php:4401
|
12186 |
msgid "Delete after"
|
12187 |
msgstr "Supprimer après"
|
12188 |
|
12189 |
+
#: wppa-settings-autosave.php:4402
|
12190 |
msgid "Deete photo after xx dislike votes."
|
12191 |
msgstr "Efface la photo après xx votes défavorables."
|
12192 |
|
12193 |
+
#: wppa-settings-autosave.php:4411
|
12194 |
msgid "Show dislike count"
|
12195 |
msgstr "Montrer comptage des avis négatifs"
|
12196 |
|
12197 |
+
#: wppa-settings-autosave.php:4412
|
12198 |
msgid "Show the number of dislikes in the rating bar."
|
12199 |
msgstr "Montrer le nombre d'avis défavorables dans la barre de notation."
|
12200 |
|
12201 |
+
#: wppa-settings-autosave.php:4413
|
12202 |
msgid "Displayes the total number of dislike votes for the current photo."
|
12203 |
msgstr "Affiche le nombre total d'avis défavorables pour la photo courante."
|
12204 |
|
12205 |
+
#: wppa-settings-autosave.php:4421
|
12206 |
msgid "Rating display type"
|
12207 |
msgstr "Type d’affichage des notes"
|
12208 |
|
12209 |
+
#: wppa-settings-autosave.php:4422
|
12210 |
msgid "Specify the type of the rating display."
|
12211 |
msgstr "Spécifier le type d'affichage des notes."
|
12212 |
|
12213 |
+
#: wppa-settings-autosave.php:4423
|
12214 |
msgid ""
|
12215 |
"If you select \"Likes\" you must also select \"One button vote\" in Table I-"
|
12216 |
"E1"
|
12218 |
"Si vous sélectionnez « Aime » vous devez également sélectionner « Un bouton "
|
12219 |
"vote » dans le tableau I-E1"
|
12220 |
|
12221 |
+
#: wppa-settings-autosave.php:4425
|
12222 |
msgid "Graphic"
|
12223 |
msgstr "Graphique"
|
12224 |
|
12225 |
+
#: wppa-settings-autosave.php:4425
|
12226 |
msgid "Numeric"
|
12227 |
msgstr "Numérique"
|
12228 |
|
12229 |
+
#: wppa-settings-autosave.php:4425
|
12230 |
msgid "Likes"
|
12231 |
msgstr "Aime"
|
12232 |
|
12233 |
+
#: wppa-settings-autosave.php:4433
|
12234 |
msgid "Show average rating"
|
12235 |
msgstr "Montrer le vote moyen"
|
12236 |
|
12237 |
+
#: wppa-settings-autosave.php:4434
|
12238 |
msgid "Display the avarage rating and/or vote count on the rating bar"
|
12239 |
msgstr ""
|
12240 |
"Afficher la moyenne des notes et/ou compte des votes dans la barre de "
|
12241 |
"notation"
|
12242 |
|
12243 |
+
#: wppa-settings-autosave.php:4435
|
12244 |
msgid ""
|
12245 |
"If checked, the average rating as well as the current users rating is "
|
12246 |
"displayed in max 5 or 10 stars."
|
12248 |
"Si coché, la moyenne des notes ainsi que la note de l'utilisateur courant "
|
12249 |
"sont affichées avec une échelle de 5 ou 10 étoiles."
|
12250 |
|
12251 |
+
#: wppa-settings-autosave.php:4436
|
12252 |
msgid "If unchecked, only the current users rating is displayed (if any)."
|
12253 |
msgstr ""
|
12254 |
"Si décoché, seulement la note de l'utilisateur courant est affichée (si "
|
12255 |
"existe)."
|
12256 |
|
12257 |
+
#: wppa-settings-autosave.php:4437
|
12258 |
msgid ""
|
12259 |
"If \"One button vote\" is selected in Table I-E1, this box checked will "
|
12260 |
"display the vote count."
|
12262 |
"Si \"One button vote\" est sélectionné dans table I-E1, cette case cochée "
|
12263 |
"affichera le comptage des votes."
|
12264 |
|
12265 |
+
#: wppa-settings-autosave.php:4444
|
12266 |
msgid "Single vote button text"
|
12267 |
msgstr "Texte du bouton unique de vote"
|
12268 |
|
12269 |
+
#: wppa-settings-autosave.php:4445
|
12270 |
msgid "The text on the voting button."
|
12271 |
msgstr "Le texte sur le bouton de vote."
|
12272 |
|
12273 |
+
#: wppa-settings-autosave.php:4446 wppa-settings-autosave.php:4455
|
12274 |
msgid "This text may contain qTranslate compatible language tags."
|
12275 |
msgstr "Ce texte peut contenir des tags compatibles avec qTranslate."
|
12276 |
|
12277 |
+
#: wppa-settings-autosave.php:4453
|
12278 |
msgid "Single vote button text voted"
|
12279 |
msgstr "Texte voté sur le bouton unique de vote"
|
12280 |
|
12281 |
+
#: wppa-settings-autosave.php:4454
|
12282 |
msgid "The text on the voting button when voted."
|
12283 |
msgstr "Le texte sur le bouton de vote lorsque voté."
|
12284 |
|
12285 |
+
#: wppa-settings-autosave.php:4462
|
12286 |
msgid "Single vote button thumbnail"
|
12287 |
msgstr "Bouton unique de vote et vignette"
|
12288 |
|
12289 |
+
#: wppa-settings-autosave.php:4463
|
12290 |
msgid "Display single vote button below thumbnails."
|
12291 |
msgstr "Affiche le bouton unique de vote sous les vignettes."
|
12292 |
|
12293 |
+
#: wppa-settings-autosave.php:4464
|
12294 |
msgid ""
|
12295 |
"This works only in single vote mode: Table I-E1 set to \"one button vote\""
|
12296 |
msgstr ""
|
12297 |
"Cela fonctionne seulement en mode vote unique: table I-E1 réglé à \"one "
|
12298 |
"button vote\""
|
12299 |
|
12300 |
+
#: wppa-settings-autosave.php:4471
|
12301 |
msgid "Medal bronze when"
|
12302 |
msgstr "Médaille de bronze quand"
|
12303 |
|
12304 |
+
#: wppa-settings-autosave.php:4472 wppa-settings-autosave.php:4490
|
12305 |
msgid "Photo gets medal bronze when number of top-scores ( 5 or 10 )."
|
12306 |
msgstr ""
|
12307 |
"La photo reçoit la médaille de bronze quand le nombre de top-scores (5 or "
|
12308 |
"10)."
|
12309 |
|
12310 |
+
#: wppa-settings-autosave.php:4473 wppa-settings-autosave.php:4491
|
12311 |
msgid ""
|
12312 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
12313 |
"bronze medal. A value of 0 indicates that you do not want this feature."
|
12316 |
"médaille de bronze. La valeur 0 signifie qu'on n'utilise pas cette "
|
12317 |
"fonctionnalité."
|
12318 |
|
12319 |
+
#: wppa-settings-autosave.php:4475 wppa-settings-autosave.php:4484
|
12320 |
+
#: wppa-settings-autosave.php:4493
|
12321 |
msgid "Topscores"
|
12322 |
msgstr "Meilleurs scores"
|
12323 |
|
12324 |
+
#: wppa-settings-autosave.php:4480
|
12325 |
msgid "Medal silver when"
|
12326 |
msgstr "Médaille d'argent quand"
|
12327 |
|
12328 |
+
#: wppa-settings-autosave.php:4481
|
12329 |
msgid "Photo gets medal silver when number of top-scores ( 5 or 10 )."
|
12330 |
msgstr ""
|
12331 |
"La photo reçoit la médaille d'argent quand le nombre de top-scores (5 or 10)."
|
12332 |
|
12333 |
+
#: wppa-settings-autosave.php:4482
|
12334 |
msgid ""
|
12335 |
"When the photo has this number of topscores ( 5 or 10 stars ), it will get a "
|
12336 |
"silver medal. A value of 0 indicates that you do not want this feature."
|
12339 |
"médaille d'argent. La valeur 0 signifie qu'on n'utilise pas cette "
|
12340 |
"fonctionnalité."
|
12341 |
|
12342 |
+
#: wppa-settings-autosave.php:4489
|
12343 |
msgid "Medal gold when"
|
12344 |
msgstr "Médaille d'or quand"
|
12345 |
|
12346 |
+
#: wppa-settings-autosave.php:4498
|
12347 |
msgid "Medal tag color"
|
12348 |
msgstr "Couleur du tag médaille"
|
12349 |
|
12350 |
+
#: wppa-settings-autosave.php:4499
|
12351 |
msgid "The color of the tag on the medal."
|
12352 |
msgstr "La couleur du tag sur la médaille."
|
12353 |
|
12354 |
+
#: wppa-settings-autosave.php:4502 wppa-settings-autosave.php:8181
|
12355 |
msgid "Red"
|
12356 |
msgstr "Rouge"
|
12357 |
|
12358 |
+
#: wppa-settings-autosave.php:4502 wppa-settings-autosave.php:8184
|
12359 |
msgid "Green"
|
12360 |
msgstr "Vert"
|
12361 |
|
12362 |
+
#: wppa-settings-autosave.php:4502 wppa-settings-autosave.php:8185
|
12363 |
msgid "Blue"
|
12364 |
msgstr "Bleu"
|
12365 |
|
12366 |
+
#: wppa-settings-autosave.php:4509
|
12367 |
msgid "Medal position"
|
12368 |
msgstr "Position médaille"
|
12369 |
|
12370 |
+
#: wppa-settings-autosave.php:4510
|
12371 |
msgid "The position of the medal on the image."
|
12372 |
msgstr "La position de la médaille sur l'image."
|
12373 |
|
12374 |
+
#: wppa-settings-autosave.php:4513
|
12375 |
msgid "Top left"
|
12376 |
msgstr "En haut à gauche"
|
12377 |
|
12378 |
+
#: wppa-settings-autosave.php:4513
|
12379 |
msgid "Top right"
|
12380 |
msgstr "En haut à droite"
|
12381 |
|
12382 |
+
#: wppa-settings-autosave.php:4513
|
12383 |
msgid "Bottom left"
|
12384 |
msgstr "En bas à gauche"
|
12385 |
|
12386 |
+
#: wppa-settings-autosave.php:4513
|
12387 |
msgid "Bottom right"
|
12388 |
msgstr "En bas à droite"
|
12389 |
|
12390 |
+
#: wppa-settings-autosave.php:4520
|
12391 |
msgid "Top criterium"
|
12392 |
msgstr "Critère supérieur"
|
12393 |
|
12394 |
+
#: wppa-settings-autosave.php:4521
|
12395 |
msgid "The top sort item used for topten results from shortcodes."
|
12396 |
msgstr "Le critère de tri prioritaire pour le classement TopTen (shortcodes)."
|
12397 |
|
12398 |
+
#: wppa-settings-autosave.php:4524
|
12399 |
msgid "Mean raiting"
|
12400 |
msgstr "Moyenne votes"
|
12401 |
|
12402 |
+
#: wppa-settings-autosave.php:4524
|
12403 |
msgid "Rating count"
|
12404 |
msgstr "Compteur votes"
|
12405 |
|
12406 |
+
#: wppa-settings-autosave.php:4524
|
12407 |
msgid "Viewcount"
|
12408 |
msgstr "Compteur vues"
|
12409 |
|
12410 |
+
#: wppa-settings-autosave.php:4531
|
12411 |
msgid "Comments related settings"
|
12412 |
msgstr "Comments related settings"
|
12413 |
|
12414 |
+
#: wppa-settings-autosave.php:4533
|
12415 |
msgid "Commenting login"
|
12416 |
msgstr "Commenting login"
|
12417 |
|
12418 |
+
#: wppa-settings-autosave.php:4534
|
12419 |
msgid "Users must be logged in to comment on photos."
|
12420 |
msgstr "Les utilisateurs doivent être connectés pour commenter les photos."
|
12421 |
|
12422 |
+
#: wppa-settings-autosave.php:4535
|
12423 |
msgid ""
|
12424 |
"Check this box if you want users to be logged in to be able to enter "
|
12425 |
"comments on individual photos."
|
12427 |
"Cochez cette case si vous voulez limiter la possibilité de commenter aux "
|
12428 |
"utilisateurs connectés."
|
12429 |
|
12430 |
+
#: wppa-settings-autosave.php:4542
|
12431 |
msgid "Comments view login"
|
12432 |
msgstr "Comments view login"
|
12433 |
|
12434 |
+
#: wppa-settings-autosave.php:4543
|
12435 |
msgid "Users must be logged in to see comments on photos."
|
12436 |
msgstr "L'utilisateur doit être connecté pour voir les commentaires."
|
12437 |
|
12438 |
+
#: wppa-settings-autosave.php:4544
|
12439 |
msgid ""
|
12440 |
"Check this box if you want users to be logged in to be able to see existing "
|
12441 |
"comments on individual photos."
|
12443 |
"Cochez cette case si vous voulez limiter la possibilité de voir les "
|
12444 |
"commentaires aux utilisateurs connectés."
|
12445 |
|
12446 |
+
#: wppa-settings-autosave.php:4551
|
12447 |
msgid "Last comment first"
|
12448 |
msgstr "Dernier commentaire en premier"
|
12449 |
|
12450 |
+
#: wppa-settings-autosave.php:4552
|
12451 |
msgid "Display the newest comment on top."
|
12452 |
msgstr "Affiche les commentaire le plus récent en premier."
|
12453 |
|
12454 |
+
#: wppa-settings-autosave.php:4553
|
12455 |
msgid "If checked: Display the newest comment on top."
|
12456 |
msgstr "Si coché: afficher le commentaire le plus récent en tête."
|
12457 |
|
12458 |
+
#: wppa-settings-autosave.php:4554
|
12459 |
msgid "If unchecked, the comments are listed in the ordere they were entered."
|
12460 |
msgstr "Si décoché, les commentaires sont listés dans l'ordre de la saisie."
|
12461 |
|
12462 |
+
#: wppa-settings-autosave.php:4561
|
12463 |
msgid "Comment moderation"
|
12464 |
msgstr "Modération de commentaire"
|
12465 |
|
12466 |
+
#: wppa-settings-autosave.php:4562
|
12467 |
msgid "Comments from what users need approval."
|
12468 |
msgstr "Les commentaires nécessitent une approbation."
|
12469 |
|
12470 |
+
#: wppa-settings-autosave.php:4563
|
12471 |
msgid "Select the desired users of which the comments need approval."
|
12472 |
msgstr ""
|
12473 |
"Choisir les utilisateurs dont les commentaires nécessitent une modération."
|
12474 |
|
12475 |
+
#: wppa-settings-autosave.php:4565 wppa-settings-autosave.php:6665
|
12476 |
msgid "All users"
|
12477 |
msgstr "Tous les utilisateurs"
|
12478 |
|
12479 |
+
#: wppa-settings-autosave.php:4565 wppa-settings-autosave.php:6665
|
12480 |
msgid "Logged out users"
|
12481 |
msgstr "Utilisateurs déconnectés"
|
12482 |
|
12483 |
+
#: wppa-settings-autosave.php:4565 wppa-settings-autosave.php:6665
|
12484 |
msgid "No users"
|
12485 |
msgstr "Pas d'utilisateurs"
|
12486 |
|
12487 |
+
#: wppa-settings-autosave.php:4572
|
12488 |
msgid "Comment email required"
|
12489 |
msgstr "Comment email required"
|
12490 |
|
12491 |
+
#: wppa-settings-autosave.php:4573
|
12492 |
msgid "Commenting users must enter their email addresses."
|
12493 |
msgstr "Les auteurs de commentaires doivent entrer leur email."
|
12494 |
|
12495 |
+
#: wppa-settings-autosave.php:4577 wppa-settings-autosave.php:9681
|
12496 |
+
#: wppa-settings-autosave.php:9749
|
12497 |
msgid "Optional"
|
12498 |
msgstr "Optionnel"
|
12499 |
|
12500 |
+
#: wppa-settings-autosave.php:4589
|
12501 |
msgid "Comment notify"
|
12502 |
msgstr "Notification de commentaire"
|
12503 |
|
12504 |
+
#: wppa-settings-autosave.php:4590
|
12505 |
msgid "Select who must receive an e-mail notification of a new comment."
|
12506 |
msgstr ""
|
12507 |
"Choisir qui doit recevoir un email de notification de nouveau commentaire."
|
12508 |
|
12509 |
+
#: wppa-settings-autosave.php:4593
|
12510 |
msgid "--- None ---"
|
12511 |
msgstr "--- Aucun ---"
|
12512 |
|
12513 |
+
#: wppa-settings-autosave.php:4594
|
12514 |
msgid "--- Admin ---"
|
12515 |
msgstr "--- Admin ---"
|
12516 |
|
12517 |
+
#: wppa-settings-autosave.php:4595
|
12518 |
msgid "--- Album owner ---"
|
12519 |
msgstr "--- Propriétaire album ---"
|
12520 |
|
12521 |
+
#: wppa-settings-autosave.php:4596
|
12522 |
msgid "--- Admin & Owner ---"
|
12523 |
msgstr "--- Admin & Propriétaire ---"
|
12524 |
|
12525 |
+
#: wppa-settings-autosave.php:4597
|
12526 |
msgid "--- Uploader ---"
|
12527 |
msgstr "-- Celui(le) qui a déposé les fichiers --"
|
12528 |
|
12529 |
+
#: wppa-settings-autosave.php:4598
|
12530 |
msgid "--- Up & admin ---"
|
12531 |
msgstr "--- Up & Admin ---"
|
12532 |
|
12533 |
+
#: wppa-settings-autosave.php:4599
|
12534 |
msgid "--- Up & Owner ---"
|
12535 |
msgstr "--- Up & Propriétaire ---"
|
12536 |
|
12537 |
+
#: wppa-settings-autosave.php:4622
|
12538 |
msgid "Comment notify previous"
|
12539 |
msgstr "Notifier si déjà commenté"
|
12540 |
|
12541 |
+
#: wppa-settings-autosave.php:4623
|
12542 |
msgid "Notify users who has commented this photo earlier."
|
12543 |
msgstr "Notifier les utilisateurs ayant déjà commenté cette photo."
|
12544 |
|
12545 |
+
#: wppa-settings-autosave.php:4631
|
12546 |
msgid "Comment notify approved"
|
12547 |
msgstr "Commentaire Notifier approuvé"
|
12548 |
|
12549 |
+
#: wppa-settings-autosave.php:4632
|
12550 |
msgid "Notify photo owner of approved comment."
|
12551 |
msgstr "Aviser le propriétaire de la photo du commentaire approuvé."
|
12552 |
|
12553 |
+
#: wppa-settings-autosave.php:4640
|
12554 |
msgid "Com ntfy appr email content"
|
12555 |
msgstr "Contenu de l'e-mail com ntfy appr."
|
12556 |
|
12557 |
+
#: wppa-settings-autosave.php:4641
|
12558 |
msgid "The content of the email."
|
12559 |
msgstr "Le contenu de l’e-mail :"
|
12560 |
|
12561 |
+
#: wppa-settings-autosave.php:4642
|
12562 |
msgid "If you leave this blank, the default content will be used"
|
12563 |
msgstr "Si vous laissez ce champ vide, le contenu par défaut sera utilisé"
|
12564 |
|
12565 |
+
#: wppa-settings-autosave.php:4643
|
12566 |
msgid "The content may contain html."
|
12567 |
msgstr "Le contenu peut contenir html."
|
12568 |
|
12569 |
+
#: wppa-settings-autosave.php:4644
|
12570 |
msgid ""
|
12571 |
"You may use the following keywords: w#comment for the comment content, "
|
12572 |
"w#user for the commenters name and the standard photo description keywords "
|
12579 |
"w#timestamp, w#modified, w#views, w#amx, w#amy, w#amfs, w#url, w#hrurl, "
|
12580 |
"w#tnurl, w#cc0... w#cc9, w#cd0... w#cd9."
|
12581 |
|
12582 |
+
#: wppa-settings-autosave.php:4651
|
12583 |
msgid "Com ntfy appr email subject"
|
12584 |
msgstr "Objet com ntfy appr sujet"
|
12585 |
|
12586 |
+
#: wppa-settings-autosave.php:4652
|
12587 |
msgid "The subject of the email."
|
12588 |
msgstr "Le sujet de l’e-mail."
|
12589 |
|
12590 |
+
#: wppa-settings-autosave.php:4661
|
12591 |
msgid "Comment ntfy added"
|
12592 |
msgstr "Indiquer commentaire ajouté"
|
12593 |
|
12594 |
+
#: wppa-settings-autosave.php:4662
|
12595 |
msgid "Show \"Comment added\" after successfull adding a comment."
|
12596 |
msgstr "Montrer \"Commentaire ajouté\" après l'ajout réussi d'un commentaire."
|
12597 |
|
12598 |
+
#: wppa-settings-autosave.php:4670
|
12599 |
msgid "ComTen alt display"
|
12600 |
msgstr "Affichage alt de ComTen"
|
12601 |
|
12602 |
+
#: wppa-settings-autosave.php:4671
|
12603 |
msgid "Display comments at comten thumbnails."
|
12604 |
msgstr "Afficher les commentaires aux vignettes ComTen."
|
12605 |
|
12606 |
+
#: wppa-settings-autosave.php:4679
|
12607 |
msgid "Comten Thumbnail width"
|
12608 |
msgstr "Largeur du widget commentaire"
|
12609 |
|
12610 |
+
#: wppa-settings-autosave.php:4680
|
12611 |
msgid "The width of the thumbnail in the alt comment display."
|
12612 |
msgstr ""
|
12613 |
"La largeur de la vignette dans l’affichage alternatif des commentaires."
|
12614 |
|
12615 |
+
#: wppa-settings-autosave.php:4683
|
12616 |
msgid "Pixels"
|
12617 |
msgstr "Pixels"
|
12618 |
|
12619 |
+
#: wppa-settings-autosave.php:4688
|
12620 |
msgid "Show smiley picker"
|
12621 |
msgstr "Montrer la bibliothèque de smiley"
|
12622 |
|
12623 |
+
#: wppa-settings-autosave.php:4689
|
12624 |
msgid "Display a clickable row of smileys."
|
12625 |
msgstr "Afficher une rangée de smileys cliquables."
|
12626 |
|
12627 |
+
#: wppa-settings-autosave.php:4697
|
12628 |
msgid "Show commenter email"
|
12629 |
msgstr "Montrer l'email du commentateur"
|
12630 |
|
12631 |
+
#: wppa-settings-autosave.php:4698
|
12632 |
msgid "Show the commenter's email in the notify emails."
|
12633 |
msgstr "Montrer l'email du commentateur dans les emails de notification."
|
12634 |
|
12635 |
+
#: wppa-settings-autosave.php:4699
|
12636 |
msgid "Shows the email address of the commenter in all notify emails."
|
12637 |
msgstr ""
|
12638 |
"Montre l'adresse de celui qui a commenté dans tous les emails de "
|
12639 |
"notification."
|
12640 |
|
12641 |
+
#: wppa-settings-autosave.php:4700
|
12642 |
msgid ""
|
12643 |
"If switched off, admin will still receive the senders email in the "
|
12644 |
"notification mail"
|
12646 |
"Si désactivé, l'administrateur recevra quand même l'email des émetteurs dans "
|
12647 |
"la notification"
|
12648 |
|
12649 |
+
#: wppa-settings-autosave.php:4710
|
12650 |
msgid "The opacity of the lightbox overlay background."
|
12651 |
msgstr "L'opacité de l'arrière plan overlay de Lightbox."
|
12652 |
|
12653 |
+
#: wppa-settings-autosave.php:4718
|
12654 |
msgid "Click on background"
|
12655 |
msgstr "Clic sur l'arrière plan"
|
12656 |
|
12657 |
+
#: wppa-settings-autosave.php:4719
|
12658 |
msgid "Select the action to be taken on click on background."
|
12659 |
msgstr "Choisir l'action a effectuer lors d'un clic sur l'arrière plan."
|
12660 |
|
12661 |
+
#: wppa-settings-autosave.php:4722
|
12662 |
msgid "Nothing"
|
12663 |
msgstr "Rien"
|
12664 |
|
12665 |
+
#: wppa-settings-autosave.php:4722
|
12666 |
msgid "Exit (close)"
|
12667 |
msgstr "Sortir (fermer)"
|
12668 |
|
12669 |
+
#: wppa-settings-autosave.php:4722
|
12670 |
msgid "Browse (left/right)"
|
12671 |
msgstr "Naviguer (Gauche/Droite)"
|
12672 |
|
12673 |
+
#: wppa-settings-autosave.php:4729
|
12674 |
msgid "Overlay animation speed"
|
12675 |
msgstr "Vitesse de l'animation overlay"
|
12676 |
|
12677 |
+
#: wppa-settings-autosave.php:4730
|
12678 |
msgid "The fade-in time of the lightbox images"
|
12679 |
msgstr "La durée du fondu des images Lightbox"
|
12680 |
|
12681 |
+
#: wppa-settings-autosave.php:4733
|
12682 |
msgid "very fast (100 ms.)"
|
12683 |
msgstr "très rapide (100 ms.)"
|
12684 |
|
12685 |
+
#: wppa-settings-autosave.php:4733
|
12686 |
msgid "fast (200 ms.)"
|
12687 |
msgstr "rapide (200 ms.)"
|
12688 |
|
12689 |
+
#: wppa-settings-autosave.php:4733
|
12690 |
msgid "normal (300 ms.)"
|
12691 |
msgstr "normal (300 ms.)"
|
12692 |
|
12693 |
+
#: wppa-settings-autosave.php:4733
|
12694 |
msgid "slow (500 ms.)"
|
12695 |
msgstr "lent (500 ms.)"
|
12696 |
|
12697 |
+
#: wppa-settings-autosave.php:4733
|
12698 |
msgid "very slow (1 s.)"
|
12699 |
msgstr "Très lent (1 s.)"
|
12700 |
|
12701 |
+
#: wppa-settings-autosave.php:4733
|
12702 |
msgid "extremely slow (2 s.)"
|
12703 |
msgstr "extrêmement lent (2 s.)"
|
12704 |
|
12705 |
+
#: wppa-settings-autosave.php:4740
|
12706 |
msgid "Overlay slideshow speed"
|
12707 |
msgstr "Vitesse du diaporama overlay"
|
12708 |
|
12709 |
+
#: wppa-settings-autosave.php:4741
|
12710 |
msgid "The time the lightbox images stay"
|
12711 |
msgstr "La durée d’affichage des images"
|
12712 |
|
12713 |
+
#: wppa-settings-autosave.php:4744
|
12714 |
msgid "fast (3 s.)"
|
12715 |
msgstr "rapide (3 s.)"
|
12716 |
|
12717 |
+
#: wppa-settings-autosave.php:4744
|
12718 |
msgid "normal (5 s.)"
|
12719 |
msgstr "normal (5 s.)"
|
12720 |
|
12721 |
+
#: wppa-settings-autosave.php:4744
|
12722 |
msgid "slow (8 s.)"
|
12723 |
msgstr "lent (8 s.)"
|
12724 |
|
12725 |
+
#: wppa-settings-autosave.php:4744
|
12726 |
msgid "very slow (13 s.)"
|
12727 |
msgstr "Très lent (13 s.)"
|
12728 |
|
12729 |
+
#: wppa-settings-autosave.php:4744
|
12730 |
msgid "extremely slow (20 s.)"
|
12731 |
msgstr "extrêmement lent (20 s.)"
|
12732 |
|
12733 |
+
#: wppa-settings-autosave.php:4760
|
12734 |
msgid "WPPA+ Lightbox global"
|
12735 |
msgstr "WPPA+ LightBox étendu"
|
12736 |
|
12737 |
+
#: wppa-settings-autosave.php:4761
|
12738 |
msgid "Use the wppa+ lightbox also for non-wppa images."
|
12739 |
msgstr "Utiliser WPPA+ LightBox aussi pour les images non-WPPA."
|
12740 |
|
12741 |
+
#: wppa-settings-autosave.php:4769
|
12742 |
msgid "WPPA+ Lightbox global is a set"
|
12743 |
msgstr "WPPA+ LightBox étendu est une collection"
|
12744 |
|
12745 |
+
#: wppa-settings-autosave.php:4770
|
12746 |
msgid "Treat the other images as a set."
|
12747 |
msgstr "Traiter les images non-WPPA comme une collection."
|
12748 |
|
12749 |
+
#: wppa-settings-autosave.php:4771
|
12750 |
msgid ""
|
12751 |
"If checked, you can scroll through the images in the lightbox view. Requires "
|
12752 |
"item 5 to be checked."
|
12754 |
"Si coché, vous pouvez scroller les images dans la vue LightBox. Item 5 doit "
|
12755 |
"être coché aussi."
|
12756 |
|
12757 |
+
#: wppa-settings-autosave.php:4778
|
12758 |
msgid "Use hires files"
|
12759 |
msgstr "Utiliser fichier haute résolution"
|
12760 |
|
12761 |
+
#: wppa-settings-autosave.php:4779
|
12762 |
msgid "Use the highest resolution available for lightbox."
|
12763 |
msgstr "Utiliser la résolution maxi disponible pour LightBox."
|
12764 |
|
12765 |
+
#: wppa-settings-autosave.php:4780
|
12766 |
msgid "Ticking this box is recommended for lightbox fullscreen modes."
|
12767 |
msgstr ""
|
12768 |
"Cocher cette case est recommandé pour les modes plein écran de LightBox."
|
12769 |
|
12770 |
+
#: wppa-settings-autosave.php:4788
|
12771 |
msgid "Videos on lightbox start automaticly."
|
12772 |
msgstr "Les vidéos dans LightBox démarrent automatiquement."
|
12773 |
|
12774 |
+
#: wppa-settings-autosave.php:4797
|
12775 |
msgid "Audio on lightbox start automaticly."
|
12776 |
msgstr "L'audio dans LightBox démarre automatiquement."
|
12777 |
|
12778 |
+
#: wppa-settings-autosave.php:4805
|
12779 |
msgid "Lightbox start mode"
|
12780 |
msgstr "Mode de démarrage de lightbox"
|
12781 |
|
12782 |
+
#: wppa-settings-autosave.php:4806
|
12783 |
msgid "The mode lightbox starts in."
|
12784 |
msgstr "Le mode de démarrage de lightbox."
|
12785 |
|
12786 |
+
#: wppa-settings-autosave.php:4809 wppa-settings-autosave.php:4830
|
12787 |
msgid "Normal"
|
12788 |
msgstr "Normale"
|
12789 |
|
12790 |
+
#: wppa-settings-autosave.php:4810 wppa-settings-autosave.php:4831
|
12791 |
msgid "Padded"
|
12792 |
msgstr "Padded"
|
12793 |
|
12794 |
+
#: wppa-settings-autosave.php:4811 wppa-settings-autosave.php:4832
|
12795 |
msgid "Stretched"
|
12796 |
msgstr "Étiré"
|
12797 |
|
12798 |
+
#: wppa-settings-autosave.php:4812 wppa-settings-autosave.php:4833
|
12799 |
msgid "Clipped"
|
12800 |
msgstr "Coupé"
|
12801 |
|
12802 |
+
#: wppa-settings-autosave.php:4813 wppa-settings-autosave.php:4834
|
12803 |
msgid "Real size"
|
12804 |
msgstr "Taille réelle"
|
12805 |
|
12806 |
+
#: wppa-settings-autosave.php:4826
|
12807 |
msgid "Lightbox start mode mobile"
|
12808 |
msgstr "Mode de démarrage de lightbox"
|
12809 |
|
12810 |
+
#: wppa-settings-autosave.php:4827
|
12811 |
msgid "The mode lightbox starts in on mobile devices."
|
12812 |
msgstr "Le mode de démarrage de lightbox en appareils mobiles."
|
12813 |
|
12814 |
+
#: wppa-settings-autosave.php:4864
|
12815 |
msgid "Table V:"
|
12816 |
msgstr "Table V:"
|
12817 |
|
12818 |
+
#: wppa-settings-autosave.php:4864
|
12819 |
msgid "Fonts:"
|
12820 |
msgstr "Polices:"
|
12821 |
|
12822 |
+
#: wppa-settings-autosave.php:4865
|
12823 |
msgid "This table describes the Fonts used for the wppa+ elements."
|
12824 |
msgstr ""
|
12825 |
"Cette table décrit les polices de caractère utilisées pour les éléments de "
|
12826 |
"WPPA+."
|
12827 |
|
12828 |
+
#: wppa-settings-autosave.php:4875 wppa-settings-autosave.php:5051
|
12829 |
msgid "Font family"
|
12830 |
msgstr "Famille de police"
|
12831 |
|
12832 |
+
#: wppa-settings-autosave.php:4876 wppa-settings-autosave.php:5052
|
12833 |
msgid "Font size"
|
12834 |
msgstr "Taille de la police"
|
12835 |
|
12836 |
+
#: wppa-settings-autosave.php:4877 wppa-settings-autosave.php:5053
|
12837 |
msgid "Font color"
|
12838 |
msgstr "Couleur de la police"
|
12839 |
|
12840 |
+
#: wppa-settings-autosave.php:4878 wppa-settings-autosave.php:5054
|
12841 |
msgid "Font weight"
|
12842 |
msgstr "Poids de la police"
|
12843 |
|
12844 |
+
#: wppa-settings-autosave.php:4888
|
12845 |
msgid "normal"
|
12846 |
msgstr "norma"
|
12847 |
|
12848 |
+
#: wppa-settings-autosave.php:4888
|
12849 |
msgid "bold"
|
12850 |
msgstr "gras"
|
12851 |
|
12852 |
+
#: wppa-settings-autosave.php:4888
|
12853 |
msgid "bolder"
|
12854 |
msgstr "plus gras"
|
12855 |
|
12856 |
+
#: wppa-settings-autosave.php:4888
|
12857 |
msgid "lighter"
|
12858 |
msgstr "plus fin"
|
12859 |
|
12860 |
+
#: wppa-settings-autosave.php:4891
|
12861 |
msgid "Album titles"
|
12862 |
msgstr "Titres albums"
|
12863 |
|
12864 |
+
#: wppa-settings-autosave.php:4892
|
12865 |
msgid "Font used for Album titles."
|
12866 |
msgstr "Police utilisée pour les titres d'album."
|
12867 |
|
12868 |
+
#: wppa-settings-autosave.php:4893
|
12869 |
msgid "Enter font name, size, color and weight for album cover titles."
|
12870 |
msgstr ""
|
12871 |
"Entrer le nom de la police, taille, couleur et poids pour les titres de "
|
12872 |
"couverture des albums."
|
12873 |
|
12874 |
+
#: wppa-settings-autosave.php:4908
|
12875 |
msgid "Slideshow desc"
|
12876 |
msgstr "Description du diaporama"
|
12877 |
|
12878 |
+
#: wppa-settings-autosave.php:4909
|
12879 |
msgid "Font for slideshow photo descriptions."
|
12880 |
msgstr "Police pour la description des photos."
|
12881 |
|
12882 |
+
#: wppa-settings-autosave.php:4910
|
12883 |
msgid ""
|
12884 |
"Enter font name, size, color and weight for slideshow photo descriptions."
|
12885 |
msgstr ""
|
12886 |
"Entrer le nom de la police, taille, couleur et poids pour les descriptions "
|
12887 |
"des photo de diaporama."
|
12888 |
|
12889 |
+
#: wppa-settings-autosave.php:4925
|
12890 |
msgid "Slideshow name"
|
12891 |
msgstr "Nom du diaporama"
|
12892 |
|
12893 |
+
#: wppa-settings-autosave.php:4926
|
12894 |
msgid "Font for slideshow photo names."
|
12895 |
msgstr "Police pour le nom des photos du diaporama."
|
12896 |
|
12897 |
+
#: wppa-settings-autosave.php:4927
|
12898 |
msgid "Enter font name, size, color and weight for slideshow photo names."
|
12899 |
msgstr ""
|
12900 |
"Entrer le nom de la police, taille, couleur et poids pour les noms de photo "
|
12901 |
"de diaporama."
|
12902 |
|
12903 |
+
#: wppa-settings-autosave.php:4942
|
12904 |
msgid "Navigations"
|
12905 |
msgstr "Navigations"
|
12906 |
|
12907 |
+
#: wppa-settings-autosave.php:4943
|
12908 |
msgid "Font for navigations."
|
12909 |
msgstr "Police pour navigations."
|
12910 |
|
12911 |
+
#: wppa-settings-autosave.php:4944
|
12912 |
msgid "Enter font name, size, color and weight for navigation items."
|
12913 |
msgstr ""
|
12914 |
"Entrer le nom de la police, taille, couleur et poids pour les items de "
|
12915 |
"navigation."
|
12916 |
|
12917 |
+
#: wppa-settings-autosave.php:4960
|
12918 |
msgid "Font for text under thumbnails."
|
12919 |
msgstr "Police pour les textes sous les vignettes."
|
12920 |
|
12921 |
+
#: wppa-settings-autosave.php:4961
|
12922 |
msgid ""
|
12923 |
"Enter font name, size, color and weight for text under thumbnail images."
|
12924 |
msgstr ""
|
12925 |
"Entrer le nom de la police, taille, couleur et poids pour le texte sous les "
|
12926 |
"vignettes."
|
12927 |
|
12928 |
+
#: wppa-settings-autosave.php:4977
|
12929 |
msgid "General font in wppa boxes."
|
12930 |
msgstr "Police générique dans les boîtes WPPA."
|
12931 |
|
12932 |
+
#: wppa-settings-autosave.php:4978
|
12933 |
msgid "Enter font name, size, color and weight for all other items."
|
12934 |
msgstr ""
|
12935 |
"Entrer le nom de la police, taille, couleur et poids pour les autres items."
|
12936 |
|
12937 |
+
#: wppa-settings-autosave.php:4994
|
12938 |
msgid "Font in wppa number bars."
|
12939 |
msgstr "Police dans les bars de numéro wppa."
|
12940 |
|
12941 |
+
#: wppa-settings-autosave.php:4995 wppa-settings-autosave.php:5012
|
12942 |
msgid "Enter font name, size, color and weight for numberbar navigation."
|
12943 |
msgstr ""
|
12944 |
"Entrez le nom de la police, taille, couleur et poids pour numberbar "
|
12945 |
"navigation."
|
12946 |
|
12947 |
+
#: wppa-settings-autosave.php:5010
|
12948 |
msgid "Numbar Active"
|
12949 |
msgstr "Numbar activée"
|
12950 |
|
12951 |
+
#: wppa-settings-autosave.php:5011
|
12952 |
msgid "Font in wppa number bars, active item."
|
12953 |
msgstr "Police en wppa nombre barres, élément actif."
|
12954 |
|
12955 |
+
#: wppa-settings-autosave.php:5028
|
12956 |
msgid "Font in wppa lightbox overlays."
|
12957 |
msgstr "Police en wppa lightbox superpositions."
|
12958 |
|
12959 |
+
#: wppa-settings-autosave.php:5029
|
12960 |
msgid "Enter font name, size, color and weight for wppa lightbox overlays."
|
12961 |
msgstr ""
|
12962 |
"Entrez le nom de police, taille, couleur et poids pour les superpositions de "
|
12963 |
"lightbox wppa."
|
12964 |
|
12965 |
+
#: wppa-settings-autosave.php:5064
|
12966 |
msgid "Table VI:"
|
12967 |
msgstr "Table VI:"
|
12968 |
|
12969 |
+
#: wppa-settings-autosave.php:5064
|
12970 |
msgid "Links:"
|
12971 |
msgstr "Liens:"
|
12972 |
|
12973 |
+
#: wppa-settings-autosave.php:5065
|
12974 |
msgid "This table defines the link types and pages."
|
12975 |
msgstr "Ce table définit les types de liens et les pages."
|
12976 |
|
12977 |
+
#: wppa-settings-autosave.php:5076 wppa-settings-autosave.php:6134
|
12978 |
msgid "Link page"
|
12979 |
msgstr "Page lien"
|
12980 |
|
12981 |
+
#: wppa-settings-autosave.php:5078 wppa-settings-autosave.php:6136
|
12982 |
msgid "Photo specific link overrules"
|
12983 |
msgstr "Lien photo annule"
|
12984 |
|
12985 |
+
#: wppa-settings-autosave.php:5078 wppa-settings-autosave.php:6136
|
12986 |
msgid "PSO"
|
12987 |
msgstr "PSO"
|
12988 |
|
12989 |
+
#: wppa-settings-autosave.php:5123
|
12990 |
msgid "Links from images in WPPA+ Widgets"
|
12991 |
msgstr "Liens des images dans les Widgets WPPA +"
|
12992 |
|
12993 |
+
#: wppa-settings-autosave.php:5125
|
12994 |
msgid "PotdWidget"
|
12995 |
msgstr "Widget Photo du jour"
|
12996 |
|
12997 |
+
#: wppa-settings-autosave.php:5126
|
12998 |
msgid "Photo Of The Day widget link."
|
12999 |
msgstr "Lien de widget photo du jour."
|
13000 |
|
13001 |
+
#: wppa-settings-autosave.php:5127
|
13002 |
msgid "Select the type of link the photo of the day points to."
|
13003 |
msgstr "Sélectionnez le type de lien la photo du jour pointe vers."
|
13004 |
|
13005 |
+
#: wppa-settings-autosave.php:5128
|
13006 |
msgid ""
|
13007 |
"If you select 'defined on widget admin page' you can manually enter a link "
|
13008 |
"and title on the Photo of the day Widget Admin page."
|
13011 |
"entrer manuellement un lien et un titre sur la page d’Admin de Widget de la "
|
13012 |
"Photo de jour."
|
13013 |
|
13014 |
+
#: wppa-settings-autosave.php:5143 wppa-settings-autosave.php:5186
|
13015 |
+
#: wppa-settings-autosave.php:5225 wppa-settings-autosave.php:5264
|
13016 |
+
#: wppa-settings-autosave.php:5310 wppa-settings-autosave.php:5360
|
13017 |
+
#: wppa-settings-autosave.php:5409 wppa-settings-autosave.php:5458
|
13018 |
+
#: wppa-settings-autosave.php:5548
|
13019 |
msgid "a plain page without a querystring."
|
13020 |
msgstr "une simple page sans une querystring."
|
13021 |
|
13022 |
+
#: wppa-settings-autosave.php:5144 wppa-settings-autosave.php:5187
|
13023 |
+
#: wppa-settings-autosave.php:5226 wppa-settings-autosave.php:5265
|
13024 |
+
#: wppa-settings-autosave.php:5311 wppa-settings-autosave.php:5361
|
13025 |
+
#: wppa-settings-autosave.php:5410 wppa-settings-autosave.php:5459
|
13026 |
+
#: wppa-settings-autosave.php:5506 wppa-settings-autosave.php:5549
|
13027 |
+
#: wppa-settings-autosave.php:5598 wppa-settings-autosave.php:5640
|
13028 |
+
#: wppa-settings-autosave.php:5682 wppa-settings-autosave.php:5721
|
13029 |
msgid "lightbox."
|
13030 |
msgstr "lightbox."
|
13031 |
|
13032 |
+
#: wppa-settings-autosave.php:5169
|
13033 |
msgid "SlideWidget"
|
13034 |
msgstr "Widget Slide"
|
13035 |
|
13036 |
+
#: wppa-settings-autosave.php:5170
|
13037 |
msgid "Slideshow widget photo link."
|
13038 |
msgstr "Lien diaporama widget photo."
|
13039 |
|
13040 |
+
#: wppa-settings-autosave.php:5171
|
13041 |
msgid "Select the type of link the slideshow photos point to."
|
13042 |
msgstr ""
|
13043 |
"Sélectionnez le type de lien, vers que les photos du diaporama pointent."
|
13044 |
|
13045 |
+
#: wppa-settings-autosave.php:5212
|
13046 |
msgid "Album widget"
|
13047 |
msgstr "Widget Album"
|
13048 |
|
13049 |
+
#: wppa-settings-autosave.php:5213
|
13050 |
msgid "Album widget thumbnail link"
|
13051 |
msgstr "Lien miniature de widget album"
|
13052 |
|
13053 |
+
#: wppa-settings-autosave.php:5214
|
13054 |
msgid "Select the type of link the album widget photos point to."
|
13055 |
msgstr ""
|
13056 |
"Sélectionnez le type de lien, vers que les photos de widget album pointent."
|
13057 |
|
13058 |
+
#: wppa-settings-autosave.php:5223
|
13059 |
msgid "subalbums and thumbnails."
|
13060 |
msgstr "sous-albums et miniatures."
|
13061 |
|
13062 |
+
#: wppa-settings-autosave.php:5224
|
13063 |
msgid "slideshow."
|
13064 |
msgstr "diaporama."
|
13065 |
|
13066 |
+
#: wppa-settings-autosave.php:5247
|
13067 |
msgid "ThumbnailWidget"
|
13068 |
msgstr "Widget vignettes"
|
13069 |
|
13070 |
+
#: wppa-settings-autosave.php:5248
|
13071 |
msgid "Thumbnail widget photo link."
|
13072 |
msgstr "Lien de widget vignette de photo."
|
13073 |
|
13074 |
+
#: wppa-settings-autosave.php:5249
|
13075 |
msgid "Select the type of link the thumbnail photos point to."
|
13076 |
msgstr "Sélectionnez le type de lien vers que les photos miniatures pointent."
|
13077 |
|
13078 |
+
#: wppa-settings-autosave.php:5262 wppa-settings-autosave.php:5308
|
13079 |
+
#: wppa-settings-autosave.php:5358 wppa-settings-autosave.php:5407
|
13080 |
+
#: wppa-settings-autosave.php:5456 wppa-settings-autosave.php:5546
|
13081 |
msgid "the single photo in the style of a slideshow."
|
13082 |
msgstr "Une photo seule avec le style du diaporama"
|
13083 |
|
13084 |
+
#: wppa-settings-autosave.php:5263 wppa-settings-autosave.php:5309
|
13085 |
+
#: wppa-settings-autosave.php:5359 wppa-settings-autosave.php:5408
|
13086 |
+
#: wppa-settings-autosave.php:5457 wppa-settings-autosave.php:5547
|
13087 |
+
#: wppa-settings-autosave.php:5723
|
13088 |
msgid "the fs photo with download and print buttons."
|
13089 |
msgstr "la photo de fs avec téléchargement et boutons d’impression."
|
13090 |
|
13091 |
+
#: wppa-settings-autosave.php:5290
|
13092 |
msgid "TopTenWidget"
|
13093 |
msgstr "Widget TopTen"
|
13094 |
|
13095 |
+
#: wppa-settings-autosave.php:5291
|
13096 |
msgid "TopTen widget photo link."
|
13097 |
msgstr "Lien TopTen widget photo."
|
13098 |
|
13099 |
+
#: wppa-settings-autosave.php:5292
|
13100 |
msgid "Select the type of link the top ten photos point to."
|
13101 |
msgstr "Sélectionnez le type de lien, vers que les photos de topten pointent."
|
13102 |
|
13103 |
+
#: wppa-settings-autosave.php:5303
|
13104 |
msgid "the content of the virtual topten album."
|
13105 |
msgstr "le contenu de l’album virtuel topten."
|
13106 |
|
13107 |
+
#: wppa-settings-autosave.php:5304 wppa-settings-autosave.php:5354
|
13108 |
+
#: wppa-settings-autosave.php:5403 wppa-settings-autosave.php:5452
|
13109 |
msgid "the content of the thumbnails album."
|
13110 |
msgstr "le contenu de l’album de vignettes."
|
13111 |
|
13112 |
+
#: wppa-settings-autosave.php:5306 wppa-settings-autosave.php:5356
|
13113 |
+
#: wppa-settings-autosave.php:5405 wppa-settings-autosave.php:5454
|
13114 |
+
#: wppa-settings-autosave.php:5544
|
13115 |
msgid "the thumbnails album in a slideshow."
|
13116 |
msgstr "l'album de vignettes dans un diaporama."
|
13117 |
|
13118 |
+
#: wppa-settings-autosave.php:5340
|
13119 |
msgid "LasTenWidget"
|
13120 |
msgstr "Widget LastTen"
|
13121 |
|
13122 |
+
#: wppa-settings-autosave.php:5341
|
13123 |
msgid "Last Ten widget photo link."
|
13124 |
msgstr "Last Ten lien de widget photo."
|
13125 |
|
13126 |
+
#: wppa-settings-autosave.php:5342
|
13127 |
msgid "Select the type of link the last ten photos point to."
|
13128 |
msgstr ""
|
13129 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
13130 |
|
13131 |
+
#: wppa-settings-autosave.php:5353
|
13132 |
msgid "the content of the virtual lasten album."
|
13133 |
msgstr "le contenu de l'album virtuelle lasten."
|
13134 |
|
13135 |
+
#: wppa-settings-autosave.php:5389
|
13136 |
msgid "CommentWidget"
|
13137 |
msgstr "Widget Comment"
|
13138 |
|
13139 |
+
#: wppa-settings-autosave.php:5390
|
13140 |
msgid "Comment widget photo link."
|
13141 |
msgstr "Lien vers le commentaire widget photo."
|
13142 |
|
13143 |
+
#: wppa-settings-autosave.php:5391
|
13144 |
msgid "Select the type of link the comment widget photos point to."
|
13145 |
msgstr ""
|
13146 |
"Sélectionnez le type de lien, vers que les photos de widget commentaire "
|
13147 |
"pointent."
|
13148 |
|
13149 |
+
#: wppa-settings-autosave.php:5402
|
13150 |
msgid "the content of the virtual comten album."
|
13151 |
msgstr "le contenu de l’album virtuel comten."
|
13152 |
|
13153 |
+
#: wppa-settings-autosave.php:5438
|
13154 |
msgid "FeaTenWidget"
|
13155 |
msgstr "Widget FeaTen"
|
13156 |
|
13157 |
+
#: wppa-settings-autosave.php:5439
|
13158 |
msgid "FeaTen widget photo link."
|
13159 |
msgstr "FeaTen lien photo widget."
|
13160 |
|
13161 |
+
#: wppa-settings-autosave.php:5440
|
13162 |
msgid "Select the type of link the featured ten photos point to."
|
13163 |
msgstr ""
|
13164 |
"Sélectionnez le type de lien, vers que les dix dernières photos pointent."
|
13165 |
|
13166 |
+
#: wppa-settings-autosave.php:5451
|
13167 |
msgid "the content of the virtual featen album."
|
13168 |
msgstr "le contenu du virtuel featen album."
|
13169 |
|
13170 |
+
#: wppa-settings-autosave.php:5486
|
13171 |
msgid "Links from other WPPA+ images"
|
13172 |
msgstr "Liens d’autres images WPPA+"
|
13173 |
|
13174 |
+
#: wppa-settings-autosave.php:5488
|
13175 |
msgid "Cover Image"
|
13176 |
msgstr "Image de couverture"
|
13177 |
|
13178 |
+
#: wppa-settings-autosave.php:5489
|
13179 |
msgid "The link from the cover image of an album."
|
13180 |
msgstr "Le lien de l’image de couverture d’un album."
|
13181 |
|
13182 |
+
#: wppa-settings-autosave.php:5490
|
13183 |
msgid "Select the type of link the coverphoto points to."
|
13184 |
msgstr "Sélectionnez le type de lien la photo de couverture pointe vers."
|
13185 |
|
13186 |
+
#: wppa-settings-autosave.php:5491
|
13187 |
msgid "The link from the album title can be configured on the Edit Album page."
|
13188 |
msgstr ""
|
13189 |
"Le lien dans le titre de l’album peut être configuré dans la page modifier "
|
13190 |
"l’Album."
|
13191 |
|
13192 |
+
#: wppa-settings-autosave.php:5492
|
13193 |
msgid "This link will be used for the photo also if you select: same as title."
|
13194 |
msgstr ""
|
13195 |
"Ce lien sera utilisé pour la photo aussi si vous sélectionnez: même titre."
|
13196 |
|
13197 |
+
#: wppa-settings-autosave.php:5493
|
13198 |
msgid ""
|
13199 |
"If you specify New Tab on this line, all links from the cover will open a "
|
13200 |
"new tab,"
|
13202 |
"Si vous spécifiez le nouvel onglet sur cette ligne, tous les liens de la "
|
13203 |
"couverture seront ouvre un nouvel onglet,"
|
13204 |
|
13205 |
+
#: wppa-settings-autosave.php:5494
|
13206 |
msgid "except when Ajax is activated on Table IV-A1."
|
13207 |
msgstr "sauf si Ajax est activé sur la Table IV-A1."
|
13208 |
|
13209 |
+
#: wppa-settings-autosave.php:5507
|
13210 |
msgid "a slideshow starting at the photo"
|
13211 |
msgstr "un diaporama à partir de la photo"
|
13212 |
|
13213 |
+
#: wppa-settings-autosave.php:5528
|
13214 |
msgid "Thumbnail"
|
13215 |
msgstr "Vignette"
|
13216 |
|
13217 |
+
#: wppa-settings-autosave.php:5529
|
13218 |
msgid "Thumbnail link."
|
13219 |
msgstr "Lien vignette."
|
13220 |
|
13221 |
+
#: wppa-settings-autosave.php:5530 wppa-settings-autosave.php:5582
|
13222 |
+
#: wppa-settings-autosave.php:5624 wppa-settings-autosave.php:5666
|
13223 |
msgid "Select the type of link you want, or no link at all."
|
13224 |
msgstr "Sélectionnez le type de lien que vous voulez, ou pas de lien du tout."
|
13225 |
|
13226 |
+
#: wppa-settings-autosave.php:5531 wppa-settings-autosave.php:5583
|
13227 |
+
#: wppa-settings-autosave.php:5625 wppa-settings-autosave.php:5667
|
13228 |
msgid ""
|
13229 |
"If you select the fullsize photo on its own, it will be stretched to fit, "
|
13230 |
"regardless of that setting."
|
13232 |
"Si vous sélectionnez la photo pleine grandeur à lui seul, il va être étiré "
|
13233 |
"pour s’adapter, quel que soit ce paramètre."
|
13234 |
|
13235 |
+
#: wppa-settings-autosave.php:5532 wppa-settings-autosave.php:5584
|
13236 |
+
#: wppa-settings-autosave.php:5626 wppa-settings-autosave.php:5668
|
13237 |
msgid ""
|
13238 |
"Note that a page must have at least [wppa][/wppa] in its content to show up "
|
13239 |
"the photo(s)."
|
13241 |
"Notez qu'une page doit avoir au moins [wppa][/wppa] dans son contenu pour "
|
13242 |
"afficher la photo (s)."
|
13243 |
|
13244 |
+
#: wppa-settings-autosave.php:5563
|
13245 |
msgid "Auto Page"
|
13246 |
msgstr "Page auto"
|
13247 |
|
13248 |
+
#: wppa-settings-autosave.php:5580
|
13249 |
msgid "Sphoto"
|
13250 |
msgstr "Sphoto"
|
13251 |
|
13252 |
+
#: wppa-settings-autosave.php:5581
|
13253 |
msgid "Single photo link."
|
13254 |
msgstr "Lien photo unique"
|
13255 |
|
13256 |
+
#: wppa-settings-autosave.php:5622
|
13257 |
msgid "Mphoto"
|
13258 |
msgstr "Mphoto"
|
13259 |
|
13260 |
+
#: wppa-settings-autosave.php:5623
|
13261 |
msgid "Media-like photo link."
|
13262 |
msgstr "Lien photo apparentés aux médias."
|
13263 |
|
13264 |
+
#: wppa-settings-autosave.php:5664
|
13265 |
msgid "Xphoto"
|
13266 |
msgstr "Xphoto"
|
13267 |
|
13268 |
+
#: wppa-settings-autosave.php:5665
|
13269 |
msgid "Extended Media-like photo link."
|
13270 |
msgstr "Extended Media-photo comme lien."
|
13271 |
|
13272 |
+
#: wppa-settings-autosave.php:5707
|
13273 |
msgid "Slideshow fullsize link"
|
13274 |
msgstr "Diaporama plein écran lien"
|
13275 |
|
13276 |
+
#: wppa-settings-autosave.php:5708
|
13277 |
msgid ""
|
13278 |
"You can overrule lightbox but not big browse buttons with the photo specifc "
|
13279 |
"link."
|
13281 |
"Vous pouvez annuler lightbox mais les boutons de navigation pas grand avec "
|
13282 |
"le lien de specifc photo."
|
13283 |
|
13284 |
+
#: wppa-settings-autosave.php:5709
|
13285 |
msgid "fullsize slideshow can only be set by the WPPA_SET shortcode."
|
13286 |
msgstr ""
|
13287 |
"Diaporama plein écran peut être définie seulement par le shortcode WPPA_SET."
|
13288 |
|
13289 |
+
#: wppa-settings-autosave.php:5722
|
13290 |
msgid "lightbox single photos."
|
13291 |
msgstr "lightbox des photos simples."
|
13292 |
|
13293 |
+
#: wppa-settings-autosave.php:5724
|
13294 |
msgid "the thumbnails."
|
13295 |
msgstr "les vignettes."
|
13296 |
|
13297 |
+
#: wppa-settings-autosave.php:5725
|
13298 |
msgid "fullsize slideshow"
|
13299 |
msgstr "diaporama fullsize"
|
13300 |
|
13301 |
+
#: wppa-settings-autosave.php:5750
|
13302 |
msgid "Film linktype"
|
13303 |
msgstr "Film linktype"
|
13304 |
|
13305 |
+
#: wppa-settings-autosave.php:5751
|
13306 |
msgid "Direct access goto image in:"
|
13307 |
msgstr "Accès direct à l'image dans:"
|
13308 |
|
13309 |
+
#: wppa-settings-autosave.php:5752
|
13310 |
msgid ""
|
13311 |
"Select the action to be taken when the user clicks on a filmstrip image."
|
13312 |
msgstr ""
|
13313 |
"Sélectionnez l’action à prendre lorsque l’utilisateur clique sur une image "
|
13314 |
"de la pellicule."
|
13315 |
|
13316 |
+
#: wppa-settings-autosave.php:5757
|
13317 |
msgid "slideshow window"
|
13318 |
msgstr "fenêtre de diaporama"
|
13319 |
|
13320 |
+
#: wppa-settings-autosave.php:5758
|
13321 |
msgid "lightbox overlay"
|
13322 |
msgstr "superposition de lightbox"
|
13323 |
|
13324 |
+
#: wppa-settings-autosave.php:5773
|
13325 |
msgid "Other links"
|
13326 |
msgstr "Autres liens"
|
13327 |
|
13328 |
+
#: wppa-settings-autosave.php:5775
|
13329 |
msgid "Download Link (aka Art Monkey link)"
|
13330 |
msgstr "Lien de élécharger (le lien Art Monkey)"
|
13331 |
|
13332 |
+
#: wppa-settings-autosave.php:5776
|
13333 |
msgid "Makes the photo name a download button."
|
13334 |
msgstr "Rend la photo nommez un bouton de téléchargement."
|
13335 |
|
13336 |
+
#: wppa-settings-autosave.php:5777
|
13337 |
msgid "Link Photo name in slideshow to file or zip with photoname as filename."
|
13338 |
msgstr ""
|
13339 |
"Nom de Photo en diaporama de lien vers fichier ou zip avec photoname comme "
|
13340 |
"nom de fichier."
|
13341 |
|
13342 |
+
#: wppa-settings-autosave.php:5781 wppa-settings-autosave.php:5828
|
13343 |
msgid "image file"
|
13344 |
msgstr "fichier d' image"
|
13345 |
|
13346 |
+
#: wppa-settings-autosave.php:5782 wppa-settings-autosave.php:5829
|
13347 |
msgid "zipped image"
|
13348 |
msgstr "image compressée"
|
13349 |
|
13350 |
+
#: wppa-settings-autosave.php:5795
|
13351 |
msgid "Art Monkey Source"
|
13352 |
msgstr "'Art monkey' Source"
|
13353 |
|
13354 |
+
#: wppa-settings-autosave.php:5796
|
13355 |
msgid "Use Source file for art monkey link if available."
|
13356 |
msgstr "Utiliser le fichier Source pour lien singe art si disponible."
|
13357 |
|
13358 |
+
#: wppa-settings-autosave.php:5805
|
13359 |
msgid "Art Monkey Display"
|
13360 |
msgstr "Affichage d'Art Monkey"
|
13361 |
|
13362 |
+
#: wppa-settings-autosave.php:5806
|
13363 |
msgid "Select button or link ( text )."
|
13364 |
msgstr "Sélectionnez le bouton ou un lien (texte)."
|
13365 |
|
13366 |
+
#: wppa-settings-autosave.php:5811
|
13367 |
msgid "Textlink"
|
13368 |
msgstr "Lien texte"
|
13369 |
|
13370 |
+
#: wppa-settings-autosave.php:5823
|
13371 |
msgid "Popup Download Link"
|
13372 |
msgstr "Lien de téléchargement de Popup"
|
13373 |
|
13374 |
+
#: wppa-settings-autosave.php:5824
|
13375 |
msgid "Configure the download link on fullsize popups."
|
13376 |
msgstr "Configurer le lien de téléchargement sur fullsize popups."
|
13377 |
|
13378 |
+
#: wppa-settings-autosave.php:5825
|
13379 |
msgid "Link fullsize popup download button to either image or zip file."
|
13380 |
msgstr "Bouton de téléchargement popup lien fullsize au fichier image ou zip."
|
13381 |
|
13382 |
+
#: wppa-settings-autosave.php:5841
|
13383 |
msgid "Download link on lightbox"
|
13384 |
msgstr "Lien de télécharger au lightbox"
|
13385 |
|
13386 |
+
#: wppa-settings-autosave.php:5842
|
13387 |
msgid "Art monkey link on lightbox photo names."
|
13388 |
msgstr "Lien de 'Art monkey' sur les noms de photo lightbox."
|
13389 |
|
13390 |
+
#: wppa-settings-autosave.php:5851
|
13391 |
msgid "Album download link"
|
13392 |
msgstr "Lien de téléchargement de l'album"
|
13393 |
|
13394 |
+
#: wppa-settings-autosave.php:5852
|
13395 |
msgid "Place an album download link on the album covers"
|
13396 |
msgstr "Placer un lien de téléchargement d’album sur les couvertures d’album"
|
13397 |
|
13398 |
+
#: wppa-settings-autosave.php:5853
|
13399 |
msgid "Creates a download zipfile containing the photos of the album"
|
13400 |
msgstr "Créer un fichier de téléchargement zip contenant les photos de l’album"
|
13401 |
|
13402 |
+
#: wppa-settings-autosave.php:5861
|
13403 |
msgid "Album download Source"
|
13404 |
msgstr "Télécharger l’album Source"
|
13405 |
|
13406 |
+
#: wppa-settings-autosave.php:5862
|
13407 |
msgid "Use Source file for album download link if available."
|
13408 |
msgstr ""
|
13409 |
"Utiliser le fichier Source pour album Télécharger lien si elles sont "
|
13410 |
"disponibles."
|
13411 |
|
13412 |
+
#: wppa-settings-autosave.php:5871
|
13413 |
msgid "Tagcloud Link"
|
13414 |
msgstr "Lien Tagcloud"
|
13415 |
|
13416 |
+
#: wppa-settings-autosave.php:5872
|
13417 |
msgid "Configure the link from the tags in the tag cloud."
|
13418 |
msgstr "Configurer le lien entre les balises dans le nuage de balises."
|
13419 |
|
13420 |
+
#: wppa-settings-autosave.php:5873
|
13421 |
msgid "Link the tag words to either the thumbnails or the slideshow."
|
13422 |
msgstr "Lier les mots tag soit aux vignettes ou le diaporama."
|
13423 |
|
13424 |
+
#: wppa-settings-autosave.php:5897 wppa-settings-autosave.php:5930
|
13425 |
+
#: wppa-settings-autosave.php:6074
|
13426 |
msgid "Occur"
|
13427 |
msgstr "Occur"
|
13428 |
|
13429 |
+
#: wppa-settings-autosave.php:5904
|
13430 |
msgid "Multitag Link"
|
13431 |
msgstr "Lien Multitag"
|
13432 |
|
13433 |
+
#: wppa-settings-autosave.php:5905
|
13434 |
msgid "Configure the link from the multitag selection."
|
13435 |
msgstr "Configurer la liaison de la sélection multibalises."
|
13436 |
|
13437 |
+
#: wppa-settings-autosave.php:5906
|
13438 |
msgid "Link to either the thumbnails or the slideshow."
|
13439 |
msgstr "Lien vers soit les vignettes ou le diaporama."
|
13440 |
|
13441 |
+
#: wppa-settings-autosave.php:5937
|
13442 |
msgid "Super View Landing"
|
13443 |
msgstr "Destination Superview"
|
13444 |
|
13445 |
+
#: wppa-settings-autosave.php:5938
|
13446 |
msgid "The landing page for the Super View widget."
|
13447 |
msgstr "La page de destination pour le widget Super View."
|
13448 |
|
13449 |
+
#: wppa-settings-autosave.php:5946
|
13450 |
msgid "Defined by the visitor"
|
13451 |
msgstr "Défini par le visiteur"
|
13452 |
|
13453 |
+
#: wppa-settings-autosave.php:5959
|
13454 |
msgid "Uploader Landing"
|
13455 |
msgstr "Destination du chargement"
|
13456 |
|
13457 |
+
#: wppa-settings-autosave.php:5960
|
13458 |
msgid "Select the landing page for the Uploader Widget"
|
13459 |
msgstr "Sélectionnez la page de destination pour le Widget de l’Uploader"
|
13460 |
|
13461 |
+
#: wppa-settings-autosave.php:5980
|
13462 |
msgid "Bestof Landing"
|
13463 |
msgstr "Atterrissage de bestof"
|
13464 |
|
13465 |
+
#: wppa-settings-autosave.php:5981
|
13466 |
msgid "Select the landing page for the BestOf Widget / Box"
|
13467 |
msgstr "Sélectionnez la page de destination pour le BestOf Widget / boîte"
|
13468 |
|
13469 |
+
#: wppa-settings-autosave.php:6001
|
13470 |
msgid "Album navigator Link"
|
13471 |
msgstr "Navigator album lien"
|
13472 |
|
13473 |
+
#: wppa-settings-autosave.php:6002
|
13474 |
msgid "Select link type and page for the Album navigator Widget"
|
13475 |
msgstr ""
|
13476 |
"Sélectionnez le type de lien et de la page pour le navigateur de l’Album "
|
13477 |
"Widget"
|
13478 |
|
13479 |
+
#: wppa-settings-autosave.php:6030
|
13480 |
msgid "Supersearch Landing"
|
13481 |
msgstr "SuperSearch Landing"
|
13482 |
|
13483 |
+
#: wppa-settings-autosave.php:6031
|
13484 |
msgid "Select the landing page for the Supersearch Box"
|
13485 |
msgstr "Sélectionnez la page de destination de la zone de Supersearch"
|
13486 |
|
13487 |
+
#: wppa-settings-autosave.php:6051
|
13488 |
msgid "SM widget return"
|
13489 |
msgstr "Widget SM retour"
|
13490 |
|
13491 |
+
#: wppa-settings-autosave.php:6052
|
13492 |
msgid "Select the return link for social media from widgets"
|
13493 |
msgstr "Sélectionnez le lien de retour pour les médias sociaux de widgets"
|
13494 |
|
13495 |
+
#: wppa-settings-autosave.php:6053
|
13496 |
msgid ""
|
13497 |
"If you select Landing page, and it wont work, it may be required to set the "
|
13498 |
"Occur to the sequence number of the landing shortcode on the page."
|
13501 |
"être requis pour définir l’Occur au numéro de séquence du shortcode "
|
13502 |
"atterrissage sur la page."
|
13503 |
|
13504 |
+
#: wppa-settings-autosave.php:6054
|
13505 |
msgid ""
|
13506 |
"Normally it is 1, but you can try 2 etc. Always create a new shared link to "
|
13507 |
"test a setting."
|
13509 |
"Normalement, il est 1, mais vous pouvez essayer 2, etc. Toujours créer un "
|
13510 |
"nouveau lien partagé pour tester un réglage."
|
13511 |
|
13512 |
+
#: wppa-settings-autosave.php:6062
|
13513 |
msgid "Home page"
|
13514 |
msgstr "Page d'accueil"
|
13515 |
|
13516 |
+
#: wppa-settings-autosave.php:6083
|
13517 |
msgid "Album cover subalbums link"
|
13518 |
msgstr "Lien de sous-albums à la couverture de l’album"
|
13519 |
|
13520 |
+
#: wppa-settings-autosave.php:6084
|
13521 |
msgid ""
|
13522 |
"Select the linktype and display type for sub-albums on parent album covers."
|
13523 |
msgstr ""
|
13524 |
"Sélectionnez le linktype et affichez type pour sous-albums sur les "
|
13525 |
"couvertures d’album de parent."
|
13526 |
|
13527 |
+
#: wppa-settings-autosave.php:6092
|
13528 |
msgid "No link at all"
|
13529 |
msgstr "Pas de lien du tout"
|
13530 |
|
13531 |
+
#: wppa-settings-autosave.php:6093
|
13532 |
msgid "Thumbnails and covers"
|
13533 |
msgstr "Vignettes et couvertures"
|
13534 |
|
13535 |
+
#: wppa-settings-autosave.php:6094
|
13536 |
msgid "Slideshow or covers"
|
13537 |
msgstr "Diaporama et couvertures"
|
13538 |
|
13539 |
+
#: wppa-settings-autosave.php:6104
|
13540 |
msgid "No display at all"
|
13541 |
msgstr "Pas d'afficahge du tout"
|
13542 |
|
13543 |
+
#: wppa-settings-autosave.php:6105
|
13544 |
msgid "A list with sub(sub) albums"
|
13545 |
msgstr "Une liste avec sub(sub) albums"
|
13546 |
|
13547 |
+
#: wppa-settings-autosave.php:6106
|
13548 |
msgid "A list of children only"
|
13549 |
msgstr "Une liste d’enfants seulement"
|
13550 |
|
13551 |
+
#: wppa-settings-autosave.php:6107
|
13552 |
msgid "An enumeration of names"
|
13553 |
msgstr "Une énumération de noms"
|
13554 |
|
13555 |
+
#: wppa-settings-autosave.php:6108
|
13556 |
msgid "Micro thumbnails"
|
13557 |
msgstr "Micro vignettes"
|
13558 |
|
13559 |
+
#: wppa-settings-autosave.php:6146
|
13560 |
msgid "Table VII:"
|
13561 |
msgstr "Table VII:"
|
13562 |
|
13563 |
+
#: wppa-settings-autosave.php:6146
|
13564 |
msgid "Permissions and Restrictions:"
|
13565 |
msgstr "Autorisations et Restrictions:"
|
13566 |
|
13567 |
+
#: wppa-settings-autosave.php:6147
|
13568 |
msgid ""
|
13569 |
"This table describes the access settings for admin and front-end activities."
|
13570 |
msgstr "Ce Table décrit les paramètres d’accès admin et activités frontale."
|
13571 |
|
13572 |
+
#: wppa-settings-autosave.php:6168
|
13573 |
msgid "Moderate P+C"
|
13574 |
msgstr "Modérer P+C"
|
13575 |
|
13576 |
+
#: wppa-settings-autosave.php:6172
|
13577 |
msgid "Comment Admin"
|
13578 |
msgstr "Admin Commentaire"
|
13579 |
|
13580 |
+
#: wppa-settings-autosave.php:6173
|
13581 |
msgid "Help & Info"
|
13582 |
msgstr "Aide & Information"
|
13583 |
|
13584 |
+
#: wppa-settings-autosave.php:6175
|
13585 |
msgid "Role"
|
13586 |
msgstr "Rôle"
|
13587 |
|
13588 |
+
#: wppa-settings-autosave.php:6184
|
13589 |
msgid ""
|
13590 |
"Admin settings per user role. Enabling these settings will overrule the "
|
13591 |
"front-end settings for the specific user role"
|
13593 |
"Paramètres admin par rôle d’utilisateur. Activation de ces paramètres annule "
|
13594 |
"les paramètres frontal pour le rôle d’utilisateur spécifique"
|
13595 |
|
13596 |
+
#: wppa-settings-autosave.php:6208
|
13597 |
msgid "Frontend create Albums and upload Photos enabling and limiting settings"
|
13598 |
msgstr ""
|
13599 |
"Paramètres Frontend de permettant et en limitant de créer Albums et "
|
13600 |
"télécharger des Photos"
|
13601 |
|
13602 |
+
#: wppa-settings-autosave.php:6210
|
13603 |
msgid "User create Albums"
|
13604 |
msgstr "L’utilisateur créer des Albums"
|
13605 |
|
13606 |
+
#: wppa-settings-autosave.php:6211
|
13607 |
msgid "Enable frontend album creation."
|
13608 |
msgstr "Activer la création d’album de front-end."
|
13609 |
|
13610 |
+
#: wppa-settings-autosave.php:6212
|
13611 |
msgid "If you check this item, frontend album creation will be enabled."
|
13612 |
msgstr "Si vous cochez cet article, création d'albums frontend sera activé."
|
13613 |
|
13614 |
+
#: wppa-settings-autosave.php:6222
|
13615 |
msgid "User edit album"
|
13616 |
msgstr "L'utilisateur éditer l’album"
|
13617 |
|
13618 |
+
#: wppa-settings-autosave.php:6223
|
13619 |
msgid "Enable frontend edit album name and description."
|
13620 |
msgstr "Activer front-end modifier le nom et la description album."
|
13621 |
|
13622 |
+
#: wppa-settings-autosave.php:6233
|
13623 |
msgid "User delete Albums"
|
13624 |
msgstr "L’utilisateur supprimer des Albums"
|
13625 |
|
13626 |
+
#: wppa-settings-autosave.php:6234
|
13627 |
msgid "Enable frontend album deletion"
|
13628 |
msgstr "Activer la suppression d'album de front-end"
|
13629 |
|
13630 |
+
#: wppa-settings-autosave.php:6235
|
13631 |
msgid "If you check this item, frontend album deletion will be enabled."
|
13632 |
msgstr "Si vous cochez cet article, l'album frontend suppression sera activé."
|
13633 |
|
13634 |
+
#: wppa-settings-autosave.php:6245
|
13635 |
msgid "User create Albums login"
|
13636 |
msgstr "L’utilisateur créer des Albums login"
|
13637 |
|
13638 |
+
#: wppa-settings-autosave.php:6246
|
13639 |
msgid "Frontend album creation requires the user is logged in."
|
13640 |
msgstr "Création album frontend exige que l’utilisateur soit connecté."
|
13641 |
|
13642 |
+
#: wppa-settings-autosave.php:6257
|
13643 |
msgid "User create Albums Captcha"
|
13644 |
msgstr "Utilisateur de créer les albums Captcha"
|
13645 |
|
13646 |
+
#: wppa-settings-autosave.php:6258
|
13647 |
msgid "User must answer security question."
|
13648 |
msgstr "L'utilisateur doit répondre à la question de sécurité."
|
13649 |
|
13650 |
+
#: wppa-settings-autosave.php:6283
|
13651 |
#, php-format
|
13652 |
msgid "Upload limit %s"
|
13653 |
msgstr "Upload limit %s"
|
13654 |
|
13655 |
+
#: wppa-settings-autosave.php:6284
|
13656 |
msgid "Limit upload capacity for logged out users."
|
13657 |
msgstr ""
|
13658 |
"Limiter la capacité de téléchargement pour les utilisateurs enregistrés sur."
|
13659 |
|
13660 |
+
#: wppa-settings-autosave.php:6285
|
13661 |
#, php-format
|
13662 |
msgid "Limit upload capacity for the user role %s."
|
13663 |
msgstr "Limiter la capacité de téléchargement pour le rôle d'utilisateur%s."
|
13664 |
|
13665 |
+
#: wppa-settings-autosave.php:6286
|
13666 |
msgid "This setting has only effect when Table VII-B2 is unchecked."
|
13667 |
msgstr ""
|
13668 |
"Ce paramètre influe seulement lorsque le Table VII-B2 n’est pas cochée."
|
13669 |
|
13670 |
+
#: wppa-settings-autosave.php:6287
|
13671 |
msgid ""
|
13672 |
"This limitation only applies to frontend uploads when the same userrole does "
|
13673 |
"not have the Upload checkbox checked in Table VII-A."
|
13676 |
"l’userrole même n’a pas coxhé la case à cocher Télécharger dans le Table VII-"
|
13677 |
"A."
|
13678 |
|
13679 |
+
#: wppa-settings-autosave.php:6288 wppa-settings-autosave.php:6304
|
13680 |
+
#: wppa-settings-autosave.php:8288
|
13681 |
msgid "A value of 0 means: no limit."
|
13682 |
msgstr "Une valeur de 0 signifie: pas de limitation."
|
13683 |
|
13684 |
+
#: wppa-settings-autosave.php:6301
|
13685 |
#, php-format
|
13686 |
msgid "Album limit %s"
|
13687 |
msgstr "Album limit %s"
|
13688 |
|
13689 |
+
#: wppa-settings-autosave.php:6302
|
13690 |
#, php-format
|
13691 |
msgid "Limit number of albums for the user role %s."
|
13692 |
msgstr "Limiter le nombre d'albums pour le rôle d'utilisateur %s."
|
13693 |
|
13694 |
+
#: wppa-settings-autosave.php:6303
|
13695 |
msgid ""
|
13696 |
"This limitation only applies to frontend create albums when the same "
|
13697 |
"userrole does not have the Album admin checkbox checked in Table VII-A."
|
13700 |
"l’userrole même n’a pas coché la case à cocher Album admin dans le Table VII-"
|
13701 |
"A."
|
13702 |
|
13703 |
+
#: wppa-settings-autosave.php:6315
|
13704 |
msgid "Upload one only"
|
13705 |
msgstr "Charger un seul élément"
|
13706 |
|
13707 |
+
#: wppa-settings-autosave.php:6316
|
13708 |
msgid "Non admin users can upload only one photo at a time."
|
13709 |
msgstr "Utilisateurs non admin peuvent télécharger une seule photo à la fois."
|
13710 |
|
13711 |
+
#: wppa-settings-autosave.php:6326
|
13712 |
msgid "Upload moderation"
|
13713 |
msgstr "Modération du chargement des photos"
|
13714 |
|
13715 |
+
#: wppa-settings-autosave.php:6327
|
13716 |
msgid "Uploaded photos need moderation."
|
13717 |
msgstr "La photo chargée nécessite une modération."
|
13718 |
|
13719 |
+
#: wppa-settings-autosave.php:6328
|
13720 |
msgid ""
|
13721 |
"If checked, photos uploaded by users who do not have photo album admin "
|
13722 |
"access rights need moderation."
|
13724 |
"Si elle est cochée, les photos téléchargées par les utilisateurs qui ne "
|
13725 |
"disposent pas des droits d'accès album photo admin besoin de modération."
|
13726 |
|
13727 |
+
#: wppa-settings-autosave.php:6329
|
13728 |
msgid ""
|
13729 |
"Users who have photo album admin access rights can change the photo status "
|
13730 |
"to publish or featured."
|
13732 |
"Les utilisateurs qui ont des droits d'accès photo album admin peuvent "
|
13733 |
"modifier l'état de la photo à publier ou en vedette."
|
13734 |
|
13735 |
+
#: wppa-settings-autosave.php:6330
|
13736 |
msgid "You can set the album admin access rights in Table VII-A."
|
13737 |
msgstr ""
|
13738 |
"Vous pouvez définir les droits d’accès admin album dans le Table VII-A."
|
13739 |
|
13740 |
+
#: wppa-settings-autosave.php:6339
|
13741 |
msgid "FE Upload private"
|
13742 |
msgstr "FE Ajouter privée"
|
13743 |
|
13744 |
+
#: wppa-settings-autosave.php:6340
|
13745 |
msgid "Front-end uploaded photos status is set to private."
|
13746 |
msgstr "Front-end photos téléchargées statut est privé."
|
13747 |
|
13748 |
+
#: wppa-settings-autosave.php:6341
|
13749 |
msgid "This setting overrules VI-B7.0."
|
13750 |
msgstr "Ce réglage outrepasse VI-B7.0."
|
13751 |
|
13752 |
+
#: wppa-settings-autosave.php:6350
|
13753 |
msgid "Upload notify"
|
13754 |
msgstr "Notification de chargement"
|
13755 |
|
13756 |
+
#: wppa-settings-autosave.php:6351
|
13757 |
msgid "Notify admin at frontend upload."
|
13758 |
msgstr "Notifier l'administrateur au frontend téléchargement."
|
13759 |
|
13760 |
+
#: wppa-settings-autosave.php:6352 wppa-settings-autosave.php:6363
|
13761 |
msgid "If checked, admin will receive a notification by email."
|
13762 |
msgstr "Si cochée, admin recevra une notification par e-mail."
|
13763 |
|
13764 |
+
#: wppa-settings-autosave.php:6361
|
13765 |
msgid "Upload backend notify"
|
13766 |
msgstr "Upload backend notifier"
|
13767 |
|
13768 |
+
#: wppa-settings-autosave.php:6362
|
13769 |
msgid "Notify admin at backend upload."
|
13770 |
msgstr "Notifier l'administrateur au backend téléchargement."
|
13771 |
|
13772 |
+
#: wppa-settings-autosave.php:6372
|
13773 |
msgid "Max size in pixels"
|
13774 |
msgstr "Taille maximale en pixels"
|
13775 |
|
13776 |
+
#: wppa-settings-autosave.php:6373
|
13777 |
msgid "Max size for height and width for front-end uploads."
|
13778 |
msgstr ""
|
13779 |
"Taille maximale en hauteur et en largeur pour les téléchargements frontaux."
|
13780 |
|
13781 |
+
#: wppa-settings-autosave.php:6374
|
13782 |
msgid "Enter the maximum size. 0 is unlimited"
|
13783 |
msgstr "Entrez la taille maximale. 0 est illimité"
|
13784 |
|
13785 |
+
#: wppa-settings-autosave.php:6383
|
13786 |
msgid "Home after Upload"
|
13787 |
msgstr "A l'accueil après le chargement"
|
13788 |
|
13789 |
+
#: wppa-settings-autosave.php:6384
|
13790 |
msgid "After successfull front-end upload, go to the home page."
|
13791 |
msgstr "Après téléchargement réussi de front-end, aller à la page d’accueil."
|
13792 |
|
13793 |
+
#: wppa-settings-autosave.php:6394
|
13794 |
msgid "Fe alert"
|
13795 |
msgstr "Fe alerte"
|
13796 |
|
13797 |
+
#: wppa-settings-autosave.php:6395
|
13798 |
msgid "Show alertbox on front-end."
|
13799 |
msgstr "Afficher Alertbox sur front-end."
|
13800 |
|
13801 |
+
#: wppa-settings-autosave.php:6396
|
13802 |
msgid ""
|
13803 |
"Errors are always reported, credit points only when --- none --- is not "
|
13804 |
"selected"
|
13806 |
"Les erreurs sont toujours signalés, les points de crédit seulement quand --- "
|
13807 |
"aucun --- n'a pas été sélectionné"
|
13808 |
|
13809 |
+
#: wppa-settings-autosave.php:6399
|
13810 |
msgid "uploads and create albums"
|
13811 |
msgstr "télécharge et créez des albums"
|
13812 |
|
13813 |
+
#: wppa-settings-autosave.php:6400
|
13814 |
msgid "blog it"
|
13815 |
msgstr "Blog It"
|
13816 |
|
13817 |
+
#: wppa-settings-autosave.php:6415
|
13818 |
msgid "Max fe upload albums"
|
13819 |
msgstr "Max fe albums de téléchargement"
|
13820 |
|
13821 |
+
#: wppa-settings-autosave.php:6416
|
13822 |
msgid "Max number of albums in frontend upload selection box."
|
13823 |
msgstr ""
|
13824 |
"Nombre maximum d'albums dans la boîte de sélection frontend de "
|
13825 |
"téléchargement."
|
13826 |
|
13827 |
+
#: wppa-settings-autosave.php:6428
|
13828 |
msgid "Admin Functionality restrictions for non administrators"
|
13829 |
msgstr "Restrictions de fonctionnalités Admin pour les non administrateurs"
|
13830 |
|
13831 |
+
#: wppa-settings-autosave.php:6430
|
13832 |
msgid "Alt thumb is restricted"
|
13833 |
msgstr "Pouce Alt est limité"
|
13834 |
|
13835 |
+
#: wppa-settings-autosave.php:6431
|
13836 |
msgid "Using <b>alt thumbsize</b> is a restricted action."
|
13837 |
msgstr "Utilisation <b>alt Thumbsize</b> est une action restreinte."
|
13838 |
|
13839 |
+
#: wppa-settings-autosave.php:6432
|
13840 |
msgid ""
|
13841 |
"If checked: alt thumbsize can not be set in album admin by users not having "
|
13842 |
"admin rights."
|
13844 |
"Si coché: alt Thumbsize ne peut pas être réglé dans l'album d'administration "
|
13845 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13846 |
|
13847 |
+
#: wppa-settings-autosave.php:6441
|
13848 |
msgid "Link is restricted"
|
13849 |
msgstr "Lien est limité"
|
13850 |
|
13851 |
+
#: wppa-settings-autosave.php:6442
|
13852 |
msgid "Using <b>Link to</b> is a restricted action."
|
13853 |
msgstr "Utiliser un <b>lien vers</b> est une action restreinte."
|
13854 |
|
13855 |
+
#: wppa-settings-autosave.php:6443
|
13856 |
msgid ""
|
13857 |
"If checked: Link to: can not be set in album admin by users not having admin "
|
13858 |
"rights."
|
13860 |
"Si coché: Lien vers: ne peut pas être définie dans l'album d'administration "
|
13861 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13862 |
|
13863 |
+
#: wppa-settings-autosave.php:6452
|
13864 |
msgid "CoverType is restricted"
|
13865 |
msgstr "CoverType est limitée"
|
13866 |
|
13867 |
+
#: wppa-settings-autosave.php:6453
|
13868 |
msgid "Changing <b>Cover Type</b> is a restricted action."
|
13869 |
msgstr "Changer de <b>Type de couverture</b> est une action restreinte."
|
13870 |
|
13871 |
+
#: wppa-settings-autosave.php:6454
|
13872 |
msgid ""
|
13873 |
"If checked: Cover Type: can not be set in album admin by users not having "
|
13874 |
"admin rights."
|
13876 |
"Si coché: Cover Type: ne peut pas être définie dans l'album d'administration "
|
13877 |
"par les utilisateurs ne disposant pas des droits d'administrateur."
|
13878 |
|
13879 |
+
#: wppa-settings-autosave.php:6463
|
13880 |
msgid "Photo order# is restricted"
|
13881 |
msgstr "Photo order# is restricted"
|
13882 |
|
13883 |
+
#: wppa-settings-autosave.php:6464
|
13884 |
msgid "Changing <b>Photo sort order #</b> is a restricted action."
|
13885 |
msgstr "Changer <b>Tri Photo No de sequence</b> est une action restreinte."
|
13886 |
|
13887 |
+
#: wppa-settings-autosave.php:6465
|
13888 |
msgid ""
|
13889 |
"If checked: Photo sort order #: can not be set in photo admin by users not "
|
13890 |
"having admin rights."
|
13892 |
"Si coché: Photo ordre de tri #: ne peut pas être sur la photo "
|
13893 |
"d'administration par les utilisateurs de ne pas avoir les droits admin."
|
13894 |
|
13895 |
+
#: wppa-settings-autosave.php:6474
|
13896 |
msgid "Change source restricted"
|
13897 |
msgstr "Changement de source limitée"
|
13898 |
|
13899 |
+
#: wppa-settings-autosave.php:6475
|
13900 |
msgid "Changing the import source dir requires admin rights."
|
13901 |
msgstr ""
|
13902 |
"Changer le répertoire de source d’importation nécessite des droits d’admin."
|
13903 |
|
13904 |
+
#: wppa-settings-autosave.php:6476
|
13905 |
msgid ""
|
13906 |
"If checked, the imput source for importing photos and albums is restricted "
|
13907 |
"to user role administrator."
|
13909 |
"Si elle est cochée, la source d'imput pour importer des photos et des albums "
|
13910 |
"est limitée a rôle de l'administrateur."
|
13911 |
|
13912 |
+
#: wppa-settings-autosave.php:6485
|
13913 |
msgid "Extended status restricted"
|
13914 |
msgstr "État étendu limitée"
|
13915 |
|
13916 |
+
#: wppa-settings-autosave.php:6486
|
13917 |
msgid "Setting status other than pending or publish requires admin rights."
|
13918 |
msgstr ""
|
13919 |
"Réglage de l'état autre que l'attente ou publier nécessite des droits "
|
13920 |
"d'admin."
|
13921 |
|
13922 |
+
#: wppa-settings-autosave.php:6496
|
13923 |
msgid "Photo description restricted"
|
13924 |
msgstr "Description de la photo restreinte"
|
13925 |
|
13926 |
+
#: wppa-settings-autosave.php:6497
|
13927 |
msgid "Edit photo description requires admin rights."
|
13928 |
msgstr "Modifier description photo nécessite des droits d’admin."
|
13929 |
|
13930 |
+
#: wppa-settings-autosave.php:6507
|
13931 |
msgid "Update photofiles restricted"
|
13932 |
msgstr "Mise à jour fichers photo restreint"
|
13933 |
|
13934 |
+
#: wppa-settings-autosave.php:6508
|
13935 |
msgid "Re-upload files requires admin rights"
|
13936 |
msgstr "Re-télécharger les fichiers nécessite des droits d’admin"
|
13937 |
|
13938 |
+
#: wppa-settings-autosave.php:6518
|
13939 |
msgid "Miscellaneous limiting settings"
|
13940 |
msgstr "Divers paramètres de limitation"
|
13941 |
|
13942 |
+
#: wppa-settings-autosave.php:6520
|
13943 |
msgid "Owners only"
|
13944 |
msgstr "Propriétaires seulement"
|
13945 |
|
13946 |
+
#: wppa-settings-autosave.php:6521
|
|
|
13947 |
msgid "Limit edit album access to the album owners only."
|
13948 |
msgstr ""
|
13949 |
+
"Limitez album accès d'édition pour les propriétaires d'album seulement."
|
13950 |
|
13951 |
+
#: wppa-settings-autosave.php:6522
|
13952 |
msgid "If checked, non-admin users can edit their own albums only."
|
13953 |
msgstr ""
|
13954 |
"Si cochée, les utilisateurs non-admin peuvent modifier leurs propres albums "
|
13955 |
"seulement."
|
13956 |
|
13957 |
+
#: wppa-settings-autosave.php:6531
|
|
|
13958 |
msgid "Upload Owners only"
|
13959 |
+
msgstr "Upload Propriétaires seulement"
|
13960 |
|
13961 |
+
#: wppa-settings-autosave.php:6532
|
|
|
13962 |
msgid "Limit uploads to the album owners only."
|
13963 |
+
msgstr "Limitez ajouts aux propriétaires d'album seulement."
|
13964 |
|
13965 |
+
#: wppa-settings-autosave.php:6533
|
|
|
13966 |
msgid ""
|
13967 |
+
"If checked, users can upload to their own albums and --- public --- only."
|
13968 |
msgstr ""
|
13969 |
+
"Si elle est cochée, les utilisateurs peuvent télécharger leurs propres "
|
13970 |
+
"albums et --- publique --- seulement."
|
13971 |
|
13972 |
+
#: wppa-settings-autosave.php:6542
|
13973 |
msgid "Frontend Edit"
|
13974 |
msgstr "Front-end Modifier"
|
13975 |
|
13976 |
+
#: wppa-settings-autosave.php:6543
|
13977 |
msgid "Allow the uploader to edit the photo info"
|
13978 |
msgstr "Permettre à l’uploader modifier les infos de la photo"
|
13979 |
|
13980 |
+
#: wppa-settings-autosave.php:6544
|
|
|
13981 |
msgid ""
|
13982 |
"If selected, any logged in user who meets the criteria has the capability to "
|
13983 |
"edit the photo information."
|
13985 |
"Si sélectionné, tout connecté utilisateur qui satisfait aux critères a la "
|
13986 |
"capacité de modifier les informations de la photo."
|
13987 |
|
13988 |
+
#: wppa-settings-autosave.php:6545
|
|
|
13989 |
msgid "Note: This may be AFTER moderation!!"
|
13990 |
msgstr "Remarque : Cela peut être après modération !!"
|
13991 |
|
13992 |
+
#: wppa-settings-autosave.php:6547
|
13993 |
msgid "Classic"
|
13994 |
msgstr "Classic"
|
13995 |
|
13996 |
+
#: wppa-settings-autosave.php:6547
|
13997 |
msgid "New style"
|
13998 |
msgstr "Nouveau style"
|
13999 |
|
14000 |
+
#: wppa-settings-autosave.php:6556
|
14001 |
msgid "Fe Edit users"
|
14002 |
msgstr "Modifier par Utilisateurs"
|
14003 |
|
14004 |
+
#: wppa-settings-autosave.php:6557
|
14005 |
msgid "The criteria the user must meet to edit photo info"
|
14006 |
msgstr ""
|
14007 |
"Les critères l’utilisateur doit remplir pour modifier les informations de la "
|
14008 |
"photo"
|
14009 |
|
14010 |
+
#: wppa-settings-autosave.php:6560
|
14011 |
msgid "Admin and superuser"
|
14012 |
msgstr "Admin et superutilisateur"
|
14013 |
|
14014 |
+
#: wppa-settings-autosave.php:6560
|
14015 |
msgid "Owner, admin and superuser"
|
14016 |
msgstr "Propriétaire, admin et superutilisateur"
|
14017 |
|
14018 |
+
#: wppa-settings-autosave.php:6569
|
14019 |
msgid "Fe Edit Theme CSS"
|
14020 |
msgstr "Fe Edit thème CSS"
|
14021 |
|
14022 |
+
#: wppa-settings-autosave.php:6570
|
14023 |
msgid "The front-end edit photo dialog uses the theme CSS."
|
14024 |
msgstr "La boîte de dialogue Modifier frontal photo utilise le thème CSS."
|
14025 |
|
14026 |
+
#: wppa-settings-autosave.php:6580
|
14027 |
msgid "Fe Edit New Items"
|
14028 |
msgstr "Fe modifiez éléments nouveau style"
|
14029 |
|
14030 |
+
#: wppa-settings-autosave.php:6581
|
14031 |
msgid "The items that are fe editable"
|
14032 |
msgstr "Les éléments qui sont modifiables de frontal"
|
14033 |
|
14034 |
+
#: wppa-settings-autosave.php:6582
|
14035 |
msgid "See also Table II-J10!"
|
14036 |
msgstr "Voir aussi Table II-J10!"
|
14037 |
|
14038 |
+
#: wppa-settings-autosave.php:6595
|
14039 |
msgid "Fe Edit Button text"
|
14040 |
msgstr "Texte du bouton modifier de Fe"
|
14041 |
|
14042 |
+
#: wppa-settings-autosave.php:6596
|
|
|
14043 |
msgid "The text on the Edit button."
|
14044 |
msgstr "Le texte sur le bouton modifier."
|
14045 |
|
14046 |
+
#: wppa-settings-autosave.php:6606
|
14047 |
msgid "Fe Edit Dialog caption"
|
14048 |
msgstr "Fe Légende de la boîte de dialogue de modifier"
|
14049 |
|
14050 |
+
#: wppa-settings-autosave.php:6607
|
|
|
14051 |
msgid "The text on the header of the popup."
|
14052 |
+
msgstr "Le texte sur l'en-tête de la fenêtre."
|
14053 |
|
14054 |
+
#: wppa-settings-autosave.php:6617
|
14055 |
msgid "Frontend Delete"
|
14056 |
msgstr "Front-end Supprimer"
|
14057 |
|
14058 |
+
#: wppa-settings-autosave.php:6618
|
14059 |
msgid "Allow the uploader to delete the photo"
|
14060 |
msgstr "Permettre à l’uploader effacer la photo"
|
14061 |
|
14062 |
+
#: wppa-settings-autosave.php:6628
|
14063 |
#, fuzzy
|
14064 |
msgid "Uploader Moderate Comment"
|
14065 |
msgstr "Commentaire modéré Uploader"
|
14066 |
|
14067 |
+
#: wppa-settings-autosave.php:6629
|
14068 |
#, fuzzy
|
14069 |
msgid "The owner of the photo can moderate the photos comments."
|
14070 |
msgstr "Le propriétaire de la photo peut modérer les commentaires de photos."
|
14071 |
|
14072 |
+
#: wppa-settings-autosave.php:6630
|
14073 |
#, fuzzy
|
14074 |
msgid "This setting requires \"Uploader edit\" to be enabled also."
|
14075 |
msgstr "Ce paramètre nécessite « edit Uploader » soit activé aussi."
|
14076 |
|
14077 |
+
#: wppa-settings-autosave.php:6639
|
14078 |
#, fuzzy
|
14079 |
msgid "Upload memory check frontend"
|
14080 |
msgstr "Télécharger mémoire cocher frontend"
|
14081 |
|
14082 |
+
#: wppa-settings-autosave.php:6640 wppa-settings-autosave.php:6651
|
14083 |
msgid "Disable uploading photos that are too large."
|
14084 |
msgstr "Désactiver le téléchargement des photos qui sont trop grands."
|
14085 |
|
14086 |
+
#: wppa-settings-autosave.php:6641 wppa-settings-autosave.php:6652
|
14087 |
#, fuzzy
|
14088 |
msgid ""
|
14089 |
"To prevent out of memory crashes during upload and possible database "
|
14093 |
"incohérences de base de données possible, les téléchargements peuvent être "
|
14094 |
"évités si les photos sont trop grandes."
|
14095 |
|
14096 |
+
#: wppa-settings-autosave.php:6650
|
14097 |
#, fuzzy
|
14098 |
msgid "Upload memory check admin"
|
14099 |
msgstr "Télécharger mémoire cocher admin"
|
14100 |
|
14101 |
+
#: wppa-settings-autosave.php:6661
|
14102 |
msgid "Comment captcha"
|
14103 |
msgstr "Captcha commentaire"
|
14104 |
|
14105 |
+
#: wppa-settings-autosave.php:6662
|
14106 |
#, fuzzy
|
14107 |
msgid "Use a simple calculate captcha on comments form."
|
14108 |
msgstr "Utiliser un simple calcul captcha sur le formulaire de commentaires."
|
14109 |
|
14110 |
+
#: wppa-settings-autosave.php:6675
|
14111 |
msgid "Spam lifetime"
|
14112 |
msgstr "Durée de vie de spam"
|
14113 |
|
14114 |
+
#: wppa-settings-autosave.php:6676
|
14115 |
msgid "Delete spam comments when older than."
|
14116 |
msgstr "Supprimer le spam de commentaires lorsqu’il y a plus de."
|
14117 |
|
14118 |
+
#: wppa-settings-autosave.php:6703
|
14119 |
msgid "Avoid duplicates"
|
14120 |
msgstr "Éviter les doublons"
|
14121 |
|
14122 |
+
#: wppa-settings-autosave.php:6704
|
14123 |
#, fuzzy
|
14124 |
msgid "Prevent the creation of duplicate photos."
|
14125 |
msgstr "Empêcher la création de photos en double."
|
14126 |
|
14127 |
+
#: wppa-settings-autosave.php:6705
|
14128 |
#, fuzzy
|
14129 |
msgid ""
|
14130 |
"If checked: uploading, importing, copying or moving photos to other albums "
|
14135 |
"photos vers d’autres albums seront empêchés quand l’album desitation "
|
14136 |
"contient déjà une photo avec le même nom de fichier."
|
14137 |
|
14138 |
+
#: wppa-settings-autosave.php:6714
|
14139 |
msgid "Blacklist user"
|
14140 |
msgstr "Blacklister l'utilisateur"
|
14141 |
|
14142 |
+
#: wppa-settings-autosave.php:6715 wppa-settings-autosave.php:6716
|
14143 |
#, fuzzy
|
14144 |
msgid "Set the status of all the users photos to 'pending'."
|
14145 |
msgstr "Définir l’état de toutes les photos des utilisateurs « en attente »."
|
14146 |
|
14147 |
+
#: wppa-settings-autosave.php:6717
|
14148 |
msgid "Also inhibits further uploads."
|
14149 |
msgstr "Inhibe aussi les téléchargements supplémentaires."
|
14150 |
|
14151 |
+
#: wppa-settings-autosave.php:6723
|
14152 |
msgid "--- select a user to blacklist ---"
|
14153 |
msgstr "--- choisir un utilisateur à bannir ---"
|
14154 |
|
14155 |
+
#: wppa-settings-autosave.php:6733 wppa-settings-autosave.php:6738
|
14156 |
+
#: wppa-settings-autosave.php:6759 wppa-settings-autosave.php:6797
|
14157 |
+
#: wppa-settings-autosave.php:6802 wppa-settings-autosave.php:6823
|
14158 |
+
#: wppa-settings-autosave.php:9484 wppa-settings-autosave.php:9526
|
14159 |
#, fuzzy
|
14160 |
msgid "The page will be reloaded after the action has taken place."
|
14161 |
msgstr "La page est rechargée après que l’action a eu lieu."
|
14162 |
|
14163 |
+
#: wppa-settings-autosave.php:6739 wppa-settings-autosave.php:6803
|
14164 |
#, fuzzy
|
14165 |
msgid "User login name <b>( case sensitive! )</b>:"
|
14166 |
msgstr "Utilisateur connexion nom <b>(affaire sensible !)</b>:"
|
14167 |
|
14168 |
+
#: wppa-settings-autosave.php:6747
|
14169 |
msgid "Unblacklist user"
|
14170 |
msgstr "Unblacklist utilisateur"
|
14171 |
|
14172 |
+
#: wppa-settings-autosave.php:6748
|
14173 |
#, fuzzy
|
14174 |
msgid "Set the status of all the users photos to 'publish'."
|
14175 |
msgstr "Définir l’état de toutes les photos des utilisateurs de « publier »."
|
14176 |
|
14177 |
+
#: wppa-settings-autosave.php:6752
|
14178 |
msgid "--- select a user to unblacklist ---"
|
14179 |
msgstr "---Sélectionnez un utilisateur pour unblacklist---"
|
14180 |
|
14181 |
+
#: wppa-settings-autosave.php:6767
|
14182 |
msgid "Photo owner change"
|
14183 |
msgstr "Changer le propriétaire de la photo"
|
14184 |
|
14185 |
+
#: wppa-settings-autosave.php:6768
|
14186 |
msgid "Administrators can change photo owner"
|
14187 |
msgstr "Les administrateurs peuvent modifier le propriétaire de la photo"
|
14188 |
|
14189 |
+
#: wppa-settings-autosave.php:6778
|
14190 |
msgid "Super user"
|
14191 |
msgstr "Super utilisateur"
|
14192 |
|
14193 |
+
#: wppa-settings-autosave.php:6779
|
14194 |
msgid "Give these users all rights in wppa."
|
14195 |
msgstr "Donner à ces utilisateurs tous droits en wppa."
|
14196 |
|
14197 |
+
#: wppa-settings-autosave.php:6780
|
14198 |
#, fuzzy
|
14199 |
msgid "This gives the user all the administrator privileges within wppa."
|
14200 |
msgstr ""
|
14201 |
"Cela donne à l’utilisateur tous les privilèges d’administrateur au sein de "
|
14202 |
"la wppa."
|
14203 |
|
14204 |
+
#: wppa-settings-autosave.php:6781
|
14205 |
msgid ""
|
14206 |
"Make sure the user also has a role that has all the boxes ticked in Table "
|
14207 |
"VII-A"
|
14209 |
"Assurez-vous que l’utilisateur a également un rôle qui a toutes les cases "
|
14210 |
"cochées dans le Table VII-A"
|
14211 |
|
14212 |
+
#: wppa-settings-autosave.php:6787
|
14213 |
msgid "--- select a user to make superuser ---"
|
14214 |
msgstr "--- Sélectionner un utilisateur à faire superutilisateur ---"
|
14215 |
|
14216 |
+
#: wppa-settings-autosave.php:6811
|
14217 |
msgid "Unsuper user"
|
14218 |
msgstr "utilisateur Unsuper"
|
14219 |
|
14220 |
+
#: wppa-settings-autosave.php:6812
|
14221 |
#, fuzzy
|
14222 |
msgid "Remove user from super user list."
|
14223 |
msgstr "Supprimer l’utilisateur de liste de super utilisateur."
|
14224 |
|
14225 |
+
#: wppa-settings-autosave.php:6816
|
14226 |
msgid "--- select a user to unmake superuser ---"
|
14227 |
msgstr "--- Sélectionner un utilisateur à défaire superutilisateur ---"
|
14228 |
|
14229 |
+
#: wppa-settings-autosave.php:6849
|
14230 |
msgid "Table VIII:"
|
14231 |
msgstr "Table VIII:"
|
14232 |
|
14233 |
+
#: wppa-settings-autosave.php:6849
|
14234 |
msgid "Actions:"
|
14235 |
msgstr "Actions:"
|
14236 |
|
14237 |
+
#: wppa-settings-autosave.php:6850
|
14238 |
msgid "This table lists all actions that can be taken to the wppa+ system"
|
14239 |
msgstr ""
|
14240 |
"Ce table répertorie toutes les actions qui peuvent être prises pour la "
|
14241 |
"système wppa+"
|
14242 |
|
14243 |
+
#: wppa-settings-autosave.php:6860 wppa-settings-autosave.php:7685
|
14244 |
msgid "Specification"
|
14245 |
msgstr "Spécification"
|
14246 |
|
14247 |
+
#: wppa-settings-autosave.php:6861 wppa-settings-autosave.php:7686
|
14248 |
+
#: wppa-settings-autosave.php:10509 wppa-settings-autosave.php:10531
|
14249 |
msgid "Do it!"
|
14250 |
msgstr "Faites-le!"
|
14251 |
|
14252 |
+
#: wppa-settings-autosave.php:6863 wppa-settings-autosave.php:7688
|
14253 |
msgid "To Go"
|
14254 |
msgstr "Encore"
|
14255 |
|
14256 |
+
#: wppa-settings-autosave.php:6871
|
14257 |
msgid "Harmless and reverseable actions"
|
14258 |
msgstr "Actions inoffensives et reversibles"
|
14259 |
|
14260 |
+
#: wppa-settings-autosave.php:6873
|
14261 |
msgid "Ignore concurrency"
|
14262 |
msgstr "Ignorer l’accès concurrentiel"
|
14263 |
|
14264 |
+
#: wppa-settings-autosave.php:6874
|
14265 |
#, fuzzy
|
14266 |
msgid "Ignore the prevention of concurrent actions."
|
14267 |
msgstr "Ignorer la prévention des actions simultanées."
|
14268 |
|
14269 |
+
#: wppa-settings-autosave.php:6875
|
14270 |
#, fuzzy
|
14271 |
msgid ""
|
14272 |
"This setting is meant to recover from deadlock situations only. Use with "
|
14275 |
"Ce paramètre est destiné à récupérer à partir de seulement les situations de "
|
14276 |
"blocage. Utiliser avec précaution !"
|
14277 |
|
14278 |
+
#: wppa-settings-autosave.php:6886
|
14279 |
msgid "Setup"
|
14280 |
msgstr "Configuration"
|
14281 |
|
14282 |
+
#: wppa-settings-autosave.php:6887
|
14283 |
#, fuzzy
|
14284 |
msgid "Re-initialize plugin."
|
14285 |
msgstr "Ré-initialiser plugin."
|
14286 |
|
14287 |
+
#: wppa-settings-autosave.php:6888
|
14288 |
#, fuzzy
|
14289 |
msgid ""
|
14290 |
"Re-initilizes the plugin, (re)creates database tables and sets up default "
|
14293 |
"Re-initilizes le plugin, (re) crée des tables de base de données et met en "
|
14294 |
"place les répertoires et les paramètres par défaut si nécessaire."
|
14295 |
|
14296 |
+
#: wppa-settings-autosave.php:6889
|
14297 |
#, fuzzy
|
14298 |
msgid ""
|
14299 |
"This action may be required to setup blogs in a multiblog (network) site as "
|
14303 |
"multiblog (réseau), ainsi que dans rares cas de corriger des erreurs "
|
14304 |
"d’initialisation du."
|
14305 |
|
14306 |
+
#: wppa-settings-autosave.php:6900
|
14307 |
msgid "Backup settings"
|
14308 |
msgstr "Réglages de la sauvegarde"
|
14309 |
|
14310 |
+
#: wppa-settings-autosave.php:6901
|
14311 |
#, fuzzy
|
14312 |
msgid "Save all settings into a backup file."
|
14313 |
msgstr "Enregistrer tous les paramètres dans un fichier de sauvegarde."
|
14314 |
|
14315 |
+
#: wppa-settings-autosave.php:6902
|
14316 |
#, fuzzy
|
14317 |
msgid "Saves all the settings into a backup file"
|
14318 |
msgstr "Enregistre tous les paramètres dans un fichier de sauvegarde"
|
14319 |
|
14320 |
+
#: wppa-settings-autosave.php:6913
|
14321 |
msgid "Load settings"
|
14322 |
msgstr "Réglages du chargement"
|
14323 |
|
14324 |
+
#: wppa-settings-autosave.php:6914
|
14325 |
#, fuzzy
|
14326 |
msgid "Restore all settings from defaults, a backup or skin file."
|
14327 |
msgstr ""
|
14328 |
"Rétablir tous les réglages de paramètres par défaut, un fichier de "
|
14329 |
"sauvegarde ou de peau."
|
14330 |
|
14331 |
+
#: wppa-settings-autosave.php:6915
|
14332 |
#, fuzzy
|
14333 |
msgid ""
|
14334 |
"Restores all the settings from the factory supplied defaults, the backup you "
|
14337 |
"Restaure tous les paramètres de paramétrage usine fournie, la sauvegarde que "
|
14338 |
"vous avez créé ou d’un fichier d’apparence."
|
14339 |
|
14340 |
+
#: wppa-settings-autosave.php:6921
|
14341 |
msgid "--- set to defaults ---"
|
14342 |
msgstr "--- Réglages par défaut ---"
|
14343 |
|
14344 |
+
#: wppa-settings-autosave.php:6924
|
14345 |
msgid "--- restore backup ---"
|
14346 |
msgstr "--- restaurer la sauvegarde ---"
|
14347 |
|
14348 |
+
#: wppa-settings-autosave.php:6946
|
14349 |
msgid "Regenerate"
|
14350 |
msgstr "Regénérer"
|
14351 |
|
14352 |
+
#: wppa-settings-autosave.php:6947 wppa-settings-autosave.php:6948
|
14353 |
msgid "Regenerate all thumbnails."
|
14354 |
msgstr "Refaire toutes les vignettes."
|
14355 |
|
14356 |
+
#: wppa-settings-autosave.php:6951 wppa-settings-autosave.php:7068
|
14357 |
+
#: wppa-settings-autosave.php:7149
|
14358 |
msgid "Skip one"
|
14359 |
msgstr "Ignorer un"
|
14360 |
|
14361 |
+
#: wppa-settings-autosave.php:6960
|
14362 |
msgid "Rerate"
|
14363 |
msgstr "Re-noter"
|
14364 |
|
14365 |
+
#: wppa-settings-autosave.php:6961
|
14366 |
msgid "Recalculate ratings."
|
14367 |
msgstr "Recalculer les cotes."
|
14368 |
|
14369 |
+
#: wppa-settings-autosave.php:6962
|
14370 |
#, fuzzy
|
14371 |
msgid ""
|
14372 |
"This function will recalculate all mean photo ratings from the ratings table."
|
14374 |
"Cette fonction recalcule toutes les notations moyenne photo de la table des "
|
14375 |
"cotes."
|
14376 |
|
14377 |
+
#: wppa-settings-autosave.php:6963
|
14378 |
msgid ""
|
14379 |
"You may need this function after the re-import of previously exported photos"
|
14380 |
msgstr ""
|
14381 |
"Vous pouvez avoir besoin de cette fonction après la ré-importer des photos "
|
14382 |
"préalablement exportés"
|
14383 |
|
14384 |
+
#: wppa-settings-autosave.php:6974
|
14385 |
msgid "Lost and found"
|
14386 |
msgstr "Objets trouvés"
|
14387 |
|
14388 |
+
#: wppa-settings-autosave.php:6975
|
14389 |
msgid "Find \"lost\" photos."
|
14390 |
msgstr "Retrouvez les photos « perdus »."
|
14391 |
|
14392 |
+
#: wppa-settings-autosave.php:6976
|
14393 |
#, fuzzy
|
14394 |
msgid "This function will attempt to find lost photos."
|
14395 |
msgstr "Cette fonction va tenter de trouver des photos perdues."
|
14396 |
|
14397 |
+
#: wppa-settings-autosave.php:6987
|
14398 |
msgid "Recuperate"
|
14399 |
msgstr "Récupérer"
|
14400 |
|
14401 |
+
#: wppa-settings-autosave.php:6989
|
14402 |
#, fuzzy
|
14403 |
msgid ""
|
14404 |
"This action will attempt to find and register IPTC and EXIF data from photos "
|
14407 |
"Cette action va tenter de trouver et d’enregistrer les données EXIF et IPTC "
|
14408 |
"des photos dans le système WPPA +."
|
14409 |
|
14410 |
+
#: wppa-settings-autosave.php:7000
|
14411 |
msgid "Remake Index Albums"
|
14412 |
msgstr "Refaire l'index des photos"
|
14413 |
|
14414 |
+
#: wppa-settings-autosave.php:7001
|
14415 |
#, fuzzy
|
14416 |
msgid "Remakes the index database table for albums."
|
14417 |
msgstr "Refait la table de base de données d’index pour les albums."
|
14418 |
|
14419 |
+
#: wppa-settings-autosave.php:7013
|
14420 |
msgid "Remake Index Photos"
|
14421 |
msgstr "Refaire l'index des photos"
|
14422 |
|
14423 |
+
#: wppa-settings-autosave.php:7014
|
14424 |
#, fuzzy
|
14425 |
msgid "Remakes the index database table for photos."
|
14426 |
msgstr "Refait la table de base de données d’index pour les photos."
|
14427 |
|
14428 |
+
#: wppa-settings-autosave.php:7026
|
14429 |
msgid "Clean Index"
|
14430 |
msgstr "Nettoyer les Index"
|
14431 |
|
14432 |
+
#: wppa-settings-autosave.php:7027
|
14433 |
#, fuzzy
|
14434 |
msgid "Remove obsolete entries from index db table."
|
14435 |
msgstr "Supprimer les entrées obsolètes de db table d’index."
|
14436 |
|
14437 |
+
#: wppa-settings-autosave.php:7045
|
14438 |
msgid "Convert to tree"
|
14439 |
msgstr "Convertir en arbre"
|
14440 |
|
14441 |
+
#: wppa-settings-autosave.php:7046
|
14442 |
msgid "Convert filesystem to tree structure."
|
14443 |
msgstr "Convertir des fichiers à structure arborescente."
|
14444 |
|
14445 |
+
#: wppa-settings-autosave.php:7049
|
14446 |
msgid "Convert to flat"
|
14447 |
msgstr "Convertir en plat"
|
14448 |
|
14449 |
+
#: wppa-settings-autosave.php:7050
|
14450 |
msgid "Convert filesystem to flat structure."
|
14451 |
msgstr "Autre système de fichiers à structure plate."
|
14452 |
|
14453 |
+
#: wppa-settings-autosave.php:7052
|
14454 |
#, fuzzy
|
14455 |
msgid ""
|
14456 |
"If you want to go back to a wppa+ version prior to 5.0.16, you MUST convert "
|
14459 |
"Si vous souhaitez revenir à une version wppa + avant 5.0.16, vous devez "
|
14460 |
"convertir au premier plat."
|
14461 |
|
14462 |
+
#: wppa-settings-autosave.php:7063
|
14463 |
msgid "Remake"
|
14464 |
msgstr "Refaire"
|
14465 |
|
14466 |
+
#: wppa-settings-autosave.php:7064
|
14467 |
#, fuzzy
|
14468 |
msgid "Remake the photofiles from photo sourcefiles."
|
14469 |
msgstr "Refaire la photofiles de photo sourcefiles."
|
14470 |
|
14471 |
+
#: wppa-settings-autosave.php:7065
|
14472 |
#, fuzzy
|
14473 |
msgid ""
|
14474 |
"This action will remake the fullsize images, thumbnail images, and will "
|
14479 |
"données exif et iptc pour toutes les photos où la source se trouve dans le "
|
14480 |
"sous-répertoire album correspondante du répertoire source."
|
14481 |
|
14482 |
+
#: wppa-settings-autosave.php:7077
|
14483 |
msgid "Orientation only"
|
14484 |
msgstr "Orientation seulement"
|
14485 |
|
14486 |
+
#: wppa-settings-autosave.php:7078
|
14487 |
#, fuzzy
|
14488 |
msgid "Remake non standard orientated photos only."
|
14489 |
msgstr "Photos de remake non standard orienté uniquement."
|
14490 |
|
14491 |
+
#: wppa-settings-autosave.php:7091
|
14492 |
msgid "Missing only"
|
14493 |
msgstr "Manque seulement"
|
14494 |
|
14495 |
+
#: wppa-settings-autosave.php:7092
|
14496 |
msgid "Remake missing photofiles only."
|
14497 |
msgstr "Refaire photofiles manquant seulement."
|
14498 |
|
14499 |
+
#: wppa-settings-autosave.php:7105
|
14500 |
msgid "Recalc sizes"
|
14501 |
msgstr "Recalc tailles"
|
14502 |
|
14503 |
+
#: wppa-settings-autosave.php:7106
|
14504 |
#, fuzzy
|
14505 |
msgid "Recalculate photosizes and save to db."
|
14506 |
msgstr "Recalculer les photosizes et enregistrer dans db."
|
14507 |
|
14508 |
+
#: wppa-settings-autosave.php:7118
|
14509 |
msgid "Renew album crypt"
|
14510 |
msgstr "Renouveler album crypte"
|
14511 |
|
14512 |
+
#: wppa-settings-autosave.php:7119
|
14513 |
msgid "Renew album encrcryption codes."
|
14514 |
msgstr "Renouveler codes encrcryption album."
|
14515 |
|
14516 |
+
#: wppa-settings-autosave.php:7131
|
14517 |
msgid "Renew photo crypt"
|
14518 |
msgstr "Renouveler photo crypte"
|
14519 |
|
14520 |
+
#: wppa-settings-autosave.php:7132
|
14521 |
#, fuzzy
|
14522 |
msgid "Renew photo encrcryption codes."
|
14523 |
msgstr "Renouveler les codes encrcryption photo."
|
14524 |
|
14525 |
+
#: wppa-settings-autosave.php:7144
|
14526 |
msgid "Create orietation sources"
|
14527 |
msgstr "Créer des sources d'orietation"
|
14528 |
|
14529 |
+
#: wppa-settings-autosave.php:7145
|
14530 |
msgid "Creates correctly oriented pseudo source file."
|
14531 |
msgstr "Créer le fichier de source de pseudo correctement orienté."
|
14532 |
|
14533 |
+
#: wppa-settings-autosave.php:7158
|
14534 |
msgid "Clearing and other irreverseable actions"
|
14535 |
msgstr "Clairière et autres actions irreverseable"
|
14536 |
|
14537 |
+
#: wppa-settings-autosave.php:7160
|
14538 |
msgid "Clear ratings"
|
14539 |
msgstr "Effacer les votes"
|
14540 |
|
14541 |
+
#: wppa-settings-autosave.php:7161
|
14542 |
msgid "Reset all ratings."
|
14543 |
msgstr "Remettre les évaluations à zéro"
|
14544 |
|
14545 |
+
#: wppa-settings-autosave.php:7162
|
14546 |
msgid "WARNING: If checked, this will clear all ratings in the system!"
|
14547 |
msgstr ""
|
14548 |
"AVERTISSEMENT: Si coché, cela effacera toutes les notations dans le système!"
|
14549 |
|
14550 |
+
#: wppa-settings-autosave.php:7173
|
14551 |
msgid "Clear viewcounts"
|
14552 |
msgstr "Clair nombres des vues"
|
14553 |
|
14554 |
+
#: wppa-settings-autosave.php:7174
|
14555 |
msgid "Reset all viewcounts."
|
14556 |
msgstr "Réinitialiser toutes les comptes de vue."
|
14557 |
|
14558 |
+
#: wppa-settings-autosave.php:7175
|
14559 |
msgid "WARNING: If checked, this will clear all viewcounts in the system!"
|
14560 |
msgstr ""
|
14561 |
"AVERTISSEMENT: Si coché, cela effacera tous les nombres de vues dans le "
|
14562 |
"système!"
|
14563 |
|
14564 |
+
#: wppa-settings-autosave.php:7186
|
14565 |
msgid "Reset IPTC"
|
14566 |
msgstr "Remise à zéro IPTC"
|
14567 |
|
14568 |
+
#: wppa-settings-autosave.php:7187
|
14569 |
msgid "Clear all IPTC data."
|
14570 |
msgstr "Effacer les données IPTC"
|
14571 |
|
14572 |
+
#: wppa-settings-autosave.php:7188
|
14573 |
msgid "WARNING: If checked, this will clear all IPTC data in the system!"
|
14574 |
msgstr ""
|
14575 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données IPTC dans le "
|
14576 |
"système!"
|
14577 |
|
14578 |
+
#: wppa-settings-autosave.php:7199
|
14579 |
msgid "Reset EXIF"
|
14580 |
msgstr "Remise à zéro EXIF"
|
14581 |
|
14582 |
+
#: wppa-settings-autosave.php:7200
|
14583 |
msgid "Clear all EXIF data."
|
14584 |
msgstr "Effacer les données EXIF"
|
14585 |
|
14586 |
+
#: wppa-settings-autosave.php:7201
|
14587 |
msgid "WARNING: If checked, this will clear all EXIF data in the system!"
|
14588 |
msgstr ""
|
14589 |
"AVERTISSEMENT: Si coché, cela effacera toutes les données d’EXIF dans le "
|
14590 |
"système!"
|
14591 |
|
14592 |
+
#: wppa-settings-autosave.php:7212
|
14593 |
msgid "Apply Default Photoname"
|
14594 |
msgstr "Appliquer par défaut Photoname"
|
14595 |
|
14596 |
+
#: wppa-settings-autosave.php:7213
|
14597 |
#, fuzzy
|
14598 |
msgid "Apply Default photo name on all photos in the system."
|
14599 |
msgstr ""
|
14600 |
"Appliquer le nom de photo par défaut sur toutes les photos dans le système."
|
14601 |
|
14602 |
+
#: wppa-settings-autosave.php:7225
|
14603 |
msgid "Apply New Photodesc"
|
14604 |
msgstr "Appliquer nouvelle desc photo"
|
14605 |
|
14606 |
+
#: wppa-settings-autosave.php:7226
|
14607 |
msgid "Apply New photo description on all photos in the system."
|
14608 |
msgstr ""
|
14609 |
"Appliquer la nouvelle description de photo sur toutes les photos dans le "
|
14610 |
"système."
|
14611 |
|
14612 |
+
#: wppa-settings-autosave.php:7238
|
14613 |
msgid "Append to photodesc"
|
14614 |
msgstr "Annexer à photodesc"
|
14615 |
|
14616 |
+
#: wppa-settings-autosave.php:7239
|
14617 |
msgid "Append this text to all photo descriptions."
|
14618 |
msgstr "Ajouter ce texte à toutes les descriptions de photo."
|
14619 |
|
14620 |
+
#: wppa-settings-autosave.php:7253
|
14621 |
msgid "Remove from photodesc"
|
14622 |
msgstr "Retirer du photodescription"
|
14623 |
|
14624 |
+
#: wppa-settings-autosave.php:7254
|
14625 |
msgid "Remove this text from all photo descriptions."
|
14626 |
msgstr "Enlever ce texte de toutes les descriptions de photo."
|
14627 |
|
14628 |
+
#: wppa-settings-autosave.php:7268
|
14629 |
msgid "Remove empty albums"
|
14630 |
msgstr "Retirer les albums vides"
|
14631 |
|
14632 |
+
#: wppa-settings-autosave.php:7269
|
14633 |
#, fuzzy
|
14634 |
msgid "Removes albums that are not used."
|
14635 |
msgstr "Supprime des albums qui ne sont pas utilisés."
|
14636 |
|
14637 |
+
#: wppa-settings-autosave.php:7281
|
14638 |
msgid "Remove file-ext"
|
14639 |
msgstr "Supprimer l'extension de fichier"
|
14640 |
|
14641 |
+
#: wppa-settings-autosave.php:7282
|
14642 |
#, fuzzy
|
14643 |
msgid "Remove possible file extension from photo name."
|
14644 |
msgstr "Supprimer l’extension possible du nom de la photo."
|
14645 |
|
14646 |
+
#: wppa-settings-autosave.php:7283
|
14647 |
#, fuzzy
|
14648 |
msgid ""
|
14649 |
"This may be required for old photos, uploaded when the option in Table IX-D3 "
|
14652 |
"Cela peut être requis pour les vieilles photos, téléchargées lorsque "
|
14653 |
"l’option de la Table IX-D3 n’était pas encore disponible/sélectionné."
|
14654 |
|
14655 |
+
#: wppa-settings-autosave.php:7294
|
14656 |
msgid "Re-add file-ext"
|
14657 |
msgstr "Rajouter le fichier-ext"
|
14658 |
|
14659 |
+
#: wppa-settings-autosave.php:7295
|
14660 |
#, fuzzy
|
14661 |
msgid "Revert the <i>Remove file-ext</i> action."
|
14662 |
msgstr "Rétablir l’action <i>Supprimer fichier-ext</i> ."
|
14663 |
|
14664 |
+
#: wppa-settings-autosave.php:7307
|
14665 |
msgid "All to lower"
|
14666 |
msgstr "Vers le bas"
|
14667 |
|
14668 |
+
#: wppa-settings-autosave.php:7308
|
14669 |
msgid "Convert all file-extensions to lowercase."
|
14670 |
msgstr "Convertir tous les fichiers-extensions en minuscules."
|
14671 |
|
14672 |
+
#: wppa-settings-autosave.php:7309
|
14673 |
msgid ""
|
14674 |
"Affects display files, thumbnail files, and saved extensions in database "
|
14675 |
"table. Leaves sourcefiles untouched"
|
14677 |
"Affecte les fichiers d'affichage, des fichiers miniatures, et les extensions "
|
14678 |
"enregistrées dans la table de base de données. Feuilles SourceFiles intactes"
|
14679 |
|
14680 |
+
#: wppa-settings-autosave.php:7310
|
14681 |
msgid ""
|
14682 |
"If both upper and lowercase files exist, the file with the uppercase "
|
14683 |
"extension will be removed."
|
14685 |
"Si les deux fichiers majuscules et minuscules existent, le fichier avec "
|
14686 |
"l'extension majuscule sera supprimé."
|
14687 |
|
14688 |
+
#: wppa-settings-autosave.php:7321
|
14689 |
msgid "Watermark all"
|
14690 |
msgstr "Appliquer le filigrane à toutes"
|
14691 |
|
14692 |
+
#: wppa-settings-autosave.php:7322
|
14693 |
msgid "Apply watermark according to current settings to all photos."
|
14694 |
msgstr ""
|
14695 |
"Appliquer un filigrane en fonction des paramètres actuels à toutes les "
|
14696 |
"photos."
|
14697 |
|
14698 |
+
#: wppa-settings-autosave.php:7323
|
14699 |
msgid "See Table IX_F for the current watermark settings"
|
14700 |
msgstr "Voir Table IX_F pour les paramètres actuels de filigrane"
|
14701 |
|
14702 |
+
#: wppa-settings-autosave.php:7334
|
14703 |
msgid "Create all autopages"
|
14704 |
msgstr "Créer toutes les auto pages"
|
14705 |
|
14706 |
+
#: wppa-settings-autosave.php:7335
|
14707 |
msgid "Create all the pages to display slides individually."
|
14708 |
msgstr ""
|
14709 |
"Créer toutes les pages pour afficher des diapositives individuellement."
|
14710 |
|
14711 |
+
#: wppa-settings-autosave.php:7336 wppa-settings-autosave.php:7350
|
14712 |
msgid "See also Table IV-A10."
|
14713 |
msgstr "Voir aussi le Table IV-A10."
|
14714 |
|
14715 |
+
#: wppa-settings-autosave.php:7337
|
14716 |
msgid ""
|
14717 |
"Make sure you have a custom menu and the \"Automatically add new top-level "
|
14718 |
"pages to this menu\" box UNticked!!"
|
14720 |
"Assurez-vous que vous disposez d’un menu personnalisé et la case « Ajouter "
|
14721 |
"automatiquement les nouvelles pages de niveau supérieur à ce menu » DÉcoché!!"
|
14722 |
|
14723 |
+
#: wppa-settings-autosave.php:7348
|
14724 |
msgid "Delete all autopages"
|
14725 |
msgstr "Effacer toutes les pages auto"
|
14726 |
|
14727 |
+
#: wppa-settings-autosave.php:7349
|
14728 |
msgid "Delete all the pages to display slides individually."
|
14729 |
msgstr ""
|
14730 |
"Supprimer toutes les pages pour afficher des diapositives individuellement."
|
14731 |
|
14732 |
+
#: wppa-settings-autosave.php:7362
|
14733 |
msgid "Leading zeroes"
|
14734 |
msgstr "Zéro non significatif"
|
14735 |
|
14736 |
+
#: wppa-settings-autosave.php:7363
|
14737 |
#, fuzzy
|
14738 |
msgid "If photoname numeric, add leading zeros"
|
14739 |
msgstr "Si photoname numérique, ajouter des zéros"
|
14740 |
|
14741 |
+
#: wppa-settings-autosave.php:7364
|
14742 |
msgid ""
|
14743 |
"You can extend the name with leading zeros, so alphabetic sort becomes equal "
|
14744 |
"to numeric sort order."
|
14746 |
"Vous pouvez étendre le nom par des zéros, donc tri alphabétique devient égal "
|
14747 |
"à l'ordre de tri numérique."
|
14748 |
|
14749 |
+
#: wppa-settings-autosave.php:7367
|
14750 |
msgid "Total chars"
|
14751 |
msgstr "Total caractères"
|
14752 |
|
14753 |
+
#: wppa-settings-autosave.php:7376
|
14754 |
msgid "Add GPX tag"
|
14755 |
msgstr "Ajouter tag GPX"
|
14756 |
|
14757 |
+
#: wppa-settings-autosave.php:7377
|
14758 |
msgid "Make sure photos with gpx data have a Gpx tag"
|
14759 |
msgstr "S’assurer que les photos avec des données gpx ont une balise de Gpx"
|
14760 |
|
14761 |
+
#: wppa-settings-autosave.php:7389
|
14762 |
#, fuzzy
|
14763 |
msgid "Add HD tag"
|
14764 |
msgstr "Ajouter un tag HD"
|
14765 |
|
14766 |
+
#: wppa-settings-autosave.php:7390
|
14767 |
#, fuzzy
|
14768 |
msgid "Make sure photos >= 1920 x 1080 have a HD tag"
|
14769 |
msgstr "Faire des photos sûrs > = 1920 x 1080 ont une balise HD"
|
14770 |
|
14771 |
+
#: wppa-settings-autosave.php:7403 wppa-settings-autosave.php:8491
|
14772 |
msgid "Optimize files"
|
14773 |
msgstr "Optimiser les fichiers"
|
14774 |
|
14775 |
+
#: wppa-settings-autosave.php:7404
|
14776 |
#, fuzzy
|
14777 |
msgid "Optimize with EWWW image optimizer"
|
14778 |
msgstr "Optimiser avec optimiseur image EWWW"
|
14779 |
|
14780 |
+
#: wppa-settings-autosave.php:7417
|
14781 |
msgid "Edit tag"
|
14782 |
msgstr "Modifier tag"
|
14783 |
|
14784 |
+
#: wppa-settings-autosave.php:7418
|
14785 |
msgid "Globally change a tagname."
|
14786 |
msgstr "Changer un tagname dans toute la système.."
|
14787 |
|
14788 |
+
#: wppa-settings-autosave.php:7424
|
14789 |
msgid "-select a tag-"
|
14790 |
msgstr "- Choisir un tag -"
|
14791 |
|
14792 |
+
#: wppa-settings-autosave.php:7430
|
14793 |
msgid "Tag:"
|
14794 |
msgstr "Tag:"
|
14795 |
|
14796 |
+
#: wppa-settings-autosave.php:7431
|
14797 |
msgid "Change to:"
|
14798 |
msgstr "Changer pour:"
|
14799 |
|
14800 |
+
#: wppa-settings-autosave.php:7440
|
14801 |
#, fuzzy
|
14802 |
msgid "Synchronize Cloudinary"
|
14803 |
msgstr "Synchroniser les Cloudinary"
|
14804 |
|
14805 |
+
#: wppa-settings-autosave.php:7441
|
14806 |
#, fuzzy
|
14807 |
msgid "Removes/adds images in the cloud."
|
14808 |
msgstr "Supprime/ajoute des images dans le nuage."
|
14809 |
|
14810 |
+
#: wppa-settings-autosave.php:7442
|
14811 |
#, fuzzy
|
14812 |
msgid "Removes old images and verifies/adds new images to Cloudinary."
|
14813 |
msgstr ""
|
14814 |
"Supprime les anciennes images et vérifie/ajoute des nouvelles images à "
|
14815 |
"Cloudinary."
|
14816 |
|
14817 |
+
#: wppa-settings-autosave.php:7443
|
14818 |
msgid "See Table IX-K4.7 for the configured lifetime."
|
14819 |
msgstr "Voir Table IX-K4.7 pour la durée de vie configurée."
|
14820 |
|
14821 |
+
#: wppa-settings-autosave.php:7454
|
14822 |
msgid "Fix tags"
|
14823 |
msgstr "Réparer des balises"
|
14824 |
|
14825 |
+
#: wppa-settings-autosave.php:7455
|
14826 |
#, fuzzy
|
14827 |
msgid "Make sure photo tags format is uptodate"
|
14828 |
msgstr "Vérifiez que format de balises de photo est uptodate"
|
14829 |
|
14830 |
+
#: wppa-settings-autosave.php:7456
|
14831 |
msgid "Fixes tags to be conform current database rules."
|
14832 |
msgstr ""
|
14833 |
"Fixe les balises pour être conforme à des règles de base de données actuelle."
|
14834 |
|
14835 |
+
#: wppa-settings-autosave.php:7467
|
14836 |
msgid "Fix cats"
|
14837 |
msgstr "Réparer des catégories"
|
14838 |
|
14839 |
+
#: wppa-settings-autosave.php:7468
|
14840 |
msgid "Make sure album cats format is uptodate"
|
14841 |
msgstr "Assurez-vous que le format de categories album est uptodate"
|
14842 |
|
14843 |
+
#: wppa-settings-autosave.php:7469
|
14844 |
msgid "Fixes cats to be conform current database rules."
|
14845 |
msgstr ""
|
14846 |
"Fixe les catégories pour être conforme à des règles de base de données "
|
14847 |
"actuelle."
|
14848 |
|
14849 |
+
#: wppa-settings-autosave.php:7480
|
14850 |
#, fuzzy
|
14851 |
msgid "Set owner to name"
|
14852 |
msgstr "Propriétaire de nom"
|
14853 |
|
14854 |
+
#: wppa-settings-autosave.php:7481
|
14855 |
#, fuzzy
|
14856 |
msgid "If photoname equals user display name, set him owner."
|
14857 |
msgstr ""
|
14858 |
"Si photoname est égal à nom d’affichage utilisateur, définissez lui "
|
14859 |
"propriétaire."
|
14860 |
|
14861 |
+
#: wppa-settings-autosave.php:7493
|
14862 |
msgid "Move all photos"
|
14863 |
msgstr "Déplacer toutes les photos"
|
14864 |
|
14865 |
+
#: wppa-settings-autosave.php:7494
|
14866 |
#, fuzzy
|
14867 |
msgid "Move all photos from one album to another album."
|
14868 |
msgstr "Déplacez toutes les photos d’un album vers un autre album."
|
14869 |
|
14870 |
+
#: wppa-settings-autosave.php:7508 wppa-settings-autosave.php:7531
|
14871 |
msgid "From"
|
14872 |
msgstr "De"
|
14873 |
|
14874 |
+
#: wppa-settings-autosave.php:7509
|
14875 |
msgid "Move from album number"
|
14876 |
msgstr "Déplacer du numéro de l'album"
|
14877 |
|
14878 |
+
#: wppa-settings-autosave.php:7518 wppa-settings-autosave.php:7558
|
14879 |
msgid "To"
|
14880 |
msgstr "À"
|
14881 |
|
14882 |
+
#: wppa-settings-autosave.php:7519
|
14883 |
msgid "Move to album number"
|
14884 |
msgstr "Déplacer vers le numéro de l'album"
|
14885 |
|
14886 |
+
#: wppa-settings-autosave.php:7532
|
14887 |
msgid "Move from album"
|
14888 |
msgstr "Déplacer de l'album"
|
14889 |
|
14890 |
+
#: wppa-settings-autosave.php:7559
|
14891 |
msgid "Move to album"
|
14892 |
msgstr "Déplacer vers l'album"
|
14893 |
|
14894 |
+
#: wppa-settings-autosave.php:7589
|
14895 |
msgid "Test proc"
|
14896 |
msgstr "proc Test"
|
14897 |
|
14898 |
+
#: wppa-settings-autosave.php:7590
|
14899 |
msgid "For OpaJaap only"
|
14900 |
msgstr "Pour OpaJaap seulement"
|
14901 |
|
14902 |
+
#: wppa-settings-autosave.php:7603
|
14903 |
msgid "Listings"
|
14904 |
msgstr "Listes"
|
14905 |
|
14906 |
+
#: wppa-settings-autosave.php:7605
|
14907 |
msgid "List Logfile"
|
14908 |
msgstr "Lister le journal (log)"
|
14909 |
|
14910 |
+
#: wppa-settings-autosave.php:7606
|
14911 |
#, fuzzy
|
14912 |
msgid "Show the content of wppa+ (error) log."
|
14913 |
msgstr "Afficher le contenu du journal wppa + (erreur)."
|
14914 |
|
14915 |
+
#: wppa-settings-autosave.php:7610
|
14916 |
msgid "Purge logfile"
|
14917 |
msgstr "Purger le journal (log)"
|
14918 |
|
14919 |
+
#: wppa-settings-autosave.php:7619
|
14920 |
msgid "List Ratings"
|
14921 |
msgstr "Lister les votes"
|
14922 |
|
14923 |
+
#: wppa-settings-autosave.php:7620
|
14924 |
msgid "Show the most recent ratings."
|
14925 |
msgstr "Montrer les votes récents."
|
14926 |
|
14927 |
+
#: wppa-settings-autosave.php:7633
|
14928 |
msgid "List Index"
|
14929 |
msgstr "Liste d'index"
|
14930 |
|
14931 |
+
#: wppa-settings-autosave.php:7634
|
14932 |
#, fuzzy
|
14933 |
msgid "Show the content if the index table."
|
14934 |
msgstr "Montrer le contenu si la table d’index."
|
14935 |
|
14936 |
+
#: wppa-settings-autosave.php:7638
|
14937 |
msgid "Start at text:"
|
14938 |
msgstr "Commencer à:"
|
14939 |
|
14940 |
+
#: wppa-settings-autosave.php:7648
|
14941 |
msgid "List active sessions"
|
14942 |
msgstr "Lister les sessions actives"
|
14943 |
|
14944 |
+
#: wppa-settings-autosave.php:7649
|
14945 |
#, fuzzy
|
14946 |
msgid "Show the content of the sessions table."
|
14947 |
msgstr "Afficher le contenu de la table de sessions."
|
14948 |
|
14949 |
+
#: wppa-settings-autosave.php:7662
|
14950 |
msgid "List comments"
|
14951 |
msgstr "Liste des commentaires"
|
14952 |
|
14953 |
+
#: wppa-settings-autosave.php:7663
|
14954 |
#, fuzzy
|
14955 |
msgid "Show the content of the comments table."
|
14956 |
msgstr "Afficher le contenu de la table comments."
|
14957 |
|
14958 |
+
#: wppa-settings-autosave.php:7669
|
14959 |
msgid "Order by:"
|
14960 |
msgstr "Trier par:"
|
14961 |
|
14962 |
+
#: wppa-settings-autosave.php:7698
|
14963 |
msgid "Table IX:"
|
14964 |
msgstr "Table IX:"
|
14965 |
|
14966 |
+
#: wppa-settings-autosave.php:7698
|
14967 |
msgid "Miscellaneous:"
|
14968 |
msgstr "Divers:"
|
14969 |
|
14970 |
+
#: wppa-settings-autosave.php:7699
|
14971 |
msgid "This table lists all settings that do not fit into an other table"
|
14972 |
msgstr ""
|
14973 |
"Ce table répertorie tous les paramètres qui ne rentrent pas dans une autre "
|
14974 |
"table"
|
14975 |
|
14976 |
+
#: wppa-settings-autosave.php:7717
|
14977 |
#, fuzzy
|
14978 |
msgid "Internal engine related settings"
|
14979 |
msgstr "Moteur interne les paramètres"
|
14980 |
|
14981 |
+
#: wppa-settings-autosave.php:7719
|
14982 |
msgid "WPPA+ Filter priority"
|
14983 |
msgstr "Priorité WPPA+ filtre"
|
14984 |
|
14985 |
+
#: wppa-settings-autosave.php:7720
|
14986 |
#, fuzzy
|
14987 |
msgid "Sets the priority of the wppa+ content filter."
|
14988 |
msgstr "Définit la priorité de la wppa + content filter."
|
14989 |
|
14990 |
+
#: wppa-settings-autosave.php:7721 wppa-settings-autosave.php:7730
|
14991 |
#, fuzzy
|
14992 |
msgid ""
|
14993 |
"If you encounter conflicts with the theme or other plugins, increasing this "
|
14996 |
"Si vous rencontrez des conflits avec le thème ou les autres plugins, "
|
14997 |
"augmenter cette valeur parfois aide. Utiliser avec précaution !"
|
14998 |
|
14999 |
+
#: wppa-settings-autosave.php:7728
|
15000 |
msgid "Do_shortcode priority"
|
15001 |
msgstr "Priorité de do_shortcode"
|
15002 |
|
15003 |
+
#: wppa-settings-autosave.php:7729
|
15004 |
#, fuzzy
|
15005 |
msgid "Sets the priority of the do_shortcode() content filter."
|
15006 |
msgstr "Définit la priorité du filtre contenu do_shortcode()."
|
15007 |
|
15008 |
+
#: wppa-settings-autosave.php:7737
|
15009 |
msgid "WPPA shortcode at Filter priority"
|
15010 |
msgstr "WPPA shortcode à la priorité du filtre"
|
15011 |
|
15012 |
+
#: wppa-settings-autosave.php:7738
|
15013 |
msgid "Execute shortcode expansion on filter priority in posts and pages."
|
15014 |
msgstr ""
|
15015 |
"Exécuter expansion shortcode sur la priorité de filtre dans les messages et "
|
15016 |
"les pages."
|
15017 |
|
15018 |
+
#: wppa-settings-autosave.php:7739 wppa-settings-autosave.php:7748
|
15019 |
#, fuzzy
|
15020 |
msgid "Use to fix certain layout problems"
|
15021 |
msgstr "Utiliser pour corriger certains problèmes de mise en page"
|
15022 |
|
15023 |
+
#: wppa-settings-autosave.php:7746
|
15024 |
msgid "WPPA shortcode at Filter priority widget"
|
15025 |
msgstr "WPPA shortcode à la priorité du filtre en widget"
|
15026 |
|
15027 |
+
#: wppa-settings-autosave.php:7747
|
15028 |
msgid "Execute shortcode expansion on filter priority in widgets."
|
15029 |
msgstr ""
|
15030 |
"Exécuter expansion shortcode sur la priorité de filtre dans les widgets."
|
15031 |
|
15032 |
+
#: wppa-settings-autosave.php:7755
|
15033 |
msgid "JPG image quality"
|
15034 |
msgstr "Qualité d'image JPG"
|
15035 |
|
15036 |
+
#: wppa-settings-autosave.php:7756
|
15037 |
#, fuzzy
|
15038 |
msgid "The jpg quality when photos are downsized"
|
15039 |
msgstr "La qualité de jpg lorsque les photos sont réduits"
|
15040 |
|
15041 |
+
#: wppa-settings-autosave.php:7757
|
15042 |
#, fuzzy
|
15043 |
msgid "The higher the number the better the quality but the larger the file"
|
15044 |
msgstr "Plus le nombre le mieux la qualité, mais plus le fichier"
|
15045 |
|
15046 |
+
#: wppa-settings-autosave.php:7758
|
15047 |
#, fuzzy
|
15048 |
msgid "Possible values 20..100"
|
15049 |
msgstr "Valeurs possibles 20..100"
|
15050 |
|
15051 |
+
#: wppa-settings-autosave.php:7765
|
15052 |
msgid "Allow WPPA+ Debugging"
|
15053 |
msgstr "Permettre le WPPA+ débogage"
|
15054 |
|
15055 |
+
#: wppa-settings-autosave.php:7766
|
15056 |
msgid "Allow the use of &debug=.. in urls to this site."
|
15057 |
msgstr "Permettre l’utilisation de &debug=... dans les URL de ce site."
|
15058 |
|
15059 |
+
#: wppa-settings-autosave.php:7767
|
15060 |
#, fuzzy
|
15061 |
msgid ""
|
15062 |
"If checked: appending (?)(&)debug or (?)(&)debug=<int> to an url to this "
|
15067 |
"une url de ce site va générer l’affichage de la spéciale WPPA + diagnostics, "
|
15068 |
"ainsi que les avertissements php</int>"
|
15069 |
|
15070 |
+
#: wppa-settings-autosave.php:7774
|
15071 |
msgid "Auto continue"
|
15072 |
msgstr "Auto continuer"
|
15073 |
|
15074 |
+
#: wppa-settings-autosave.php:7775
|
15075 |
msgid "Continue automatic after time out"
|
15076 |
msgstr "Continuer automatique après délai"
|
15077 |
|
15078 |
+
#: wppa-settings-autosave.php:7776
|
15079 |
msgid ""
|
15080 |
"If checked, an attempt will be made to restart an admin process when the "
|
15081 |
"time is out."
|
15083 |
"Si cochée, une tentative se fera pour relancer un processus d’admin quand le "
|
15084 |
"temps est sorti."
|
15085 |
|
15086 |
+
#: wppa-settings-autosave.php:7784
|
15087 |
#, fuzzy
|
15088 |
msgid "Set max execution time here."
|
15089 |
msgstr "Set max temps d’exécution ici."
|
15090 |
|
15091 |
+
#: wppa-settings-autosave.php:7785
|
15092 |
#, fuzzy
|
15093 |
msgid ""
|
15094 |
"If your php config does not properly set the max execution time, you can set "
|
15097 |
"Si votre configuration de php ne définit pas correctement le temps maximum "
|
15098 |
"d’exécution, vous pouvez définir ici. Secondes, 0 moyen ne change pas."
|
15099 |
|
15100 |
+
#: wppa-settings-autosave.php:7786
|
15101 |
msgid "A safe value is 45 in most cases"
|
15102 |
msgstr "Une valeur sûre est de 45 le plus souvent"
|
15103 |
|
15104 |
+
#: wppa-settings-autosave.php:7787
|
15105 |
#, fuzzy, php-format
|
15106 |
msgid "The PHP setting max_execution_time is set to %s."
|
15107 |
msgstr "Le paramètre de PHP max_execution_time est définie sur %s."
|
15108 |
|
15109 |
+
#: wppa-settings-autosave.php:7795
|
15110 |
msgid "Feed use thumb"
|
15111 |
msgstr "Feed utilisez les miniatures"
|
15112 |
|
15113 |
+
#: wppa-settings-autosave.php:7796
|
15114 |
msgid "Feeds use thumbnail pictures always."
|
15115 |
msgstr "RSS utilisent toujours les images miniatures."
|
15116 |
|
15117 |
+
#: wppa-settings-autosave.php:7804
|
15118 |
msgid "Enable <i>in-line</i> settings"
|
15119 |
msgstr "Activez les paramètres <i>en ligne</i>"
|
15120 |
|
15121 |
+
#: wppa-settings-autosave.php:7805
|
15122 |
msgid "Activates shortcode [wppa_set][/wppa_set]."
|
15123 |
msgstr "Active le shortcode [wppa_set][/ wppa_set]."
|
15124 |
|
15125 |
+
#: wppa-settings-autosave.php:7806
|
15126 |
#, fuzzy
|
15127 |
msgid ""
|
15128 |
"Syntax: [wppa_set name=\"any wppa setting\" value=\"new value\"][/wppa_set]"
|
15130 |
"Syntaxe : [nom de wppa_set = « n’importe quel réglage de wppa » valeur = "
|
15131 |
"« nouvelle valeur »] [/ wppa_set]"
|
15132 |
|
15133 |
+
#: wppa-settings-autosave.php:7807
|
15134 |
msgid ""
|
15135 |
"Example: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"][/wppa_set] "
|
15136 |
"sets the thumbnail type to vertical masonry style"
|
15138 |
"Exemple: [wppa_set name=\"wppa_thumbtype\" value=\"masonry-v\"] [/wppa_set] "
|
15139 |
"définit le type miniature au style de maçonnerie verticale"
|
15140 |
|
15141 |
+
#: wppa-settings-autosave.php:7808
|
15142 |
msgid "Do not forget to reset with [wppa_set][/wppa_set]"
|
15143 |
msgstr "N’oubliez pas de réinitialiser avec [wppa_set][/wppa_set]"
|
15144 |
|
15145 |
+
#: wppa-settings-autosave.php:7809
|
15146 |
#, fuzzy
|
15147 |
msgid "Use with great care! There is no check on validity of values!"
|
15148 |
msgstr ""
|
15149 |
"Utiliser avec précaution ! Il n’y a aucune vérification sur la validité des "
|
15150 |
"valeurs !"
|
15151 |
|
15152 |
+
#: wppa-settings-autosave.php:7816
|
15153 |
#, fuzzy
|
15154 |
msgid "Runtime modifyable settings"
|
15155 |
msgstr "Paramètres de modifyable d’exécution"
|
15156 |
|
15157 |
+
#: wppa-settings-autosave.php:7817
|
15158 |
#, fuzzy
|
15159 |
msgid "The setting slugs that may be altered using [wppa_set] shortcode."
|
15160 |
msgstr ""
|
15161 |
"Les limaces de réglage peuvent être modifiés à l’aide de shortcode "
|
15162 |
"[wppa_set]."
|
15163 |
|
15164 |
+
#: wppa-settings-autosave.php:7825
|
15165 |
msgid "Log Cron"
|
15166 |
msgstr "Log Cron"
|
15167 |
|
15168 |
+
#: wppa-settings-autosave.php:7826
|
15169 |
#, fuzzy
|
15170 |
msgid "Keep track of cron activity in the wppa logfile."
|
15171 |
msgstr "Garder une trace de l’activité cron dans le fichier journal wppa."
|
15172 |
|
15173 |
+
#: wppa-settings-autosave.php:7834
|
15174 |
+
msgid "Retry failed mails"
|
15175 |
+
msgstr "Réessayez mails échoué"
|
15176 |
+
|
15177 |
+
#: wppa-settings-autosave.php:7835
|
15178 |
+
msgid "Select number of retries for failed mails"
|
15179 |
+
msgstr "Sélectionnez le nombre de tentatives pour le courrier échoué"
|
15180 |
+
|
15181 |
+
#: wppa-settings-autosave.php:7836
|
15182 |
+
msgid "Retries occur at the background every hour"
|
15183 |
+
msgstr "Tentatives se produisent à l'arrière-plan toutes les heures"
|
15184 |
+
|
15185 |
+
#: wppa-settings-autosave.php:7844
|
15186 |
msgid "WPPA+ Admin related miscellaneous settings"
|
15187 |
msgstr "Paramètres diverse liés à WPPA+ Admin"
|
15188 |
|
15189 |
+
#: wppa-settings-autosave.php:7846
|
15190 |
msgid "Allow HTML"
|
15191 |
msgstr "Autoriser HTML"
|
15192 |
|
15193 |
+
#: wppa-settings-autosave.php:7847
|
15194 |
msgid "Allow HTML in album and photo descriptions."
|
15195 |
msgstr "Permettre le HTML dans les descriptions d’album et photo."
|
15196 |
|
15197 |
+
#: wppa-settings-autosave.php:7848 wppa-settings-autosave.php:7857
|
15198 |
#, fuzzy
|
15199 |
msgid ""
|
15200 |
"If checked: html is allowed. WARNING: No checks on syntax, it is your own "
|
15204 |
"la syntaxe, c’est votre propre responsabilité de fermer les balises "
|
15205 |
"correctement !"
|
15206 |
|
15207 |
+
#: wppa-settings-autosave.php:7855
|
15208 |
msgid "Allow HTML custom"
|
15209 |
msgstr "Autoriser HTML personnalisé"
|
15210 |
|
15211 |
+
#: wppa-settings-autosave.php:7856
|
15212 |
msgid "Allow HTML in custom photo datafields."
|
15213 |
msgstr "Permettre HTML dans les photo datafields personnalisé."
|
15214 |
|
15215 |
+
#: wppa-settings-autosave.php:7864
|
15216 |
msgid "Check tag balance"
|
15217 |
msgstr "Vérifier balance de balises"
|
15218 |
|
15219 |
+
#: wppa-settings-autosave.php:7865
|
15220 |
msgid "Check if the HTML tags are properly closed: \"balanced\"."
|
15221 |
msgstr "Vérifier si les balises HTML sont bien fermés: « équilibré »."
|
15222 |
|
15223 |
+
#: wppa-settings-autosave.php:7866
|
15224 |
#, fuzzy
|
15225 |
msgid ""
|
15226 |
"If the HTML tags in an album or a photo description are not in balance, the "
|
15229 |
"Si les balises HTML dans un album ou une description de la photo ne sont pas "
|
15230 |
"en équilibre, la description n’est pas mis à jour, un errormessage s’affiche"
|
15231 |
|
15232 |
+
#: wppa-settings-autosave.php:7873
|
15233 |
msgid "Use WP editor"
|
15234 |
msgstr "Utiliser l'éditeur de WordPress"
|
15235 |
|
15236 |
+
#: wppa-settings-autosave.php:7874
|
15237 |
#, fuzzy
|
15238 |
msgid "Use the wp editor for multiline text fields."
|
15239 |
msgstr "Utilisez l’éditeur de wp pour les champs de texte multiligne."
|
15240 |
|
15241 |
+
#: wppa-settings-autosave.php:7882
|
15242 |
msgid "Album sel hierarchic"
|
15243 |
msgstr "Album sel hiérarchique"
|
15244 |
|
15245 |
+
#: wppa-settings-autosave.php:7883
|
15246 |
#, fuzzy
|
15247 |
msgid "Show albums with (grand)parents in selection lists."
|
15248 |
msgstr ""
|
15249 |
"Montrent les albums avec les parents (grand) dans les listes de sélection."
|
15250 |
|
15251 |
+
#: wppa-settings-autosave.php:7891
|
15252 |
msgid "Page sel hierarchic"
|
15253 |
msgstr "Page sel hiérarchique"
|
15254 |
|
15255 |
+
#: wppa-settings-autosave.php:7892
|
15256 |
#, fuzzy
|
15257 |
msgid "Show pages with (grand)parents in selection lists."
|
15258 |
msgstr ""
|
15259 |
"Afficher des pages avec les parents (grand) dans les listes de sélection."
|
15260 |
|
15261 |
+
#: wppa-settings-autosave.php:7901
|
15262 |
msgid "Album admin page size"
|
15263 |
msgstr "Album admin Taille de la page"
|
15264 |
|
15265 |
+
#: wppa-settings-autosave.php:7902
|
15266 |
msgid "The number of albums per page on the Edit Album admin page."
|
15267 |
msgstr ""
|
15268 |
"Le nombre d'albums par page sur la page d'administration Modifier l'album."
|
15269 |
|
15270 |
+
#: wppa-settings-autosave.php:7912
|
15271 |
msgid "Photo admin page size"
|
15272 |
msgstr "Taille de la page admin photo"
|
15273 |
|
15274 |
+
#: wppa-settings-autosave.php:7913
|
15275 |
#, fuzzy
|
15276 |
msgid ""
|
15277 |
"The number of photos per page on the <br/>Edit Album -> Manage photos and "
|
15280 |
"Le nombre de photos par page sur le<br>Modifier Album-> photos gérer et "
|
15281 |
"retoucher des Photos admin pages."
|
15282 |
|
15283 |
+
#: wppa-settings-autosave.php:7923
|
15284 |
msgid "Photo admin max albums"
|
15285 |
msgstr "Photo administration max albums"
|
15286 |
|
15287 |
+
#: wppa-settings-autosave.php:7924
|
15288 |
msgid "Max albums to show in album selectionbox."
|
15289 |
msgstr "Maximum d'albums à afficher dans l'album selectionbox."
|
15290 |
|
15291 |
+
#: wppa-settings-autosave.php:7925
|
15292 |
msgid ""
|
15293 |
"If there are more albums in the system, display an input box asking for "
|
15294 |
"album id#"
|
15296 |
"S'il y a plus d'albums dans le système, afficher une boîte d'entrée "
|
15297 |
"demandant l'album id #"
|
15298 |
|
15299 |
+
#: wppa-settings-autosave.php:7934
|
15300 |
msgid "Comment admin page size"
|
15301 |
msgstr "Taille de la page d'admin des commentaires"
|
15302 |
|
15303 |
+
#: wppa-settings-autosave.php:7935
|
15304 |
#, fuzzy
|
15305 |
msgid "The number of comments per page on the Comments admin pages."
|
15306 |
msgstr ""
|
15307 |
"Le nombre de commentaires par page sur les pages admin de commentaires."
|
15308 |
|
15309 |
+
#: wppa-settings-autosave.php:7945
|
15310 |
msgid "Geo info edit"
|
15311 |
msgstr "Modifier géo info"
|
15312 |
|
15313 |
+
#: wppa-settings-autosave.php:7946
|
15314 |
#, fuzzy
|
15315 |
msgid "Lattitude and longitude may be edited in photo admin."
|
15316 |
msgstr "Lattitude et longitude peuvent être édités dans l’admin de photo."
|
15317 |
|
15318 |
+
#: wppa-settings-autosave.php:7954
|
15319 |
msgid "Admin bar menu admin"
|
15320 |
msgstr "Admin bar menu admin"
|
15321 |
|
15322 |
+
#: wppa-settings-autosave.php:7955
|
15323 |
#, fuzzy
|
15324 |
msgid "Show menu on admin bar on admin pages."
|
15325 |
msgstr "Afficher menu sur la barre admin admin pages."
|
15326 |
|
15327 |
+
#: wppa-settings-autosave.php:7963
|
15328 |
msgid "Admin bar menu frontend"
|
15329 |
msgstr "Admin bar menu frontend"
|
15330 |
|
15331 |
+
#: wppa-settings-autosave.php:7964
|
15332 |
#, fuzzy
|
15333 |
msgid "Show menu on admin bar on frontend pages."
|
15334 |
msgstr "Afficher menu sur la barre admin sur pages frontend."
|
15335 |
|
15336 |
+
#: wppa-settings-autosave.php:7972
|
15337 |
msgid "Add shortcode to posts"
|
15338 |
msgstr "Ajouter shortcode à messages"
|
15339 |
|
15340 |
+
#: wppa-settings-autosave.php:7973
|
15341 |
msgid "Add a shortcode to the end of all posts."
|
15342 |
msgstr "Ajoutez un shortcode à la fin de tous les postes."
|
15343 |
|
15344 |
+
#: wppa-settings-autosave.php:7981
|
15345 |
msgid "Shortcode to add"
|
15346 |
msgstr "Shortcode à ajouter"
|
15347 |
|
15348 |
+
#: wppa-settings-autosave.php:7982
|
15349 |
#, fuzzy
|
15350 |
msgid "The shortcode to be added to the posts."
|
15351 |
msgstr "Le shortcode à ajouter aux poteaux."
|
15352 |
|
15353 |
+
#: wppa-settings-autosave.php:7990
|
15354 |
#, fuzzy
|
15355 |
msgid "Import page prieviews"
|
15356 |
msgstr "Importer des prieviews de page"
|
15357 |
|
15358 |
+
#: wppa-settings-autosave.php:7991
|
15359 |
#, fuzzy
|
15360 |
msgid "Show thumbnail previews in import admin page."
|
15361 |
msgstr "Afficher les aperçus miniatures dans importation admin page."
|
15362 |
|
15363 |
+
#: wppa-settings-autosave.php:7999
|
15364 |
msgid "Upload audiostub"
|
15365 |
msgstr "Charger audiostub"
|
15366 |
|
15367 |
+
#: wppa-settings-autosave.php:8000
|
15368 |
#, fuzzy
|
15369 |
msgid "Upload a new audio stub file"
|
15370 |
msgstr "Télécharger un nouveau fichier audio stub"
|
15371 |
|
15372 |
+
#: wppa-settings-autosave.php:8004
|
15373 |
msgid "Upload audio stub image"
|
15374 |
msgstr "Charger image audiostub"
|
15375 |
|
15376 |
+
#: wppa-settings-autosave.php:8009
|
15377 |
msgid "Confirm create"
|
15378 |
msgstr "Confirmer création"
|
15379 |
|
15380 |
+
#: wppa-settings-autosave.php:8010
|
15381 |
msgid "Display confirmation dialog before creating album."
|
15382 |
msgstr "Afficher boîte de dialogue de confirmation avant de créer l’album."
|
15383 |
|
15384 |
+
#: wppa-settings-autosave.php:8018
|
15385 |
#, fuzzy
|
15386 |
msgid "Import source root"
|
15387 |
msgstr "Description (optionnel)"
|
15388 |
|
15389 |
+
#: wppa-settings-autosave.php:8019
|
15390 |
#, fuzzy
|
15391 |
msgid "Specify the highest level in the filesystem where to import from"
|
15392 |
msgstr ""
|
15393 |
"Spécifier le niveau le plus élevé dans le système de fichiers où les "
|
15394 |
"importer à partir"
|
15395 |
|
15396 |
+
#: wppa-settings-autosave.php:8036
|
15397 |
msgid "Allow import from WPPA+ source folders"
|
15398 |
msgstr "Autoriser les importations de WPPA+ dossiers sources"
|
15399 |
|
15400 |
+
#: wppa-settings-autosave.php:8037
|
15401 |
#, fuzzy
|
15402 |
msgid "Only switch this on if you know what you are doing!"
|
15403 |
msgstr "Ne mettez en cela marche si vous savez ce que vous faites !"
|
15404 |
|
15405 |
+
#: wppa-settings-autosave.php:8045
|
15406 |
#, fuzzy
|
15407 |
msgid "Enable shortcode generator"
|
15408 |
msgstr "Activez le générateur de shortcode"
|
15409 |
|
15410 |
+
#: wppa-settings-autosave.php:8046
|
15411 |
#, fuzzy
|
15412 |
msgid "Show album icon above page/post edit window"
|
15413 |
msgstr ""
|
15414 |
"Afficher l’icône de l’album plus haut de la fenêtre d’édition de page/post"
|
15415 |
|
15416 |
+
#: wppa-settings-autosave.php:8047
|
15417 |
#, fuzzy
|
15418 |
msgid ""
|
15419 |
"Administrators and wppa super users will always have the shortcode generator "
|
15422 |
"Administrateurs et wppa super utilisateurs auront toujours le générateur de "
|
15423 |
"shortcode disponible."
|
15424 |
|
15425 |
+
#: wppa-settings-autosave.php:8054
|
15426 |
#, fuzzy
|
15427 |
msgid "SEO related settings"
|
15428 |
msgstr "paramètres connexes"
|
15429 |
|
15430 |
+
#: wppa-settings-autosave.php:8056
|
15431 |
msgid "Meta on page"
|
15432 |
msgstr "Meta sur page"
|
15433 |
|
15434 |
+
#: wppa-settings-autosave.php:8057
|
15435 |
msgid "Meta tags for photos on the page."
|
15436 |
msgstr "Meta tags pour les photos sur la page."
|
15437 |
|
15438 |
+
#: wppa-settings-autosave.php:8058
|
15439 |
#, fuzzy
|
15440 |
msgid ""
|
15441 |
"If checked, the header of the page will contain metatags that refer to "
|
15444 |
"S’il est activé, l’en-tête de la page contiendra les metatags qui font "
|
15445 |
"référence aux photos recommandés sur la page dans le contexte de la page."
|
15446 |
|
15447 |
+
#: wppa-settings-autosave.php:8065
|
15448 |
msgid "Meta all"
|
15449 |
msgstr "Tous les meta"
|
15450 |
|
15451 |
+
#: wppa-settings-autosave.php:8066
|
15452 |
#, fuzzy
|
15453 |
msgid "Meta tags for all featured photos."
|
15454 |
msgstr "Meta tags pour toutes les photos de recommandés."
|
15455 |
|
15456 |
+
#: wppa-settings-autosave.php:8067
|
15457 |
msgid ""
|
15458 |
"If checked, the header of the page will contain metatags that refer to all "
|
15459 |
"featured photo files."
|
15461 |
"Si elle est cocheé, l’en-tête de la page contiendra les metatags qui font "
|
15462 |
"référence à tous les fichiers photo recommandés."
|
15463 |
|
15464 |
+
#: wppa-settings-autosave.php:8068
|
15465 |
#, fuzzy
|
15466 |
msgid ""
|
15467 |
"If you have many featured photos, you might wish to uncheck this item to "
|
15470 |
"Si vous avez beaucoup de photos recommandés, vous voudrez peut-être "
|
15471 |
"désactiver cet élément afin de réduire la taille de l’en-tête de page."
|
15472 |
|
15473 |
+
#: wppa-settings-autosave.php:8075
|
15474 |
msgid "Add og meta tags"
|
15475 |
msgstr "Ajouter des balises meta"
|
15476 |
|
15477 |
+
#: wppa-settings-autosave.php:8076
|
15478 |
msgid "Add og meta tags to the page header."
|
15479 |
msgstr "Ajouter og balises meta pour l’en-tête de page."
|
15480 |
|
15481 |
+
#: wppa-settings-autosave.php:8079
|
15482 |
#, fuzzy
|
15483 |
msgid ""
|
15484 |
"Turning this off may affect the functionality of social media items in the "
|
15488 |
"sociaux dans la zone de partage qui s’appuient sur les informations de tags "
|
15489 |
"open graph."
|
15490 |
|
15491 |
+
#: wppa-settings-autosave.php:8085
|
15492 |
#, fuzzy
|
15493 |
msgid "Image Alt attribute type"
|
15494 |
msgstr "Type de l’attribut Alt des images"
|
15495 |
|
15496 |
+
#: wppa-settings-autosave.php:8086
|
15497 |
#, fuzzy
|
15498 |
msgid "Select kind of HTML alt=\"\" content for images."
|
15499 |
msgstr "Sélectionnez le genre d’alt HTML = \" » contenu des images."
|
15500 |
|
15501 |
+
#: wppa-settings-autosave.php:8089
|
15502 |
msgid "photo name"
|
15503 |
msgstr "Nom de la photo"
|
15504 |
|
15505 |
+
#: wppa-settings-autosave.php:8089
|
15506 |
msgid "name without file-ext"
|
15507 |
msgstr "nom sans l'extension de fichier"
|
15508 |
|
15509 |
+
#: wppa-settings-autosave.php:8089
|
15510 |
msgid "set in album admin"
|
15511 |
msgstr "Réglé dans album admin"
|
15512 |
|
15513 |
+
#: wppa-settings-autosave.php:8096
|
15514 |
#, fuzzy
|
15515 |
msgid "New Album and New Photo related miscellaneous settings"
|
15516 |
msgstr "Nouvel Album et nouvelle Photo liés à divers paramètres"
|
15517 |
|
15518 |
+
#: wppa-settings-autosave.php:8134
|
15519 |
#, fuzzy
|
15520 |
msgid "Maximum time an album is indicated as New"
|
15521 |
msgstr "Temps maximum qu'un album est indiqué comme New"
|
15522 |
|
15523 |
+
#: wppa-settings-autosave.php:8142
|
15524 |
msgid "New Photo"
|
15525 |
msgstr "Nouvelle photo"
|
15526 |
|
15527 |
+
#: wppa-settings-autosave.php:8143
|
15528 |
#, fuzzy
|
15529 |
msgid "Maximum time a photo is indicated as New"
|
15530 |
msgstr "Temps maximum que photo est indiquée comme New"
|
15531 |
|
15532 |
+
#: wppa-settings-autosave.php:8151
|
15533 |
msgid "Modified Album"
|
15534 |
msgstr "Album modifié"
|
15535 |
|
15536 |
+
#: wppa-settings-autosave.php:8152
|
15537 |
#, fuzzy
|
15538 |
msgid "Maximum time an album is indicated as Modified"
|
15539 |
msgstr "Temps maximum qu'un album est indiqué comme Modified"
|
15540 |
|
15541 |
+
#: wppa-settings-autosave.php:8160
|
15542 |
msgid "Modified Photo"
|
15543 |
msgstr "Photo modifiée"
|
15544 |
|
15545 |
+
#: wppa-settings-autosave.php:8161
|
15546 |
#, fuzzy
|
15547 |
msgid "Maximum time a photo is indicated as Modofied"
|
15548 |
msgstr "Temps maximum que photo est indiquée comme Modofied"
|
15549 |
|
15550 |
+
#: wppa-settings-autosave.php:8169
|
15551 |
msgid "Use text labels"
|
15552 |
msgstr "Utiliser les étiquettes de texte"
|
15553 |
|
15554 |
+
#: wppa-settings-autosave.php:8170
|
15555 |
#, fuzzy
|
15556 |
msgid "Use editable text for the New and Modified labels"
|
15557 |
msgstr "Utilisation de texte éditable pour les labels New et mise à jour le"
|
15558 |
|
15559 |
+
#: wppa-settings-autosave.php:8171
|
15560 |
#, fuzzy
|
15561 |
msgid "If UNticked, you can specify the urls for custom images to be used."
|
15562 |
msgstr ""
|
15563 |
"Si cochée, vous pouvez spécifier les URL pour les images personnalisées à "
|
15564 |
"utiliser."
|
15565 |
|
15566 |
+
#: wppa-settings-autosave.php:8182
|
15567 |
msgid "Orange"
|
15568 |
msgstr "Orange"
|
15569 |
|
15570 |
+
#: wppa-settings-autosave.php:8183
|
15571 |
msgid "Yellow"
|
15572 |
msgstr "Jaune"
|
15573 |
|
15574 |
+
#: wppa-settings-autosave.php:8186
|
15575 |
msgid "Purple"
|
15576 |
msgstr "Voilet"
|
15577 |
|
15578 |
+
#: wppa-settings-autosave.php:8187
|
15579 |
msgid "Black/white"
|
15580 |
msgstr "Noir/Blanc"
|
15581 |
|
15582 |
+
#: wppa-settings-autosave.php:8199 wppa-settings-autosave.php:8221
|
15583 |
msgid "New label"
|
15584 |
msgstr "Nouveau label"
|
15585 |
|
15586 |
+
#: wppa-settings-autosave.php:8200
|
15587 |
#, fuzzy
|
15588 |
msgid "Specify the \"New\" indicator details."
|
15589 |
msgstr "Spécifiez les détails indicateur de « Nouveau »."
|
15590 |
|
15591 |
+
#: wppa-settings-autosave.php:8201 wppa-settings-autosave.php:8212
|
15592 |
msgid "If you use qTranslate, the text may be multilingual."
|
15593 |
msgstr "Si vous utilisez qTranslate, le suivant pourrait être multilingue."
|
15594 |
|
15595 |
+
#: wppa-settings-autosave.php:8210 wppa-settings-autosave.php:8230
|
15596 |
#, fuzzy
|
15597 |
msgid "Modified label"
|
15598 |
msgstr "Mis à jour le label"
|
15599 |
|
15600 |
+
#: wppa-settings-autosave.php:8211
|
15601 |
#, fuzzy
|
15602 |
msgid "Specify the \"Modified\" indicator details."
|
15603 |
msgstr "Spécifiez les détails d’indicateur « Modifié »."
|
15604 |
|
15605 |
+
#: wppa-settings-autosave.php:8222
|
15606 |
#, fuzzy
|
15607 |
msgid "Specify the \"New\" indicator url."
|
15608 |
msgstr "Spécifiez l’url d’indicateur « Nouveau »."
|
15609 |
|
15610 |
+
#: wppa-settings-autosave.php:8231
|
15611 |
#, fuzzy
|
15612 |
msgid "Specify the \"Modified\" indicator url."
|
15613 |
msgstr "Spécifiez l’url d’indicateur « Modifié »."
|
15614 |
|
15615 |
+
#: wppa-settings-autosave.php:8239
|
15616 |
#, fuzzy
|
15617 |
msgid "Limit LasTen New"
|
15618 |
msgstr "Limite de LasTen nouveau"
|
15619 |
|
15620 |
+
#: wppa-settings-autosave.php:8240
|
15621 |
#, fuzzy
|
15622 |
msgid "Limits the LasTen photos to those that are 'New', or newly modified."
|
15623 |
msgstr ""
|
15624 |
"Limite les photos LasTen à ceux qui sont « Nouveau », ou nouvellement "
|
15625 |
"modifiés."
|
15626 |
|
15627 |
+
#: wppa-settings-autosave.php:8241
|
15628 |
msgid ""
|
15629 |
"If you tick this box and configured the new photo time, you can even limit "
|
15630 |
"the number by the setting in Table I-F7, or set that number to an unlikely "
|
15634 |
"pouvez même limiter le nombre par la mise en Table I-F7, ou définir ce "
|
15635 |
"nombre sur une valeur élevée peu probable."
|
15636 |
|
15637 |
+
#: wppa-settings-autosave.php:8248
|
15638 |
#, fuzzy
|
15639 |
msgid "LasTen use Modified"
|
15640 |
msgstr "LasTen utiliser mise à jour le"
|
15641 |
|
15642 |
+
#: wppa-settings-autosave.php:8249
|
15643 |
#, fuzzy
|
15644 |
msgid ""
|
15645 |
"Use the time modified rather than time upload for LasTen widget/shortcode."
|
15647 |
"Utiliser l’heure de modification plutôt que temps télécharger pour LasTen "
|
15648 |
"widget/shortcode."
|
15649 |
|
15650 |
+
#: wppa-settings-autosave.php:8257
|
15651 |
msgid "Apply Newphoto desc"
|
15652 |
msgstr "Appliquer la description nouveau"
|
15653 |
|
15654 |
+
#: wppa-settings-autosave.php:8258
|
15655 |
msgid "Give each new photo a standard description."
|
15656 |
msgstr "Donner à chaque nouvelle photo une description normalisée."
|
15657 |
|
15658 |
+
#: wppa-settings-autosave.php:8259
|
15659 |
msgid ""
|
15660 |
"If checked, each new photo will get the description (template) as specified "
|
15661 |
"in the next item."
|
15663 |
"Si cochée, chaque nouvelle photo obtient la description (modèle), comme "
|
15664 |
"spécifié dans l’element suivant."
|
15665 |
|
15666 |
+
#: wppa-settings-autosave.php:8266
|
15667 |
msgid "New photo desc"
|
15668 |
msgstr "Description nouvelle photo"
|
15669 |
|
15670 |
+
#: wppa-settings-autosave.php:8267
|
15671 |
#, fuzzy
|
15672 |
msgid "The description (template) to add to a new photo."
|
15673 |
msgstr "La description (modèle) pour ajouter à une nouvelle photo."
|
15674 |
|
15675 |
+
#: wppa-settings-autosave.php:8268
|
15676 |
msgid "Enter the default description."
|
15677 |
msgstr "Entrez la description par défaut."
|
15678 |
|
15679 |
+
#: wppa-settings-autosave.php:8269
|
15680 |
msgid "If you use html, please check item A-1 of this table."
|
15681 |
msgstr "Si vous utilisez html, s’il vous plaît cochez point A-1 de ce table."
|
15682 |
|
15683 |
+
#: wppa-settings-autosave.php:8276
|
15684 |
msgid "New photo owner"
|
15685 |
msgstr "Propriétaire de nouvelle photo"
|
15686 |
|
15687 |
+
#: wppa-settings-autosave.php:8277
|
15688 |
msgid "The owner of a new uploaded photo."
|
15689 |
msgstr "Le propriétaire d’une nouvelle photo téléchargée."
|
15690 |
|
15691 |
+
#: wppa-settings-autosave.php:8278
|
15692 |
msgid "If you leave this blank, the uploader will be set as the owner"
|
15693 |
msgstr ""
|
15694 |
"Si vous laissez ce champ vide, l’uploader sera définie en tant que "
|
15695 |
"propriétaire"
|
15696 |
|
15697 |
+
#: wppa-settings-autosave.php:8280
|
15698 |
msgid "leave blank or enter login name"
|
15699 |
msgstr "laissez vide ou entrez le nom de connexion"
|
15700 |
|
15701 |
+
#: wppa-settings-autosave.php:8286
|
15702 |
#, fuzzy
|
15703 |
msgid "New albums are created with this upload limit."
|
15704 |
msgstr "Nouveaux albums sont créés avec cette limite de téléchargement."
|
15705 |
|
15706 |
+
#: wppa-settings-autosave.php:8287
|
15707 |
msgid ""
|
15708 |
"Administrators can change the limit settings in the \"Edit Album Information"
|
15709 |
"\" admin page."
|
15711 |
"Administrateurs peuvent modifier les paramètres de limite dans la page "
|
15712 |
"d’administration de « Modifier les informations de Album »."
|
15713 |
|
15714 |
+
#: wppa-settings-autosave.php:8304
|
15715 |
msgid "Default parent"
|
15716 |
msgstr "Parent par défaut"
|
15717 |
|
15718 |
+
#: wppa-settings-autosave.php:8305
|
15719 |
#, fuzzy
|
15720 |
msgid "The parent album of new albums."
|
15721 |
msgstr "L’album parent de nouveaux albums."
|
15722 |
|
15723 |
+
#: wppa-settings-autosave.php:8322
|
15724 |
msgid "Default parent always"
|
15725 |
msgstr "Par défaut parent toujours"
|
15726 |
|
15727 |
+
#: wppa-settings-autosave.php:8323
|
15728 |
#, fuzzy
|
15729 |
msgid ""
|
15730 |
"The parent album of new albums is always the default, except for "
|
15733 |
"L’album parent de nouveaux albums est toujours la valeur par défaut, à "
|
15734 |
"l’exception des administrateurs."
|
15735 |
|
15736 |
+
#: wppa-settings-autosave.php:8331
|
15737 |
#, fuzzy
|
15738 |
msgid "Show album full"
|
15739 |
msgstr "L’album complet"
|
15740 |
|
15741 |
+
#: wppa-settings-autosave.php:8332
|
15742 |
#, fuzzy
|
15743 |
msgid "Show the Upload limit reached message if appropriate."
|
15744 |
msgstr "Montrent la limite de téléchargement atteinte message si besoin."
|
15745 |
|
15746 |
+
#: wppa-settings-autosave.php:8340
|
15747 |
msgid "Grant an album"
|
15748 |
msgstr "Grant an album"
|
15749 |
|
15750 |
+
#: wppa-settings-autosave.php:8341
|
15751 |
msgid "Create an album for each user logging in."
|
15752 |
msgstr "Créer un album pour chaque utilisateur connecté."
|
15753 |
|
15754 |
+
#: wppa-settings-autosave.php:8349
|
15755 |
msgid "Grant album name"
|
15756 |
msgstr "Grant album name"
|
15757 |
|
15758 |
+
#: wppa-settings-autosave.php:8350
|
15759 |
#, fuzzy
|
15760 |
msgid "The name to be used for the album."
|
15761 |
msgstr "Le nom à utiliser pour l’album."
|
15762 |
|
15763 |
+
#: wppa-settings-autosave.php:8353
|
15764 |
msgid "Login name"
|
15765 |
msgstr "Identifiant"
|
15766 |
|
15767 |
+
#: wppa-settings-autosave.php:8353 wppa-upldr-widget.php:202
|
15768 |
msgid "Display name"
|
15769 |
msgstr "Afficher le nom"
|
15770 |
|
15771 |
+
#: wppa-settings-autosave.php:8353
|
15772 |
msgid "Id"
|
15773 |
msgstr "Id"
|
15774 |
|
15775 |
+
#: wppa-settings-autosave.php:8353
|
15776 |
msgid "Firstname Lastname"
|
15777 |
msgstr "Prénom Nom de famille"
|
15778 |
|
15779 |
+
#: wppa-settings-autosave.php:8360
|
15780 |
#, fuzzy
|
15781 |
msgid "Grant parent selection method"
|
15782 |
msgstr "Délivrance méthode de sélection de parent"
|
15783 |
|
15784 |
+
#: wppa-settings-autosave.php:8361
|
15785 |
#, fuzzy
|
15786 |
msgid "The way the grant parents are defined."
|
15787 |
msgstr "La façon dont les parents subvention sont définis."
|
15788 |
|
15789 |
+
#: wppa-settings-autosave.php:8364
|
15790 |
#, fuzzy
|
15791 |
msgid "An album (multi)selectionbox"
|
15792 |
msgstr "Un album (multi) selectionbox"
|
15793 |
|
15794 |
+
#: wppa-settings-autosave.php:8365
|
15795 |
#, fuzzy
|
15796 |
msgid "An album category"
|
15797 |
msgstr "Désolé, mais il n'y a pas encore d'article dans la catégorie %s."
|
15798 |
|
15799 |
+
#: wppa-settings-autosave.php:8366
|
15800 |
#, fuzzy
|
15801 |
msgid "An index search token"
|
15802 |
msgstr "Un jeton de recherche d'index"
|
15803 |
|
15804 |
+
#: wppa-settings-autosave.php:8380
|
15805 |
msgid "Grant parent"
|
15806 |
msgstr "Grant parent"
|
15807 |
|
15808 |
+
#: wppa-settings-autosave.php:8381
|
15809 |
#, fuzzy
|
15810 |
msgid "The parent album(s) of the auto created albums."
|
15811 |
msgstr "L'album (s) parent de l'auto albums créé."
|
15812 |
|
15813 |
+
#: wppa-settings-autosave.php:8382
|
15814 |
#, fuzzy
|
15815 |
msgid ""
|
15816 |
"You may select multiple albums. All logged in visitors will get their own "
|
15819 |
"Vous pouvez sélectionner plusieurs albums. Tous connecté visiteurs vont "
|
15820 |
"obtenir leur propre sous-album dans chaque parent accordé."
|
15821 |
|
15822 |
+
#: wppa-settings-autosave.php:8400
|
15823 |
#, fuzzy
|
15824 |
msgid "Grant parent category"
|
15825 |
msgstr "Grant catégorie parente"
|
15826 |
|
15827 |
+
#: wppa-settings-autosave.php:8401
|
15828 |
#, fuzzy
|
15829 |
msgid "The category of the parent album(s) of the auto created albums."
|
15830 |
msgstr "La catégorie de l'album (s) parent de l'auto albums créé."
|
15831 |
|
15832 |
+
#: wppa-settings-autosave.php:8417
|
15833 |
#, fuzzy
|
15834 |
msgid "Grant parent index token"
|
15835 |
msgstr "Grant index parent jeton"
|
15836 |
|
15837 |
+
#: wppa-settings-autosave.php:8418
|
15838 |
#, fuzzy
|
15839 |
msgid ""
|
15840 |
"The index token that defines the parent album(s) of the auto created albums."
|
15841 |
msgstr "Le jeton d'index qui définit l'album (s) parent des albums auto créé."
|
15842 |
|
15843 |
+
#: wppa-settings-autosave.php:8428
|
15844 |
msgid "Max user albums"
|
15845 |
msgstr "Max albums d'utilisateur"
|
15846 |
|
15847 |
+
#: wppa-settings-autosave.php:8429
|
15848 |
#, fuzzy
|
15849 |
msgid "The max number of albums a user can create."
|
15850 |
msgstr "Le nombre maximum d’albums, qu'un utilisateur peut créer."
|
15851 |
|
15852 |
+
#: wppa-settings-autosave.php:8430
|
15853 |
#, fuzzy
|
15854 |
msgid ""
|
15855 |
"The maximum number of albums a user can create when he is not admin and "
|
15858 |
"Le nombre maximum d’albums, qu'un utilisateur peut créer lorsqu’il n’est pas "
|
15859 |
"admin et propriétaire est uniquement actif"
|
15860 |
|
15861 |
+
#: wppa-settings-autosave.php:8431
|
15862 |
msgid "A number of 0 means No limit"
|
15863 |
msgstr "Un nombre de 0 signifie aucune limite"
|
15864 |
|
15865 |
+
#: wppa-settings-autosave.php:8438
|
15866 |
msgid "Default photo name"
|
15867 |
msgstr "Nom de photo par défaut"
|
15868 |
|
15869 |
+
#: wppa-settings-autosave.php:8439
|
15870 |
#, fuzzy
|
15871 |
msgid "Select the way the name of a new uploaded photo should be determined."
|
15872 |
msgstr ""
|
15873 |
"Sélectionnez le moyen de que déterminer le nom d’une nouvelle photo "
|
15874 |
"téléchargée."
|
15875 |
|
15876 |
+
#: wppa-settings-autosave.php:8442
|
15877 |
msgid "Filename"
|
15878 |
msgstr "Nom de fichier"
|
15879 |
|
15880 |
+
#: wppa-settings-autosave.php:8443
|
15881 |
msgid "Filename without extension"
|
15882 |
msgstr "Nom de fichier sans extension"
|
15883 |
|
15884 |
+
#: wppa-settings-autosave.php:8444
|
15885 |
#, fuzzy
|
15886 |
msgid "IPTC Tag 2#005 (Graphic name)"
|
15887 |
msgstr "IPTC Tag 2 #005 (nom du graphique)"
|
15888 |
|
15889 |
+
#: wppa-settings-autosave.php:8445
|
15890 |
#, fuzzy
|
15891 |
msgid "IPTC Tag 2#120 (Caption)"
|
15892 |
msgstr "IPTC Tag 2 #120 (légende)"
|
15893 |
|
15894 |
+
#: wppa-settings-autosave.php:8446
|
15895 |
msgid "No name at all"
|
15896 |
msgstr "Pas de nom du tout"
|
15897 |
|
15898 |
+
#: wppa-settings-autosave.php:8447
|
15899 |
#, fuzzy
|
15900 |
msgid "Photo w#id (literally)"
|
15901 |
msgstr "Photo w #id (littéralement)"
|
15902 |
|
15903 |
+
#: wppa-settings-autosave.php:8455
|
15904 |
msgid "Default coverphoto"
|
15905 |
msgstr "Photo de couverture par défaut"
|
15906 |
|
15907 |
+
#: wppa-settings-autosave.php:8456
|
15908 |
#, fuzzy
|
15909 |
msgid "Name of photofile to become cover image"
|
15910 |
msgstr "Nom de la photothèque pour devenir l’image de couverture"
|
15911 |
|
15912 |
+
#: wppa-settings-autosave.php:8457
|
15913 |
msgid ""
|
15914 |
"If you name a photofile like this setting before upload, it will become the "
|
15915 |
"coverimage automaticly."
|
15917 |
"Si vous nommez une Photothèque comme ce paramètre avant de télécharger, il "
|
15918 |
"deviendra automatiquement le coverimage."
|
15919 |
|
15920 |
+
#: wppa-settings-autosave.php:8464
|
15921 |
msgid "Copy Timestamp"
|
15922 |
msgstr "Copier timestamp"
|
15923 |
|
15924 |
+
#: wppa-settings-autosave.php:8465
|
15925 |
msgid "Copy timestamp when copying photo."
|
15926 |
msgstr "Copiez timestamp lors de la copie de photo."
|
15927 |
|
15928 |
+
#: wppa-settings-autosave.php:8466
|
15929 |
msgid "If checked, the copied photo is not \"new\""
|
15930 |
msgstr "Si elle est cochée, la photo copiée n'est pas \"nouveau\""
|
15931 |
|
15932 |
+
#: wppa-settings-autosave.php:8473
|
15933 |
msgid "Copy Owner"
|
15934 |
msgstr "Copier le propriétaire"
|
15935 |
|
15936 |
+
#: wppa-settings-autosave.php:8474
|
15937 |
msgid "Copy the owner when copying photo."
|
15938 |
msgstr "Copiez le propriétaire lors de la copie de photo."
|
15939 |
|
15940 |
+
#: wppa-settings-autosave.php:8482
|
15941 |
msgid "FE Albums public"
|
15942 |
msgstr "FE Albums publics"
|
15943 |
|
15944 |
+
#: wppa-settings-autosave.php:8483
|
15945 |
msgid "Frontend created albums are --- public ---"
|
15946 |
msgstr "Albums créé en Frontend sont --- publics ---"
|
15947 |
|
15948 |
+
#: wppa-settings-autosave.php:8492
|
15949 |
#, fuzzy
|
15950 |
msgid "Optimize image files right after upload/import"
|
15951 |
msgstr "Optimiser les fichiers image après upload/importation"
|
15952 |
|
15953 |
+
#: wppa-settings-autosave.php:8493
|
15954 |
#, fuzzy
|
15955 |
msgid "This option requires the plugin EWWW Image Optimizer to be activated"
|
15956 |
msgstr "Cette option nécessite que le plugin EWWW Image Optimizer à activer"
|
15957 |
|
15958 |
+
#: wppa-settings-autosave.php:8500
|
15959 |
msgid "Default album linktype"
|
15960 |
msgstr "Linktype album par défaut"
|
15961 |
|
15962 |
+
#: wppa-settings-autosave.php:8501
|
15963 |
#, fuzzy
|
15964 |
msgid "The album linktype for new albums"
|
15965 |
msgstr "L’album linktype pour nouveaux albums"
|
15966 |
|
15967 |
+
#: wppa-settings-autosave.php:8520
|
15968 |
#, fuzzy
|
15969 |
msgid "Search Albums and Photos related settings"
|
15970 |
msgstr "Recherche Albums et Photos de paramètres liés"
|
15971 |
|
15972 |
+
#: wppa-settings-autosave.php:8522
|
15973 |
msgid "Search page"
|
15974 |
msgstr "Rechercher dans la page"
|
15975 |
|
15976 |
+
#: wppa-settings-autosave.php:8523
|
15977 |
msgid "Display the search results on page."
|
15978 |
msgstr "Affichez les résultats de recherche sur la page."
|
15979 |
|
15980 |
+
#: wppa-settings-autosave.php:8524
|
15981 |
#, fuzzy
|
15982 |
msgid ""
|
15983 |
"Select the page to be used to display search results. The page MUST contain "
|
15986 |
"Sélectionnez la page à utiliser pour afficher les résultats de recherche. La "
|
15987 |
"page doit contenir [LPPT] [/ LPPT]."
|
15988 |
|
15989 |
+
#: wppa-settings-autosave.php:8525
|
15990 |
msgid "You may give it the title \"Search results\" or something alike."
|
15991 |
msgstr ""
|
15992 |
"Vous pouvez lui donner titre « résultats de la recherche » ou quelque chose "
|
15993 |
"comme."
|
15994 |
|
15995 |
+
#: wppa-settings-autosave.php:8526
|
15996 |
#, fuzzy
|
15997 |
msgid ""
|
15998 |
"Or you ou may use the standard page on which you display the generic album."
|
16000 |
"Ou ou vous pouvez utiliser la page standard, sur lequel vous affichez "
|
16001 |
"l’album générique."
|
16002 |
|
16003 |
+
#: wppa-settings-autosave.php:8559
|
16004 |
msgid "Exclude separate"
|
16005 |
msgstr "Exclure séparé"
|
16006 |
|
16007 |
+
#: wppa-settings-autosave.php:8560
|
16008 |
msgid "Do not search 'separate' albums."
|
16009 |
msgstr "Ne pas rechercher dans les albums 'séparés'"
|
16010 |
|
16011 |
+
#: wppa-settings-autosave.php:8561
|
16012 |
#, fuzzy
|
16013 |
msgid ""
|
16014 |
"When checked, albums (and photos in them) that have the parent set to --- "
|
16017 |
"Lorsqu'elle est cochée, les albums (et des photos en eux) qui ont le parent "
|
16018 |
"mis à --- --- séparée seront exclus de la fouille."
|
16019 |
|
16020 |
+
#: wppa-settings-autosave.php:8562
|
16021 |
msgid ""
|
16022 |
"Except when you start searching in a 'saparate' album, with the \"search in "
|
16023 |
"current section\" box ticked."
|
16025 |
"Sauf lorsque vous démarrez la recherche d’un album « saparate », avec la "
|
16026 |
"case « recherche dans la section en cours » cochée."
|
16027 |
|
16028 |
+
#: wppa-settings-autosave.php:8569
|
16029 |
msgid "Include tags"
|
16030 |
msgstr "Inclure les tags"
|
16031 |
|
16032 |
+
#: wppa-settings-autosave.php:8570
|
16033 |
msgid "Do also search the photo tags."
|
16034 |
msgstr "Également rechercher les balises de photo."
|
16035 |
|
16036 |
+
#: wppa-settings-autosave.php:8571
|
16037 |
#, fuzzy
|
16038 |
msgid "When checked, the tags of the photo will also be searched."
|
16039 |
msgstr "Lorsque cochée, les balises de la photo seront également recherchés."
|
16040 |
|
16041 |
+
#: wppa-settings-autosave.php:8578
|
16042 |
msgid "Include categories"
|
16043 |
msgstr "Inclure les catégories:"
|
16044 |
|
16045 |
+
#: wppa-settings-autosave.php:8579
|
16046 |
msgid "Do also search the album categories."
|
16047 |
msgstr "Également rechercher les catégories de l’album."
|
16048 |
|
16049 |
+
#: wppa-settings-autosave.php:8580
|
16050 |
#, fuzzy
|
16051 |
msgid "When checked, the categories of the album will also be searched."
|
16052 |
msgstr "Lorsque cochée, les catégories de l’album seront également recherchés."
|
16053 |
|
16054 |
+
#: wppa-settings-autosave.php:8587
|
16055 |
msgid "Include comments"
|
16056 |
msgstr "Inclure les commentaires"
|
16057 |
|
16058 |
+
#: wppa-settings-autosave.php:8588
|
16059 |
msgid "Do also search the comments on photos."
|
16060 |
msgstr "Également rechercher les commentaires sur les photos."
|
16061 |
|
16062 |
+
#: wppa-settings-autosave.php:8589
|
16063 |
#, fuzzy
|
16064 |
msgid "When checked, the comments of the photos will also be searched."
|
16065 |
msgstr ""
|
16066 |
"Lorsqu'elle est cochée, les commentaires des photos seront également "
|
16067 |
"recherchées."
|
16068 |
|
16069 |
+
#: wppa-settings-autosave.php:8596
|
16070 |
msgid "Photos only"
|
16071 |
msgstr "Photos seulement"
|
16072 |
|
16073 |
+
#: wppa-settings-autosave.php:8597
|
16074 |
#, fuzzy
|
16075 |
msgid "Search for photos only."
|
16076 |
msgstr "Rechercher des photos uniquement."
|
16077 |
|
16078 |
+
#: wppa-settings-autosave.php:8598
|
16079 |
#, fuzzy
|
16080 |
msgid "When checked, only photos will be searched for."
|
16081 |
msgstr "Lorsqu'elle est cochée, seules les photos seront recherchées."
|
16082 |
|
16083 |
+
#: wppa-settings-autosave.php:8613
|
16084 |
msgid "Max albums found"
|
16085 |
msgstr "Maximum des albums trouvés"
|
16086 |
|
16087 |
+
#: wppa-settings-autosave.php:8614
|
16088 |
#, fuzzy
|
16089 |
msgid "The maximum number of albums to be displayed."
|
16090 |
msgstr "Le nombre maximal d’albums à afficher."
|
16091 |
|
16092 |
+
#: wppa-settings-autosave.php:8622
|
16093 |
#, fuzzy
|
16094 |
msgid "Max photos found"
|
16095 |
msgstr "Photos de Max trouvées"
|
16096 |
|
16097 |
+
#: wppa-settings-autosave.php:8623
|
16098 |
#, fuzzy
|
16099 |
msgid "The maximum number of photos to be displayed."
|
16100 |
msgstr "Le nombre maximal de photos à afficher."
|
16101 |
|
16102 |
+
#: wppa-settings-autosave.php:8631
|
16103 |
#, fuzzy
|
16104 |
msgid "Tags OR only"
|
16105 |
msgstr "Tags ou seulement"
|
16106 |
|
16107 |
+
#: wppa-settings-autosave.php:8632
|
16108 |
msgid "No and / or buttons"
|
16109 |
msgstr "Pas de boutons et / ou"
|
16110 |
|
16111 |
+
#: wppa-settings-autosave.php:8633
|
16112 |
msgid ""
|
16113 |
"Hide the and/or radiobuttons and do the or method in the multitag widget and "
|
16114 |
"shortcode."
|
16116 |
"Masquer l’et/ou de cases d’option et ne l’ou la méthode dans le widget "
|
16117 |
"multibalises et shortcode."
|
16118 |
|
16119 |
+
#: wppa-settings-autosave.php:8640
|
16120 |
msgid "Tags add Inverse"
|
16121 |
msgstr "Balisess ajouter un Inverse"
|
16122 |
|
16123 |
+
#: wppa-settings-autosave.php:8641
|
16124 |
msgid "Add a checkbox to invert the selection."
|
16125 |
msgstr "Ajoute une case à cocher pour inverser la sélection."
|
16126 |
|
16127 |
+
#: wppa-settings-autosave.php:8642
|
16128 |
msgid "Adds an Invert (NOT) checkbox on the multitag widget and shortcode."
|
16129 |
msgstr ""
|
16130 |
"Ajoute une case à cocher inverser (pas) sur le widget multibalises et "
|
16131 |
"shortcode."
|
16132 |
|
16133 |
+
#: wppa-settings-autosave.php:8649
|
16134 |
msgid "Floating searchtoken"
|
16135 |
msgstr "Jeton recherche flottant"
|
16136 |
|
16137 |
+
#: wppa-settings-autosave.php:8650
|
16138 |
msgid "A match need not start at the first char."
|
16139 |
msgstr "Un match ne besoin pas dès le premier char."
|
16140 |
|
16141 |
+
#: wppa-settings-autosave.php:8651
|
16142 |
msgid ""
|
16143 |
"A match is found while searching also when the entered token is somewhere in "
|
16144 |
"the middle of a word."
|
16146 |
"Une correspondance est trouvée en cherchant également lorsque le jeton est "
|
16147 |
"entré est quelque part au milieu d’un mot."
|
16148 |
|
16149 |
+
#: wppa-settings-autosave.php:8652
|
16150 |
#, fuzzy
|
16151 |
msgid "This works in indexed search only!"
|
16152 |
msgstr "Cela fonctionne uniquement Recherche indexée!"
|
16153 |
|
16154 |
+
#: wppa-settings-autosave.php:8659
|
16155 |
#, fuzzy
|
16156 |
msgid "Search results display"
|
16157 |
msgstr "Affichage de résultats de recherche"
|
16158 |
|
16159 |
+
#: wppa-settings-autosave.php:8660
|
16160 |
#, fuzzy
|
16161 |
msgid "Select the way the search results should be displayed."
|
16162 |
msgstr ""
|
16163 |
"Sélectionnez la façon dont les résultats de la recherche doivent être "
|
16164 |
"affichés."
|
16165 |
|
16166 |
+
#: wppa-settings-autosave.php:8661
|
16167 |
msgid ""
|
16168 |
"If you select anything different from \"Albums and thumbnails\", \"Photos "
|
16169 |
"only\" is assumed (Table IX-E6)."
|
16171 |
"Si vous choisissez quelque chose de différent de \"Albums et miniatures\", "
|
16172 |
"\"Photos seulement\" est supposé (Table IX-E6)."
|
16173 |
|
16174 |
+
#: wppa-settings-autosave.php:8663
|
16175 |
msgid "Albums and thumbnails"
|
16176 |
msgstr "Album et vignettes"
|
16177 |
|
16178 |
+
#: wppa-settings-autosave.php:8663
|
16179 |
#, fuzzy
|
16180 |
msgid "Slideonly slideshow"
|
16181 |
msgstr "Slideonly slideshow"
|
16182 |
|
16183 |
+
#: wppa-settings-autosave.php:8670
|
16184 |
#, fuzzy
|
16185 |
msgid "Name max length"
|
16186 |
msgstr "longueur maximum"
|
16187 |
|
16188 |
+
#: wppa-settings-autosave.php:8671
|
16189 |
#, fuzzy
|
16190 |
msgid "Max length of displayed photonames in supersearch selectionlist"
|
16191 |
msgstr "Longueur maxi de photonames affichés dans SelectionList SuperRecherche"
|
16192 |
|
16193 |
+
#: wppa-settings-autosave.php:8672 wppa-settings-autosave.php:8681
|
16194 |
#, fuzzy
|
16195 |
msgid ""
|
16196 |
"To limit the length of the selectionlist, enter the number of characters to "
|
16199 |
"Pour limiter la longueur de la SelectionList, entrez le nombre de caractères "
|
16200 |
"à afficher."
|
16201 |
|
16202 |
+
#: wppa-settings-autosave.php:8679
|
16203 |
#, fuzzy
|
16204 |
msgid "Text max length"
|
16205 |
msgstr "longueur maximum"
|
16206 |
|
16207 |
+
#: wppa-settings-autosave.php:8680
|
16208 |
#, fuzzy
|
16209 |
msgid "Max length of displayed photo text in supersearch selectionlist"
|
16210 |
msgstr ""
|
16211 |
"Longueur maximale du texte affiché photo dans SelectionList SuperRecherche"
|
16212 |
|
16213 |
+
#: wppa-settings-autosave.php:8688
|
16214 |
msgid "Search toptext"
|
16215 |
msgstr "Recherche Toptext"
|
16216 |
|
16217 |
+
#: wppa-settings-autosave.php:8689
|
16218 |
#, fuzzy
|
16219 |
msgid "The text at the top of the search box."
|
16220 |
msgstr "Le texte en haut de la zone de recherche."
|
16221 |
|
16222 |
+
#: wppa-settings-autosave.php:8690
|
16223 |
#, fuzzy
|
16224 |
msgid "May contain unfiltered HTML."
|
16225 |
msgstr "Peut contenir HTML non filtré."
|
16226 |
|
16227 |
+
#: wppa-settings-autosave.php:8697
|
16228 |
#, fuzzy
|
16229 |
msgid "Section search text"
|
16230 |
msgstr "texte Section de recherche"
|
16231 |
|
16232 |
+
#: wppa-settings-autosave.php:8698 wppa-settings-autosave.php:8707
|
16233 |
#, fuzzy
|
16234 |
msgid "The labeltext at the checkbox."
|
16235 |
msgstr "Le labelText à la case à cocher."
|
16236 |
|
16237 |
+
#: wppa-settings-autosave.php:8706
|
16238 |
#, fuzzy
|
16239 |
msgid "Results search text"
|
16240 |
msgstr "texte de recherche de résultats"
|
16241 |
|
16242 |
+
#: wppa-settings-autosave.php:8715
|
16243 |
#, fuzzy
|
16244 |
msgid "Minimum search token length"
|
16245 |
msgstr "Recherche minimum longueur jeton"
|
16246 |
|
16247 |
+
#: wppa-settings-autosave.php:8716
|
16248 |
#, fuzzy
|
16249 |
msgid "The minmum number of chars in a search request."
|
16250 |
msgstr "Le nombre minmum de caractère dans une requête de recherche."
|
16251 |
|
16252 |
+
#: wppa-settings-autosave.php:8724
|
16253 |
#, fuzzy
|
16254 |
msgid "Exclude from search"
|
16255 |
msgstr "Exclure de la recherche"
|
16256 |
|
16257 |
+
#: wppa-settings-autosave.php:8725
|
16258 |
#, fuzzy
|
16259 |
msgid "Exclude these words from search index."
|
16260 |
msgstr "Exclure ces mots de l'index de recherche."
|
16261 |
|
16262 |
+
#: wppa-settings-autosave.php:8726
|
16263 |
#, fuzzy
|
16264 |
msgid "Enter words separated by commas (,)"
|
16265 |
msgstr "Entrez les mots séparés par des virgules (,)"
|
16266 |
|
16267 |
+
#: wppa-settings-autosave.php:8733
|
16268 |
#, fuzzy
|
16269 |
msgid "Exclude numbers"
|
16270 |
msgstr "Exclure des numéros"
|
16271 |
|
16272 |
+
#: wppa-settings-autosave.php:8734
|
16273 |
#, fuzzy
|
16274 |
msgid "Exclude numbers from search index."
|
16275 |
msgstr "Exclure les numéros de l'index de recherche."
|
16276 |
|
16277 |
+
#: wppa-settings-autosave.php:8735
|
16278 |
#, fuzzy
|
16279 |
msgid "If ticked, photos and albums are not searcheable by numbers."
|
16280 |
msgstr ""
|
16281 |
"Si coché, les photos et les albums ne sont pas interrogeable par des numéros."
|
16282 |
|
16283 |
+
#: wppa-settings-autosave.php:8742
|
16284 |
#, fuzzy
|
16285 |
msgid "Ignore slash"
|
16286 |
msgstr "Ignorer slash"
|
16287 |
|
16288 |
+
#: wppa-settings-autosave.php:8743
|
16289 |
#, fuzzy
|
16290 |
msgid "Ignore slash chracter (/)."
|
16291 |
msgstr "Ignorer slash chracter (/)."
|
16292 |
|
16293 |
+
#: wppa-settings-autosave.php:8751
|
16294 |
msgid "Watermark related settings"
|
16295 |
msgstr "Paramètres associés de Filigrane"
|
16296 |
|
16297 |
+
#: wppa-settings-autosave.php:8754
|
16298 |
msgid "Enable the application of watermarks."
|
16299 |
msgstr "Permettre l’application de filigranes."
|
16300 |
|
16301 |
+
#: wppa-settings-autosave.php:8755
|
16302 |
msgid "If checked, photos can be watermarked during upload / import."
|
16303 |
msgstr ""
|
16304 |
"S’il est activé, les photos peuvent être filigranés pendant le "
|
16305 |
"téléchargement / import."
|
16306 |
|
16307 |
+
#: wppa-settings-autosave.php:8764
|
16308 |
msgid "Watermark file"
|
16309 |
msgstr "Fichier filigrane"
|
16310 |
|
16311 |
+
#: wppa-settings-autosave.php:8765
|
16312 |
#, fuzzy
|
16313 |
msgid "The default watermarkfile to be used."
|
16314 |
msgstr "Le watermarkfile par défaut à utiliser."
|
16315 |
|
16316 |
+
#: wppa-settings-autosave.php:8766
|
16317 |
msgid "Watermark files are of type png and reside in"
|
16318 |
msgstr "Les fichiers filigrane sont du type PNG et consistent en"
|
16319 |
|
16320 |
+
#: wppa-settings-autosave.php:8767
|
16321 |
msgid ""
|
16322 |
"A suitable watermarkfile typically consists of a transparent background and "
|
16323 |
"a black text or drawing."
|
16325 |
"Un watermarkfile convenable se compose généralement d’un arrière-plan "
|
16326 |
"transparent et un texte noir ou un dessin."
|
16327 |
|
16328 |
+
#: wppa-settings-autosave.php:8769
|
16329 |
msgid ""
|
16330 |
"You may also select one of the textual watermark types at the bottom of the "
|
16331 |
"selection list."
|
16333 |
"Vous pouvez également sélectionner un des types de filigrane textuel au bas "
|
16334 |
"de la liste de sélection."
|
16335 |
|
16336 |
+
#: wppa-settings-autosave.php:8773
|
16337 |
msgid "position:"
|
16338 |
msgstr "Position:"
|
16339 |
|
16340 |
+
#: wppa-settings-autosave.php:8779
|
16341 |
msgid "Upload watermark"
|
16342 |
msgstr "Charger filigrane"
|
16343 |
|
16344 |
+
#: wppa-settings-autosave.php:8780
|
16345 |
msgid "Upload a new watermark file"
|
16346 |
msgstr "Charger un nouveau fichier filigrane"
|
16347 |
|
16348 |
+
#: wppa-settings-autosave.php:8784
|
16349 |
msgid "Upload watermark image"
|
16350 |
msgstr "Charger une image filigrane"
|
16351 |
|
16352 |
+
#: wppa-settings-autosave.php:8789
|
16353 |
msgid "Watermark opacity image"
|
16354 |
msgstr "Opacité du filigrane d'image"
|
16355 |
|
16356 |
+
#: wppa-settings-autosave.php:8790
|
16357 |
#, fuzzy
|
16358 |
msgid "You can set the intensity of image watermarks here."
|
16359 |
msgstr "Vous pouvez régler l'intensité de l'image filigranes ici."
|
16360 |
|
16361 |
+
#: wppa-settings-autosave.php:8791 wppa-settings-autosave.php:8896
|
16362 |
#, fuzzy
|
16363 |
msgid ""
|
16364 |
"The higher the number, the intenser the watermark. Value must be > 0 and <= "
|
16367 |
"Plus le nombre est élevé, plus intense du filigrane. La valeur doit être> 0 "
|
16368 |
"et <= 100."
|
16369 |
|
16370 |
+
#: wppa-settings-autosave.php:8798
|
16371 |
msgid "Textual watermark style"
|
16372 |
msgstr "Style du texte filigrane"
|
16373 |
|
16374 |
+
#: wppa-settings-autosave.php:8799
|
16375 |
#, fuzzy
|
16376 |
msgid "The way the textual watermarks look like"
|
16377 |
msgstr "La façon dont les filigranes textuels ressembler"
|
16378 |
|
16379 |
+
#: wppa-settings-autosave.php:8803
|
16380 |
msgid "TV subtitle style"
|
16381 |
msgstr "Style des sous-titres"
|
16382 |
|
16383 |
+
#: wppa-settings-autosave.php:8803
|
16384 |
msgid "White text on black background"
|
16385 |
msgstr "Texte blanc sur fond noir"
|
16386 |
|
16387 |
+
#: wppa-settings-autosave.php:8803
|
16388 |
msgid "Black text on white background"
|
16389 |
msgstr "Texte noir sur fond blanc"
|
16390 |
|
16391 |
+
#: wppa-settings-autosave.php:8803
|
16392 |
#, fuzzy
|
16393 |
msgid "Reverse TV style (Utopia)"
|
16394 |
msgstr "Style TV dorsal (Utopia)"
|
16395 |
|
16396 |
+
#: wppa-settings-autosave.php:8803
|
16397 |
msgid "White on transparent background"
|
16398 |
msgstr "Blanc sur fond transparent"
|
16399 |
|
16400 |
+
#: wppa-settings-autosave.php:8803
|
16401 |
msgid "Black on transparent background"
|
16402 |
msgstr "Noir sur fond transparent"
|
16403 |
|
16404 |
+
#: wppa-settings-autosave.php:8813
|
16405 |
#, fuzzy
|
16406 |
msgid "Predefined watermark text"
|
16407 |
msgstr "texte en filigrane Predefined"
|
16408 |
|
16409 |
+
#: wppa-settings-autosave.php:8814
|
16410 |
#, fuzzy
|
16411 |
msgid "The text to use when --- pre-defined --- is selected."
|
16412 |
msgstr "Le texte à utiliser quand --- pré-défini --- est sélectionné."
|
16413 |
|
16414 |
+
#: wppa-settings-autosave.php:8815
|
16415 |
msgid "You may use the following keywords:"
|
16416 |
msgstr "Vous pouvez utiliser les mots clés suivants:"
|
16417 |
|
16418 |
+
#: wppa-settings-autosave.php:8816
|
16419 |
msgid ""
|
16420 |
"w#site, w#displayname, all standard photo keywords, iptc and exif keywords"
|
16421 |
msgstr ""
|
16422 |
"w#site, w#displayname, tous les mots-clés photo standard, mots clés iptc et "
|
16423 |
"exif"
|
16424 |
|
16425 |
+
#: wppa-settings-autosave.php:8823
|
16426 |
msgid "Textual watermark font"
|
16427 |
msgstr "Police du texte filigrane"
|
16428 |
|
16429 |
+
#: wppa-settings-autosave.php:8824
|
16430 |
#, fuzzy
|
16431 |
msgid "The font to use with textusl watermarks."
|
16432 |
msgstr "La police à utiliser avec textusl filigranes."
|
16433 |
|
16434 |
+
#: wppa-settings-autosave.php:8825
|
16435 |
msgid "Except for the system font, are font files of type ttf and reside in"
|
16436 |
msgstr ""
|
16437 |
"À l’exception de la police système, sont des fichiers de police de type ttf "
|
16438 |
"et résident dans"
|
16439 |
|
16440 |
+
#: wppa-settings-autosave.php:8853
|
16441 |
msgid "Textual watermark font size"
|
16442 |
msgstr "Taille de la police texte filigrane"
|
16443 |
|
16444 |
+
#: wppa-settings-autosave.php:8854
|
16445 |
msgid "You can set the size of the truetype fonts only."
|
16446 |
msgstr "Vous pouvez définir seulement la taille des polices truetype."
|
16447 |
|
16448 |
+
#: wppa-settings-autosave.php:8855
|
16449 |
#, fuzzy
|
16450 |
msgid ""
|
16451 |
"System font can have size 1,2,3,4 or 5, in some stoneage fontsize units. Any "
|
16454 |
"la police du système peut avoir une taille 1,2,3,4 ou 5, dans certaines "
|
16455 |
"unités FontSize stoneage. Toute valeur> 5 sera traitée comme 5."
|
16456 |
|
16457 |
+
#: wppa-settings-autosave.php:8856
|
16458 |
#, fuzzy
|
16459 |
msgid ""
|
16460 |
"Truetype fonts can have any positive integer size, if your PHPs GD version "
|
16463 |
"Les polices TrueType peuvent avoir toute taille de nombre entier positif, si "
|
16464 |
"votre version de PHP GD est 1, en pixels, en GD2 points."
|
16465 |
|
16466 |
+
#: wppa-settings-autosave.php:8857
|
16467 |
#, fuzzy
|
16468 |
msgid "It is unclear howmany pixels a point is..."
|
16469 |
msgstr "Il est peu clair howmany pixel qu'est un point..."
|
16470 |
|
16471 |
+
#: wppa-settings-autosave.php:8864
|
16472 |
msgid "Foreground color"
|
16473 |
msgstr "Couleur d’arrière-plan"
|
16474 |
|
16475 |
+
#: wppa-settings-autosave.php:8865
|
16476 |
msgid "Textual watermark foreground color (black)."
|
16477 |
msgstr "Justifications couleur filigrane au premier plan (noir)."
|
16478 |
|
16479 |
+
#: wppa-settings-autosave.php:8875
|
16480 |
msgid "Textual watermark background color (white)."
|
16481 |
msgstr "Justifications couleur filigrane de fond (blanc)."
|
16482 |
|
16483 |
+
#: wppa-settings-autosave.php:8884
|
16484 |
msgid "Upload watermark font"
|
16485 |
msgstr "Charger police filigrane"
|
16486 |
|
16487 |
+
#: wppa-settings-autosave.php:8885
|
16488 |
msgid "Upload a new watermark font file"
|
16489 |
msgstr "Charger un nouveau fichier filigrane"
|
16490 |
|
16491 |
+
#: wppa-settings-autosave.php:8886
|
16492 |
#, fuzzy
|
16493 |
msgid ""
|
16494 |
"Upload truetype fonts (.ttf) only, and test if they work on your server "
|
16497 |
"Ajouter des polices TrueType (.ttf) seulement, et de tester si elles "
|
16498 |
"fonctionnent sur votre plate-forme serveur."
|
16499 |
|
16500 |
+
#: wppa-settings-autosave.php:8889
|
16501 |
msgid "Upload TrueType font"
|
16502 |
msgstr "Charger police TrueType"
|
16503 |
|
16504 |
+
#: wppa-settings-autosave.php:8894
|
16505 |
msgid "Watermark opacity text"
|
16506 |
msgstr "Opacité du filigrane de texte"
|
16507 |
|
16508 |
+
#: wppa-settings-autosave.php:8895
|
16509 |
#, fuzzy
|
16510 |
msgid "You can set the intensity of a text watermarks here."
|
16511 |
msgstr "Vous pouvez régler l'intensité d'un texte filigranes ici."
|
16512 |
|
16513 |
+
#: wppa-settings-autosave.php:8904
|
16514 |
msgid "A real life preview. To update: refresh the page."
|
16515 |
msgstr "Un aperçu de la vie réelle. Mise à jour: actualisez la page."
|
16516 |
|
16517 |
+
#: wppa-settings-autosave.php:8915
|
16518 |
msgid "Watermark thumbnails"
|
16519 |
msgstr "Vignettes filigrane"
|
16520 |
|
16521 |
+
#: wppa-settings-autosave.php:8916
|
16522 |
msgid "Watermark also the thumbnail image files."
|
16523 |
msgstr "Filigrane également les fichiers de l’image miniature."
|
16524 |
|
16525 |
+
#: wppa-settings-autosave.php:8924
|
16526 |
#, fuzzy
|
16527 |
msgid "Slideshow elements sequence order settings"
|
16528 |
msgstr "éléments du diaporama paramètres de l'ordre de séquence"
|
16529 |
|
16530 |
+
#: wppa-settings-autosave.php:8930 wppa-settings-autosave.php:8976
|
16531 |
msgid "StartStop"
|
16532 |
msgstr "DémarrerArréter"
|
16533 |
|
16534 |
+
#: wppa-settings-autosave.php:8931 wppa-settings-autosave.php:8977
|
16535 |
msgid "SlideFrame"
|
16536 |
msgstr "SlideFrame"
|
16537 |
|
16538 |
+
#: wppa-settings-autosave.php:8933
|
16539 |
msgid "Desc"
|
16540 |
msgstr "Desc"
|
16541 |
|
16542 |
+
#: wppa-settings-autosave.php:8936 wppa-settings-autosave.php:8981
|
16543 |
msgid "FilmStrip"
|
16544 |
msgstr "FilmStrip"
|
16545 |
|
16546 |
+
#: wppa-settings-autosave.php:8937 wppa-settings-autosave.php:8982
|
16547 |
msgid "Browsebar"
|
16548 |
msgstr "Browsebar"
|
16549 |
|
16550 |
+
#: wppa-settings-autosave.php:8939 wppa-settings-autosave.php:8984
|
16551 |
msgid "IPTC data"
|
16552 |
msgstr "Données IPTC"
|
16553 |
|
16554 |
+
#: wppa-settings-autosave.php:8940 wppa-settings-autosave.php:8985
|
16555 |
msgid "EXIF data"
|
16556 |
msgstr "Données EXIF"
|
16557 |
|
16558 |
+
#: wppa-settings-autosave.php:8941 wppa-settings-autosave.php:8986
|
16559 |
msgid "Share box"
|
16560 |
msgstr "Boîte de partage"
|
16561 |
|
16562 |
+
#: wppa-settings-autosave.php:8943 wppa-settings-autosave.php:8988
|
16563 |
msgid "Enabled"
|
16564 |
msgstr "Activé"
|
16565 |
|
16566 |
+
#: wppa-settings-autosave.php:8944 wppa-settings-autosave.php:8989
|
16567 |
msgid "Disabled"
|
16568 |
msgstr "Désactivé"
|
16569 |
|
16570 |
+
#: wppa-settings-autosave.php:8946 wppa-settings-autosave.php:8991
|
16571 |
#, fuzzy
|
16572 |
msgid "Start/Stop & Slower/Faster navigation bar"
|
16573 |
msgstr "Start / Stop & Slower / Faster barre de navigation"
|
16574 |
|
16575 |
+
#: wppa-settings-autosave.php:8947 wppa-settings-autosave.php:8992
|
16576 |
#, fuzzy
|
16577 |
msgid "The Slide Frame"
|
16578 |
msgstr "Cadre pour diapositive."
|
16579 |
|
16580 |
+
#: wppa-settings-autosave.php:8947 wppa-settings-autosave.php:8992
|
16581 |
msgid "( Always )"
|
16582 |
msgstr "( Toujours )"
|
16583 |
|
16584 |
+
#: wppa-settings-autosave.php:8948
|
16585 |
msgid "Photo Name Box"
|
16586 |
msgstr "Boîte de nom de la photo"
|
16587 |
|
16588 |
+
#: wppa-settings-autosave.php:8949
|
16589 |
#, fuzzy
|
16590 |
msgid "Photo Description Box"
|
16591 |
msgstr "Description de la photo"
|
16592 |
|
16593 |
+
#: wppa-settings-autosave.php:8950 wppa-settings-autosave.php:8994
|
16594 |
msgid "Custom Box"
|
16595 |
msgstr "Boîte personnalisée"
|
16596 |
|
16597 |
+
#: wppa-settings-autosave.php:8951 wppa-settings-autosave.php:8995
|
16598 |
msgid "Rating Bar"
|
16599 |
msgstr "Barre de vote"
|
16600 |
|
16601 |
+
#: wppa-settings-autosave.php:8952 wppa-settings-autosave.php:8996
|
16602 |
msgid "Film Strip with embedded Start/Stop and Goto functionality"
|
16603 |
msgstr ""
|
16604 |
"Bande de film avec des fonctionnalités de Start/Stop et Goto incorporée"
|
16605 |
|
16606 |
+
#: wppa-settings-autosave.php:8953 wppa-settings-autosave.php:8997
|
16607 |
msgid "Browse Bar with Photo X of Y counter"
|
16608 |
msgstr "Parcourir Bar avec comptoir de la Photo X de Y"
|
16609 |
|
16610 |
+
#: wppa-settings-autosave.php:8954 wppa-settings-autosave.php:8998
|
16611 |
msgid "Comments Box"
|
16612 |
msgstr "Boîte de commentaires"
|
16613 |
|
16614 |
+
#: wppa-settings-autosave.php:8955 wppa-settings-autosave.php:8999
|
16615 |
msgid "IPTC box"
|
16616 |
msgstr "Boîte IPTC"
|
16617 |
|
16618 |
+
#: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9000
|
16619 |
msgid "EXIF box"
|
16620 |
msgstr "Boîte EXIF"
|
16621 |
|
16622 |
+
#: wppa-settings-autosave.php:8957 wppa-settings-autosave.php:9001
|
16623 |
msgid "Social media share box"
|
16624 |
msgstr "Boîte de partage social"
|
16625 |
|
16626 |
+
#: wppa-settings-autosave.php:8963 wppa-settings-autosave.php:9007
|
16627 |
#, fuzzy
|
16628 |
msgid "Move Up"
|
16629 |
msgstr "Monter"
|
16630 |
|
16631 |
+
#: wppa-settings-autosave.php:8978
|
16632 |
msgid "NameDesc"
|
16633 |
msgstr "NomDesc"
|
16634 |
|
16635 |
+
#: wppa-settings-autosave.php:8993
|
16636 |
#, fuzzy
|
16637 |
msgid "Photo Name & Description Box"
|
16638 |
msgstr "Photo Nom & Description Box"
|
16639 |
|
16640 |
+
#: wppa-settings-autosave.php:9017
|
16641 |
#, fuzzy
|
16642 |
msgid "Swap Namedesc"
|
16643 |
msgstr "Swap Namedesc"
|
16644 |
|
16645 |
+
#: wppa-settings-autosave.php:9018
|
16646 |
#, fuzzy
|
16647 |
msgid "Swap the order sequence of name and description"
|
16648 |
msgstr "Remplacez la séquence d'ordre de nom et la description"
|
16649 |
|
16650 |
+
#: wppa-settings-autosave.php:9026
|
16651 |
#, fuzzy
|
16652 |
msgid "Split Name and Desc"
|
16653 |
msgstr "Nom de Split et de Desc"
|
16654 |
|
16655 |
+
#: wppa-settings-autosave.php:9027
|
16656 |
#, fuzzy
|
16657 |
msgid "Put Name and Description in separate boxes"
|
16658 |
msgstr "Mettez nom et la description dans des boîtes séparées"
|
16659 |
|
16660 |
+
#: wppa-settings-autosave.php:9030
|
16661 |
#, fuzzy
|
16662 |
msgid "Please reload this page after the green checkmark appears!"
|
16663 |
msgstr "S'il vous plaît recharger cette page après la coche verte apparaît!"
|
16664 |
|
16665 |
+
#: wppa-settings-autosave.php:9035
|
16666 |
#, fuzzy
|
16667 |
msgid "Source file management and other upload/import settings and actions."
|
16668 |
msgstr ""
|
16669 |
"Source de gestion de fichiers, upload/importer les paramètres et autres "
|
16670 |
"actions."
|
16671 |
|
16672 |
+
#: wppa-settings-autosave.php:9037
|
16673 |
msgid "Keep sourcefiles admin"
|
16674 |
msgstr "Garder sourcefiles admin"
|
16675 |
|
16676 |
+
#: wppa-settings-autosave.php:9038
|
16677 |
#, fuzzy
|
16678 |
msgid "Keep the original uploaded and imported photo files."
|
16679 |
msgstr "Stocker les fichiers téléchargés et importés photo originale."
|
16680 |
|
16681 |
+
#: wppa-settings-autosave.php:9039 wppa-settings-autosave.php:9049
|
16682 |
#, fuzzy
|
16683 |
msgid ""
|
16684 |
"The files will be kept in a separate directory with subdirectories for each "
|
16687 |
"Les fichiers seront conservées dans un répertoire distinct avec des sous-"
|
16688 |
"répertoires pour chaque album"
|
16689 |
|
16690 |
+
#: wppa-settings-autosave.php:9040 wppa-settings-autosave.php:9050
|
16691 |
#, fuzzy
|
16692 |
msgid ""
|
16693 |
"These files can be used to update the photos used in displaying in wppa+ and "
|
16697 |
"dans l'affichage en LPPT et éventuellement pour le téléchargement, les "
|
16698 |
"images un-Downsized d'origine."
|
16699 |
|
16700 |
+
#: wppa-settings-autosave.php:9047
|
16701 |
msgid "Keep sourcefiles frontend"
|
16702 |
msgstr "Garder sourcefiles frontend"
|
16703 |
|
16704 |
+
#: wppa-settings-autosave.php:9048
|
16705 |
msgid "Keep the original frontend uploaded photo files."
|
16706 |
msgstr "Keep the original frontend uploaded photo files."
|
16707 |
|
16708 |
+
#: wppa-settings-autosave.php:9057
|
16709 |
msgid "Source directory"
|
16710 |
msgstr "Répertoire source"
|
16711 |
|
16712 |
+
#: wppa-settings-autosave.php:9058
|
16713 |
#, fuzzy
|
16714 |
msgid "The path to the directory where the original photofiles will be saved."
|
16715 |
msgstr ""
|
16716 |
"Le chemin vers le répertoire où les Photofiles originaux seront sauvegardés."
|
16717 |
|
16718 |
+
#: wppa-settings-autosave.php:9059
|
16719 |
msgid "You may change the directory path, but it can not be an url."
|
16720 |
msgstr ""
|
16721 |
"Vous pouvez changer le chemin d’accès du répertoire, mais il ne peut pas "
|
16722 |
"être une url."
|
16723 |
|
16724 |
+
#: wppa-settings-autosave.php:9060
|
16725 |
#, fuzzy
|
16726 |
msgid ""
|
16727 |
"The parent of the directory that you enter here must exist and be writable."
|
16729 |
"Le parent du répertoire que vous entrez ici doit exister et être "
|
16730 |
"inscriptible."
|
16731 |
|
16732 |
+
#: wppa-settings-autosave.php:9061
|
16733 |
#, fuzzy
|
16734 |
msgid "The directory itsself will be created if it does not exist yet."
|
16735 |
msgstr "Le répertoire itsself sera créé si elle n'existe pas encore."
|
16736 |
|
16737 |
+
#: wppa-settings-autosave.php:9068
|
16738 |
msgid "Keep sync"
|
16739 |
msgstr "Garder la synchronisation"
|
16740 |
|
16741 |
+
#: wppa-settings-autosave.php:9069
|
16742 |
#, fuzzy
|
16743 |
msgid "Keep source synchronously with wppa system."
|
16744 |
msgstr "Gardez la source synchrone avec système de LPPT."
|
16745 |
|
16746 |
+
#: wppa-settings-autosave.php:9070
|
16747 |
msgid ""
|
16748 |
"If checked, photos that are deleted from wppa, will also be removed from the "
|
16749 |
"sourcefiles."
|
16751 |
"S’il est activé, les photos qui sont supprimés du wppa, sera également "
|
16752 |
"supprimé depuis les fichiers sources."
|
16753 |
|
16754 |
+
#: wppa-settings-autosave.php:9071
|
16755 |
msgid ""
|
16756 |
"Also, copying or moving photos to different albums, will also copy/move the "
|
16757 |
"sourcefiles."
|
16759 |
"En outre, copier ou déplacer des photos de différents albums, sera également "
|
16760 |
"copier/déplacer les fichiers sources."
|
16761 |
|
16762 |
+
#: wppa-settings-autosave.php:9078
|
16763 |
msgid "Remake add"
|
16764 |
msgstr "Ajouter remake"
|
16765 |
|
16766 |
+
#: wppa-settings-autosave.php:9079
|
16767 |
#, fuzzy
|
16768 |
msgid "Photos will be added from the source pool"
|
16769 |
msgstr "Photos seront ajoutés à partir du pool de source"
|
16770 |
|
16771 |
+
#: wppa-settings-autosave.php:9080
|
16772 |
#, fuzzy
|
16773 |
msgid ""
|
16774 |
"If checked: If photo files are found in the source directory that do not "
|
16777 |
"Si coché: Si les fichiers photo se trouvent dans le répertoire source qui "
|
16778 |
"n'existe pas dans l'album correspondant, ils seront ajoutés à l'album."
|
16779 |
|
16780 |
+
#: wppa-settings-autosave.php:9087
|
16781 |
msgid "Save IPTC data"
|
16782 |
msgstr "Sauver les données IPTC"
|
16783 |
|
16784 |
+
#: wppa-settings-autosave.php:9088
|
16785 |
#, fuzzy
|
16786 |
msgid "Store the iptc data from the photo into the iptc db table"
|
16787 |
msgstr "Stockez les données iptc de la photo dans la table db iptc"
|
16788 |
|
16789 |
+
#: wppa-settings-autosave.php:9089
|
16790 |
msgid ""
|
16791 |
"You will need this if you enabled the display of iptc data in Table II-B17 "
|
16792 |
"or if you use it in the photo descriptions."
|
16794 |
"Vous en aurez besoin si vous avez activé l’affichage des données iptc dans "
|
16795 |
"le Table II-B17 ou si vous l’utiliser dans les descriptions de photo."
|
16796 |
|
16797 |
+
#: wppa-settings-autosave.php:9096
|
16798 |
msgid "Save EXIF data"
|
16799 |
msgstr "Sauver les données EXIF"
|
16800 |
|
16801 |
+
#: wppa-settings-autosave.php:9097
|
16802 |
#, fuzzy
|
16803 |
msgid "Store the exif data from the photo into the exif db table"
|
16804 |
msgstr "Stocker les données EXIF de la photo dans la table exif db"
|
16805 |
|
16806 |
+
#: wppa-settings-autosave.php:9098
|
16807 |
msgid ""
|
16808 |
"You will need this if you enabled the display of exif data in Table II-B18 "
|
16809 |
"or if you use it in the photo descriptions."
|
16811 |
"Vous en aurez besoin si vous avez activé l’affichage des données d’exif dans "
|
16812 |
"le Table II-B18 ou si vous l’utiliser dans les descriptions de photo."
|
16813 |
|
16814 |
+
#: wppa-settings-autosave.php:9105
|
16815 |
msgid "Max EXIF tag array size"
|
16816 |
msgstr "Taille max de tableau des balises EXIF"
|
16817 |
|
16818 |
+
#: wppa-settings-autosave.php:9106
|
16819 |
msgid "Truncate array tags to ..."
|
16820 |
msgstr "Tronquer les balises de tableau pour..."
|
16821 |
|
16822 |
+
#: wppa-settings-autosave.php:9107
|
16823 |
msgid "A value of 0 disables this feature"
|
16824 |
msgstr "Une valeur de 0 désactive cette fonctionnalité."
|
16825 |
|
16826 |
+
#: wppa-settings-autosave.php:9109
|
16827 |
msgid "elements"
|
16828 |
msgstr "éléments"
|
16829 |
|
16830 |
+
#: wppa-settings-autosave.php:9114
|
16831 |
#, fuzzy
|
16832 |
msgid "Import Create page"
|
16833 |
msgstr "Importer Créer une page"
|
16834 |
|
16835 |
+
#: wppa-settings-autosave.php:9115
|
16836 |
msgid "Create wp page when a directory to album is imported."
|
16837 |
msgstr "Créer page wp lorsqu’un répertoire de l’album est importé."
|
16838 |
|
16839 |
+
#: wppa-settings-autosave.php:9116
|
16840 |
msgid ""
|
16841 |
"As soon as an album is created when a directory is imported, a wp page is "
|
16842 |
"made that displays the album content."
|
16844 |
"Dès qu’un album est créé lorsqu’un répertoire est importé, une page de wp "
|
16845 |
"est faite qui affiche le contenu de l’album."
|
16846 |
|
16847 |
+
#: wppa-settings-autosave.php:9124
|
16848 |
msgid "Page content"
|
16849 |
msgstr "Contenu de la page"
|
16850 |
|
16851 |
+
#: wppa-settings-autosave.php:9125
|
16852 |
#, fuzzy
|
16853 |
msgid "The content of the page. Must contain <b>w#album</b>"
|
16854 |
msgstr "Le contenu de la page. Doit contenir <b>w # album</b>"
|
16855 |
|
16856 |
+
#: wppa-settings-autosave.php:9126
|
16857 |
#, fuzzy
|
16858 |
msgid ""
|
16859 |
"The content of the page. Note: it must contain w#album. This will be "
|
16862 |
"Le contenu de la page. Remarque: il doit contenir w # album. Cela sera "
|
16863 |
"remplacé par le numéro de l'album dans le shortcode généré."
|
16864 |
|
16865 |
+
#: wppa-settings-autosave.php:9134
|
16866 |
msgid "Page type"
|
16867 |
msgstr "Type de la page"
|
16868 |
|
16869 |
+
#: wppa-settings-autosave.php:9135
|
16870 |
msgid "Select the type of page to create."
|
16871 |
msgstr "Choisir le type de page à créer."
|
16872 |
|
16873 |
+
#: wppa-settings-autosave.php:9139
|
16874 |
msgid "Post"
|
16875 |
msgstr "Article"
|
16876 |
|
16877 |
+
#: wppa-settings-autosave.php:9146
|
16878 |
msgid "Page status"
|
16879 |
msgstr "Statut de la page"
|
16880 |
|
16881 |
+
#: wppa-settings-autosave.php:9147
|
16882 |
msgid "Select the initial status of the page."
|
16883 |
msgstr "Choisir le statut initial de la page."
|
16884 |
|
16885 |
+
#: wppa-settings-autosave.php:9151
|
16886 |
msgid "Published"
|
16887 |
msgstr "Publié"
|
16888 |
|
16889 |
+
#: wppa-settings-autosave.php:9151
|
16890 |
msgid "Draft"
|
16891 |
msgstr "Brouillon"
|
16892 |
|
16893 |
+
#: wppa-settings-autosave.php:9159
|
16894 |
msgid "Permalink root"
|
16895 |
msgstr "Racine permalien"
|
16896 |
|
16897 |
+
#: wppa-settings-autosave.php:9160
|
16898 |
#, fuzzy
|
16899 |
msgid "The name of the root for the photofile permalink structure."
|
16900 |
msgstr "Le nom de la racine pour la structure photofile permalien."
|
16901 |
|
16902 |
+
#: wppa-settings-autosave.php:9161
|
16903 |
msgid ""
|
16904 |
"Choose a convenient name like \"albums\" or so; this will be the name of a "
|
16905 |
"folder inside .../wp-content/. Make sure you choose a unique name"
|
16908 |
"dossier à l’intérieur de la .../wp-content /. Veillez à que choisir un nom "
|
16909 |
"unique"
|
16910 |
|
16911 |
+
#: wppa-settings-autosave.php:9162
|
16912 |
#, fuzzy
|
16913 |
msgid "If you make this field empty, the feature is disabled."
|
16914 |
msgstr "Si vous faites ce champ vide, la fonction est désactivée."
|
16915 |
|
16916 |
+
#: wppa-settings-autosave.php:9170
|
16917 |
msgid "Import parent check"
|
16918 |
msgstr "Importer le parent vérification"
|
16919 |
|
16920 |
+
#: wppa-settings-autosave.php:9171
|
16921 |
#, fuzzy
|
16922 |
msgid "On import dirs to albums: keep dir tree as albums."
|
16923 |
msgstr "Sur dirs d'importation aux albums: garder arbre dir que des albums."
|
16924 |
|
16925 |
+
#: wppa-settings-autosave.php:9172
|
16926 |
msgid ""
|
16927 |
"Untick only if all your albums have unique names. Then: additional photos "
|
16928 |
"may be ftp'd to toplevel depot subdirs."
|
16931 |
"photos supplémentaires pourront être chargées via FTP dans les répertoires "
|
16932 |
"de dépôt du niveau supérieur."
|
16933 |
|
16934 |
+
#: wppa-settings-autosave.php:9179
|
16935 |
msgid "Keep dir to album files"
|
16936 |
msgstr "Garder les fichiers de dir aux l’album"
|
16937 |
|
16938 |
+
#: wppa-settings-autosave.php:9180
|
16939 |
#, fuzzy
|
16940 |
msgid "Keep imported files after dir to album import"
|
16941 |
msgstr "Conserver les fichiers importés après dir album importé"
|
16942 |
|
16943 |
+
#: wppa-settings-autosave.php:9189
|
16944 |
msgid "Other plugins related settings"
|
16945 |
msgstr "Paramètres liés d'autres plugins"
|
16946 |
|
16947 |
+
#: wppa-settings-autosave.php:9191
|
16948 |
msgid "Foreign shortcodes general"
|
16949 |
msgstr "Généraux étrangers shortcodes"
|
16950 |
|
16951 |
+
#: wppa-settings-autosave.php:9192
|
16952 |
msgid "Enable foreign shortcodes in album names, albums desc and photo names"
|
16953 |
msgstr ""
|
16954 |
"Activez les shortcodes étrangers au nom de l’album, au description de "
|
16955 |
"l'album et au nom de photo"
|
16956 |
|
16957 |
+
#: wppa-settings-autosave.php:9200
|
16958 |
msgid "Foreign shortcodes fullsize"
|
16959 |
msgstr "Shortcodes étrangers fullsize"
|
16960 |
|
16961 |
+
#: wppa-settings-autosave.php:9201
|
16962 |
msgid "Enable the use of non-wppa+ shortcodes in fullsize photo descriptions."
|
16963 |
msgstr ""
|
16964 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16965 |
"pleine grandeur."
|
16966 |
|
16967 |
+
#: wppa-settings-autosave.php:9202 wppa-settings-autosave.php:9213
|
16968 |
#, fuzzy
|
16969 |
msgid ""
|
16970 |
"When checked, you can use shortcodes from other plugins in the description "
|
16973 |
"Lorsqu'elle est cochée, vous pouvez utiliser shortcodes d'autres plugins "
|
16974 |
"dans la description de photos."
|
16975 |
|
16976 |
+
#: wppa-settings-autosave.php:9203
|
16977 |
#, fuzzy
|
16978 |
msgid "The shortcodes will be expanded in the descriptions of fullsize images."
|
16979 |
msgstr ""
|
16980 |
"Les shortcodes sera élargis dans les descriptions d’images plein écran."
|
16981 |
|
16982 |
+
#: wppa-settings-autosave.php:9204 wppa-settings-autosave.php:9215
|
16983 |
msgid "You will most likely need also to check Table IX-A1 (Allow HTML)."
|
16984 |
msgstr ""
|
16985 |
"Vous devrez probablement aussi cocher le Table IX-A1 (Permettre le HTML)."
|
16986 |
|
16987 |
+
#: wppa-settings-autosave.php:9211
|
16988 |
msgid "Foreign shortcodes thumbnails"
|
16989 |
msgstr "Foreign shortcodes thumbnails"
|
16990 |
|
16991 |
+
#: wppa-settings-autosave.php:9212
|
16992 |
msgid "Enable the use of non-wppa+ shortcodes in thumbnail photo descriptions."
|
16993 |
msgstr ""
|
16994 |
"Activer l’utilisation de non-wppa+ shortcodes dans les descriptions de photo "
|
16995 |
"miniature."
|
16996 |
|
16997 |
+
#: wppa-settings-autosave.php:9214
|
16998 |
msgid ""
|
16999 |
"The shortcodes will be expanded in the descriptions of thumbnail images."
|
17000 |
msgstr "Les shortcodes sera élargis dans les descriptions d’images miniatures."
|
17001 |
|
17002 |
+
#: wppa-settings-autosave.php:9222
|
17003 |
msgid "Lightbox keyname"
|
17004 |
msgstr "Nom-clé Lightbox"
|
17005 |
|
17006 |
+
#: wppa-settings-autosave.php:9223
|
17007 |
msgid "The identifier of lightbox."
|
17008 |
msgstr "L'identifiant Lightbox."
|
17009 |
|
17010 |
+
#: wppa-settings-autosave.php:9224
|
17011 |
msgid ""
|
17012 |
"If you use a lightbox plugin that uses rel=\"lbox-id\" you can enter the "
|
17013 |
"lbox-id here."
|
17015 |
"Si vous utilisez un plugin lightbox qui utilise rel=\"lbox-id\" vous pouvez "
|
17016 |
"entrer l’id lbox ici."
|
17017 |
|
17018 |
+
#: wppa-settings-autosave.php:9231
|
17019 |
msgid "myCRED / Cube Points: Comment"
|
17020 |
msgstr "myCRED / Cube Points: commentaire"
|
17021 |
|
17022 |
+
#: wppa-settings-autosave.php:9232
|
17023 |
msgid "Number of points for giving a comment"
|
17024 |
msgstr "Nombre de points pour mettre un commentaire"
|
17025 |
|
17026 |
+
#: wppa-settings-autosave.php:9233 wppa-settings-autosave.php:9242
|
17027 |
+
#: wppa-settings-autosave.php:9251 wppa-settings-autosave.php:9260
|
17028 |
msgid "This setting requires the plugin myCRED or Cube Points"
|
17029 |
msgstr "Ce paramètre nécessite le plugin myCRED ou Cube Points"
|
17030 |
|
17031 |
+
#: wppa-settings-autosave.php:9235 wppa-settings-autosave.php:9244
|
17032 |
msgid "points per comment"
|
17033 |
msgstr "points par commentaire"
|
17034 |
|
17035 |
+
#: wppa-settings-autosave.php:9240
|
17036 |
msgid "myCRED / Cube Points: Appr Comment"
|
17037 |
msgstr "myCRED / Cube Points: Appr commentaire"
|
17038 |
|
17039 |
+
#: wppa-settings-autosave.php:9241
|
17040 |
msgid "Number of points for receiving an approved comment"
|
17041 |
msgstr "Nombre de points pour recevoir un commentaire approuvé"
|
17042 |
|
17043 |
+
#: wppa-settings-autosave.php:9249
|
17044 |
msgid "myCRED / Cube Points: Rating"
|
17045 |
msgstr "myCRED / Cube Points: notation"
|
17046 |
|
17047 |
+
#: wppa-settings-autosave.php:9250
|
17048 |
msgid "Number of points for a rating vote"
|
17049 |
msgstr "Nombre de points pour un vote de cote"
|
17050 |
|
17051 |
+
#: wppa-settings-autosave.php:9253
|
17052 |
msgid "points per vote"
|
17053 |
msgstr "points par vote"
|
17054 |
|
17055 |
+
#: wppa-settings-autosave.php:9258
|
17056 |
msgid "myCRED / Cube Points: Upload"
|
17057 |
msgstr "myCRED / Cube Points : Télécharger"
|
17058 |
|
17059 |
+
#: wppa-settings-autosave.php:9259
|
17060 |
msgid "Number of points for a successfull frontend upload"
|
17061 |
msgstr "Nombre de points pour un téléchargement réussi frontend"
|
17062 |
|
17063 |
+
#: wppa-settings-autosave.php:9262
|
17064 |
msgid "points per upload"
|
17065 |
msgstr "points par chargement"
|
17066 |
|
17067 |
+
#: wppa-settings-autosave.php:9267
|
17068 |
msgid "Use SCABN"
|
17069 |
msgstr "Utiliser SCABN"
|
17070 |
|
17071 |
+
#: wppa-settings-autosave.php:9268
|
17072 |
msgid "Use the wppa interface to Simple Cart & Buy Now plugin."
|
17073 |
msgstr ""
|
17074 |
"Utiliser l'interface WPPA avec le greffon Simple Cart & Buy Now (SCABN)."
|
17075 |
|
17076 |
+
#: wppa-settings-autosave.php:9269
|
17077 |
msgid ""
|
17078 |
"If checked, the shortcode to use for the \"add to cart\" button in photo "
|
17079 |
"descriptions is [cart ...]"
|
17081 |
"Si coché, le shortcode à utiliser pour le bouton \"Ajouter au panier\" dans "
|
17082 |
"les descriptions photo est [cart ...]"
|
17083 |
|
17084 |
+
#: wppa-settings-autosave.php:9270
|
17085 |
msgid ""
|
17086 |
"as opposed to [scabn ...] for the original scabn \"add to cart\" button."
|
17087 |
msgstr ""
|
17088 |
"au lieu de [scabn ...] pour le bouton original \"Ajouter au panier\" de "
|
17089 |
"SCABN."
|
17090 |
|
17091 |
+
#: wppa-settings-autosave.php:9271
|
17092 |
msgid "The shortcode for the check-out page is still [scabn]"
|
17093 |
msgstr "Le shortcode pour la page de paiement final reste [scabn]"
|
17094 |
|
17095 |
+
#: wppa-settings-autosave.php:9272
|
17096 |
msgid ""
|
17097 |
"The arguments are the same, the defaults are: name = photoname, price = 0.01."
|
17098 |
msgstr ""
|
17099 |
"Les arguments sont les mêmes, les réglages par défaut sont: name = "
|
17100 |
"photoname, price = 0.01."
|
17101 |
|
17102 |
+
#: wppa-settings-autosave.php:9273
|
17103 |
msgid ""
|
17104 |
"Supplying the price should be sufficient; supply a name only when it differs "
|
17105 |
"from the photo name."
|
17107 |
"Définir le prix devrait être suffisant; définissez un nom seulement s'il "
|
17108 |
"diffère de celui de la photo."
|
17109 |
|
17110 |
+
#: wppa-settings-autosave.php:9274
|
17111 |
msgid "This shortcode handler will also work with Ajax enabled."
|
17112 |
msgstr "Le shortcode fonctionnera même lorsque Ajax est activé."
|
17113 |
|
17114 |
+
#: wppa-settings-autosave.php:9275
|
17115 |
msgid ""
|
17116 |
"Using this interface makes sure that the item urls and callback action urls "
|
17117 |
"are correct."
|
17119 |
"Si vous utilisez cette interface, s'assurer que les items URLs et URLs de "
|
17120 |
"callback sont correctes."
|
17121 |
|
17122 |
+
#: wppa-settings-autosave.php:9282
|
17123 |
msgid "Use CM Tooltip Glossary"
|
17124 |
msgstr "Utiliser CM Tooltip Glossary"
|
17125 |
|
17126 |
+
#: wppa-settings-autosave.php:9283
|
17127 |
msgid "Use plugin CM Tooltip Glossary on photo and album descriptions."
|
17128 |
msgstr ""
|
17129 |
"Utiliser le greffon CM Tooltip Glossary sur les descriptions d'albums et de "
|
17130 |
"photos."
|
17131 |
|
17132 |
+
#: wppa-settings-autosave.php:9284
|
17133 |
msgid ""
|
17134 |
"You MUST set Table IV-A13: Defer javascript, also if you do not want this "
|
17135 |
"plugin to act on album and photo descriptions!"
|
17137 |
"Vous DEVEZ régler table IV-A13: Report JavaScript, si vous ne voulez pas que "
|
17138 |
"ce greffon affecte les descriptions d'albums et de photos!"
|
17139 |
|
17140 |
+
#: wppa-settings-autosave.php:9292
|
17141 |
msgid "External services related settings and actions."
|
17142 |
msgstr "Réglages et actions pour les services extérieurs."
|
17143 |
|
17144 |
+
#: wppa-settings-autosave.php:9294
|
17145 |
msgid "QR Code widget size"
|
17146 |
msgstr "Taille du widget QR Code"
|
17147 |
|
17148 |
+
#: wppa-settings-autosave.php:9295
|
17149 |
msgid "The size of the QR code display."
|
17150 |
msgstr "La taille de l'affichage du QR code."
|
17151 |
|
17152 |
+
#: wppa-settings-autosave.php:9303
|
17153 |
msgid "QR color"
|
17154 |
msgstr "Couleur QR code"
|
17155 |
|
17156 |
+
#: wppa-settings-autosave.php:9304
|
17157 |
msgid "The display color of the qr code (dark)"
|
17158 |
msgstr "La couleur d'arrière plan du QR code (sombre)"
|
17159 |
|
17160 |
+
#: wppa-settings-autosave.php:9305
|
17161 |
msgid "This color MUST be given in hexadecimal format!"
|
17162 |
msgstr "La couleur DOIT être donnée au format hexadecimal!"
|
17163 |
|
17164 |
+
#: wppa-settings-autosave.php:9312
|
17165 |
msgid "QR background color"
|
17166 |
msgstr "Couleur de fond de QR Code"
|
17167 |
|
17168 |
+
#: wppa-settings-autosave.php:9313
|
17169 |
msgid "The background color of the qr code (light)"
|
17170 |
msgstr "La couleur d'arrière plan du QR code (clair)"
|
17171 |
|
17172 |
+
#: wppa-settings-autosave.php:9321
|
17173 |
msgid "CDN Service"
|
17174 |
msgstr "Service CDN"
|
17175 |
|
17176 |
+
#: wppa-settings-autosave.php:9322
|
17177 |
msgid "Select a CDN Service you want to use."
|
17178 |
msgstr "Choisir le service CDN que vous voulez utiliser."
|
17179 |
|
17180 |
+
#: wppa-settings-autosave.php:9325
|
17181 |
msgid "Cloudinary in maintenance mode"
|
17182 |
msgstr "Cloudinary en mode maintenance"
|
17183 |
|
17184 |
+
#: wppa-settings-autosave.php:9335
|
17185 |
msgid "Cloud name"
|
17186 |
msgstr "Nom du nuage"
|
17187 |
|
17188 |
+
#: wppa-settings-autosave.php:9344
|
17189 |
msgid "API key"
|
17190 |
msgstr "Clé API"
|
17191 |
|
17192 |
+
#: wppa-settings-autosave.php:9353
|
17193 |
msgid "API secret"
|
17194 |
msgstr "Secret API"
|
17195 |
|
17196 |
+
#: wppa-settings-autosave.php:9362
|
17197 |
msgid "Delete all"
|
17198 |
msgstr "Tout effacer"
|
17199 |
|
17200 |
+
#: wppa-settings-autosave.php:9363
|
17201 |
msgid "Deletes them all !!!"
|
17202 |
msgstr "Cela les efface tous !!!"
|
17203 |
|
17204 |
+
#: wppa-settings-autosave.php:9371
|
17205 |
msgid "Delete derived images"
|
17206 |
msgstr "Effacer les images dérivées"
|
17207 |
|
17208 |
+
#: wppa-settings-autosave.php:9372
|
17209 |
msgid "Deletes all derived images !!!"
|
17210 |
msgstr "Efface toutes les images dérivées !!!"
|
17211 |
|
17212 |
+
#: wppa-settings-autosave.php:9380
|
17213 |
msgid "Max lifetime"
|
17214 |
msgstr "Temps de vie maximum"
|
17215 |
|
17216 |
+
#: wppa-settings-autosave.php:9381
|
17217 |
msgid "Old images from local server, new images from Cloudinary."
|
17218 |
msgstr "Anciennes images du serveur local, nouvelles images de Cloudinary."
|
17219 |
|
17220 |
+
#: wppa-settings-autosave.php:9382
|
17221 |
msgid ""
|
17222 |
"If NOT set to Forever: You need to run Table VIII-B15 on a regular basis."
|
17223 |
msgstr ""
|
17224 |
"Si NON réglé à Infini: Vous devrez exécuter table VIII-B15 de façon "
|
17225 |
"régulière."
|
17226 |
|
17227 |
+
#: wppa-settings-autosave.php:9384
|
17228 |
msgid "Forever"
|
17229 |
msgstr "Infini"
|
17230 |
|
17231 |
+
#: wppa-settings-autosave.php:9415
|
17232 |
msgid "Cloudinary usage"
|
17233 |
msgstr "Utilisation de Cloudinary"
|
17234 |
|
17235 |
+
#: wppa-settings-autosave.php:9451
|
17236 |
msgid "Cloudinary usage data not available"
|
17237 |
msgstr "Données d'utilisation Cloudinary non disponibles"
|
17238 |
|
17239 |
+
#: wppa-settings-autosave.php:9455
|
17240 |
msgid "Cloudinary routines not installed."
|
17241 |
msgstr "Routines Cloudinary pas installées."
|
17242 |
|
17243 |
+
#: wppa-settings-autosave.php:9466
|
17244 |
msgid "Cloudinary"
|
17245 |
msgstr "Cloudinary"
|
17246 |
|
17247 |
+
#: wppa-settings-autosave.php:9467
|
17248 |
msgid "<span style=\"color:red;\">Requires at least PHP version 5.3</span>"
|
17249 |
msgstr ""
|
17250 |
"<span style=\"color:red;\">Nécessite une version de PHP supérieure ou égale "
|
17251 |
"à 5.3</span>"
|
17252 |
|
17253 |
+
#: wppa-settings-autosave.php:9476
|
17254 |
msgid "GPX Implementation"
|
17255 |
msgstr "Implémentation GPX"
|
17256 |
|
17257 |
+
#: wppa-settings-autosave.php:9477
|
17258 |
msgid "The way the maps are produced."
|
17259 |
msgstr "La méthode de production des cartes."
|
17260 |
|
17261 |
+
#: wppa-settings-autosave.php:9478
|
17262 |
msgid "Select the way the maps are produced."
|
17263 |
msgstr "Choisir la façon dont les cartes sont prosuites."
|
17264 |
|
17265 |
+
#: wppa-settings-autosave.php:9479
|
17266 |
msgid ""
|
17267 |
"When using Google maps GPX viewer plugin, you can not use Ajax (Table IV-A1)"
|
17268 |
msgstr ""
|
17269 |
"Quand vous utilisez le plugin Google maps de visualisation GPX, vous ne "
|
17270 |
"pouvez utiliser Ajax (table IV-A1)"
|
17271 |
|
17272 |
+
#: wppa-settings-autosave.php:9480
|
17273 |
msgid ""
|
17274 |
"When using WPPA+ Embedded code, you can use Ajax, but there are less display "
|
17275 |
"options."
|
17277 |
"Quand vous utilisez la code embarqué WPPA+, vous pouvez utiliser Ajax mais "
|
17278 |
"il y aura alors moins d'options d'affichage."
|
17279 |
|
17280 |
+
#: wppa-settings-autosave.php:9482
|
17281 |
msgid "WPPA+ Embedded code"
|
17282 |
msgstr "Code embarqué WPPA+"
|
17283 |
|
17284 |
+
#: wppa-settings-autosave.php:9482
|
17285 |
msgid "Google maps GPX viewer plugin"
|
17286 |
msgstr "Plugin Google maps de visualisation GPX"
|
17287 |
|
17288 |
+
#: wppa-settings-autosave.php:9490
|
17289 |
msgid "Map height"
|
17290 |
msgstr "Hauteur de la carte"
|
17291 |
|
17292 |
+
#: wppa-settings-autosave.php:9491
|
17293 |
msgid "The height of the map display."
|
17294 |
msgstr "La hauteur de l’affichage de la carte."
|
17295 |
|
17296 |
+
#: wppa-settings-autosave.php:9499
|
17297 |
msgid "Google maps API key"
|
17298 |
msgstr "Clé API Google maps"
|
17299 |
|
17300 |
+
#: wppa-settings-autosave.php:9500
|
17301 |
msgid "Enter your Google maps api key here if you have one."
|
17302 |
msgstr "Entrer votre clé API Google Maps ici si vous en avez une."
|
17303 |
|
17304 |
+
#: wppa-settings-autosave.php:9508
|
17305 |
msgid "GPX Shortcode"
|
17306 |
msgstr "Shortcode GPX"
|
17307 |
|
17308 |
+
#: wppa-settings-autosave.php:9509
|
17309 |
msgid "The shortcode to be used for the gpx feature."
|
17310 |
msgstr "Le shortcode à utiliser pour la fonctionnalité GPX."
|
17311 |
|
17312 |
+
#: wppa-settings-autosave.php:9510
|
17313 |
msgid ""
|
17314 |
"Enter / modify the shortcode to be generated for the gpx plugin. It must "
|
17315 |
"contain w#lat and w#lon as placeholders for the lattitude and longitude."
|
17318 |
"absolument contenir w#lat et w#lon comme paramètre pour la latitude et la "
|
17319 |
"longitude."
|
17320 |
|
17321 |
+
#: wppa-settings-autosave.php:9511
|
17322 |
msgid "This item is required for using Google maps GPX viewer plugin only"
|
17323 |
msgstr ""
|
17324 |
"Cet item n'est requis que pour le plugin Google maps de visualisation GPX"
|
17325 |
|
17326 |
+
#: wppa-settings-autosave.php:9518
|
17327 |
msgid "Fotomoto"
|
17328 |
msgstr "Fotomoto"
|
17329 |
|
17330 |
+
#: wppa-settings-autosave.php:9519
|
17331 |
msgid "Yes, we use Fotomoto on this site. Read the help text!"
|
17332 |
msgstr ""
|
17333 |
"Oui, nous utilisons Fotomoto sur ce site. Jetez un œil au texte d'aide!"
|
17334 |
|
17335 |
+
#: wppa-settings-autosave.php:9520
|
17336 |
msgid "In order to function properly:"
|
17337 |
msgstr "Pour fonctionner correctement:"
|
17338 |
|
17339 |
+
#: wppa-settings-autosave.php:9521
|
17340 |
msgid "1. Get yourself a Fotomoto account."
|
17341 |
msgstr "1. Créez-vous un compte Fotomoto."
|
17342 |
|
17343 |
+
#: wppa-settings-autosave.php:9522
|
17344 |
msgid ""
|
17345 |
"2. Install the Fotomoto plugin, enter the \"Fotomoto Site Key:\" and check "
|
17346 |
"the \"Use API Mode:\" checkbox."
|
17348 |
"2. Installez le plugin Fotomoto, entrez la \"Fotomoto Site Key:\" et "
|
17349 |
"vérifiez la case à cocher \"Use API Mode:\"."
|
17350 |
|
17351 |
+
#: wppa-settings-autosave.php:9523
|
17352 |
msgid "Note: Do NOT Disable the Custom box in Table II-B14."
|
17353 |
msgstr "Note: Ne désactivez PAS la boîte personnalisée dans la table II-B14."
|
17354 |
|
17355 |
+
#: wppa-settings-autosave.php:9524
|
17356 |
msgid "Do NOT remove the text w#fotomoto from the Custombox ( Table II-B15 )."
|
17357 |
msgstr ""
|
17358 |
"Ne PAS enlever le texte w#fotomoto de la boîte personnalisée ( table II-"
|
17359 |
"B15 )."
|
17360 |
|
17361 |
+
#: wppa-settings-autosave.php:9532
|
17362 |
msgid "Fotomoto fontsize"
|
17363 |
msgstr "Taille de la police de caractère Fotomoto"
|
17364 |
|
17365 |
+
#: wppa-settings-autosave.php:9533
|
17366 |
msgid "Fontsize for the Fotomoto toolbar."
|
17367 |
msgstr "Taille de police pour la barre d'outils Fotomoto."
|
17368 |
|
17369 |
+
#: wppa-settings-autosave.php:9534
|
17370 |
msgid ""
|
17371 |
"If you set it here, it overrules a possible setting for font-size in ."
|
17372 |
"FotomotoToolbarClass on the Fotomoto dashboard."
|
17374 |
"Si vous le réglez ici, cela contourne un réglage possible de la taille de "
|
17375 |
"police dans .FotomotoToolbarClass dans le panneau de contrôle Fotomoto."
|
17376 |
|
17377 |
+
#: wppa-settings-autosave.php:9542
|
17378 |
msgid "Hide toolbar on running slideshows"
|
17379 |
msgstr "Cacher la barre d'outils sur les diaporamas actifs"
|
17380 |
|
17381 |
+
#: wppa-settings-autosave.php:9543
|
17382 |
msgid "The Fotomoto toolbar will re-appear when the slidshow stops."
|
17383 |
msgstr "La barre Fotomoto réapparaîtra quand le diaporama s'arrêtera."
|
17384 |
|
17385 |
+
#: wppa-settings-autosave.php:9550
|
17386 |
msgid "Fotomoto minwidth"
|
17387 |
msgstr "Largeur mini de Fotomoto"
|
17388 |
|
17389 |
+
#: wppa-settings-autosave.php:9551
|
17390 |
msgid "Minimum width to display Fotomoto toolbar."
|
17391 |
msgstr "Largeur d’affichage minimum de la barre Fotomoto."
|
17392 |
|
17393 |
+
#: wppa-settings-autosave.php:9552
|
17394 |
msgid ""
|
17395 |
"The display of the Fotomoto Toolbar will be suppressed on smaller slideshows."
|
17396 |
msgstr ""
|
17397 |
"L’affichage de la barre Fotomoto sera supprimé sur les diaporamas plus "
|
17398 |
"petits."
|
17399 |
|
17400 |
+
#: wppa-settings-autosave.php:9559
|
17401 |
msgid "Image Magick"
|
17402 |
msgstr "Image Magick"
|
17403 |
|
17404 |
+
#: wppa-settings-autosave.php:9560
|
17405 |
msgid "Absulute path to the ImageMagick commands"
|
17406 |
msgstr "Absulute chemin d’accès pour les commandes de ImageMagick"
|
17407 |
|
17408 |
+
#: wppa-settings-autosave.php:9560
|
17409 |
msgid "experimental"
|
17410 |
msgstr "expérimental"
|
17411 |
|
17412 |
+
#: wppa-settings-autosave.php:9561
|
17413 |
msgid ""
|
17414 |
"If you want to use ImageMagick, enter the absolute path to the ImageMagick "
|
17415 |
"commands"
|
17417 |
"Si vous souhaitez utiliser ImageMagick, entrez le chemin d’accès absolu pour "
|
17418 |
"les commandes de ImageMagick"
|
17419 |
|
17420 |
+
#: wppa-settings-autosave.php:9568
|
17421 |
#, fuzzy
|
17422 |
msgid "Photo shortcode related settings"
|
17423 |
msgstr "paramètres photo de shortcode liés"
|
17424 |
|
17425 |
+
#: wppa-settings-autosave.php:9570
|
17426 |
#, fuzzy
|
17427 |
msgid "Enable shortcode [photo ..]"
|
17428 |
msgstr "Activer shortcode [photo ..]"
|
17429 |
|
17430 |
+
#: wppa-settings-autosave.php:9571
|
17431 |
#, fuzzy
|
17432 |
msgid "Make the use of shortcode [photo ..] possible"
|
17433 |
msgstr "Faire l'utilisation de shortcode [photo ..] possible"
|
17434 |
|
17435 |
+
#: wppa-settings-autosave.php:9572
|
17436 |
#, fuzzy
|
17437 |
msgid "Only disbale this when there is a conflict with another plugin"
|
17438 |
msgstr "Seulement disbale quand il y a un conflit avec un autre plugin"
|
17439 |
|
17440 |
+
#: wppa-settings-autosave.php:9579
|
17441 |
msgid "Single image type"
|
17442 |
msgstr "Type d'image seule"
|
17443 |
|
17444 |
+
#: wppa-settings-autosave.php:9580
|
17445 |
#, fuzzy
|
17446 |
msgid "Specify the single image type the shortcode [photo ..] should show."
|
17447 |
msgstr ""
|
17448 |
"Spécifiez l'image unique tapez le shortcode [photo ..] devrait montrer."
|
17449 |
|
17450 |
+
#: wppa-settings-autosave.php:9583 wppa-tinymce-shortcodes.php:174
|
17451 |
msgid "A plain single photo"
|
17452 |
msgstr "A plain single photo"
|
17453 |
|
17454 |
+
#: wppa-settings-autosave.php:9584 wppa-tinymce-shortcodes.php:175
|
17455 |
msgid "A single photo with caption"
|
17456 |
msgstr "Une photo seule avec légende"
|
17457 |
|
17458 |
+
#: wppa-settings-autosave.php:9585 wppa-tinymce-shortcodes.php:176
|
17459 |
#, fuzzy
|
17460 |
msgid "A single photo with extended caption"
|
17461 |
msgstr "Une seule photo avec la légende étendue"
|
17462 |
|
17463 |
+
#: wppa-settings-autosave.php:9586 wppa-tinymce-shortcodes.php:177
|
17464 |
msgid "A single photo in the style of a slideshow"
|
17465 |
msgstr "Une photo seule avec le style du diaporama"
|
17466 |
|
17467 |
+
#: wppa-settings-autosave.php:9598 wppa-upload.php:282
|
17468 |
msgid "Size"
|
17469 |
msgstr "Taille"
|
17470 |
|
17471 |
+
#: wppa-settings-autosave.php:9599
|
17472 |
#, fuzzy
|
17473 |
msgid "Specify the size (width) of the image."
|
17474 |
msgstr "Indiquez la taille (largeur) de l'image."
|
17475 |
|
17476 |
+
#: wppa-settings-autosave.php:9600
|
17477 |
#, fuzzy
|
17478 |
msgid "Use the same syntax as in the [wppa size=\"..\"] shortcode"
|
17479 |
msgstr "Utilisez la même syntaxe que dans le [size LPPT = \"..\"] shortcode"
|
17480 |
|
17481 |
+
#: wppa-settings-autosave.php:9601
|
17482 |
#, fuzzy
|
17483 |
msgid ""
|
17484 |
"Examples: 350 for a fixed width of 350 pixels, or: 0.75 for a responsive "
|
17489 |
"affichage sensible de 75% width, ou: auto, 350 pour réactif, avec un maximum "
|
17490 |
"de 350 pixels."
|
17491 |
|
17492 |
+
#: wppa-settings-autosave.php:9608
|
17493 |
msgid "Align"
|
17494 |
msgstr "Alignement"
|
17495 |
|
17496 |
+
#: wppa-settings-autosave.php:9609
|
17497 |
#, fuzzy
|
17498 |
msgid "Specify the alignment of the image."
|
17499 |
msgstr "Spécifiez l'alignement de l'image."
|
17500 |
|
17501 |
+
#: wppa-settings-autosave.php:9649
|
17502 |
msgid "Table X:"
|
17503 |
msgstr "Table X:"
|
17504 |
|
17505 |
+
#: wppa-settings-autosave.php:9649
|
17506 |
msgid "IPTC Configuration:"
|
17507 |
msgstr "Configuration IPTC:"
|
17508 |
|
17509 |
+
#: wppa-settings-autosave.php:9650
|
17510 |
msgid "This table defines the IPTC configuration"
|
17511 |
msgstr "Cette table règle la configuration de IPTC"
|
17512 |
|
17513 |
+
#: wppa-settings-autosave.php:9681 wppa-settings-autosave.php:9749
|
17514 |
msgid "Display"
|
17515 |
msgstr "Afficher"
|
17516 |
|
17517 |
+
#: wppa-settings-autosave.php:9681 wppa-settings-autosave.php:9749
|
17518 |
msgid "Hide"
|
17519 |
msgstr "Cacher"
|
17520 |
|
17521 |
+
#: wppa-settings-autosave.php:9711
|
17522 |
msgid "Table XI:"
|
17523 |
msgstr "Table XI:"
|
17524 |
|
17525 |
+
#: wppa-settings-autosave.php:9711
|
17526 |
msgid "EXIF Configuration:"
|
17527 |
msgstr "Configuration EXIF:"
|
17528 |
|
17529 |
+
#: wppa-settings-autosave.php:9712
|
17530 |
msgid "This table defines the EXIF configuration"
|
17531 |
msgstr "Cette table règle la configuration d'EXIF"
|
17532 |
|
17533 |
+
#: wppa-settings-autosave.php:9735
|
17534 |
msgid ""
|
17535 |
"Function exif_read_data() does not exist. This means that <b>EXIF</b> is not "
|
17536 |
"enabled. If you want to use <b>EXIF</b> data, ask your hosting provider to "
|
17541 |
"à votre hébergeur d'ajouter <b>'--enable-exif'</b> à la <b>commande de "
|
17542 |
"configuration</b> de PHP."
|
17543 |
|
17544 |
+
#: wppa-settings-autosave.php:9779
|
17545 |
msgid "Table XII:"
|
17546 |
msgstr "Table XII:"
|
17547 |
|
17548 |
+
#: wppa-settings-autosave.php:9779
|
17549 |
msgid "WPPA+ and PHP Configuration:"
|
17550 |
msgstr "Configuration WPPA+ et PHP:"
|
17551 |
|
17552 |
+
#: wppa-settings-autosave.php:9780
|
17553 |
msgid ""
|
17554 |
"This table lists all WPPA+ constants and PHP server configuration parameters "
|
17555 |
"and is read only"
|
17557 |
"Cette table (qui est en lecture seule) liste toutes les constantes WPPA+ et "
|
17558 |
"les paramètres de configuration du serveur PHP"
|
17559 |
|
17560 |
+
#: wppa-settings-autosave.php:9795
|
17561 |
msgid "Value"
|
17562 |
msgstr "Valeur"
|
17563 |
|
17564 |
+
#: wppa-settings-autosave.php:9801
|
17565 |
msgid "Albums db table name."
|
17566 |
msgstr "Nom de la table albums dans la base de données."
|
17567 |
|
17568 |
+
#: wppa-settings-autosave.php:9813
|
17569 |
msgid "Photos db table name."
|
17570 |
msgstr "Nom de la table photos dans la base de données."
|
17571 |
|
17572 |
+
#: wppa-settings-autosave.php:9825
|
17573 |
msgid "Rating db table name."
|
17574 |
msgstr "Nom de la table votes dans la base de données."
|
17575 |
|
17576 |
+
#: wppa-settings-autosave.php:9837
|
17577 |
msgid "Comments db table name."
|
17578 |
msgstr "Nom de la table commentaires dans la base de données."
|
17579 |
|
17580 |
+
#: wppa-settings-autosave.php:9849
|
17581 |
msgid "IPTC db table name."
|
17582 |
msgstr "Nom de la table IPTC dans la base de donnée."
|
17583 |
|
17584 |
+
#: wppa-settings-autosave.php:9861
|
17585 |
msgid "EXIF db table name."
|
17586 |
msgstr "Nom de la table EXIF dans la base de donnée."
|
17587 |
|
17588 |
+
#: wppa-settings-autosave.php:9873 wppa-settings-autosave.php:9885
|
17589 |
msgid "Index db table name."
|
17590 |
msgstr "Nom de la table Index dans la base de donnée."
|
17591 |
|
17592 |
+
#: wppa-settings-autosave.php:9897
|
17593 |
msgid "Plugins main file name."
|
17594 |
msgstr "Nom du fichier principal des greffons (plugins)."
|
17595 |
|
17596 |
+
#: wppa-settings-autosave.php:9904
|
17597 |
msgid "WP absolute path."
|
17598 |
msgstr "Chemin d’accès absolu de WP."
|
17599 |
|
17600 |
+
#: wppa-settings-autosave.php:9910
|
17601 |
msgid "ABSPATH windows proof"
|
17602 |
msgstr "ABSPATH windows proof"
|
17603 |
|
17604 |
+
#: wppa-settings-autosave.php:9916
|
17605 |
msgid "Path to plugins directory."
|
17606 |
msgstr "Chemin du répertoire des greffons (plugins)."
|
17607 |
|
17608 |
+
#: wppa-settings-autosave.php:9922
|
17609 |
msgid "Plugins directory name."
|
17610 |
msgstr "Nom du répertoire des greffons (plugins)."
|
17611 |
|
17612 |
+
#: wppa-settings-autosave.php:9928
|
17613 |
msgid "Plugins directory url."
|
17614 |
msgstr "URL du répertoire des greffons (plugins)."
|
17615 |
|
17616 |
+
#: wppa-settings-autosave.php:9934
|
17617 |
msgid "The relative upload directory."
|
17618 |
msgstr "Chemin relatif du répertoire de chargement (upload)."
|
17619 |
|
17620 |
+
#: wppa-settings-autosave.php:9940
|
17621 |
msgid "The upload directory path."
|
17622 |
msgstr "Chemin du répertoire de chargement (upload)."
|
17623 |
|
17624 |
+
#: wppa-settings-autosave.php:9946
|
17625 |
msgid "The upload directory url."
|
17626 |
msgstr "URL du répertoire de chargement (upload)."
|
17627 |
|
17628 |
+
#: wppa-settings-autosave.php:9952
|
17629 |
msgid "The relative depot directory."
|
17630 |
msgstr "Chemin relatif du répertoire de dépôt."
|
17631 |
|
17632 |
+
#: wppa-settings-autosave.php:9958
|
17633 |
msgid "The depot directory path."
|
17634 |
msgstr "Chemin du répertoire de dépôt."
|
17635 |
|
17636 |
+
#: wppa-settings-autosave.php:9964
|
17637 |
msgid "The depot directory url."
|
17638 |
msgstr "URL du répertoire de dépôt."
|
17639 |
|
17640 |
+
#: wppa-settings-autosave.php:9970
|
17641 |
msgid "The path to wp-content."
|
17642 |
msgstr "Chemin vers wp-content."
|
17643 |
|
17644 |
+
#: wppa-settings-autosave.php:9976
|
17645 |
msgid "WP Content url."
|
17646 |
msgstr "URL de contenu WP."
|
17647 |
|
17648 |
+
#: wppa-settings-autosave.php:9982
|
17649 |
msgid "WP Base upload dir."
|
17650 |
msgstr "Répertoire de chargement de WP."
|
17651 |
|
17652 |
+
#: wppa-settings-autosave.php:10002
|
17653 |
#, php-format
|
17654 |
msgid "<br />Memory used on this page: %6.2f Mb."
|
17655 |
msgstr "<br />Mémoire utilisée sur cette page: %6.2f Mb."
|
17656 |
|
17657 |
+
#: wppa-settings-autosave.php:10003
|
17658 |
#, php-format
|
17659 |
msgid "<br />There are %d settings and %d runtime parameters."
|
17660 |
msgstr "<br />Il y a %d régalges et %d paramètres de runtime."
|
17661 |
|
17662 |
+
#: wppa-settings-autosave.php:10271 wppa-settings-autosave.php:10291
|
17663 |
+
#: wppa-settings-autosave.php:10312
|
17664 |
msgid "Warning!"
|
17665 |
msgstr "Attention!"
|
17666 |
|
17667 |
+
#: wppa-settings-autosave.php:10292 wppa-settings-autosave.php:10312
|
17668 |
msgid "Please read the help"
|
17669 |
msgstr "Veuillez consulter l'aide"
|
17670 |
|
17671 |
+
#: wppa-settings-autosave.php:10523
|
17672 |
msgid "Show!"
|
17673 |
msgstr "Montrer!"
|
17674 |
|
17675 |
+
#: wppa-settings-autosave.php:10543
|
17676 |
msgid "Not done yet"
|
17677 |
msgstr "Pas encore fait"
|
17678 |
|
17679 |
+
#: wppa-settings-autosave.php:10550
|
17680 |
msgid "Start as cron job"
|
17681 |
msgstr "Commencez comme tâche cron"
|
17682 |
|
17683 |
+
#: wppa-settings-autosave.php:10555 wppa-settings-autosave.php:10594
|
17684 |
msgid "Locked!"
|
17685 |
msgstr "Verrouillé!"
|
17686 |
|
17687 |
+
#: wppa-settings-autosave.php:10565
|
17688 |
msgid "Crashed!"
|
17689 |
msgstr "Écrasé!"
|
17690 |
|
17691 |
+
#: wppa-settings-autosave.php:10580
|
17692 |
msgid "Click me to resume"
|
17693 |
msgstr "Cliquez-moi pour reprendre"
|
17694 |
|
17695 |
+
#: wppa-settings-autosave.php:10589
|
17696 |
msgid "Start!"
|
17697 |
msgstr "Démarrer!"
|
17698 |
|
17699 |
+
#: wppa-settings-autosave.php:10630
|
17700 |
msgid ""
|
17701 |
"You can not have popup and lightbox on thumbnails at the same time. Uncheck "
|
17702 |
"either Table IV-C8 or choose a different linktype in Table VI-2."
|
17705 |
"Décochez soit table IV-C8 ou choisissez un type de lien différent dans table "
|
17706 |
"VI-2."
|
17707 |
|
17708 |
+
#: wppa-settings-autosave.php:10633
|
17709 |
#, fuzzy
|
17710 |
msgid ""
|
17711 |
"It is important that you select a page that contains at least [wppa][/wppa]."
|
17713 |
"Il est important que vous sélectionnez une page qui contient au moins [LPPT] "
|
17714 |
"[/ LPPT]."
|
17715 |
|
17716 |
+
#: wppa-settings-autosave.php:10634
|
17717 |
msgid ""
|
17718 |
"If you ommit this, the link will not work at all or simply refresh the "
|
17719 |
"(home)page."
|
17790 |
msgid "Voted for me"
|
17791 |
msgstr "Ont voté pour moi"
|
17792 |
|
17793 |
+
#: wppa-setup.php:1555
|
17794 |
msgid "NEW"
|
17795 |
msgstr "NOUVEAU"
|
17796 |
|
17797 |
+
#: wppa-setup.php:1557
|
17798 |
msgid "MODIFIED"
|
17799 |
msgstr "MODIFIE"
|
17800 |
|
17801 |
+
#: wppa-setup.php:1608
|
17802 |
msgid "Search in current section"
|
17803 |
msgstr "Rechercher dans la section courante"
|
17804 |
|
17805 |
+
#: wppa-setup.php:1609
|
17806 |
msgid "Search in current results"
|
17807 |
msgstr "Rechercher dans les résultats courants"
|
17808 |
|
17809 |
+
#: wppa-setup.php:1695
|
17810 |
msgid "Type your custom url here"
|
17811 |
msgstr "Tapez votre URL personnalisée ici"
|
17812 |
|
17813 |
+
#: wppa-setup.php:1696
|
17814 |
msgid "Type the title here"
|
17815 |
msgstr "Entrez ici le titre de la page"
|
17816 |
|
17817 |
+
#: wppa-setup.php:1715 wppa-topten-widget.php:13 wppa-topten-widget.php:48
|
17818 |
#: wppa-topten-widget.php:310
|
17819 |
msgid "Top Ten Photos"
|
17820 |
msgstr "Meilleures photos"
|
17821 |
|
17822 |
+
#: wppa-setup.php:1718 wppa-thumbnail-widget.php:13
|
17823 |
#: wppa-thumbnail-widget.php:166
|
17824 |
msgid "Thumbnail Photos"
|
17825 |
msgstr "Vignettes"
|
17826 |
|
17827 |
+
#: wppa-setup.php:1721
|
17828 |
msgid "Search photos"
|
17829 |
msgstr "Rechercher dans les photos"
|
17830 |
|
17831 |
+
#: wppa-setup.php:1762
|
17832 |
msgid ""
|
17833 |
"The uploads directory does not exist, please do a regular WP upload first."
|
17834 |
msgstr ""
|
17835 |
"Le répertoire de chargement (uploads) n'existe pas, veuillez d'abord faire "
|
17836 |
"un chargement basique via WordPress."
|
17837 |
|
17838 |
+
#: wppa-setup.php:1766
|
17839 |
msgid "Successfully created uploads directory."
|
17840 |
msgstr "Répertoire de chargement (uploads) créé avec succès."
|
17841 |
|
17842 |
+
#: wppa-setup.php:1777
|
17843 |
msgid "Could not create the wppa directory."
|
17844 |
msgstr "Impossible de créer le répertoire WPPA."
|
17845 |
|
17846 |
+
#: wppa-setup.php:1781
|
17847 |
msgid "Successfully created wppa directory."
|
17848 |
msgstr "Répertoire WPPA créé avec succès."
|
17849 |
|
17850 |
+
#: wppa-setup.php:1791
|
17851 |
msgid "Could not create the wppa thumbs directory."
|
17852 |
msgstr "Impossible de créer le répertoire de vignettes WPPA."
|
17853 |
|
17854 |
+
#: wppa-setup.php:1795
|
17855 |
msgid "Successfully created wppa thumbs directory."
|
17856 |
msgstr "Répertoire des vignettes WPPA créé avec succès."
|
17857 |
|
17858 |
+
#: wppa-setup.php:1805
|
17859 |
msgid "Could not create the wppa watermarks directory."
|
17860 |
msgstr "Impossible de créer le répertoire des filigranes WPPA."
|
17861 |
|
17862 |
+
#: wppa-setup.php:1809
|
17863 |
msgid "Successfully created wppa watermarks directory."
|
17864 |
msgstr "Répertoire des filigranes WPPA créé avec succès."
|
17865 |
|
17866 |
+
#: wppa-setup.php:1819
|
17867 |
msgid "Could not create the wppa fonts directory."
|
17868 |
msgstr "Impossible de créer le répertoire de fontes WPPA."
|
17869 |
|
17870 |
+
#: wppa-setup.php:1823
|
17871 |
msgid "Successfully created wppa fonts directory."
|
17872 |
msgstr "Répertoire de fontes WPPA créé avec succès."
|
17873 |
|
17874 |
+
#: wppa-setup.php:1835
|
17875 |
msgid "Unable to create depot directory."
|
17876 |
msgstr "Impossible de créer le répertoire de dépôt WPPA."
|
17877 |
|
17878 |
+
#: wppa-setup.php:1839
|
17879 |
msgid "Successfully created wppa depot directory."
|
17880 |
msgstr "Répertoire de dépôt WPPA créé avec succès."
|
17881 |
|
17882 |
+
#: wppa-setup.php:1850
|
17883 |
msgid "Unable to create user depot directory"
|
17884 |
msgstr "Impossible de créer le répertoire de dépôt utilisateur"
|
17885 |
|
17886 |
+
#: wppa-setup.php:1854
|
17887 |
msgid "Successfully created wppa user depot directory."
|
17888 |
msgstr "Répertoire de dépôt utilisateur WPPA créé avec succès."
|
17889 |
|
17890 |
+
#: wppa-setup.php:1864
|
17891 |
msgid "Unable to create temp directory"
|
17892 |
msgstr "Impossible de créer le répertoire temporaire"
|
17893 |
|
17894 |
+
#: wppa-setup.php:1868
|
17895 |
msgid "Successfully created temp directory."
|
17896 |
msgstr "Répertoire temporaire créé avec succès."
|
17897 |
|
17898 |
+
#: wppa-setup.php:1876
|
17899 |
#, php-format
|
17900 |
msgid ""
|
17901 |
"Ask your administrator to give you more rights, or create <b>%s</b> manually "
|
17904 |
"Demander à votre administrateur de vous donner plus de droits, ou créer <b>"
|
17905 |
"%s</b> manuellement en utilisant un logiciel FTP."
|
17906 |
|
17907 |
+
#: wppa-setup.php:1978
|
17908 |
msgid "Default photo album for"
|
17909 |
msgstr "Album par défaut pour"
|
17910 |
|
18826 |
msgid "Upload a single photo"
|
18827 |
msgstr "Uploader une seule photo"
|
18828 |
|
18829 |
+
#: wppa-upload.php:204 wppa-upload.php:349 wppa-upload.php:426
|
18830 |
msgid "Please select an album"
|
18831 |
msgstr "Sélectionner un album"
|
18832 |
|
18877 |
"Vous ne pourrez faire de la sélection multiple qu'avec un navigateur qui "
|
18878 |
"supporte HTML-5. ( La plupart des navigateurs modernes )"
|
18879 |
|
18880 |
+
#: wppa-upload.php:270 wppa-upload.php:279 wppa-upload.php:395
|
18881 |
msgid "Selected Files:"
|
18882 |
msgstr "Fichiers sélectionnés:"
|
18883 |
|
18905 |
msgid "Upload Multiple Photos"
|
18906 |
msgstr "Charger photos multiples"
|
18907 |
|
18908 |
+
#: wppa-upload.php:366 wppa-upload.php:442
|
18909 |
msgid "After upload: Go to the <b>Edit Album</b> page."
|
18910 |
msgstr "Après le chargement: Aller à la page <b>Modifier l'album</b>."
|
18911 |
|
18912 |
+
#: wppa-upload.php:369 wppa-upload.php:445
|
18913 |
msgid "After upload: Go to the <b>Edit Photos</b> page."
|
18914 |
msgstr "Après le chargement: Aller à la page <b>Modifier les photos</b>."
|
18915 |
|
18916 |
+
#: wppa-upload.php:380
|
18917 |
msgid "Box B:"
|
18918 |
msgstr "Boîte B:"
|
18919 |
|
18920 |
+
#: wppa-upload.php:380
|
18921 |
msgid "Single Photos in multiple selections"
|
18922 |
msgstr "Photo seule, sélection multiple"
|
18923 |
|
18924 |
+
#: wppa-upload.php:382
|
18925 |
#, php-format
|
18926 |
msgid "You can select up to %s photos one by one and upload them at once."
|
18927 |
msgstr ""
|
18928 |
"Vous pouvez sélectionner jusqu'à %s photos une par une et les charger sur le "
|
18929 |
"site."
|
18930 |
|
18931 |
+
#: wppa-upload.php:425
|
18932 |
msgid "Upload Single Photos"
|
18933 |
msgstr "Charger une seule photo"
|
18934 |
|
18935 |
+
#: wppa-upload.php:464
|
18936 |
msgid "Box C:"
|
18937 |
msgstr "Boîte C:"
|
18938 |
|
18939 |
+
#: wppa-upload.php:464
|
18940 |
msgid "Zipped Photos in one selection"
|
18941 |
msgstr "Photos zippées, sélection unique"
|
18942 |
|
18943 |
+
#: wppa-upload.php:466
|
18944 |
#, php-format
|
18945 |
msgid ""
|
18946 |
"You can upload one zipfile. It will be placed in your personal wppa-depot: "
|
18952 |
"<b>Importer photos</b> pour dézipper le fichier et placer les photos dans "
|
18953 |
"l'album désiré (qui doit déjà exister)."
|
18954 |
|
18955 |
+
#: wppa-upload.php:483
|
18956 |
msgid "Upload Zipped Photos"
|
18957 |
msgstr "Charger des photos zippées"
|
18958 |
|
18959 |
+
#: wppa-upload.php:495
|
18960 |
msgid "After upload: Go to the <b>Import Photos</b> page."
|
18961 |
msgstr "Après le chargement: Aller à la page <b>Importer photos</b>."
|
18962 |
|
18963 |
+
#: wppa-upload.php:503
|
18964 |
#, fuzzy
|
18965 |
msgid ""
|
18966 |
"Ask your administrator to upgrade php to version 5.2.7 or later. This will "
|
18969 |
"Demandez à votre administrateur de mettre à jour la version 5.2.7 php ou "
|
18970 |
"version ultérieure. Cela vous permettra de télécharger des photos zippées."
|
18971 |
|
18972 |
+
#: wppa-upload.php:528
|
18973 |
#, php-format
|
18974 |
msgid "Time out. %s photos uploaded in album nr %s."
|
18975 |
msgstr "Timeout. %s photos chargées dans l'album no %s."
|
18976 |
|
18977 |
+
#: wppa-upload.php:549 wppa-upload.php:581
|
18978 |
msgid "Photos Uploaded in album nr"
|
18979 |
msgstr "Photos chargées dans l'album n°"
|
18980 |
|
18981 |
+
#: wppa-upload.php:622
|
18982 |
msgid "Zipfile"
|
18983 |
msgstr "Fichier ZIP"
|
18984 |
|
18985 |
+
#: wppa-upload.php:622
|
18986 |
msgid "sucessfully uploaded."
|
18987 |
msgstr "Photo chargée avec succès."
|
18988 |
|
18989 |
+
#: wppa-upload.php:623
|
18990 |
msgid "during upload."
|
18991 |
msgstr "pendant le chargement."
|
18992 |
|
19013 |
msgid "It has been deleted."
|
19014 |
msgstr "A été effacé."
|
19015 |
|
19016 |
+
#: wppa-utils.php:896
|
19017 |
msgid "Your photo has a new approved comment"
|
19018 |
msgstr "Votre photo a un nouveau commentaire approuvé"
|
19019 |
|
19020 |
+
#: wppa-utils.php:899
|
19021 |
msgid "From:"
|
19022 |
msgstr "De:"
|
19023 |
|
19024 |
+
#: wppa-utils.php:907
|
19025 |
msgid "Approved comment on photo"
|
19026 |
msgstr "Approuvé commentaire sur photo"
|
19027 |
|
19028 |
+
#: wppa-utils.php:954
|
19029 |
#, php-format
|
19030 |
msgid "The visitors email address is: <a href=\"mailto:%s\">%s</a>"
|
19031 |
msgstr "L'adresse email du visiteur est: <a href=\"mailto:%s\">%s</a>"
|
19032 |
|
19033 |
+
#: wppa-utils.php:959
|
19034 |
#, php-format
|
19035 |
msgid "The visitor says his email address is: <a href=\"mailto:%s\">%s</a>"
|
19036 |
msgstr ""
|
19037 |
"Le visiteur dit que son adresse email est: <a href=\"mailto:%s\">%s</a>"
|
19038 |
|
19039 |
+
#: wppa-utils.php:967
|
19040 |
#, php-format
|
19041 |
msgid ""
|
19042 |
"This message is automaticly generated at %s. It is useless to respond to it."
|
19043 |
msgstr ""
|
19044 |
"Ce message est généré automatiquement à %s. Il est inutile d'y répondre."
|
19045 |
|
19046 |
+
#: wppa-utils.php:1053
|
19047 |
#, php-format
|
19048 |
msgid "Time out after processing %s items."
|
19049 |
msgstr "Time out après traitement de %s objets."
|
19050 |
|
19051 |
+
#: wppa-utils.php:1056 wppa-utils.php:1060
|
19052 |
#, php-format
|
19053 |
msgid "Time out after processing %s items. Please restart this operation"
|
19054 |
msgstr "Time out après traitement de %s objets. Recommencer l'opération"
|
19055 |
|
19056 |
+
#: wppa-utils.php:1258
|
19057 |
msgid "Could not delete photo"
|
19058 |
msgstr "Impossible de supprimer la photo"
|
19059 |
|
19060 |
+
#: wppa-utils.php:1260 wppa-utils.php:1267
|
19061 |
msgid "Photo is still in use in post/page"
|
19062 |
msgstr "La photo est encore en cours d'utilisation en post / page"
|
19063 |
|
19064 |
+
#: wppa-utils.php:2009
|
19065 |
msgid "Photo w#id"
|
19066 |
msgstr "Photo w#id"
|
19067 |
|
19068 |
+
#: wppa-utils.php:2181
|
19069 |
msgid "There are no ratings between"
|
19070 |
msgstr "Il n’y a aucune cote entre"
|
19071 |
|
19072 |
+
#: wppa-utils.php:3390
|
19073 |
#, php-format
|
19074 |
msgid "You and %d other person like this"
|
19075 |
msgid_plural "You and %d other people like this"
|
19076 |
msgstr[0] "Vous et %d total autre personne aiment cela."
|
19077 |
msgstr[1] "Vous et %d total autre personnes aiment cela."
|
19078 |
|
19079 |
+
#: wppa-utils.php:3393
|
19080 |
msgid "You are the first one who likes this"
|
19081 |
msgstr "Vous êtes la première personne qui aime ça"
|
19082 |
|
19083 |
+
#: wppa-utils.php:3396
|
19084 |
msgid "Click again if you do no longer like this"
|
19085 |
msgstr "Cliquez à nouveau si vous aime plus comme ceci"
|
19086 |
|
19087 |
+
#: wppa-utils.php:3400
|
19088 |
#, php-format
|
19089 |
msgid "%d person likes this"
|
19090 |
msgid_plural "%d people like this"
|
19091 |
msgstr[0] "%d personne aime ça"
|
19092 |
msgstr[1] "%d personnes aime ça"
|
19093 |
|
19094 |
+
#: wppa-utils.php:3403
|
19095 |
msgid "Be the first one to like this"
|
19096 |
msgstr "Soyez le premier à aimer!"
|
19097 |
|
19098 |
+
#: wppa-utils.php:3409
|
19099 |
#, php-format
|
19100 |
msgid "%d like"
|
19101 |
msgid_plural "%d likes"
|
19150 |
msgid "http://wppa.opajaap.nl/"
|
19151 |
msgstr "http://wppa.opajaap.nl/"
|
19152 |
|
19153 |
+
#~ msgid ""
|
19154 |
+
#~ "If checked, users can upload to their own own albums and --- public --- "
|
19155 |
+
#~ "only."
|
19156 |
+
#~ msgstr ""
|
19157 |
+
#~ "Si elle est cochée, les utilisateurs peuvent télécharger leurs propres "
|
19158 |
+
#~ "albums et --- publique --- seulement."
|
19159 |
+
|
19160 |
+
#~ msgid "Time is out after %d photo deletes. Please redo this operation"
|
19161 |
+
#~ msgstr ""
|
19162 |
+
#~ "Délai dépassé après %d effacement de photos. Veuillez recommencer "
|
19163 |
+
#~ "l'opération"
|
19164 |
+
|
19165 |
#, fuzzy
|
19166 |
#~ msgid "Uer must answer security question."
|
19167 |
#~ msgstr "Uer doit répondre à la question de sécurité."
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== WP Photo Album Plus ===
|
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,41 @@ 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.15 =
|
184 |
|
185 |
= Bug Fixes =
|
@@ -191,7 +226,7 @@ See for additional information: <a href="http://www.wppa.nl/changelog/" >The doc
|
|
191 |
|
192 |
= New Features =
|
193 |
|
194 |
-
*
|
195 |
This feature is still under development. If you see unexpected behaviour, please report it here: https://wordpress.org/support/plugin/wp-photo-album-plus
|
196 |
|
197 |
= Other Changes =
|
1 |
=== WP Photo Album Plus ===
|
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, imagemagick
|
5 |
+
Version: 6.6.17
|
6 |
+
Stable tag: 6.6.17
|
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.17 =
|
184 |
+
|
185 |
+
= Bug Fixes =
|
186 |
+
|
187 |
+
* Default image audiostub.png was missing. Re-added.
|
188 |
+
* When the php ini setting max_execution_time is not set properly, cron jobs will run at least 15 seconds, not just for one item.
|
189 |
+
|
190 |
+
= New Features =
|
191 |
+
|
192 |
+
* ImageMagick Phase II. When ImageMagick is activated, the photo admin page has over a dozen extra manipulation buttons that act instantaneously.
|
193 |
+
|
194 |
+
= Other Changes =
|
195 |
+
|
196 |
+
= 6.6.16 =
|
197 |
+
|
198 |
+
= Bug Fixes =
|
199 |
+
|
200 |
+
* Treecounts on album cover set to 'total' (Table II-E5) did not display the sub-sub-album count on sub-albums. Fixed.
|
201 |
+
* Removed the link to album/photo edit on the upload admin page when the user has no rights to edit.
|
202 |
+
* Fixed the admin bar menu options in case the user has no edit rights.
|
203 |
+
* Rating V was no longer replaced by *. Fixed.
|
204 |
+
* User skips for indexing (Table IX-E18.2) were not processed properly. Fixed.
|
205 |
+
* Upload Box B stopped working at version 6.5.02. Fixed.
|
206 |
+
|
207 |
+
= New Features =
|
208 |
+
|
209 |
+
* You can configure retries for failed mails in Table IX-A10. Retries take place every hour.
|
210 |
+
|
211 |
+
= Other Changes =
|
212 |
+
|
213 |
+
* Downsizing and thumbnail creation by ImageMagick is implemented.
|
214 |
+
* Button text is now reset after frontend upload.
|
215 |
+
* Improved delete album and cleanup deleted photos.
|
216 |
+
* Performance improvements during upload by removing redundant double creating thumbnails.
|
217 |
+
|
218 |
= 6.6.15 =
|
219 |
|
220 |
= Bug Fixes =
|
226 |
|
227 |
= New Features =
|
228 |
|
229 |
+
* ImageMagick phase I. Command interface. See Table IX-K7. Implemented: rotation of non-standard orientation, rotate and flip on the photo admin page.
|
230 |
This feature is still under development. If you see unexpected behaviour, please report it here: https://wordpress.org/support/plugin/wp-photo-album-plus
|
231 |
|
232 |
= Other Changes =
|
wppa-admin-functions.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* gp admin functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -382,116 +382,87 @@ global $wpdb;
|
|
382 |
$img = getimagesize( $file );
|
383 |
if ( ! $img ) return $err;
|
384 |
|
385 |
-
//
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
wppa_image_magic( 'convert ' . $file . ' -flip ' . $file );
|
403 |
-
break;
|
404 |
-
case 'flop':
|
405 |
-
wppa_image_magic( 'convert ' . $file . ' -flop ' . $file );
|
406 |
-
break;
|
407 |
-
}
|
408 |
}
|
|
|
409 |
|
410 |
-
//
|
411 |
-
|
412 |
-
|
413 |
-
// Get the image
|
414 |
-
switch ( $img[2] ) {
|
415 |
-
case 1: // gif
|
416 |
-
$err = '5';
|
417 |
-
$source = imagecreatefromgif( $file );
|
418 |
-
break;
|
419 |
-
case 2: // jpg
|
420 |
-
$err = '6';
|
421 |
-
$source = wppa_imagecreatefromjpeg( $file );
|
422 |
-
break;
|
423 |
-
case 3: // png
|
424 |
-
$err = '7';
|
425 |
-
$source = imagecreatefrompng( $file );
|
426 |
-
break;
|
427 |
-
default: // unsupported mimetype
|
428 |
-
$err = '10';
|
429 |
-
$source = false;
|
430 |
-
}
|
431 |
-
if ( ! $source ) return $err;
|
432 |
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
}
|
465 |
-
$rotate = $source;
|
466 |
-
break;
|
467 |
-
}
|
468 |
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
|
489 |
-
|
490 |
-
|
491 |
|
492 |
-
|
493 |
-
|
494 |
-
}
|
495 |
|
496 |
// accessable
|
497 |
wppa_chmod( $file );
|
@@ -807,6 +778,9 @@ global $wpdb;
|
|
807 |
if ( $ext == 'jpeg' ) $ext = 'jpg';
|
808 |
}
|
809 |
|
|
|
|
|
|
|
810 |
// Make the files
|
811 |
wppa_make_the_photo_files( $file, $id, $ext );
|
812 |
|
@@ -819,14 +793,14 @@ global $wpdb;
|
|
819 |
// Save source
|
820 |
wppa_save_source( $file, $name, $photo['album'] );
|
821 |
|
822 |
-
// Make proper oriented source
|
823 |
-
wppa_make_o1_source( $id );
|
824 |
-
|
825 |
// Update filename if not present. this is for backward compatibility when there were no filenames saved yet
|
826 |
if ( ! wppa_get_photo_item( $id, 'filename' ) ) {
|
827 |
wppa_update_photo( array( 'id' => $id, 'filename' => $name ) );
|
828 |
}
|
829 |
|
|
|
|
|
|
|
830 |
// Update modified timestamp
|
831 |
wppa_update_modified( $id );
|
832 |
wppa_dbg_msg( 'Update single photo: '.$name.' in album '.$photo['album'], 'green' );
|
@@ -1033,8 +1007,20 @@ global $warning_given_small;
|
|
1033 |
wppa_flush_upldr_cache( 'photoid', $id );
|
1034 |
}
|
1035 |
|
1036 |
-
//
|
1037 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
|
1039 |
// Repair photoname if not supplied and not standard
|
1040 |
wppa_set_default_name( $id, $name );
|
@@ -1049,7 +1035,7 @@ global $warning_given_small;
|
|
1049 |
wppa_add_watermark( $id );
|
1050 |
|
1051 |
// also to thumbnail?
|
1052 |
-
if (
|
1053 |
wppa_create_thumbnail( $id );
|
1054 |
}
|
1055 |
// Is it a default coverimage?
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* gp admin functions
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
382 |
$img = getimagesize( $file );
|
383 |
if ( ! $img ) return $err;
|
384 |
|
385 |
+
// Get the image
|
386 |
+
switch ( $img[2] ) {
|
387 |
+
case 1: // gif
|
388 |
+
$err = '5';
|
389 |
+
$source = imagecreatefromgif( $file );
|
390 |
+
break;
|
391 |
+
case 2: // jpg
|
392 |
+
$err = '6';
|
393 |
+
$source = wppa_imagecreatefromjpeg( $file );
|
394 |
+
break;
|
395 |
+
case 3: // png
|
396 |
+
$err = '7';
|
397 |
+
$source = imagecreatefrompng( $file );
|
398 |
+
break;
|
399 |
+
default: // unsupported mimetype
|
400 |
+
$err = '10';
|
401 |
+
$source = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
}
|
403 |
+
if ( ! $source ) return $err;
|
404 |
|
405 |
+
// Rotate the image
|
406 |
+
$err = '11';
|
407 |
+
switch( $ang ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
|
409 |
+
case 'rotright':
|
410 |
+
$rotate = imagerotate( $source, -90, 0 );
|
411 |
+
if ( ! $rotate ) {
|
412 |
+
return $err;
|
413 |
+
}
|
414 |
+
break;
|
415 |
+
case 'rot180':
|
416 |
+
$rotate = imagerotate( $source, 180, 0 );
|
417 |
+
if ( ! $rotate ) {
|
418 |
+
return $err;
|
419 |
+
}
|
420 |
+
break;
|
421 |
+
case 'rotleft':
|
422 |
+
$rotate = imagerotate( $source, 90, 0 );
|
423 |
+
if ( ! $rotate ) {
|
424 |
+
return $err;
|
425 |
+
}
|
426 |
+
break;
|
427 |
+
case 'flip':
|
428 |
+
if ( ! imageflip( $source, IMG_FLIP_VERTICAL ) ) {
|
429 |
+
return $err;;
|
430 |
+
}
|
431 |
+
$rotate = $source;
|
432 |
+
break;
|
433 |
+
case 'flop':
|
434 |
+
if ( ! imageflip( $source, IMG_FLIP_HORIZONTAL ) ) {
|
435 |
+
return $err;;
|
436 |
+
}
|
437 |
+
$rotate = $source;
|
438 |
+
break;
|
439 |
+
}
|
|
|
|
|
|
|
|
|
440 |
|
441 |
+
// Save the image
|
442 |
+
switch ( $img[2] ) {
|
443 |
+
case 1:
|
444 |
+
$err = '15';
|
445 |
+
$bret = imagegif( $rotate, $file, 95 );
|
446 |
+
break;
|
447 |
+
case 2:
|
448 |
+
$err = '16';
|
449 |
+
$bret = imagejpeg( $rotate, $file );
|
450 |
+
break;
|
451 |
+
case 3:
|
452 |
+
$err = '17';
|
453 |
+
$bret = imagepng( $rotate, $file );
|
454 |
+
break;
|
455 |
+
default:
|
456 |
+
$err = '20';
|
457 |
+
$bret = false;
|
458 |
+
}
|
459 |
+
if ( ! $bret ) return $err;
|
460 |
|
461 |
+
// Destroy the source
|
462 |
+
imagedestroy( $source );
|
463 |
|
464 |
+
// Destroy the result
|
465 |
+
imagedestroy( $rotate );
|
|
|
466 |
|
467 |
// accessable
|
468 |
wppa_chmod( $file );
|
778 |
if ( $ext == 'jpeg' ) $ext = 'jpg';
|
779 |
}
|
780 |
|
781 |
+
// Make proper oriented source
|
782 |
+
wppa_make_o1_source( $id );
|
783 |
+
|
784 |
// Make the files
|
785 |
wppa_make_the_photo_files( $file, $id, $ext );
|
786 |
|
793 |
// Save source
|
794 |
wppa_save_source( $file, $name, $photo['album'] );
|
795 |
|
|
|
|
|
|
|
796 |
// Update filename if not present. this is for backward compatibility when there were no filenames saved yet
|
797 |
if ( ! wppa_get_photo_item( $id, 'filename' ) ) {
|
798 |
wppa_update_photo( array( 'id' => $id, 'filename' => $name ) );
|
799 |
}
|
800 |
|
801 |
+
// Clear magick stack
|
802 |
+
wppa_update_photo( array( 'id' => $id, 'magickstack' => '' ) );
|
803 |
+
|
804 |
// Update modified timestamp
|
805 |
wppa_update_modified( $id );
|
806 |
wppa_dbg_msg( 'Update single photo: '.$name.' in album '.$photo['album'], 'green' );
|
1007 |
wppa_flush_upldr_cache( 'photoid', $id );
|
1008 |
}
|
1009 |
|
1010 |
+
// For photo file creation, if possible, use proper oriented source file, not temp file and also not url
|
1011 |
+
$t = wppa_get_o1_source_path( $id );
|
1012 |
+
if ( is_file( $t ) ) {
|
1013 |
+
$file = $t;
|
1014 |
+
}
|
1015 |
+
else {
|
1016 |
+
$t = wppa_get_source_path( $id );
|
1017 |
+
if ( is_file( $t ) ) {
|
1018 |
+
$file = $t;
|
1019 |
+
}
|
1020 |
+
}
|
1021 |
+
|
1022 |
+
// Make the photo files.
|
1023 |
+
if ( wppa_make_the_photo_files( $file, $id, $ext, ! wppa_does_thumb_need_watermark( $id ) ) ) {
|
1024 |
|
1025 |
// Repair photoname if not supplied and not standard
|
1026 |
wppa_set_default_name( $id, $name );
|
1035 |
wppa_add_watermark( $id );
|
1036 |
|
1037 |
// also to thumbnail?
|
1038 |
+
if ( wppa_does_thumb_need_watermark( $id ) ) {
|
1039 |
wppa_create_thumbnail( $id );
|
1040 |
}
|
1041 |
// Is it a default coverimage?
|
wppa-adminbar.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* enhances the admin bar with wppa+ menu
|
6 |
-
* version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -47,7 +47,7 @@ function wppa_admin_bar_menu() {
|
|
47 |
'title' => __( 'Upload Photos', 'wp-photo-album-plus' ),
|
48 |
'href' => admin_url( 'admin.php?page=wppa_upload_photos' )
|
49 |
);
|
50 |
-
if ( ! current_user_can( 'wppa_admin' ) ) {
|
51 |
$menu_items['edit'] = array(
|
52 |
'parent' => $wppaplus,
|
53 |
'title' => __( 'Edit Photos' , 'wp-photo-album-plus' ),
|
@@ -93,7 +93,7 @@ function wppa_admin_bar_menu() {
|
|
93 |
if ( current_user_can( 'wppa_comments' ) ) {
|
94 |
$menu_items['comments'] = array(
|
95 |
'parent' => $wppaplus,
|
96 |
-
'title' => __( 'Comments', 'wp-photo-album-plus' )
|
97 |
'href' => admin_url( 'admin.php?page=wppa_manage_comments' )
|
98 |
);
|
99 |
}
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* enhances the admin bar with wppa+ menu
|
6 |
+
* version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
47 |
'title' => __( 'Upload Photos', 'wp-photo-album-plus' ),
|
48 |
'href' => admin_url( 'admin.php?page=wppa_upload_photos' )
|
49 |
);
|
50 |
+
if ( ! current_user_can( 'wppa_admin' ) && wppa_opt( 'upload_edit' ) != 'none' ) {
|
51 |
$menu_items['edit'] = array(
|
52 |
'parent' => $wppaplus,
|
53 |
'title' => __( 'Edit Photos' , 'wp-photo-album-plus' ),
|
93 |
if ( current_user_can( 'wppa_comments' ) ) {
|
94 |
$menu_items['comments'] = array(
|
95 |
'parent' => $wppaplus,
|
96 |
+
'title' => __( 'Comments', 'wp-photo-album-plus' ) . $com_pending,
|
97 |
'href' => admin_url( 'admin.php?page=wppa_manage_comments' )
|
98 |
);
|
99 |
}
|
wppa-ajax.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
-
* Version 6.6.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -1498,6 +1498,171 @@ global $wppa_log_file;
|
|
1498 |
}
|
1499 |
wppa_exit();
|
1500 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1501 |
|
1502 |
case 'moveto':
|
1503 |
$photodata = $wpdb->get_row( $wpdb->prepare( 'SELECT * FROM '.WPPA_PHOTOS.' WHERE `id` = %s', $photo ), ARRAY_A );
|
@@ -2674,7 +2839,7 @@ global $wppa_log_file;
|
|
2674 |
wppa_schedule_maintenance_proc( 'wppa_cleanup_index', true );
|
2675 |
ob_end_clean();
|
2676 |
break;
|
2677 |
-
case '
|
2678 |
$value = rtrim( $value, '/' );
|
2679 |
$ok = true;
|
2680 |
if ( $value ) {
|
@@ -2690,7 +2855,7 @@ global $wppa_log_file;
|
|
2690 |
}
|
2691 |
if ( ! $ok ) {
|
2692 |
wppa( 'error', '4713' );
|
2693 |
-
$alert .= __( 'This path does not contain
|
2694 |
}
|
2695 |
break;
|
2696 |
|
@@ -2821,7 +2986,7 @@ global $wppa_log_file;
|
|
2821 |
|
2822 |
// I may
|
2823 |
require_once 'wppa-album-admin-autosave.php';
|
2824 |
-
wppa_del_album( $album
|
2825 |
wppa_exit();
|
2826 |
break;
|
2827 |
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
+
* Version 6.6.17
|
6 |
*
|
7 |
*/
|
8 |
|
1498 |
}
|
1499 |
wppa_exit();
|
1500 |
break;
|
1501 |
+
case 'magickrotleft':
|
1502 |
+
case 'magickrot180':
|
1503 |
+
case 'magickrotright':
|
1504 |
+
case 'magickflip':
|
1505 |
+
case 'magickflop':
|
1506 |
+
case 'enhance':
|
1507 |
+
case 'sharpen':
|
1508 |
+
case 'blur':
|
1509 |
+
case 'auto-gamma':
|
1510 |
+
case 'auto-level':
|
1511 |
+
case 'contrast-p':
|
1512 |
+
case 'contrast-m':
|
1513 |
+
case 'brightness-p':
|
1514 |
+
case 'brightness-m':
|
1515 |
+
case 'despeckle':
|
1516 |
+
case 'lineargray':
|
1517 |
+
case 'nonlineargray':
|
1518 |
+
case 'charcoal':
|
1519 |
+
case 'paint':
|
1520 |
+
case 'sepia':
|
1521 |
+
case 'skyleft':
|
1522 |
+
case 'skyright':
|
1523 |
+
$path = wppa_get_photo_path( $photo );
|
1524 |
+
switch ( $item ) {
|
1525 |
+
case 'magickrotleft':
|
1526 |
+
$command = '-rotate -90';
|
1527 |
+
break;
|
1528 |
+
case 'magickrot180':
|
1529 |
+
$command = '-rotate 180';
|
1530 |
+
break;
|
1531 |
+
case 'magickrotright':
|
1532 |
+
$command = '-rotate 90';
|
1533 |
+
break;
|
1534 |
+
case 'magickflip':
|
1535 |
+
$command = '-flip';
|
1536 |
+
break;
|
1537 |
+
case 'magickflop':
|
1538 |
+
$command = '-flop';
|
1539 |
+
break;
|
1540 |
+
case 'enhance':
|
1541 |
+
$command = '-enhance';
|
1542 |
+
break;
|
1543 |
+
case 'sharpen':
|
1544 |
+
$command = '-sharpen 0x1';
|
1545 |
+
break;
|
1546 |
+
case 'blur':
|
1547 |
+
$command = '-blur 0x1';
|
1548 |
+
break;
|
1549 |
+
case 'auto-gamma':
|
1550 |
+
$command = '-auto-gamma';
|
1551 |
+
break;
|
1552 |
+
case 'auto-level':
|
1553 |
+
$command = '-auto-level';
|
1554 |
+
break;
|
1555 |
+
case 'contrast-p':
|
1556 |
+
$command = '-brightness-contrast 0x5';
|
1557 |
+
break;
|
1558 |
+
case 'contrast-m':
|
1559 |
+
$command = '-brightness-contrast 0x-5';
|
1560 |
+
break;
|
1561 |
+
case 'brightness-p':
|
1562 |
+
$command = '-brightness-contrast 5';
|
1563 |
+
break;
|
1564 |
+
case 'brightness-m':
|
1565 |
+
$command = '-brightness-contrast -5';
|
1566 |
+
break;
|
1567 |
+
case 'despeckle':
|
1568 |
+
$command = '-despeckle';
|
1569 |
+
break;
|
1570 |
+
case 'lineargray':
|
1571 |
+
$command = '-colorspace gray';
|
1572 |
+
break;
|
1573 |
+
case 'nonlineargray':
|
1574 |
+
$command = '-grayscale Rec709Luma';
|
1575 |
+
break;
|
1576 |
+
case 'charcoal':
|
1577 |
+
$command = '-charcoal 1';
|
1578 |
+
break;
|
1579 |
+
case 'paint':
|
1580 |
+
$command = '-paint 4';
|
1581 |
+
break;
|
1582 |
+
case 'sepia':
|
1583 |
+
$command = '-sepia-tone 80%';
|
1584 |
+
break;
|
1585 |
+
case 'skyleft':
|
1586 |
+
$command = '-rotate -0.5 -shave ' . ( ceil( 0.0087 * wppa_get_photoy( $photo ) ) + 1 ) . 'x' . ( ceil( 0.0087 * wppa_get_photox( $photo ) ) + 1 );
|
1587 |
+
break;
|
1588 |
+
case 'skyright':
|
1589 |
+
$command = '-rotate 0.5 -shave ' . ( ceil( 0.0087 * wppa_get_photoy( $photo ) ) + 1 ) . 'x' . ( ceil( 0.0087 * wppa_get_photox( $photo ) ) + 1 );
|
1590 |
+
break;
|
1591 |
+
}
|
1592 |
+
|
1593 |
+
// If jpg, apply jpeg quality
|
1594 |
+
$q = wppa_opt( 'jpeg_quality' );
|
1595 |
+
$quality = '';
|
1596 |
+
if ( wppa_get_ext( $path ) == 'jpg' ) {
|
1597 |
+
$quality = '-quality ' . $q;
|
1598 |
+
}
|
1599 |
+
|
1600 |
+
// Do the magick command
|
1601 |
+
$err = wppa_image_magick( 'convert ' . $path . ' ' . $quality . ' ' . $command . ' ' . $path );
|
1602 |
+
|
1603 |
+
// Error?
|
1604 |
+
if ( $err ) {
|
1605 |
+
echo '||'.$err.'||'.sprintf( __( 'An error occurred while trying to process photo %s' , 'wp-photo-album-plus' ), $photo );
|
1606 |
+
}
|
1607 |
+
|
1608 |
+
// Housekeeping
|
1609 |
+
else {
|
1610 |
+
|
1611 |
+
// Horizon correction shaves size.
|
1612 |
+
if ( $item = 'skyleft' || $item = 'skyright' ) {
|
1613 |
+
wppa_get_photox( $photo, true );
|
1614 |
+
}
|
1615 |
+
|
1616 |
+
wppa_bump_photo_rev();
|
1617 |
+
wppa_create_thumbnail( $photo, false );
|
1618 |
+
$stack = wppa_get_photo_item( $photo, 'magickstack' );
|
1619 |
+
if ( ! $stack ) {
|
1620 |
+
$stack = $command;
|
1621 |
+
}
|
1622 |
+
else {
|
1623 |
+
$stack .= ' | ' . $command;
|
1624 |
+
}
|
1625 |
+
wppa_update_photo( array( 'id' => $photo, 'magickstack' => $stack ) );
|
1626 |
+
echo
|
1627 |
+
'||0||' .
|
1628 |
+
sprintf( __( 'Command %s magically executed on photo %s', 'wp-photo-album-plus' ), '<span style="color:blue;" ><i>'.$command.'</i></span>', $photo ) .
|
1629 |
+
'||' . get_option( 'wppa_photo_version' ) . '||' . get_option( 'wppa_thumb_version' ) . '||' . $stack .
|
1630 |
+
'||' . floor( wppa_get_photox( $photo ) ) . ' x ' . floor( wppa_get_photoy( $photo ) ).' px, ' . wppa_get_filesize( wppa_get_photo_path( $photo ) ) . '.';
|
1631 |
+
}
|
1632 |
+
|
1633 |
+
// Done
|
1634 |
+
wppa_exit();
|
1635 |
+
break;
|
1636 |
+
|
1637 |
+
case 'magickundo':
|
1638 |
+
$path = wppa_get_photo_path( $photo );
|
1639 |
+
$stack = wppa_get_photo_item( $photo, 'magickstack' );
|
1640 |
+
|
1641 |
+
// Revert all
|
1642 |
+
wppa_remake_files( '', $photo );
|
1643 |
+
|
1644 |
+
// Redo all except last
|
1645 |
+
$commands = explode( '|', $stack );
|
1646 |
+
$i = 0;
|
1647 |
+
$newstack = '';
|
1648 |
+
while ( $i < ( count( $commands ) - 1 ) ) {
|
1649 |
+
|
1650 |
+
// Do the magick command
|
1651 |
+
$err = wppa_image_magick( 'convert ' . $path . ' ' . trim( $commands[$i] ) . ' ' . $path );
|
1652 |
+
$newstack .= ( $i != '0' ? ' | ' : '' ) . $commands[$i];
|
1653 |
+
$i++;
|
1654 |
+
}
|
1655 |
+
|
1656 |
+
// Housekeeping
|
1657 |
+
wppa_bump_photo_rev();
|
1658 |
+
wppa_create_thumbnail( $photo, false );
|
1659 |
+
wppa_update_photo( array( 'id' => $photo, 'magickstack' => $newstack ) );
|
1660 |
+
echo
|
1661 |
+
'||0||' .
|
1662 |
+
sprintf( __( 'Command %s magically executed on photo %s', 'wp-photo-album-plus' ), '<span style="color:blue;" ><i>'.$item.'</i></span>', $photo ) .
|
1663 |
+
'||' . get_option( 'wppa_photo_version' ) . '||' . get_option( 'wppa_thumb_version' ) . '||' . $newstack;
|
1664 |
+
wppa_exit();
|
1665 |
+
break;
|
1666 |
|
1667 |
case 'moveto':
|
1668 |
$photodata = $wpdb->get_row( $wpdb->prepare( 'SELECT * FROM '.WPPA_PHOTOS.' WHERE `id` = %s', $photo ), ARRAY_A );
|
2839 |
wppa_schedule_maintenance_proc( 'wppa_cleanup_index', true );
|
2840 |
ob_end_clean();
|
2841 |
break;
|
2842 |
+
case 'wppa_image_magick':
|
2843 |
$value = rtrim( $value, '/' );
|
2844 |
$ok = true;
|
2845 |
if ( $value ) {
|
2855 |
}
|
2856 |
if ( ! $ok ) {
|
2857 |
wppa( 'error', '4713' );
|
2858 |
+
$alert .= __( 'This path does not contain ImageMagick commands', 'wp-photo-album-plus' );
|
2859 |
}
|
2860 |
break;
|
2861 |
|
2986 |
|
2987 |
// I may
|
2988 |
require_once 'wppa-album-admin-autosave.php';
|
2989 |
+
wppa_del_album( $album );
|
2990 |
wppa_exit();
|
2991 |
break;
|
2992 |
|
wppa-album-admin-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* create, edit and delete albums
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1165,7 +1165,7 @@ function wppaTryScheduleAll( id ) {
|
|
1165 |
wppa_error_message(__('Unable to move photos. Album not deleted.', 'wp-photo-album-plus'));
|
1166 |
}
|
1167 |
} else {
|
1168 |
-
wppa_del_album($_POST['wppa-del-id']
|
1169 |
}
|
1170 |
}
|
1171 |
|
@@ -2144,7 +2144,7 @@ global $wpdb;
|
|
2144 |
|
2145 |
}
|
2146 |
|
2147 |
-
function wppa_have_accessable_children($alb) {
|
2148 |
global $wpdb;
|
2149 |
|
2150 |
$albums = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS . "` WHERE `a_parent` = " . $alb['id'], ARRAY_A );
|
@@ -2157,63 +2157,39 @@ global $wpdb;
|
|
2157 |
}
|
2158 |
|
2159 |
// delete an album
|
2160 |
-
function wppa_del_album($id, $move = '') {
|
2161 |
global $wpdb;
|
2162 |
|
2163 |
-
if ( $move && ! wppa_have_access($move) ) {
|
2164 |
wppa_error_message(__('Unable to move photos to album %s. Album not deleted.', 'wp-photo-album-plus'));
|
2165 |
return false;
|
2166 |
}
|
2167 |
|
2168 |
// Photos in the album
|
2169 |
-
$photos = $wpdb->get_results($wpdb->prepare('SELECT * FROM `' . WPPA_PHOTOS . '` WHERE `album` = %s', $id), ARRAY_A);
|
2170 |
-
|
2171 |
-
if (empty($move)) { // will delete all the album's photos
|
2172 |
-
if (is_array($photos)) {
|
2173 |
-
$cnt = '0';
|
2174 |
-
foreach ($photos as $photo) {
|
2175 |
-
$t = -microtime(true);
|
2176 |
-
|
2177 |
-
wppa_delete_photo($photo['id']);
|
2178 |
-
|
2179 |
-
$cnt++;
|
2180 |
-
$t += microtime(true);
|
2181 |
-
// wppa_dbg_msg('Del photo took :'.$t, 'red', 'force');
|
2182 |
-
// Time up?
|
2183 |
-
if ( wppa_is_time_up() ) {
|
2184 |
-
wppa_invalidate_treecounts( $id );
|
2185 |
-
$msg = sprintf( __( 'Time is out after %d photo deletes. Please redo this operation' , 'wp-photo-album-plus'), $cnt );
|
2186 |
-
if ( wppa( 'ajax' ) ) {
|
2187 |
-
echo $msg;
|
2188 |
-
}
|
2189 |
-
else {
|
2190 |
-
wppa_error_message( $msg );
|
2191 |
-
}
|
2192 |
-
return;
|
2193 |
-
}
|
2194 |
-
}
|
2195 |
-
}
|
2196 |
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
|
|
|
|
2207 |
}
|
2208 |
}
|
2209 |
-
wppa_invalidate_treecounts($move);
|
2210 |
}
|
2211 |
|
2212 |
// First flush treecounts, otherwise we do not know the parent if any
|
2213 |
-
wppa_invalidate_treecounts($id);
|
2214 |
|
2215 |
// Now delete the album
|
2216 |
-
$wpdb->query($wpdb->prepare('DELETE FROM `' . WPPA_ALBUMS . '` WHERE `id` = %s LIMIT 1', $id));
|
2217 |
wppa_delete_album_source( $id );
|
2218 |
wppa_index_remove( 'album', $id );
|
2219 |
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* create, edit and delete albums
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
1165 |
wppa_error_message(__('Unable to move photos. Album not deleted.', 'wp-photo-album-plus'));
|
1166 |
}
|
1167 |
} else {
|
1168 |
+
wppa_del_album( $_POST['wppa-del-id'] );
|
1169 |
}
|
1170 |
}
|
1171 |
|
2144 |
|
2145 |
}
|
2146 |
|
2147 |
+
function wppa_have_accessable_children( $alb ) {
|
2148 |
global $wpdb;
|
2149 |
|
2150 |
$albums = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS . "` WHERE `a_parent` = " . $alb['id'], ARRAY_A );
|
2157 |
}
|
2158 |
|
2159 |
// delete an album
|
2160 |
+
function wppa_del_album( $id, $move = '-9' ) {
|
2161 |
global $wpdb;
|
2162 |
|
2163 |
+
if ( $move && ! wppa_have_access( $move ) ) {
|
2164 |
wppa_error_message(__('Unable to move photos to album %s. Album not deleted.', 'wp-photo-album-plus'));
|
2165 |
return false;
|
2166 |
}
|
2167 |
|
2168 |
// Photos in the album
|
2169 |
+
$photos = $wpdb->get_results( $wpdb->prepare( 'SELECT * FROM `' . WPPA_PHOTOS . '` WHERE `album` = %s', $id ), ARRAY_A );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2170 |
|
2171 |
+
if ( is_array( $photos ) ) {
|
2172 |
+
foreach ( $photos as $photo ) {
|
2173 |
+
$wpdb->query( $wpdb->prepare( 'UPDATE `' . WPPA_PHOTOS . '` SET `album` = %s WHERE `id` = %s', $move, $photo['id'] ) );
|
2174 |
+
|
2175 |
+
// Move to trash?
|
2176 |
+
if ( $move != '-9' ) {
|
2177 |
+
wppa_move_source( $photo['filename'], $photo['album'], $move );
|
2178 |
+
}
|
2179 |
+
if ( wppa_is_time_up() ) {
|
2180 |
+
wppa_error_message( 'Time is out. Please redo this operation' );
|
2181 |
+
wppa_invalidate_treecounts( $move );
|
2182 |
+
return;
|
2183 |
}
|
2184 |
}
|
2185 |
+
wppa_invalidate_treecounts( $move );
|
2186 |
}
|
2187 |
|
2188 |
// First flush treecounts, otherwise we do not know the parent if any
|
2189 |
+
wppa_invalidate_treecounts( $id );
|
2190 |
|
2191 |
// Now delete the album
|
2192 |
+
$wpdb->query( $wpdb->prepare( 'DELETE FROM `' . WPPA_ALBUMS . '` WHERE `id` = %s LIMIT 1', $id ) );
|
2193 |
wppa_delete_album_source( $id );
|
2194 |
wppa_index_remove( 'album', $id );
|
2195 |
|
wppa-album-covers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1516,6 +1516,7 @@ function wppa_album_cover_view_link(
|
|
1516 |
|
1517 |
$na = $albumcount;
|
1518 |
$nta = $treecount['treealbums'] > $albumcount ? $treecount['treealbums'] : '';
|
|
|
1519 |
$np = $photocount > $mincount ? $photocount : '';
|
1520 |
$ntp = $treecount['treephotos'] > $photocount ? $treecount['treephotos'] : '';
|
1521 |
$ntpx = $treecount['treephotos'] > $photocount ? $treecount['treephotos'] : $photocount;
|
@@ -1523,8 +1524,8 @@ function wppa_album_cover_view_link(
|
|
1523 |
$text = __( 'View' , 'wp-photo-album-plus') . ' ';
|
1524 |
|
1525 |
if ( wppa_opt( 'show_treecount' ) == 'total' ) {
|
1526 |
-
if ( $
|
1527 |
-
$text .= sprintf( _n( '%d album', '%d albums', $
|
1528 |
}
|
1529 |
if ( $ntpx ) {
|
1530 |
$text .= sprintf( _n( '%d photo', '%d photos', $ntpx, 'wp-photo-album-plus' ), $ntpx ) . ' ';
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Functions for album covers
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
1516 |
|
1517 |
$na = $albumcount;
|
1518 |
$nta = $treecount['treealbums'] > $albumcount ? $treecount['treealbums'] : '';
|
1519 |
+
$ntax = $treecount['treealbums'] > $albumcount ? $treecount['treealbums'] : $albumcount;
|
1520 |
$np = $photocount > $mincount ? $photocount : '';
|
1521 |
$ntp = $treecount['treephotos'] > $photocount ? $treecount['treephotos'] : '';
|
1522 |
$ntpx = $treecount['treephotos'] > $photocount ? $treecount['treephotos'] : $photocount;
|
1524 |
$text = __( 'View' , 'wp-photo-album-plus') . ' ';
|
1525 |
|
1526 |
if ( wppa_opt( 'show_treecount' ) == 'total' ) {
|
1527 |
+
if ( $ntax ) {
|
1528 |
+
$text .= sprintf( _n( '%d album', '%d albums', $ntax, 'wp-photo-album-plus' ), $ntax ) . ' ';
|
1529 |
}
|
1530 |
if ( $ntpx ) {
|
1531 |
$text .= sprintf( _n( '%d photo', '%d photos', $ntpx, 'wp-photo-album-plus' ), $ntpx ) . ' ';
|
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 |
|
@@ -2421,6 +2421,9 @@ static $albums_granted;
|
|
2421 |
|
2422 |
$result .=
|
2423 |
|
|
|
|
|
|
|
2424 |
// The (hidden) functional button
|
2425 |
'<input' .
|
2426 |
' type="file"' .
|
@@ -2448,6 +2451,7 @@ static $albums_granted;
|
|
2448 |
' type="button"' .
|
2449 |
' style="width:100%;margin-top:8px;margin-bottom:8px;padding-left:0;padding-right:0;"' .
|
2450 |
' id="wppa-user-upload-' . $yalb . '-' . $mocc . '-display"' .
|
|
|
2451 |
' value="' . $value . '"' .
|
2452 |
' onclick="jQuery( \'#wppa-user-upload-' . $yalb . '-' . $mocc . '\' ).click();"' .
|
2453 |
'/>';
|
@@ -2846,6 +2850,7 @@ static $albums_granted;
|
|
2846 |
success: function() {
|
2847 |
jQuery("#bar-'.$yalb.'-'.$mocc.'").width(\'100%\');
|
2848 |
jQuery("#percent-'.$yalb.'-'.$mocc.'").html(\'' . __( 'Done!', 'wp-photo-album-plus' ) . '\');
|
|
|
2849 |
},
|
2850 |
complete: function(response) {
|
2851 |
jQuery("#message-'.$yalb.'-'.$mocc.'").html( \'<span style="font-size: 10px;" >\'+response.responseText+\'</span>\' );'.
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various wppa boxes
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
2421 |
|
2422 |
$result .=
|
2423 |
|
2424 |
+
// Save the button text
|
2425 |
+
'<script>var wppaUploadButtonText="' . esc_js( $value ) . '"</script>' .
|
2426 |
+
|
2427 |
// The (hidden) functional button
|
2428 |
'<input' .
|
2429 |
' type="file"' .
|
2451 |
' type="button"' .
|
2452 |
' style="width:100%;margin-top:8px;margin-bottom:8px;padding-left:0;padding-right:0;"' .
|
2453 |
' id="wppa-user-upload-' . $yalb . '-' . $mocc . '-display"' .
|
2454 |
+
' class="wppa-upload-button"' .
|
2455 |
' value="' . $value . '"' .
|
2456 |
' onclick="jQuery( \'#wppa-user-upload-' . $yalb . '-' . $mocc . '\' ).click();"' .
|
2457 |
'/>';
|
2850 |
success: function() {
|
2851 |
jQuery("#bar-'.$yalb.'-'.$mocc.'").width(\'100%\');
|
2852 |
jQuery("#percent-'.$yalb.'-'.$mocc.'").html(\'' . __( 'Done!', 'wp-photo-album-plus' ) . '\');
|
2853 |
+
jQuery(".wppa-upload-button").val(wppaUploadButtonText);
|
2854 |
},
|
2855 |
complete: function(response) {
|
2856 |
jQuery("#message-'.$yalb.'-'.$mocc.'").html( \'<span style="font-size: 10px;" >\'+response.responseText+\'</span>\' );'.
|
wppa-cron.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all cron functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*
|
9 |
*/
|
@@ -112,6 +112,12 @@ global $wppa_all_maintenance_slugs;
|
|
112 |
}
|
113 |
}
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
// Remove 'deleted' photos from system
|
116 |
$dels = $wpdb->get_col( "SELECT `id` FROM `".WPPA_PHOTOS."` WHERE `album` = '-9'" );
|
117 |
foreach( $dels as $del ) {
|
@@ -123,8 +129,45 @@ global $wppa_all_maintenance_slugs;
|
|
123 |
wppa_create_pl_htaccess();
|
124 |
|
125 |
// Cleanup index
|
|
|
126 |
wppa_schedule_maintenance_proc( 'wppa_cleanup_index' );
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
}
|
129 |
|
130 |
// Activate treecount update proc
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all cron functions
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*
|
9 |
*/
|
112 |
}
|
113 |
}
|
114 |
|
115 |
+
// Find lost photos, update their album to -9, meaning trashed
|
116 |
+
$album_ids = $wpdb->get_col( "SELECT `id` FROM `" . WPPA_ALBUMS . "`" );
|
117 |
+
if ( ! empty( $album_ids ) ) {
|
118 |
+
$lost = $wpdb->query( "UPDATE `" . WPPA_PHOTOS . "` SET `album` = '-9' WHERE `album` NOT IN ( " . implode( ',', $album_ids ) . " ) " );
|
119 |
+
}
|
120 |
+
|
121 |
// Remove 'deleted' photos from system
|
122 |
$dels = $wpdb->get_col( "SELECT `id` FROM `".WPPA_PHOTOS."` WHERE `album` = '-9'" );
|
123 |
foreach( $dels as $del ) {
|
129 |
wppa_create_pl_htaccess();
|
130 |
|
131 |
// Cleanup index
|
132 |
+
wppa_index_compute_skips();
|
133 |
wppa_schedule_maintenance_proc( 'wppa_cleanup_index' );
|
134 |
|
135 |
+
// Retry failed mails
|
136 |
+
if ( wppa_opt( 'retry_mails' ) ) {
|
137 |
+
|
138 |
+
$failed_mails = get_option( 'wppa_failed_mails' );
|
139 |
+
if ( is_array( $failed_mails ) ) {
|
140 |
+
|
141 |
+
foreach( array_keys( $failed_mails ) as $key ) {
|
142 |
+
|
143 |
+
$mail = $failed_mails[$key];
|
144 |
+
$mess = $mail['message'] . '(retried mail)';
|
145 |
+
|
146 |
+
// Retry
|
147 |
+
if ( wp_mail( $mail['to'], $mail['subj'], $mess, $mail['headers'], $mail['att'] ) ) {
|
148 |
+
|
149 |
+
// Set counter to 0
|
150 |
+
$failed_mails[$key]['retry'] = '0';
|
151 |
+
}
|
152 |
+
else {
|
153 |
+
|
154 |
+
// Decrease retry counter
|
155 |
+
$failed_mails[$key]['retry']--;
|
156 |
+
wppa_log( 'Cron', 'Retried mail to ' . $mail['to'] . ' failed. Tries to go = ' . $failed_mails[$key]['retry'] );
|
157 |
+
}
|
158 |
+
}
|
159 |
+
|
160 |
+
// Cleanup
|
161 |
+
foreach( array_keys( $failed_mails ) as $key ) {
|
162 |
+
if ( $failed_mails[$key]['retry'] < '1' ) {
|
163 |
+
unset( $failed_mails[$key] );
|
164 |
+
}
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
+
// Store updated failed mails
|
169 |
+
update_option( 'wppa_failed_mails', $failed_mails );
|
170 |
+
}
|
171 |
}
|
172 |
|
173 |
// Activate treecount update proc
|
wppa-functions.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -4556,7 +4556,16 @@ global $wppa_alert;
|
|
4556 |
wppa_invalidate_treecounts( $alb );
|
4557 |
wppa_flush_upldr_cache( 'photoid', $id );
|
4558 |
}
|
4559 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4560 |
|
4561 |
// Repair photoname if not standard
|
4562 |
if ( ! wppa_get_post( 'user-name' ) ) {
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various functions
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
4556 |
wppa_invalidate_treecounts( $alb );
|
4557 |
wppa_flush_upldr_cache( 'photoid', $id );
|
4558 |
}
|
4559 |
+
$source_file = $file['tmp_name'];
|
4560 |
+
$o1_path = wppa_get_o1_source_path( $id );
|
4561 |
+
$s_path = wppa_get_source_path( $id );
|
4562 |
+
if ( is_file( $o1_path ) ) {
|
4563 |
+
$source_file = $o1_path;
|
4564 |
+
}
|
4565 |
+
elseif ( is_file( $s_path ) ) {
|
4566 |
+
$source_file = $s_path;
|
4567 |
+
}
|
4568 |
+
if ( wppa_make_the_photo_files( $source_file, $id, $ext, ! wppa_switch( 'watermark_thumbs' ) ) ) {
|
4569 |
|
4570 |
// Repair photoname if not standard
|
4571 |
if ( ! wppa_get_post( 'user-name' ) ) {
|
wppa-index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all indexing functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*
|
9 |
*/
|
@@ -154,7 +154,7 @@ global $pcount;
|
|
154 |
//
|
155 |
// @1: string. Any test string may contain all kind of garbage.
|
156 |
//
|
157 |
-
function wppa_index_raw_to_words( $xtext ) {
|
158 |
|
159 |
// Find chars to be replaced by delimiters (spaces)
|
160 |
$ignore = array( '"', "'", '`', '\\', '>', '<', ',', ':', ';', '!', '?', '=', '_',
|
@@ -169,7 +169,7 @@ function wppa_index_raw_to_words( $xtext ) {
|
|
169 |
}
|
170 |
|
171 |
// Find words to skip
|
172 |
-
$skips = get_option( 'wppa_index_skips', array() );
|
173 |
|
174 |
// Find minimum token length
|
175 |
$minlen = wppa_opt( 'search_min_length' );
|
@@ -245,7 +245,7 @@ function wppa_index_raw_to_words( $xtext ) {
|
|
245 |
$fract = trim( $fract );
|
246 |
$fract = trim( $fract, " ./-" );
|
247 |
|
248 |
-
// If
|
249 |
if ( strlen( $fract ) >= $minlen && ! in_array( $fract, $skips ) ) {
|
250 |
$result[] = $fract;
|
251 |
}
|
@@ -436,7 +436,7 @@ function wppa_index_compute_skips() {
|
|
436 |
|
437 |
$user_skips = wppa_opt( 'search_user_void' );
|
438 |
$system_skips = 'w#name,w#filename,w#owner,w#displayname,w#id,w#tags,w#cats,w#timestamp,w#modified,w#views,w#amx,w#amy,w#amfs,w#url,w#hrurl,w#tnurl,w#pl';
|
439 |
-
$words = wppa_index_raw_to_words( wppa_opt( 'newphoto_description' ) . '
|
440 |
sort( $words );
|
441 |
|
442 |
$result = array();
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all indexing functions
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*
|
9 |
*/
|
154 |
//
|
155 |
// @1: string. Any test string may contain all kind of garbage.
|
156 |
//
|
157 |
+
function wppa_index_raw_to_words( $xtext, $no_skips = false ) {
|
158 |
|
159 |
// Find chars to be replaced by delimiters (spaces)
|
160 |
$ignore = array( '"', "'", '`', '\\', '>', '<', ',', ':', ';', '!', '?', '=', '_',
|
169 |
}
|
170 |
|
171 |
// Find words to skip
|
172 |
+
$skips = $no_skips ? array() : get_option( 'wppa_index_skips', array() );
|
173 |
|
174 |
// Find minimum token length
|
175 |
$minlen = wppa_opt( 'search_min_length' );
|
245 |
$fract = trim( $fract );
|
246 |
$fract = trim( $fract, " ./-" );
|
247 |
|
248 |
+
// If large enough and not a word to skip, use it: copy to array $result
|
249 |
if ( strlen( $fract ) >= $minlen && ! in_array( $fract, $skips ) ) {
|
250 |
$result[] = $fract;
|
251 |
}
|
436 |
|
437 |
$user_skips = wppa_opt( 'search_user_void' );
|
438 |
$system_skips = 'w#name,w#filename,w#owner,w#displayname,w#id,w#tags,w#cats,w#timestamp,w#modified,w#views,w#amx,w#amy,w#amfs,w#url,w#hrurl,w#tnurl,w#pl';
|
439 |
+
$words = wppa_index_raw_to_words( wppa_opt( 'newphoto_description' ) . ',' . $user_skips . ',' . $system_skips, 'noskips' );
|
440 |
sort( $words );
|
441 |
|
442 |
$result = array();
|
wppa-maintenance.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains (not yet, but in the future maybe) all the maintenance routines
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -91,9 +91,9 @@ global $wppa_all_maintenance_slugs;
|
|
91 |
wppa_extend_session();
|
92 |
|
93 |
// Initialize
|
94 |
-
// Cron job: limit-
|
95 |
$limit = min( 60, max( 30, ini_get( 'max_execution_time' ) ) );
|
96 |
-
$endtime = ( wppa_is_cron() ? time() + $limit - '
|
97 |
$chunksize = '1000';
|
98 |
$lastid = strval( intval ( get_option( $slug.'_last', '0' ) ) );
|
99 |
$errtxt = '';
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains (not yet, but in the future maybe) all the maintenance routines
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
91 |
wppa_extend_session();
|
92 |
|
93 |
// Initialize
|
94 |
+
// Cron job: limit-15 sec, realtime: 5 sec
|
95 |
$limit = min( 60, max( 30, ini_get( 'max_execution_time' ) ) );
|
96 |
+
$endtime = ( wppa_is_cron() ? time() + $limit - '15' : time() + '5' );
|
97 |
$chunksize = '1000';
|
98 |
$lastid = strval( intval ( get_option( $slug.'_last', '0' ) ) );
|
99 |
$errtxt = '';
|
wppa-photo-admin-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* edit and delete photos
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -405,6 +405,27 @@ function wppaTryWatermark( id ) {
|
|
405 |
}
|
406 |
}
|
407 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
</script>
|
409 |
<?php
|
410 |
|
@@ -418,6 +439,9 @@ function wppaTryWatermark( id ) {
|
|
418 |
// Display the pagelinks
|
419 |
wppa_admin_page_links( $page, $pagesize, $count, $link );
|
420 |
|
|
|
|
|
|
|
421 |
// Display all photos
|
422 |
foreach ( $photos as $photo ) {
|
423 |
|
@@ -445,6 +469,7 @@ function wppaTryWatermark( id ) {
|
|
445 |
$status = $photo['status'];
|
446 |
$tags = trim( stripslashes( $photo['tags'] ), ',' );
|
447 |
$stereo = $photo['stereo'];
|
|
|
448 |
|
449 |
// See if item is a multimedia item
|
450 |
$is_multi = wppa_is_multi( $id );
|
@@ -516,11 +541,13 @@ function wppaTryWatermark( id ) {
|
|
516 |
}
|
517 |
echo
|
518 |
'<a' .
|
|
|
519 |
' href="' . $big . '"' .
|
520 |
' target="_blank"' .
|
521 |
' title="' . esc_attr( __( 'Preview fullsize photo', 'wp-photo-album-plus' ) ) . '"' .
|
522 |
' >' .
|
523 |
'<img' .
|
|
|
524 |
' src="' . $src . '"' .
|
525 |
' alt="' . esc_attr( $name ) . '"' .
|
526 |
' style="max-width: 160px; vertical-align:middle;"' .
|
@@ -817,8 +844,10 @@ function wppaTryWatermark( id ) {
|
|
817 |
$dp = wppa_fix_poster_ext( wppa_get_photo_path( $id ), $id );
|
818 |
if ( is_file( $dp ) ) {
|
819 |
echo
|
|
|
820 |
floor( wppa_get_photox( $id ) ) . ' x ' . floor( wppa_get_photoy( $id ) ).' px, ' .
|
821 |
-
wppa_get_filesize( $dp ) . '.
|
|
|
822 |
}
|
823 |
else {
|
824 |
echo
|
@@ -1046,37 +1075,39 @@ function wppaTryWatermark( id ) {
|
|
1046 |
|
1047 |
// Rotate
|
1048 |
if ( ! $b_is_video ) {
|
1049 |
-
|
1050 |
-
|
1051 |
-
'
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
'
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
'
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
'
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
'
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
|
|
|
|
1080 |
}
|
1081 |
|
1082 |
// Remake displayfiles
|
@@ -1215,6 +1246,287 @@ function wppaTryWatermark( id ) {
|
|
1215 |
'</tbody>' .
|
1216 |
'</table>';
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
echo // Section 4
|
1219 |
"\n" . '<!-- Section 4 -->' .
|
1220 |
'<table' .
|
@@ -2741,7 +3053,6 @@ function wppa_fe_edit_new_style( $photo ) {
|
|
2741 |
' type="button"' .
|
2742 |
' style="margin-top:8px;"' .
|
2743 |
' value="' . esc_attr( __( 'Cancel', 'wp-photo-album-plus' ) ) . '"' .
|
2744 |
-
// ' onclick="jQuery( \'.ui-button\' ).trigger(\'click\')"' .
|
2745 |
' onclick="jQuery( \'#wppa-modal-container-' . strval( intval( $_REQUEST['moccur'] ) ) . '\').dialog(\'close\')"' .
|
2746 |
' />';
|
2747 |
|
@@ -2753,4 +3064,20 @@ function wppa_fe_edit_new_style( $photo ) {
|
|
2753 |
echo
|
2754 |
'</div>';
|
2755 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2756 |
}
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* edit and delete photos
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
405 |
}
|
406 |
}
|
407 |
|
408 |
+
function wppaTryMagick( id, slug ) {
|
409 |
+
|
410 |
+
var query = '<?php echo esc_js( __( 'Are you sure you want to magically process this photo?', 'wp-photo-album-plus' ) ) ?>';
|
411 |
+
|
412 |
+
if ( true || confirm( query ) ) {
|
413 |
+
_wppaAjaxUpdatePhoto( id, slug, 0, false ); //<?php echo ( wppa( 'front_edit' ) ? 'false' : 'true' ) ?> );
|
414 |
+
}
|
415 |
+
}
|
416 |
+
|
417 |
+
wppaHor = false;
|
418 |
+
function wppaToggleHorizon() {
|
419 |
+
if ( wppaHor ) {
|
420 |
+
jQuery( '#horizon' ).css( 'display', 'none' );
|
421 |
+
wppaHor = false;
|
422 |
+
}
|
423 |
+
else {
|
424 |
+
jQuery( '#horizon' ).css( 'display', 'inline' );
|
425 |
+
wppaHor = true;
|
426 |
+
}
|
427 |
+
}
|
428 |
+
|
429 |
</script>
|
430 |
<?php
|
431 |
|
439 |
// Display the pagelinks
|
440 |
wppa_admin_page_links( $page, $pagesize, $count, $link );
|
441 |
|
442 |
+
// Horizon
|
443 |
+
echo '<hr id="horizon" style="position:fixed;top:300px;left:0px;border:none;background-color:#777777;z-index:100000;display:none;height:1px;width:100%;" />';
|
444 |
+
|
445 |
// Display all photos
|
446 |
foreach ( $photos as $photo ) {
|
447 |
|
469 |
$status = $photo['status'];
|
470 |
$tags = trim( stripslashes( $photo['tags'] ), ',' );
|
471 |
$stereo = $photo['stereo'];
|
472 |
+
$magickstack = $photo['magickstack'];
|
473 |
|
474 |
// See if item is a multimedia item
|
475 |
$is_multi = wppa_is_multi( $id );
|
541 |
}
|
542 |
echo
|
543 |
'<a' .
|
544 |
+
' id="fs-a-' . $id . '"' .
|
545 |
' href="' . $big . '"' .
|
546 |
' target="_blank"' .
|
547 |
' title="' . esc_attr( __( 'Preview fullsize photo', 'wp-photo-album-plus' ) ) . '"' .
|
548 |
' >' .
|
549 |
'<img' .
|
550 |
+
' id="tnp-' . $id . '"' .
|
551 |
' src="' . $src . '"' .
|
552 |
' alt="' . esc_attr( $name ) . '"' .
|
553 |
' style="max-width: 160px; vertical-align:middle;"' .
|
844 |
$dp = wppa_fix_poster_ext( wppa_get_photo_path( $id ), $id );
|
845 |
if ( is_file( $dp ) ) {
|
846 |
echo
|
847 |
+
'<span id="dispfileinfo-' . $id . '" >' .
|
848 |
floor( wppa_get_photox( $id ) ) . ' x ' . floor( wppa_get_photoy( $id ) ).' px, ' .
|
849 |
+
wppa_get_filesize( $dp ) . '.' .
|
850 |
+
'</span> ';
|
851 |
}
|
852 |
else {
|
853 |
echo
|
1075 |
|
1076 |
// Rotate
|
1077 |
if ( ! $b_is_video ) {
|
1078 |
+
if ( ! wppa_can_admin_magick( $id ) ) {
|
1079 |
+
echo
|
1080 |
+
'<input' .
|
1081 |
+
' type="button"' .
|
1082 |
+
' onclick="wppaTryRotLeft( ' . $id . ' )"' .
|
1083 |
+
' value="' . esc_attr( __( 'Rotate left', 'wp-photo-album-plus') ) . '"' .
|
1084 |
+
' />' .
|
1085 |
+
' ' .
|
1086 |
+
'<input' .
|
1087 |
+
' type="button"' .
|
1088 |
+
' onclick="wppaTryRot180( ' . $id . ' )"' .
|
1089 |
+
' value="' . esc_attr( __( 'Rotate 180°', 'wp-photo-album-plus') ) . '"' .
|
1090 |
+
' />' .
|
1091 |
+
' ' .
|
1092 |
+
'<input' .
|
1093 |
+
' type="button"' .
|
1094 |
+
' onclick="wppaTryRotRight( ' . $id . ' )"' .
|
1095 |
+
' value="' . esc_attr( __( 'Rotate right', 'wp-photo-album-plus') ) . '"' .
|
1096 |
+
' />' .
|
1097 |
+
' ' .
|
1098 |
+
'<input' .
|
1099 |
+
' type="button"' .
|
1100 |
+
' onclick="wppaTryFlip( ' . $id . ' )"' .
|
1101 |
+
' value="' . esc_attr( __( 'Flip', 'wp-photo-album-plus') ) . ' —"' .
|
1102 |
+
' />' .
|
1103 |
+
' ' .
|
1104 |
+
'<input' .
|
1105 |
+
' type="button"' .
|
1106 |
+
' onclick="wppaTryFlop( ' . $id . ' )"' .
|
1107 |
+
' value="' . esc_attr( __( 'Flip', 'wp-photo-album-plus') ) . ' |"' .
|
1108 |
+
' />' .
|
1109 |
+
' ';
|
1110 |
+
}
|
1111 |
}
|
1112 |
|
1113 |
// Remake displayfiles
|
1246 |
'</tbody>' .
|
1247 |
'</table>';
|
1248 |
|
1249 |
+
// Section 3a ImageMagick editing commands
|
1250 |
+
if ( wppa_can_admin_magick( $id ) ) {
|
1251 |
+
|
1252 |
+
echo
|
1253 |
+
'<table' .
|
1254 |
+
' class="wppa-table wppa-photo-table"' .
|
1255 |
+
' style="width:100%;"' .
|
1256 |
+
' >' .
|
1257 |
+
'<tbody>' .
|
1258 |
+
'<tr>' .
|
1259 |
+
'<td>' .
|
1260 |
+
__( '<b>ImageMagick</b> commands. The operations are execured upon the display file.', 'wp-photo-album-plus' ) . ' ' .
|
1261 |
+
__( 'A new thumbnail image will be created from the display file.', 'wp-photo-album-plus' ) .
|
1262 |
+
'</td>' .
|
1263 |
+
'</tr>' .
|
1264 |
+
'<tr>' .
|
1265 |
+
'<td>';
|
1266 |
+
|
1267 |
+
// --- Actions ---
|
1268 |
+
|
1269 |
+
// Rotate left
|
1270 |
+
echo
|
1271 |
+
'<input' .
|
1272 |
+
' type="button"' .
|
1273 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magickrotleft\' )"' .
|
1274 |
+
' value="' . esc_attr( __( 'Rotate left', 'wp-photo-album-plus') ) . '"' .
|
1275 |
+
' />' .
|
1276 |
+
' ';
|
1277 |
+
|
1278 |
+
// Rotat 180
|
1279 |
+
echo
|
1280 |
+
'<input' .
|
1281 |
+
' type="button"' .
|
1282 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magickrot180\' )"' .
|
1283 |
+
' value="' . esc_attr( __( 'Rotate 180°', 'wp-photo-album-plus') ) . '"' .
|
1284 |
+
' />' .
|
1285 |
+
' ';
|
1286 |
+
|
1287 |
+
// Rotate right
|
1288 |
+
echo
|
1289 |
+
'<input' .
|
1290 |
+
' type="button"' .
|
1291 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magickrotright\' )"' .
|
1292 |
+
' value="' . esc_attr( __( 'Rotate right', 'wp-photo-album-plus') ) . '"' .
|
1293 |
+
' />' .
|
1294 |
+
' ';
|
1295 |
+
|
1296 |
+
// Flip
|
1297 |
+
echo
|
1298 |
+
'<input' .
|
1299 |
+
' type="button"' .
|
1300 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magickflip\' )"' .
|
1301 |
+
' value="' . esc_attr( __( 'Flip', 'wp-photo-album-plus') ) . ' —"' .
|
1302 |
+
' title="-flip"' .
|
1303 |
+
' />' .
|
1304 |
+
' ';
|
1305 |
+
|
1306 |
+
// Flop
|
1307 |
+
echo
|
1308 |
+
'<input' .
|
1309 |
+
' type="button"' .
|
1310 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magickflop\' )"' .
|
1311 |
+
' value="' . esc_attr( __( 'Flop', 'wp-photo-album-plus') ) . ' |"' .
|
1312 |
+
' title="-flop"' .
|
1313 |
+
' />' .
|
1314 |
+
' ';
|
1315 |
+
|
1316 |
+
// Enhance
|
1317 |
+
echo
|
1318 |
+
'<input' .
|
1319 |
+
' type="button"' .
|
1320 |
+
' onclick="wppaTryMagick( ' . $id . ', \'enhance\' )"' .
|
1321 |
+
' value="' . esc_attr( __( 'Enhance', 'wp-photo-album-plus') ) . '"' .
|
1322 |
+
' title="-enhance"' .
|
1323 |
+
' />' .
|
1324 |
+
' ';
|
1325 |
+
|
1326 |
+
// Sharpen
|
1327 |
+
echo
|
1328 |
+
'<input' .
|
1329 |
+
' type="button"' .
|
1330 |
+
' onclick="wppaTryMagick( ' . $id . ', \'sharpen\' )"' .
|
1331 |
+
' value="' . esc_attr( __( 'Sharpen', 'wp-photo-album-plus' ) ) . '"' .
|
1332 |
+
' title="-sharpen 0x1"' .
|
1333 |
+
' />' .
|
1334 |
+
' ';
|
1335 |
+
|
1336 |
+
// Blur
|
1337 |
+
echo
|
1338 |
+
'<input' .
|
1339 |
+
' type="button"' .
|
1340 |
+
' onclick="wppaTryMagick( ' . $id . ', \'blur\' )"' .
|
1341 |
+
' value="' . esc_attr( __( 'Blur', 'wp-photo-album-plus' ) ) . '"' .
|
1342 |
+
' title="-blur 0x1"' .
|
1343 |
+
' />' .
|
1344 |
+
' ';
|
1345 |
+
|
1346 |
+
// Auto gamma
|
1347 |
+
echo
|
1348 |
+
'<input' .
|
1349 |
+
' type="button"' .
|
1350 |
+
' onclick="wppaTryMagick( ' . $id . ', \'auto-gamma\' )"' .
|
1351 |
+
' value="' . esc_attr( __( 'Auto Gamma', 'wp-photo-album-plus' ) ) . '"' .
|
1352 |
+
' title="-auto-gamma"' .
|
1353 |
+
' />' .
|
1354 |
+
' ';
|
1355 |
+
|
1356 |
+
// Auto level
|
1357 |
+
echo
|
1358 |
+
'<input' .
|
1359 |
+
' type="button"' .
|
1360 |
+
' onclick="wppaTryMagick( ' . $id . ', \'auto-level\' )"' .
|
1361 |
+
' value="' . esc_attr( __( 'Auto Level', 'wp-photo-album-plus' ) ) . '"' .
|
1362 |
+
' title="-auto-level"' .
|
1363 |
+
' />' .
|
1364 |
+
' ';
|
1365 |
+
|
1366 |
+
// Contrast+
|
1367 |
+
echo
|
1368 |
+
'<input' .
|
1369 |
+
' type="button"' .
|
1370 |
+
' onclick="wppaTryMagick( ' . $id . ', \'contrast-p\' )"' .
|
1371 |
+
' value="' . esc_attr( __( 'Contrast+', 'wp-photo-album-plus' ) ) . '"' .
|
1372 |
+
' title="-brightness-contrast 0x5"' .
|
1373 |
+
' />' .
|
1374 |
+
' ';
|
1375 |
+
|
1376 |
+
// Contrast-
|
1377 |
+
echo
|
1378 |
+
'<input' .
|
1379 |
+
' type="button"' .
|
1380 |
+
' onclick="wppaTryMagick( ' . $id . ', \'contrast-m\' )"' .
|
1381 |
+
' value="' . esc_attr( __( 'Contrast-', 'wp-photo-album-plus' ) ) . '"' .
|
1382 |
+
' title="-brightness-contrast 0x-5"' .
|
1383 |
+
' />' .
|
1384 |
+
' ';
|
1385 |
+
|
1386 |
+
// Brightness+
|
1387 |
+
echo
|
1388 |
+
'<input' .
|
1389 |
+
' type="button"' .
|
1390 |
+
' onclick="wppaTryMagick( ' . $id . ', \'brightness-p\' )"' .
|
1391 |
+
' value="' . esc_attr( __( 'Brightness+', 'wp-photo-album-plus' ) ) . '"' .
|
1392 |
+
' title="-brightness-contrast 5"' .
|
1393 |
+
' />' .
|
1394 |
+
' ';
|
1395 |
+
|
1396 |
+
// Brightness-
|
1397 |
+
echo
|
1398 |
+
'<input' .
|
1399 |
+
' type="button"' .
|
1400 |
+
' onclick="wppaTryMagick( ' . $id . ', \'brightness-m\' )"' .
|
1401 |
+
' value="' . esc_attr( __( 'Brightness-', 'wp-photo-album-plus' ) ) . '"' .
|
1402 |
+
' title="-brightness-contrast -5"' .
|
1403 |
+
' />' .
|
1404 |
+
' ';
|
1405 |
+
|
1406 |
+
// Despeckle
|
1407 |
+
echo
|
1408 |
+
'<input' .
|
1409 |
+
' type="button"' .
|
1410 |
+
' onclick="wppaTryMagick( ' . $id . ', \'despeckle\' )"' .
|
1411 |
+
' value="' . esc_attr( __( 'Despeckle', 'wp-photo-album-plus' ) ) . '"' .
|
1412 |
+
' title="-despeckle"' .
|
1413 |
+
' />' .
|
1414 |
+
' ';
|
1415 |
+
|
1416 |
+
// Lenear gray
|
1417 |
+
echo
|
1418 |
+
'<input' .
|
1419 |
+
' type="button"' .
|
1420 |
+
' onclick="wppaTryMagick( ' . $id . ', \'lineargray\' )"' .
|
1421 |
+
' value="' . esc_attr( __( 'Linear gray', 'wp-photo-album-plus' ) ) . '"' .
|
1422 |
+
' title="-colorspace gray"' .
|
1423 |
+
' />' .
|
1424 |
+
' ';
|
1425 |
+
|
1426 |
+
// Non-linear gray
|
1427 |
+
echo
|
1428 |
+
'<input' .
|
1429 |
+
' type="button"' .
|
1430 |
+
' onclick="wppaTryMagick( ' . $id . ', \'nonlineargray\' )"' .
|
1431 |
+
' value="' . esc_attr( __( 'Non-linear gray', 'wp-photo-album-plus' ) ) . '"' .
|
1432 |
+
' title="-grayscale Rec709Luma"' .
|
1433 |
+
' />' .
|
1434 |
+
' ';
|
1435 |
+
|
1436 |
+
// Charcoal
|
1437 |
+
echo
|
1438 |
+
'<input' .
|
1439 |
+
' type="button"' .
|
1440 |
+
' onclick="wppaTryMagick( ' . $id . ', \'charcoal\' )"' .
|
1441 |
+
' value="' . esc_attr( __( 'Charcoal', 'wp-photo-album-plus' ) ) . '"' .
|
1442 |
+
' title="-charcoal"' .
|
1443 |
+
' />' .
|
1444 |
+
' ';
|
1445 |
+
|
1446 |
+
// Paint
|
1447 |
+
echo
|
1448 |
+
'<input' .
|
1449 |
+
' type="button"' .
|
1450 |
+
' onclick="wppaTryMagick( ' . $id . ', \'paint\' )"' .
|
1451 |
+
' value="' . esc_attr( __( 'Paint', 'wp-photo-album-plus' ) ) . '"' .
|
1452 |
+
' title="-paint"' .
|
1453 |
+
' />' .
|
1454 |
+
' ';
|
1455 |
+
|
1456 |
+
// Sepia
|
1457 |
+
echo
|
1458 |
+
'<input' .
|
1459 |
+
' type="button"' .
|
1460 |
+
' onclick="wppaTryMagick( ' . $id . ', \'sepia\' )"' .
|
1461 |
+
' value="' . esc_attr( __( 'Sepia', 'wp-photo-album-plus' ) ) . '"' .
|
1462 |
+
' title="-sepia-tone 80%"' .
|
1463 |
+
' />' .
|
1464 |
+
' ';
|
1465 |
+
echo
|
1466 |
+
'</td>' .
|
1467 |
+
'</tr>' .
|
1468 |
+
'<tr>' .
|
1469 |
+
'<td>' .
|
1470 |
+
__( '<b>ImageMagick</b> command stack', 'wp-photo-album-plus' ) .
|
1471 |
+
': ' .
|
1472 |
+
'<span' .
|
1473 |
+
' id="imstack-' . $id . '"' .
|
1474 |
+
' style="color:blue;"' .
|
1475 |
+
' >' .
|
1476 |
+
$magickstack .
|
1477 |
+
'</span>' .
|
1478 |
+
' ' .
|
1479 |
+
'<input' .
|
1480 |
+
' type="button"' .
|
1481 |
+
' id="imstackbutton-' . $id . '"' .
|
1482 |
+
' onclick="wppaTryMagick( ' . $id . ', \'magicundo\' )"' .
|
1483 |
+
' value="' . esc_attr( __( 'Undo', 'wp-photo-album-plus' ) ) . '"' .
|
1484 |
+
' title="' . esc_attr( __( 'Undo last Magick command', 'wp-photo-album-plus' ) ) . '"' .
|
1485 |
+
' style="' . ( $magickstack ? '' : 'display:none;' ) . '"' .
|
1486 |
+
' />' .
|
1487 |
+
'</td>' .
|
1488 |
+
'</tr>';
|
1489 |
+
if ( ! $quick ) {
|
1490 |
+
echo
|
1491 |
+
'<tr>' .
|
1492 |
+
'<td>' .
|
1493 |
+
'<img' .
|
1494 |
+
' id="fs-img-' . $id . '"' .
|
1495 |
+
' src="' . wppa_get_photo_url( $id ) . '"' .
|
1496 |
+
' style="float:left;max-width:90%;" ' .
|
1497 |
+
' />' .
|
1498 |
+
'<div' .
|
1499 |
+
' style="display:inline-block;vertical-align:middle;margin-left:4px;margin-top:' . ( wppa_get_photoy( $id ) / 2 - 30 ) . 'px;"' .
|
1500 |
+
' >' .
|
1501 |
+
'<input' .
|
1502 |
+
' type="button"' .
|
1503 |
+
' onclick="wppaTryMagick( ' . $id . ', \'skyleft\' );"' .
|
1504 |
+
' value="' . esc_attr( 'Up', 'wp-photo-album-plus' ) . '"' .
|
1505 |
+
' title="' . esc_attr( 'Turn horizon up by 0.5°', 'wp-photo-album-plus' ) . '"' .
|
1506 |
+
' />' .
|
1507 |
+
'<br />' .
|
1508 |
+
'<input' .
|
1509 |
+
' type="button"' .
|
1510 |
+
' onclick="wppaToggleHorizon()"' .
|
1511 |
+
' value="' . esc_attr( 'Hor', 'wp-photo-album-plus' ) . '"' .
|
1512 |
+
' title="' . esc_attr( 'Toggle horizon reference line on/off', 'wp-photo-album-plus' ) . '"' .
|
1513 |
+
' />' .
|
1514 |
+
'<br />' .
|
1515 |
+
'<input' .
|
1516 |
+
' type="button"' .
|
1517 |
+
' onclick="wppaTryMagick( ' . $id . ', \'skyright\' );"' .
|
1518 |
+
' value="' . esc_attr( 'Down', 'wp-photo-album-plus' ) . '"' .
|
1519 |
+
' title="' . esc_attr( 'Turn horizon down by 0.5°', 'wp-photo-album-plus' ) . '"' .
|
1520 |
+
' />' .
|
1521 |
+
'</div>' .
|
1522 |
+
'</td>' .
|
1523 |
+
'</tr>';
|
1524 |
+
}
|
1525 |
+
'</tbody>' .
|
1526 |
+
'</table>';
|
1527 |
+
}
|
1528 |
+
|
1529 |
+
|
1530 |
echo // Section 4
|
1531 |
"\n" . '<!-- Section 4 -->' .
|
1532 |
'<table' .
|
3053 |
' type="button"' .
|
3054 |
' style="margin-top:8px;"' .
|
3055 |
' value="' . esc_attr( __( 'Cancel', 'wp-photo-album-plus' ) ) . '"' .
|
|
|
3056 |
' onclick="jQuery( \'#wppa-modal-container-' . strval( intval( $_REQUEST['moccur'] ) ) . '\').dialog(\'close\')"' .
|
3057 |
' />';
|
3058 |
|
3064 |
echo
|
3065 |
'</div>';
|
3066 |
|
3067 |
+
}
|
3068 |
+
|
3069 |
+
// See if this photo needs the ImageMagick features
|
3070 |
+
function wppa_can_admin_magick( $id ) {
|
3071 |
+
|
3072 |
+
// Is ImageMagick on board?
|
3073 |
+
if ( ! wppa_opt( 'image_magick' ) ) {
|
3074 |
+
return false;
|
3075 |
+
}
|
3076 |
+
|
3077 |
+
// Is it a video?
|
3078 |
+
if ( wppa_is_video( $id ) ) {
|
3079 |
+
return false;
|
3080 |
+
}
|
3081 |
+
|
3082 |
+
return true;
|
3083 |
}
|
wppa-photo-files.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-photo-files.php
|
3 |
*
|
4 |
* Functions used to create/manipulate photofiles
|
5 |
-
* Version 6.6.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -34,9 +34,9 @@ function wppa_make_o1_source( $id ) {
|
|
34 |
// Make destination path
|
35 |
$dst_path = wppa_get_o1_source_path( $id );
|
36 |
|
37 |
-
//
|
38 |
-
if ( wppa_opt( '
|
39 |
-
|
40 |
}
|
41 |
|
42 |
// Classic
|
@@ -148,9 +148,9 @@ function wppa_orientate_image_file( $file, $ori ) {
|
|
148 |
|
149 |
// Make the display and thumbnails from a given pathname or upload temp image file.
|
150 |
// The id and extension must be supplied.
|
151 |
-
function wppa_make_the_photo_files( $file, $id, $ext ) {
|
152 |
global $wpdb;
|
153 |
-
|
154 |
$thumb = wppa_cache_thumb( $id );
|
155 |
|
156 |
$src_size = @getimagesize( $file, $info );
|
@@ -168,129 +168,160 @@ global $wpdb;
|
|
168 |
$newimage = wppa_strip_ext( $newimage ) . '.' . strtolower( $ext );
|
169 |
}
|
170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
// If Resize on upload is checked
|
172 |
if ( wppa_switch( 'resize_on_upload' ) ) {
|
173 |
|
174 |
-
//
|
175 |
-
|
176 |
|
177 |
-
|
178 |
-
|
179 |
-
$
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
// Max sizes
|
184 |
-
if ( wppa_opt( 'resize_to' ) == '0' ) { // from fullsize
|
185 |
-
$max_width = wppa_opt( 'fullsize' );
|
186 |
-
$max_height = wppa_opt( 'maxheight' );
|
187 |
-
}
|
188 |
-
else { // from selection
|
189 |
-
$screen = explode( 'x', wppa_opt( 'resize_to' ) );
|
190 |
-
$max_width = $screen[0];
|
191 |
-
$max_height = $screen[1];
|
192 |
-
}
|
193 |
|
194 |
-
|
195 |
-
$ori = wppa_get_exif_orientation( $file );
|
196 |
-
if ( $ori >= 5 && $ori <= 8 ) {
|
197 |
-
$t = $max_width;
|
198 |
-
$max_width = $max_height;
|
199 |
-
$max_height = $t;
|
200 |
}
|
201 |
|
202 |
-
//
|
203 |
-
|
204 |
-
$focus = 'W';
|
205 |
-
$need_downsize = ( $src_width > $max_width );
|
206 |
-
}
|
207 |
-
else { // focus on height
|
208 |
-
$focus = 'H';
|
209 |
-
$need_downsize = ( $src_height > $max_height );
|
210 |
-
}
|
211 |
|
212 |
-
|
213 |
-
|
214 |
-
$src_width *= 2;
|
215 |
-
}
|
216 |
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
// Find mime type
|
221 |
-
$mime = $src_size[2];
|
222 |
-
|
223 |
-
// Create the source image
|
224 |
-
switch ( $mime ) { // mime type
|
225 |
-
case 1: // gif
|
226 |
-
$temp = @ imagecreatefromgif( $file );
|
227 |
-
if ( $temp ) {
|
228 |
-
$src = imagecreatetruecolor( $src_width, $src_height );
|
229 |
-
imagecopy( $src, $temp, 0, 0, 0, 0, $src_width, $src_height );
|
230 |
-
imagedestroy( $temp );
|
231 |
-
}
|
232 |
-
else $src = false;
|
233 |
-
break;
|
234 |
-
case 2: // jpeg
|
235 |
-
if ( ! function_exists( 'wppa_imagecreatefromjpeg' ) ) {
|
236 |
-
wppa_log( 'Error', 'Function wppa_imagecreatefromjpeg does not exist.' );
|
237 |
-
}
|
238 |
-
$src = @ wppa_imagecreatefromjpeg( $file );
|
239 |
-
break;
|
240 |
-
case 3: // png
|
241 |
-
$src = @ imagecreatefrompng( $file );
|
242 |
-
break;
|
243 |
}
|
|
|
244 |
|
245 |
-
|
246 |
-
|
247 |
-
|
|
|
248 |
}
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
$dst_width = $max_width;
|
254 |
-
$dst_height = round( $max_width * $src_height / $src_width );
|
255 |
}
|
256 |
-
|
257 |
-
|
258 |
-
|
|
|
|
|
|
|
|
|
259 |
}
|
260 |
-
$dst = imagecreatetruecolor( $dst_width, $dst_height );
|
261 |
|
262 |
-
//
|
263 |
-
if ( $
|
264 |
-
|
265 |
-
|
|
|
|
|
|
|
|
|
266 |
}
|
267 |
|
268 |
-
//
|
269 |
-
|
270 |
-
|
271 |
-
// Remove source image
|
272 |
-
imagedestroy( $src );
|
273 |
-
|
274 |
-
// Save the photo
|
275 |
-
switch ( $mime ) { // mime type
|
276 |
-
case 1:
|
277 |
-
imagegif( $dst, $newimage );
|
278 |
-
break;
|
279 |
-
case 2:
|
280 |
-
imagejpeg( $dst, $newimage, wppa_opt( 'jpeg_quality' ) );
|
281 |
-
break;
|
282 |
-
case 3:
|
283 |
-
imagepng( $dst, $newimage, 6 );
|
284 |
-
break;
|
285 |
}
|
286 |
|
287 |
-
//
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
-
}
|
|
|
|
|
294 |
else {
|
295 |
copy( $file, $newimage );
|
296 |
}
|
@@ -350,7 +381,9 @@ global $wpdb;
|
|
350 |
wppa_create_stereo_images( $id );
|
351 |
|
352 |
// Create thumbnail...
|
353 |
-
|
|
|
|
|
354 |
|
355 |
// Clear (super)cache
|
356 |
wppa_clear_cache();
|
@@ -360,35 +393,36 @@ global $wpdb;
|
|
360 |
|
361 |
// Create thubnail
|
362 |
function wppa_create_thumbnail( $id, $use_source = true ) {
|
363 |
-
|
364 |
// Find file to make thumbnail from
|
365 |
-
$
|
366 |
|
367 |
-
|
368 |
-
|
369 |
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
else {
|
374 |
-
$file = wppa_fix_poster_ext( wppa_get_photo_path( $id ), $id ); // Use photofile
|
375 |
}
|
376 |
|
377 |
-
//
|
378 |
-
|
379 |
-
|
380 |
-
$file = wppa_fix_poster_ext( wppa_get_photo_path( $id ), $id ); // Use photofile
|
381 |
}
|
382 |
}
|
|
|
|
|
383 |
else {
|
384 |
-
$
|
385 |
}
|
386 |
|
|
|
|
|
387 |
// Max side
|
388 |
$max_side = wppa_get_minisize();
|
389 |
|
390 |
// Check file
|
391 |
-
if ( !
|
392 |
$img_attr = getimagesize( $file );
|
393 |
if ( ! $img_attr ) return false; // Not an image, fail
|
394 |
|
@@ -430,156 +464,165 @@ function wppa_create_thumbnail( $id, $use_source = true ) {
|
|
430 |
$src_size_w *= 2;
|
431 |
}
|
432 |
|
433 |
-
//
|
434 |
-
|
435 |
-
|
436 |
-
$temp = @ imagecreatefromgif( $file );
|
437 |
-
if ( $temp ) {
|
438 |
-
$src = imagecreatetruecolor( $src_size_w, $src_size_h );
|
439 |
-
imagecopy( $src, $temp, 0, 0, 0, 0, $src_size_w, $src_size_h );
|
440 |
-
imagedestroy( $temp );
|
441 |
-
}
|
442 |
-
else $src = false;
|
443 |
-
break;
|
444 |
-
case 2: // jpeg
|
445 |
-
if ( ! function_exists( 'wppa_imagecreatefromjpeg' ) ) wppa_log( 'Error', 'Function wppa_imagecreatefromjpeg does not exist.' );
|
446 |
-
$src = @ wppa_imagecreatefromjpeg( $file );
|
447 |
-
break;
|
448 |
-
case 3: // png
|
449 |
-
$src = @ imagecreatefrompng( $file );
|
450 |
-
break;
|
451 |
-
}
|
452 |
-
if ( ! $src ) {
|
453 |
-
wppa_log( 'Error', 'Image file '.$file.' is corrupt while creating thmbnail' );
|
454 |
-
return true;
|
455 |
-
}
|
456 |
-
|
457 |
-
// Compute the destination image size
|
458 |
-
if ( $dst_asp < 1.0 ) { // Landscape
|
459 |
-
$dst_size_w = $max_side;
|
460 |
-
$dst_size_h = round( $max_side * $dst_asp );
|
461 |
-
}
|
462 |
-
else { // Portrait
|
463 |
-
$dst_size_w = round( $max_side / $dst_asp );
|
464 |
-
$dst_size_h = $max_side;
|
465 |
}
|
466 |
|
467 |
-
//
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
$g = hexdec( substr( $c, 3, 2 ) );
|
479 |
-
$b = hexdec( substr( $c, 5, 2 ) );
|
480 |
-
$color = imagecolorallocate( $dst, $r, $g, $b );
|
481 |
-
if ( $color === false ) {
|
482 |
-
wppa_log( 'Err', 'Unable to set background color to: '.$r.', '.$g.', '.$b.' in wppa_create_thumbnail' );
|
483 |
}
|
484 |
-
else {
|
485 |
-
|
|
|
486 |
}
|
487 |
-
}
|
488 |
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
$
|
493 |
-
$
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
$
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
$dst_w = $dst_size_w;
|
506 |
-
$dst_h = $dst_size_h;
|
507 |
-
$src_x = round( ( $src_size_w - $src_size_h / $dst_asp ) / 2 );
|
508 |
-
$src_y = 0;
|
509 |
-
$src_w = round( $src_size_h / $dst_asp );
|
510 |
-
$src_h = $src_size_h;
|
511 |
}
|
512 |
else {
|
513 |
-
$
|
514 |
-
$dst_y = 0;
|
515 |
-
$dst_w = $dst_size_w;
|
516 |
-
$dst_h = $dst_size_h;
|
517 |
-
$src_x = 0;
|
518 |
-
$src_y = round( ( $src_size_h - $src_size_w * $dst_asp ) / 2 );
|
519 |
-
$src_w = $src_size_w;
|
520 |
-
$src_h = round( $src_size_w * $dst_asp );
|
521 |
}
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
$dst_w = $dst_size_w;
|
528 |
-
$dst_h = round( $dst_size_w * $src_asp );
|
529 |
$src_x = 0;
|
530 |
$src_y = 0;
|
531 |
$src_w = $src_size_w;
|
532 |
$src_h = $src_size_h;
|
533 |
-
|
534 |
-
else {
|
535 |
-
$dst_x = round( ( $dst_size_w - $dst_size_h / $src_asp ) / 2 );
|
536 |
$dst_y = 0;
|
537 |
-
$dst_w =
|
538 |
$dst_h = $dst_size_h;
|
539 |
-
|
540 |
-
|
541 |
-
$
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
|
554 |
-
|
555 |
-
|
556 |
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
|
|
573 |
|
574 |
-
|
575 |
-
|
576 |
-
|
|
|
577 |
|
578 |
// Make sure file is accessable
|
579 |
-
wppa_chmod( $
|
580 |
|
581 |
// Optimize
|
582 |
-
wppa_optimize_image_file( $
|
583 |
|
584 |
// Compute and save sizes
|
585 |
wppa_get_thumbx( $id, 'force' ); // forces recalc x and y
|
@@ -596,20 +639,45 @@ function wppa_imagecreatefromjpeg( $file ) {
|
|
596 |
return $img;
|
597 |
}
|
598 |
|
599 |
-
//
|
600 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
601 |
|
602 |
// Image magic enabled?
|
603 |
-
if ( ! wppa_opt( '
|
604 |
return '-9';
|
605 |
}
|
606 |
|
607 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
$out = array();
|
609 |
$err = 0;
|
610 |
$run = exec( $path . $command, $out, $err );
|
611 |
-
|
612 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
}
|
|
|
614 |
return $err;
|
615 |
}
|
2 |
/* wppa-photo-files.php
|
3 |
*
|
4 |
* Functions used to create/manipulate photofiles
|
5 |
+
* Version 6.6.17
|
6 |
*
|
7 |
*/
|
8 |
|
34 |
// Make destination path
|
35 |
$dst_path = wppa_get_o1_source_path( $id );
|
36 |
|
37 |
+
// ImageMagick
|
38 |
+
if ( wppa_opt( 'image_magick' ) ) {
|
39 |
+
wppa_image_magick( 'convert ' . $src_path . ' -auto-orient ' . $dst_path );
|
40 |
}
|
41 |
|
42 |
// Classic
|
148 |
|
149 |
// Make the display and thumbnails from a given pathname or upload temp image file.
|
150 |
// The id and extension must be supplied.
|
151 |
+
function wppa_make_the_photo_files( $file, $id, $ext, $do_thumb = true ) {
|
152 |
global $wpdb;
|
153 |
+
//wppa_log('dbg', 'make called with'.$file.' '.$id.' '.$ext.' '.$do_thumb);
|
154 |
$thumb = wppa_cache_thumb( $id );
|
155 |
|
156 |
$src_size = @getimagesize( $file, $info );
|
168 |
$newimage = wppa_strip_ext( $newimage ) . '.' . strtolower( $ext );
|
169 |
}
|
170 |
|
171 |
+
// Max sizes
|
172 |
+
if ( wppa_opt( 'resize_to' ) == '0' ) { // from fullsize
|
173 |
+
$max_width = wppa_opt( 'fullsize' );
|
174 |
+
$max_height = wppa_opt( 'maxheight' );
|
175 |
+
}
|
176 |
+
else { // from selection
|
177 |
+
$screen = explode( 'x', wppa_opt( 'resize_to' ) );
|
178 |
+
$max_width = $screen[0];
|
179 |
+
$max_height = $screen[1];
|
180 |
+
}
|
181 |
+
|
182 |
// If Resize on upload is checked
|
183 |
if ( wppa_switch( 'resize_on_upload' ) ) {
|
184 |
|
185 |
+
// ImageMagick
|
186 |
+
if ( wppa_opt( 'image_magick' ) ) {
|
187 |
|
188 |
+
// If jpg, apply jpeg quality
|
189 |
+
$q = wppa_opt( 'jpeg_quality' );
|
190 |
+
$quality = '';
|
191 |
+
if ( wppa_get_ext( $file ) == 'jpg' ) {
|
192 |
+
$quality = '-quality ' . $q;
|
193 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
+
wppa_image_magick( 'convert ' . $file . ' ' . $quality . ' -resize ' . ( $thumb['stereo'] ? 2 * $max_width : $max_width ) . 'x' . $max_height . ' ' . $newimage );
|
|
|
|
|
|
|
|
|
|
|
196 |
}
|
197 |
|
198 |
+
// Classic GD
|
199 |
+
else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
|
201 |
+
// Picture sizes
|
202 |
+
$src_width = $src_size[0];
|
|
|
|
|
203 |
|
204 |
+
// Temp convert to logical width if stereo
|
205 |
+
if ( $thumb['stereo'] ) {
|
206 |
+
$src_width /= 2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
}
|
208 |
+
$src_height = $src_size[1];
|
209 |
|
210 |
+
/* // Max sizes
|
211 |
+
if ( wppa_opt( 'resize_to' ) == '0' ) { // from fullsize
|
212 |
+
$max_width = wppa_opt( 'fullsize' );
|
213 |
+
$max_height = wppa_opt( 'maxheight' );
|
214 |
}
|
215 |
+
else { // from selection
|
216 |
+
$screen = explode( 'x', wppa_opt( 'resize_to' ) );
|
217 |
+
$max_width = $screen[0];
|
218 |
+
$max_height = $screen[1];
|
|
|
|
|
219 |
}
|
220 |
+
*/
|
221 |
+
// If orientation needs +/- 90 deg rotation, swap max x and max y
|
222 |
+
$ori = wppa_get_exif_orientation( $file );
|
223 |
+
if ( $ori >= 5 && $ori <= 8 ) {
|
224 |
+
$t = $max_width;
|
225 |
+
$max_width = $max_height;
|
226 |
+
$max_height = $t;
|
227 |
}
|
|
|
228 |
|
229 |
+
// Is source more landscape or more portrait than max window
|
230 |
+
if ( $src_width/$src_height > $max_width/$max_height ) { // focus on width
|
231 |
+
$focus = 'W';
|
232 |
+
$need_downsize = ( $src_width > $max_width );
|
233 |
+
}
|
234 |
+
else { // focus on height
|
235 |
+
$focus = 'H';
|
236 |
+
$need_downsize = ( $src_height > $max_height );
|
237 |
}
|
238 |
|
239 |
+
// Convert back to physical size
|
240 |
+
if ( $thumb['stereo'] ) {
|
241 |
+
$src_width *= 2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
}
|
243 |
|
244 |
+
// Downsize required ?
|
245 |
+
if ( $need_downsize ) {
|
246 |
+
|
247 |
+
// Find mime type
|
248 |
+
$mime = $src_size[2];
|
249 |
+
|
250 |
+
// Create the source image
|
251 |
+
switch ( $mime ) { // mime type
|
252 |
+
case 1: // gif
|
253 |
+
$temp = @ imagecreatefromgif( $file );
|
254 |
+
if ( $temp ) {
|
255 |
+
$src = imagecreatetruecolor( $src_width, $src_height );
|
256 |
+
imagecopy( $src, $temp, 0, 0, 0, 0, $src_width, $src_height );
|
257 |
+
imagedestroy( $temp );
|
258 |
+
}
|
259 |
+
else $src = false;
|
260 |
+
break;
|
261 |
+
case 2: // jpeg
|
262 |
+
if ( ! function_exists( 'wppa_imagecreatefromjpeg' ) ) {
|
263 |
+
wppa_log( 'Error', 'Function wppa_imagecreatefromjpeg does not exist.' );
|
264 |
+
}
|
265 |
+
$src = @ wppa_imagecreatefromjpeg( $file );
|
266 |
+
break;
|
267 |
+
case 3: // png
|
268 |
+
$src = @ imagecreatefrompng( $file );
|
269 |
+
break;
|
270 |
+
}
|
271 |
+
|
272 |
+
if ( ! $src ) {
|
273 |
+
wppa_log( 'Error', 'Image file '.$file.' is corrupt while downsizing photo' );
|
274 |
+
return false;
|
275 |
+
}
|
276 |
+
|
277 |
+
// Create the ( empty ) destination image
|
278 |
+
if ( $focus == 'W') {
|
279 |
+
if ( $thumb['stereo'] ) $max_width *= 2;
|
280 |
+
$dst_width = $max_width;
|
281 |
+
$dst_height = round( $max_width * $src_height / $src_width );
|
282 |
+
}
|
283 |
+
else {
|
284 |
+
$dst_height = $max_height;
|
285 |
+
$dst_width = round( $max_height * $src_width / $src_height );
|
286 |
+
}
|
287 |
+
$dst = imagecreatetruecolor( $dst_width, $dst_height );
|
288 |
+
|
289 |
+
// If Png, save transparancy
|
290 |
+
if ( $mime == 3 ) {
|
291 |
+
imagealphablending( $dst, false );
|
292 |
+
imagesavealpha( $dst, true );
|
293 |
+
}
|
294 |
+
|
295 |
+
// Do the copy
|
296 |
+
imagecopyresampled( $dst, $src, 0, 0, 0, 0, $dst_width, $dst_height, $src_width, $src_height );
|
297 |
+
|
298 |
+
// Remove source image
|
299 |
+
imagedestroy( $src );
|
300 |
+
|
301 |
+
// Save the photo
|
302 |
+
switch ( $mime ) { // mime type
|
303 |
+
case 1:
|
304 |
+
imagegif( $dst, $newimage );
|
305 |
+
break;
|
306 |
+
case 2:
|
307 |
+
imagejpeg( $dst, $newimage, wppa_opt( 'jpeg_quality' ) );
|
308 |
+
break;
|
309 |
+
case 3:
|
310 |
+
imagepng( $dst, $newimage, 6 );
|
311 |
+
break;
|
312 |
+
}
|
313 |
+
|
314 |
+
// Remove destination image
|
315 |
+
imagedestroy( $dst );
|
316 |
+
|
317 |
+
}
|
318 |
+
else { // No downsize needed, picture is small enough
|
319 |
+
copy( $file, $newimage );
|
320 |
+
}
|
321 |
}
|
322 |
+
}
|
323 |
+
|
324 |
+
// No resize on upload checked
|
325 |
else {
|
326 |
copy( $file, $newimage );
|
327 |
}
|
381 |
wppa_create_stereo_images( $id );
|
382 |
|
383 |
// Create thumbnail...
|
384 |
+
if ( $do_thumb ) {
|
385 |
+
wppa_create_thumbnail( $id );
|
386 |
+
}
|
387 |
|
388 |
// Clear (super)cache
|
389 |
wppa_clear_cache();
|
393 |
|
394 |
// Create thubnail
|
395 |
function wppa_create_thumbnail( $id, $use_source = true ) {
|
396 |
+
//wppa_log('dbg', 'Crethumb called with '.$id.' '.$use_source);
|
397 |
// Find file to make thumbnail from
|
398 |
+
if ( $use_source && ! wppa_switch( 'watermark_thumbs' ) ) {
|
399 |
|
400 |
+
// Try o1 source
|
401 |
+
$sp = wppa_get_o1_source_path( $id );
|
402 |
|
403 |
+
// Try source path
|
404 |
+
if ( ! is_file( $sp ) ) {
|
405 |
+
$sp = wppa_get_source_path( $id );
|
|
|
|
|
406 |
}
|
407 |
|
408 |
+
// Use photo path
|
409 |
+
if ( ! is_file( $sp ) ) {
|
410 |
+
$sp = wppa_get_photo_path( $id );
|
|
|
411 |
}
|
412 |
}
|
413 |
+
|
414 |
+
// Not source requested
|
415 |
else {
|
416 |
+
$sp = wppa_get_photo_path( $id );
|
417 |
}
|
418 |
|
419 |
+
$file = wppa_fix_poster_ext( $sp, $id );
|
420 |
+
|
421 |
// Max side
|
422 |
$max_side = wppa_get_minisize();
|
423 |
|
424 |
// Check file
|
425 |
+
if ( ! is_file( $file ) ) return false; // No file, fail
|
426 |
$img_attr = getimagesize( $file );
|
427 |
if ( ! $img_attr ) return false; // Not an image, fail
|
428 |
|
464 |
$src_size_w *= 2;
|
465 |
}
|
466 |
|
467 |
+
// Image Magick?
|
468 |
+
if ( wppa_opt( 'image_magick' ) && $type == 'none' ) {
|
469 |
+
wppa_image_magick( 'convert ' . $file . ' -thumbnail ' . $max_side . 'x' . $max_side . ' ' . $thumbpath );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
}
|
471 |
|
472 |
+
// Classic GD
|
473 |
+
else {
|
474 |
+
// Create the source image
|
475 |
+
switch ( $mime ) { // mime type
|
476 |
+
case 1: // gif
|
477 |
+
$temp = @ imagecreatefromgif( $file );
|
478 |
+
if ( $temp ) {
|
479 |
+
$src = imagecreatetruecolor( $src_size_w, $src_size_h );
|
480 |
+
imagecopy( $src, $temp, 0, 0, 0, 0, $src_size_w, $src_size_h );
|
481 |
+
imagedestroy( $temp );
|
482 |
+
}
|
483 |
+
else $src = false;
|
484 |
+
break;
|
485 |
+
case 2: // jpeg
|
486 |
+
if ( ! function_exists( 'wppa_imagecreatefromjpeg' ) ) wppa_log( 'Error', 'Function wppa_imagecreatefromjpeg does not exist.' );
|
487 |
+
$src = @ wppa_imagecreatefromjpeg( $file );
|
488 |
+
break;
|
489 |
+
case 3: // png
|
490 |
+
$src = @ imagecreatefrompng( $file );
|
491 |
+
break;
|
492 |
+
}
|
493 |
+
if ( ! $src ) {
|
494 |
+
wppa_log( 'Error', 'Image file '.$file.' is corrupt while creating thmbnail' );
|
495 |
+
return true;
|
496 |
+
}
|
497 |
|
498 |
+
// Compute the destination image size
|
499 |
+
if ( $dst_asp < 1.0 ) { // Landscape
|
500 |
+
$dst_size_w = $max_side;
|
501 |
+
$dst_size_h = round( $max_side * $dst_asp );
|
|
|
|
|
|
|
|
|
|
|
502 |
}
|
503 |
+
else { // Portrait
|
504 |
+
$dst_size_w = round( $max_side / $dst_asp );
|
505 |
+
$dst_size_h = $max_side;
|
506 |
}
|
|
|
507 |
|
508 |
+
// Create the ( empty ) destination image
|
509 |
+
$dst = imagecreatetruecolor( $dst_size_w, $dst_size_h );
|
510 |
+
if ( $mime == 3 ) { // Png, save transparancy
|
511 |
+
imagealphablending( $dst, false );
|
512 |
+
imagesavealpha( $dst, true );
|
513 |
+
}
|
514 |
+
|
515 |
+
// Fill with the required color
|
516 |
+
$c = trim( strtolower( wppa_opt( 'bgcolor_thumbnail' ) ) );
|
517 |
+
if ( $c != '#000000' ) {
|
518 |
+
$r = hexdec( substr( $c, 1, 2 ) );
|
519 |
+
$g = hexdec( substr( $c, 3, 2 ) );
|
520 |
+
$b = hexdec( substr( $c, 5, 2 ) );
|
521 |
+
$color = imagecolorallocate( $dst, $r, $g, $b );
|
522 |
+
if ( $color === false ) {
|
523 |
+
wppa_log( 'Err', 'Unable to set background color to: '.$r.', '.$g.', '.$b.' in wppa_create_thumbnail' );
|
|
|
|
|
|
|
|
|
|
|
|
|
524 |
}
|
525 |
else {
|
526 |
+
imagefilledrectangle( $dst, 0, 0, $dst_size_w, $dst_size_h, $color );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
}
|
528 |
+
}
|
529 |
+
|
530 |
+
// Switch on what we have to do
|
531 |
+
switch ( $type ) {
|
532 |
+
case 'none': // Use aspect from fullsize image
|
|
|
|
|
533 |
$src_x = 0;
|
534 |
$src_y = 0;
|
535 |
$src_w = $src_size_w;
|
536 |
$src_h = $src_size_h;
|
537 |
+
$dst_x = 0;
|
|
|
|
|
538 |
$dst_y = 0;
|
539 |
+
$dst_w = $dst_size_w;
|
540 |
$dst_h = $dst_size_h;
|
541 |
+
break;
|
542 |
+
case 'clip': // Clip image to given aspect ratio
|
543 |
+
if ( $src_asp < $dst_asp ) { // Source image more landscape than destination
|
544 |
+
$dst_x = 0;
|
545 |
+
$dst_y = 0;
|
546 |
+
$dst_w = $dst_size_w;
|
547 |
+
$dst_h = $dst_size_h;
|
548 |
+
$src_x = round( ( $src_size_w - $src_size_h / $dst_asp ) / 2 );
|
549 |
+
$src_y = 0;
|
550 |
+
$src_w = round( $src_size_h / $dst_asp );
|
551 |
+
$src_h = $src_size_h;
|
552 |
+
}
|
553 |
+
else {
|
554 |
+
$dst_x = 0;
|
555 |
+
$dst_y = 0;
|
556 |
+
$dst_w = $dst_size_w;
|
557 |
+
$dst_h = $dst_size_h;
|
558 |
+
$src_x = 0;
|
559 |
+
$src_y = round( ( $src_size_h - $src_size_w * $dst_asp ) / 2 );
|
560 |
+
$src_w = $src_size_w;
|
561 |
+
$src_h = round( $src_size_w * $dst_asp );
|
562 |
+
}
|
563 |
+
break;
|
564 |
+
case 'padd': // Padd image to given aspect ratio
|
565 |
+
if ( $src_asp < $dst_asp ) { // Source image more landscape than destination
|
566 |
+
$dst_x = 0;
|
567 |
+
$dst_y = round( ( $dst_size_h - $dst_size_w * $src_asp ) / 2 );
|
568 |
+
$dst_w = $dst_size_w;
|
569 |
+
$dst_h = round( $dst_size_w * $src_asp );
|
570 |
+
$src_x = 0;
|
571 |
+
$src_y = 0;
|
572 |
+
$src_w = $src_size_w;
|
573 |
+
$src_h = $src_size_h;
|
574 |
+
}
|
575 |
+
else {
|
576 |
+
$dst_x = round( ( $dst_size_w - $dst_size_h / $src_asp ) / 2 );
|
577 |
+
$dst_y = 0;
|
578 |
+
$dst_w = round( $dst_size_h / $src_asp );
|
579 |
+
$dst_h = $dst_size_h;
|
580 |
+
$src_x = 0;
|
581 |
+
$src_y = 0;
|
582 |
+
$src_w = $src_size_w;
|
583 |
+
$src_h = $src_size_h;
|
584 |
+
}
|
585 |
+
break;
|
586 |
+
default: // Not implemented
|
587 |
+
return false;
|
588 |
+
}
|
589 |
|
590 |
+
// Copy left half if stereo
|
591 |
+
if ( wppa_get_photo_item( $id, 'stereo' ) ) {
|
592 |
+
$src_w /= 2;
|
593 |
+
}
|
594 |
|
595 |
+
// Do the copy
|
596 |
+
imagecopyresampled( $dst, $src, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h );
|
597 |
|
598 |
+
// Save the thumb
|
599 |
+
$thumbpath = wppa_strip_ext( $thumbpath );
|
600 |
+
switch ( $mime ) { // mime type
|
601 |
+
case 1:
|
602 |
+
$full_thumbpath = $thumbpath . '.gif';
|
603 |
+
imagegif( $dst, $full_thumbpath );
|
604 |
+
break;
|
605 |
+
case 2:
|
606 |
+
$full_thumbpath = $thumbpath . '.jpg';
|
607 |
+
imagejpeg( $dst, $full_thumbpath, wppa_opt( 'jpeg_quality' ) );
|
608 |
+
break;
|
609 |
+
case 3:
|
610 |
+
$full_thumbpath = $thumbpath . '.png';
|
611 |
+
imagepng( $dst, $full_thumbpath, 6 );
|
612 |
+
break;
|
613 |
+
}
|
614 |
+
$thumbpath = $full_thumbpath;
|
615 |
|
616 |
+
// Cleanup
|
617 |
+
imagedestroy( $src );
|
618 |
+
imagedestroy( $dst );
|
619 |
+
}
|
620 |
|
621 |
// Make sure file is accessable
|
622 |
+
wppa_chmod( $thumbpath );
|
623 |
|
624 |
// Optimize
|
625 |
+
wppa_optimize_image_file( $thumbpath );
|
626 |
|
627 |
// Compute and save sizes
|
628 |
wppa_get_thumbx( $id, 'force' ); // forces recalc x and y
|
639 |
return $img;
|
640 |
}
|
641 |
|
642 |
+
// See if ImageMagick command exists
|
643 |
+
function wppa_is_magick( $command ) {
|
644 |
+
if ( ! $command ) {
|
645 |
+
return false;
|
646 |
+
}
|
647 |
+
if ( ! wppa_opt( 'image_magick' ) ) {
|
648 |
+
return false;
|
649 |
+
}
|
650 |
+
return is_file( rtrim( wppa_opt( 'image_magick' ), '/' ) . '/' . $command );
|
651 |
+
}
|
652 |
+
|
653 |
+
// Process ImageMagick command
|
654 |
+
function wppa_image_magick( $command ) {
|
655 |
|
656 |
// Image magic enabled?
|
657 |
+
if ( ! wppa_opt( 'image_magick' ) ) {
|
658 |
return '-9';
|
659 |
}
|
660 |
|
661 |
+
// Image Magick root dir
|
662 |
+
$path = rtrim( wppa_opt( 'image_magick' ), '/' ) . '/';
|
663 |
+
|
664 |
+
// Try to prepend 'magick' to the command if its not already there.
|
665 |
+
// This is for forward compatibility, e.g. when 'magick' exists but 'convert' not.
|
666 |
+
if ( wppa_is_magick( 'magick' ) && substr( $command, 0, 6 ) != 'magick' ) {
|
667 |
+
$command = 'magick ' . $command;
|
668 |
+
}
|
669 |
$out = array();
|
670 |
$err = 0;
|
671 |
$run = exec( $path . $command, $out, $err );
|
672 |
+
$key = $err ? 'Err' : 'Dbg';
|
673 |
+
|
674 |
+
$logcom = $command;
|
675 |
+
$logcom = str_replace( ABSPATH, '...', $logcom );
|
676 |
+
$logcom = str_replace( wppa_opt( 'image_magick' ), '...', $logcom );
|
677 |
+
wppa_log( $key, 'Exec ' . $logcom . ' returned ' . $err ); //, true );
|
678 |
+
foreach( $out as $line ) {
|
679 |
+
wppa_log( 'OBS', $line );
|
680 |
}
|
681 |
+
|
682 |
return $err;
|
683 |
}
|
wppa-settings-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -25,7 +25,7 @@ global $no_default;
|
|
25 |
global $wppa_tags;
|
26 |
global $wp_version;
|
27 |
|
28 |
-
//
|
29 |
|
30 |
// End test area
|
31 |
|
@@ -286,6 +286,7 @@ global $wp_version;
|
|
286 |
'cachify/cachify.php',
|
287 |
'wp-deferred-javascripts/wp-deferred-javascripts.php',
|
288 |
'frndzk-photo-lightbox-gallery/frndzk_photo_gallery.php',
|
|
|
289 |
);
|
290 |
$plugins = get_option('active_plugins');
|
291 |
$matches = array_intersect($blacklist_plugins, $plugins);
|
@@ -364,6 +365,7 @@ global $wp_version;
|
|
364 |
'layout' => __('Layout', 'wp-photo-album-plus'),
|
365 |
'lightbox' => __('Lightbox', 'wp-photo-album-plus'),
|
366 |
'link' => __('Links', 'wp-photo-album-plus'),
|
|
|
367 |
'meta' => __('Metadata', 'wp-photo-album-plus'),
|
368 |
'navi' => __('Navigation', 'wp-photo-album-plus'),
|
369 |
'page' => __('Page', 'wp-photo-album-plus'),
|
@@ -4383,7 +4385,7 @@ global $wp_version;
|
|
4383 |
$slug = 'wppa_dislike_mail_every';
|
4384 |
$html = wppa_input($slug, '40px', '', __('reports', 'wp-photo-album-plus'));
|
4385 |
$clas = 'wppa_rating_';
|
4386 |
-
$tags = 'rating';
|
4387 |
wppa_setting($slug, '7', $name, $desc, $html, $help, $clas, $tags);
|
4388 |
|
4389 |
$name = __('Pending after', 'wp-photo-album-plus');
|
@@ -4581,7 +4583,7 @@ global $wp_version;
|
|
4581 |
);
|
4582 |
$html = wppa_select($slug, $opts, $vals);
|
4583 |
$clas = 'wppa_comment_';
|
4584 |
-
$tags = 'comment';
|
4585 |
wppa_setting($slug, '4', $name, $desc, $html, $help, $clas, $tags);
|
4586 |
|
4587 |
$name = __('Comment notify', 'wp-photo-album-plus');
|
@@ -4614,7 +4616,7 @@ global $wp_version;
|
|
4614 |
}
|
4615 |
$html = wppa_select($slug, $options, $values);
|
4616 |
$clas = 'wppa_comment_';
|
4617 |
-
$tags = 'comment';
|
4618 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
4619 |
|
4620 |
$name = __('Comment notify previous', 'wp-photo-album-plus');
|
@@ -4643,7 +4645,7 @@ global $wp_version;
|
|
4643 |
$slug = 'wppa_com_notify_approved_text';
|
4644 |
$html = wppa_textarea($slug, $name);
|
4645 |
$clas = 'wppa_comment_';
|
4646 |
-
$tags = 'comment';
|
4647 |
wppa_setting($slug, '5.3', $name, $desc, $html, $help, $clas, $tags);
|
4648 |
|
4649 |
$name = __('Com ntfy appr email subject', 'wp-photo-album-plus');
|
@@ -4652,7 +4654,7 @@ global $wp_version;
|
|
4652 |
$slug = 'wppa_com_notify_approved_subj';
|
4653 |
$html = wppa_input($slug, '300px;');
|
4654 |
$clas = 'wppa_comment_';
|
4655 |
-
$tags = 'comment';
|
4656 |
wppa_setting($slug, '5.4', $name, $desc, $html, $help, $clas, $tags);
|
4657 |
|
4658 |
|
@@ -4699,7 +4701,7 @@ global $wp_version;
|
|
4699 |
$slug = 'wppa_mail_upl_email';
|
4700 |
$html = wppa_checkbox($slug);
|
4701 |
$clas = 'wppa_comment_';
|
4702 |
-
$tags = 'comment,layout';
|
4703 |
wppa_setting($slug, '10', $name, $desc, $html, $help, $clas, $tags);
|
4704 |
}
|
4705 |
wppa_setting_subheader( 'G', '1', __( 'Lightbox related settings. These settings have effect only when Table IX-J3 is set to wppa' , 'wp-photo-album-plus') );
|
@@ -6353,7 +6355,7 @@ global $wp_version;
|
|
6353 |
$html2 = '';
|
6354 |
$html = array( $html1, $html2 );
|
6355 |
$clas = '';
|
6356 |
-
$tags = 'upload';
|
6357 |
wppa_setting($slug, '8', $name, $desc, $html, $help, $clas, $tags);
|
6358 |
|
6359 |
$name = __('Upload backend notify', 'wp-photo-album-plus');
|
@@ -6364,7 +6366,7 @@ global $wp_version;
|
|
6364 |
$html2 = '';
|
6365 |
$html = array( $html1, $html2 );
|
6366 |
$clas = '';
|
6367 |
-
$tags = 'upload';
|
6368 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
6369 |
|
6370 |
$name = __('Max size in pixels', 'wp-photo-album-plus');
|
@@ -6528,7 +6530,7 @@ global $wp_version;
|
|
6528 |
|
6529 |
$name = __('Upload Owners only', 'wp-photo-album-plus');
|
6530 |
$desc = __('Limit uploads to the album owners only.', 'wp-photo-album-plus');
|
6531 |
-
$help = esc_js(__('If checked, users can upload to their own
|
6532 |
$slug = 'wppa_upload_owner_only';
|
6533 |
$html1 = wppa_checkbox($slug);
|
6534 |
$html2 = '';
|
@@ -7829,6 +7831,15 @@ if ( strpos( $_SERVER['SERVER_NAME'], 'opajaap' ) !== false ) {
|
|
7829 |
$tags = 'system';
|
7830 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
7831 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7832 |
}
|
7833 |
wppa_setting_subheader( 'B', '1', __( 'WPPA+ Admin related miscellaneous settings' , 'wp-photo-album-plus') );
|
7834 |
{
|
@@ -9546,9 +9557,9 @@ if ( strpos( $_SERVER['SERVER_NAME'], 'opajaap' ) !== false ) {
|
|
9546 |
wppa_setting($slug, '6.3', $name, $desc, $html, $help, $clas, $tags);
|
9547 |
|
9548 |
$name = __('Image Magick', 'wp-photo-album-plus');
|
9549 |
-
$desc = __('Absulute path to the ImageMagick commands', 'wp-photo-album-plus') . ' <span style="color:red;" >' . __('experimental', 'wp-photo-album-plus') . '</span>';
|
9550 |
$help = esc_js(__('If you want to use ImageMagick, enter the absolute path to the ImageMagick commands', 'wp-photo-album-plus'));
|
9551 |
-
$slug = '
|
9552 |
$html = wppa_input($slug, '300px');
|
9553 |
$clas = '';
|
9554 |
$tags = 'system';
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
25 |
global $wppa_tags;
|
26 |
global $wp_version;
|
27 |
|
28 |
+
// Start test area
|
29 |
|
30 |
// End test area
|
31 |
|
286 |
'cachify/cachify.php',
|
287 |
'wp-deferred-javascripts/wp-deferred-javascripts.php',
|
288 |
'frndzk-photo-lightbox-gallery/frndzk_photo_gallery.php',
|
289 |
+
'simple-lightbox/main.php',
|
290 |
);
|
291 |
$plugins = get_option('active_plugins');
|
292 |
$matches = array_intersect($blacklist_plugins, $plugins);
|
365 |
'layout' => __('Layout', 'wp-photo-album-plus'),
|
366 |
'lightbox' => __('Lightbox', 'wp-photo-album-plus'),
|
367 |
'link' => __('Links', 'wp-photo-album-plus'),
|
368 |
+
'mail' => __('Mail', 'wp-photo-album-plus'),
|
369 |
'meta' => __('Metadata', 'wp-photo-album-plus'),
|
370 |
'navi' => __('Navigation', 'wp-photo-album-plus'),
|
371 |
'page' => __('Page', 'wp-photo-album-plus'),
|
4385 |
$slug = 'wppa_dislike_mail_every';
|
4386 |
$html = wppa_input($slug, '40px', '', __('reports', 'wp-photo-album-plus'));
|
4387 |
$clas = 'wppa_rating_';
|
4388 |
+
$tags = 'rating,mail';
|
4389 |
wppa_setting($slug, '7', $name, $desc, $html, $help, $clas, $tags);
|
4390 |
|
4391 |
$name = __('Pending after', 'wp-photo-album-plus');
|
4583 |
);
|
4584 |
$html = wppa_select($slug, $opts, $vals);
|
4585 |
$clas = 'wppa_comment_';
|
4586 |
+
$tags = 'comment,mail';
|
4587 |
wppa_setting($slug, '4', $name, $desc, $html, $help, $clas, $tags);
|
4588 |
|
4589 |
$name = __('Comment notify', 'wp-photo-album-plus');
|
4616 |
}
|
4617 |
$html = wppa_select($slug, $options, $values);
|
4618 |
$clas = 'wppa_comment_';
|
4619 |
+
$tags = 'comment,mail';
|
4620 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
4621 |
|
4622 |
$name = __('Comment notify previous', 'wp-photo-album-plus');
|
4645 |
$slug = 'wppa_com_notify_approved_text';
|
4646 |
$html = wppa_textarea($slug, $name);
|
4647 |
$clas = 'wppa_comment_';
|
4648 |
+
$tags = 'comment,mail';
|
4649 |
wppa_setting($slug, '5.3', $name, $desc, $html, $help, $clas, $tags);
|
4650 |
|
4651 |
$name = __('Com ntfy appr email subject', 'wp-photo-album-plus');
|
4654 |
$slug = 'wppa_com_notify_approved_subj';
|
4655 |
$html = wppa_input($slug, '300px;');
|
4656 |
$clas = 'wppa_comment_';
|
4657 |
+
$tags = 'comment,mail';
|
4658 |
wppa_setting($slug, '5.4', $name, $desc, $html, $help, $clas, $tags);
|
4659 |
|
4660 |
|
4701 |
$slug = 'wppa_mail_upl_email';
|
4702 |
$html = wppa_checkbox($slug);
|
4703 |
$clas = 'wppa_comment_';
|
4704 |
+
$tags = 'comment,layout,mail';
|
4705 |
wppa_setting($slug, '10', $name, $desc, $html, $help, $clas, $tags);
|
4706 |
}
|
4707 |
wppa_setting_subheader( 'G', '1', __( 'Lightbox related settings. These settings have effect only when Table IX-J3 is set to wppa' , 'wp-photo-album-plus') );
|
6355 |
$html2 = '';
|
6356 |
$html = array( $html1, $html2 );
|
6357 |
$clas = '';
|
6358 |
+
$tags = 'upload,mail';
|
6359 |
wppa_setting($slug, '8', $name, $desc, $html, $help, $clas, $tags);
|
6360 |
|
6361 |
$name = __('Upload backend notify', 'wp-photo-album-plus');
|
6366 |
$html2 = '';
|
6367 |
$html = array( $html1, $html2 );
|
6368 |
$clas = '';
|
6369 |
+
$tags = 'upload,mail';
|
6370 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
6371 |
|
6372 |
$name = __('Max size in pixels', 'wp-photo-album-plus');
|
6530 |
|
6531 |
$name = __('Upload Owners only', 'wp-photo-album-plus');
|
6532 |
$desc = __('Limit uploads to the album owners only.', 'wp-photo-album-plus');
|
6533 |
+
$help = esc_js(__('If checked, users can upload to their own albums and --- public --- only.', 'wp-photo-album-plus'));
|
6534 |
$slug = 'wppa_upload_owner_only';
|
6535 |
$html1 = wppa_checkbox($slug);
|
6536 |
$html2 = '';
|
7831 |
$tags = 'system';
|
7832 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
7833 |
|
7834 |
+
$name = __('Retry failed mails', 'wp-photo-album-plus');
|
7835 |
+
$desc = __('Select number of retries for failed mails', 'wp-photo-album-plus');
|
7836 |
+
$help = esc_js(__('Retries occur at the background every hour', 'wp-photo-album-plus'));
|
7837 |
+
$slug = 'wppa_retry_mails';
|
7838 |
+
$html = wppa_number($slug, '0', '10');
|
7839 |
+
$clas = '';
|
7840 |
+
$tags = 'system,mail';
|
7841 |
+
wppa_setting($slug, '10', $name, $desc, $html, $help, $clas, $tags);
|
7842 |
+
|
7843 |
}
|
7844 |
wppa_setting_subheader( 'B', '1', __( 'WPPA+ Admin related miscellaneous settings' , 'wp-photo-album-plus') );
|
7845 |
{
|
9557 |
wppa_setting($slug, '6.3', $name, $desc, $html, $help, $clas, $tags);
|
9558 |
|
9559 |
$name = __('Image Magick', 'wp-photo-album-plus');
|
9560 |
+
$desc = __('Absulute path to the ImageMagick commands', 'wp-photo-album-plus');// . ' <span style="color:red;" >' . __('experimental', 'wp-photo-album-plus') . '</span>';
|
9561 |
$help = esc_js(__('If you want to use ImageMagick, enter the absolute path to the ImageMagick commands', 'wp-photo-album-plus'));
|
9562 |
+
$slug = 'wppa_image_magick';
|
9563 |
$html = wppa_input($slug, '300px');
|
9564 |
$clas = '';
|
9565 |
$tags = 'system';
|
wppa-setup.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -111,6 +111,7 @@ global $silent;
|
|
111 |
custom longtext NOT NULL,
|
112 |
stereo smallint NOT NULL default '0',
|
113 |
crypt tinytext NOT NULL,
|
|
|
114 |
PRIMARY KEY (id),
|
115 |
KEY albumkey (album),
|
116 |
KEY statuskey (status(6))
|
@@ -557,7 +558,7 @@ global $silent;
|
|
557 |
}
|
558 |
|
559 |
// Copy audiostub.jpg, the default audiostub
|
560 |
-
$fromfile = WPPA_PATH . '/
|
561 |
$tofile = WPPA_UPLOAD_PATH . '/audiostub';
|
562 |
if ( ! is_file( $tofile . '.jpg' ) && ! is_file( $tofile . '.gif' ) && ! is_file( $tofile . '.png' ) ) {
|
563 |
@ copy( $fromfile, $tofile . '.jpg' );
|
@@ -1541,6 +1542,7 @@ Hide Camera info
|
|
1541 |
'wppa_allow_import_source' => 'no',
|
1542 |
'wppa_enable_generator' => 'yes',
|
1543 |
'wppa_log_cron' => 'no', // A9
|
|
|
1544 |
|
1545 |
|
1546 |
// IX D New
|
@@ -1679,7 +1681,7 @@ Hide Camera info
|
|
1679 |
'wppa_fotomoto_fontsize' => '',
|
1680 |
'wppa_fotomoto_hide_when_running' => 'no',
|
1681 |
'wppa_fotomoto_min_width' => '400',
|
1682 |
-
'
|
1683 |
|
1684 |
// L photo shortcode
|
1685 |
'wppa_photo_shortcode_enabled' => 'yes',
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
111 |
custom longtext NOT NULL,
|
112 |
stereo smallint NOT NULL default '0',
|
113 |
crypt tinytext NOT NULL,
|
114 |
+
magickstack text NOT NULL,
|
115 |
PRIMARY KEY (id),
|
116 |
KEY albumkey (album),
|
117 |
KEY statuskey (status(6))
|
558 |
}
|
559 |
|
560 |
// Copy audiostub.jpg, the default audiostub
|
561 |
+
$fromfile = WPPA_PATH . '/img/audiostub.jpg';
|
562 |
$tofile = WPPA_UPLOAD_PATH . '/audiostub';
|
563 |
if ( ! is_file( $tofile . '.jpg' ) && ! is_file( $tofile . '.gif' ) && ! is_file( $tofile . '.png' ) ) {
|
564 |
@ copy( $fromfile, $tofile . '.jpg' );
|
1542 |
'wppa_allow_import_source' => 'no',
|
1543 |
'wppa_enable_generator' => 'yes',
|
1544 |
'wppa_log_cron' => 'no', // A9
|
1545 |
+
'wppa_retry_mails' => '0', // A10
|
1546 |
|
1547 |
|
1548 |
// IX D New
|
1681 |
'wppa_fotomoto_fontsize' => '',
|
1682 |
'wppa_fotomoto_hide_when_running' => 'no',
|
1683 |
'wppa_fotomoto_min_width' => '400',
|
1684 |
+
'wppa_image_magick' => '',
|
1685 |
|
1686 |
// L photo shortcode
|
1687 |
'wppa_photo_shortcode_enabled' => 'yes',
|
wppa-stereo.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the stereo stuff
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -47,18 +47,19 @@ global $wppa_supported_stereo_glasses;
|
|
47 |
// Feature enabled?
|
48 |
if ( ! wppa_switch( 'enable_stereo' ) ) return;
|
49 |
|
50 |
-
//
|
51 |
-
wppa_create_thumbnail( $id );
|
52 |
-
|
53 |
-
// Is it a stereo poto?
|
54 |
if ( ! wppa_is_stereo( $id ) ) {
|
55 |
|
56 |
// Maybe no longer, delete any anaglyphs
|
57 |
-
wppa_delete_stereo_images( $id )
|
|
|
|
|
|
|
|
|
58 |
return;
|
59 |
}
|
60 |
|
61 |
-
// Now the anaglyphs
|
62 |
foreach( $wppa_supported_stereo_types as $type ) {
|
63 |
foreach( $wppa_supported_stereo_glasses as $glas ) {
|
64 |
wppa_create_stereo_image( $id, $type, $glas );
|
@@ -324,6 +325,8 @@ function wppa_delete_stereo_images( $id ) {
|
|
324 |
unlink( $file );
|
325 |
}
|
326 |
}
|
|
|
|
|
327 |
}
|
328 |
|
329 |
function wppa_is_stereo( $id ) {
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the stereo stuff
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
47 |
// Feature enabled?
|
48 |
if ( ! wppa_switch( 'enable_stereo' ) ) return;
|
49 |
|
50 |
+
// Is it a stereo photo?
|
|
|
|
|
|
|
51 |
if ( ! wppa_is_stereo( $id ) ) {
|
52 |
|
53 |
// Maybe no longer, delete any anaglyphs
|
54 |
+
if ( wppa_delete_stereo_images( $id ) ) {
|
55 |
+
|
56 |
+
// Is no longer stereo, create new thumbnail
|
57 |
+
wppa_create_thumbnail( $id );
|
58 |
+
}
|
59 |
return;
|
60 |
}
|
61 |
|
62 |
+
// Now make the anaglyphs
|
63 |
foreach( $wppa_supported_stereo_types as $type ) {
|
64 |
foreach( $wppa_supported_stereo_glasses as $glas ) {
|
65 |
wppa_create_stereo_image( $id, $type, $glas );
|
325 |
unlink( $file );
|
326 |
}
|
327 |
}
|
328 |
+
|
329 |
+
return ( count( $files ) > 0 );
|
330 |
}
|
331 |
|
332 |
function wppa_is_stereo( $id ) {
|
wppa-upload.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the upload pages and functions
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -77,7 +77,7 @@ global $upload_album;
|
|
77 |
wppa_ok_message( __( 'Connecting to edit album...' , 'wp-photo-album-plus' ) ); ?>
|
78 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_admin_menu&tab=edit&edit_id='.$upload_album, 'js' ) ) ?>';</script>
|
79 |
<?php }
|
80 |
-
|
81 |
wppa_ok_message( __( 'Connecting to edit photos...' , 'wp-photo-album-plus' ) ); ?>
|
82 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_edit_photo', 'js' ) ) ?>';</script>
|
83 |
<?php }
|
@@ -92,7 +92,7 @@ global $upload_album;
|
|
92 |
wppa_ok_message( __( 'Connecting to edit album...' , 'wp-photo-album-plus' ) ); ?>
|
93 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_admin_menu&tab=edit&edit_id='.$upload_album, 'js' ) ) ?>';</script>
|
94 |
<?php }
|
95 |
-
|
96 |
wppa_ok_message( __( 'Connecting to edit photos...' , 'wp-photo-album-plus' ) ); ?>
|
97 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_edit_photo', 'js' ) ) ?>';</script>
|
98 |
<?php }
|
@@ -348,21 +348,24 @@ global $upload_album;
|
|
348 |
' value="' . __( 'Upload Multiple Photos', 'wp-photo-album-plus' ) . '"' .
|
349 |
' onclick="if ( document.getElementById( \'wppa-album-s\' ).value == 0 ) { alert( \'' . __( 'Please select an album' , 'wp-photo-album-plus' ) . '\' ); return false; }"' .
|
350 |
' />' .
|
351 |
-
' '
|
352 |
-
'
|
353 |
-
|
354 |
-
'
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
'
|
360 |
-
|
|
|
|
|
|
|
361 |
|
362 |
if ( current_user_can( 'wppa_admin' ) ) {
|
363 |
_e( 'After upload: Go to the <b>Edit Album</b> page.', 'wp-photo-album-plus');
|
364 |
}
|
365 |
-
|
366 |
_e( 'After upload: Go to the <b>Edit Photos</b> page.', 'wp-photo-album-plus');
|
367 |
}
|
368 |
echo
|
@@ -422,28 +425,31 @@ global $upload_album;
|
|
422 |
' value="' . __( 'Upload Single Photos' , 'wp-photo-album-plus') . '"' .
|
423 |
' onclick="if ( document.getElementById( \'wppa-album-m\' ).value == 0 ) { alert( \'' . __( 'Please select an album' , 'wp-photo-album-plus' ) . '\' ); return false; }"' .
|
424 |
' />' .
|
425 |
-
' '
|
426 |
-
'
|
427 |
-
|
428 |
-
'
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
|
|
|
|
|
|
434 |
|
435 |
if ( current_user_can( 'wppa_admin' ) ) {
|
436 |
_e( 'After upload: Go to the <b>Edit Album</b> page.' , 'wp-photo-album-plus');
|
437 |
}
|
438 |
-
|
439 |
_e( 'After upload: Go to the <b>Edit Photos</b> page.' , 'wp-photo-album-plus');
|
440 |
}
|
441 |
echo
|
442 |
'</form>' .
|
443 |
'<script type="text/javascript">' .
|
444 |
-
'<!-- Create an instance of the multiSelector class, pass it the output target and the max number of files -->' .
|
445 |
'var multi_selector = new MultiSelector( document.getElementById( \'files_list\' ), ' . $max_files . ');' .
|
446 |
-
'<!-- Pass in the file element -->' .
|
447 |
'multi_selector.addElement( document.getElementById( \'my_file_element\' ) );' .
|
448 |
'</script>' .
|
449 |
'</div>';
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the upload pages and functions
|
6 |
+
* Version 6.6.16
|
7 |
*
|
8 |
*/
|
9 |
|
77 |
wppa_ok_message( __( 'Connecting to edit album...' , 'wp-photo-album-plus' ) ); ?>
|
78 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_admin_menu&tab=edit&edit_id='.$upload_album, 'js' ) ) ?>';</script>
|
79 |
<?php }
|
80 |
+
elseif ( wppa_opt( 'upload_edit' ) != 'none' ) {
|
81 |
wppa_ok_message( __( 'Connecting to edit photos...' , 'wp-photo-album-plus' ) ); ?>
|
82 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_edit_photo', 'js' ) ) ?>';</script>
|
83 |
<?php }
|
92 |
wppa_ok_message( __( 'Connecting to edit album...' , 'wp-photo-album-plus' ) ); ?>
|
93 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_admin_menu&tab=edit&edit_id='.$upload_album, 'js' ) ) ?>';</script>
|
94 |
<?php }
|
95 |
+
elseif ( wppa_opt( 'upload_edit' ) != 'none' ) {
|
96 |
wppa_ok_message( __( 'Connecting to edit photos...' , 'wp-photo-album-plus' ) ); ?>
|
97 |
<script type="text/javascript">document.location = '<?php echo( wppa_dbg_url( get_admin_url().'admin.php?page=wppa_edit_photo', 'js' ) ) ?>';</script>
|
98 |
<?php }
|
348 |
' value="' . __( 'Upload Multiple Photos', 'wp-photo-album-plus' ) . '"' .
|
349 |
' onclick="if ( document.getElementById( \'wppa-album-s\' ).value == 0 ) { alert( \'' . __( 'Please select an album' , 'wp-photo-album-plus' ) . '\' ); return false; }"' .
|
350 |
' />' .
|
351 |
+
' ';
|
352 |
+
if ( current_user_can( 'wppa_admin' ) || wppa_opt( 'upload_edit' ) != 'none' ) {
|
353 |
+
echo
|
354 |
+
'<input' .
|
355 |
+
' type="checkbox"' .
|
356 |
+
' id="wppa-go-edit-multiple"' .
|
357 |
+
' name="wppa-go-edit-multiple"' .
|
358 |
+
' onchange="wppaCookieCheckbox( this, \'wppa-go-edit-multiple\' )"' .
|
359 |
+
' />' .
|
360 |
+
'<script type="text/javascript" >' .
|
361 |
+
'if ( wppa_getCookie( \'wppa-go-edit-multiple\' ) == \'on\' ) document.getElementById( \'wppa-go-edit-multiple\' ).checked = \'checked\';' .
|
362 |
+
'</script>';
|
363 |
+
}
|
364 |
|
365 |
if ( current_user_can( 'wppa_admin' ) ) {
|
366 |
_e( 'After upload: Go to the <b>Edit Album</b> page.', 'wp-photo-album-plus');
|
367 |
}
|
368 |
+
elseif ( wppa_opt( 'upload_edit' ) != 'none' ) {
|
369 |
_e( 'After upload: Go to the <b>Edit Photos</b> page.', 'wp-photo-album-plus');
|
370 |
}
|
371 |
echo
|
425 |
' value="' . __( 'Upload Single Photos' , 'wp-photo-album-plus') . '"' .
|
426 |
' onclick="if ( document.getElementById( \'wppa-album-m\' ).value == 0 ) { alert( \'' . __( 'Please select an album' , 'wp-photo-album-plus' ) . '\' ); return false; }"' .
|
427 |
' />' .
|
428 |
+
' ';
|
429 |
+
if ( current_user_can( 'wppa_admin' ) || wppa_opt( 'upload_edit' ) != 'none' ) {
|
430 |
+
echo
|
431 |
+
'<input' .
|
432 |
+
' type="checkbox"' .
|
433 |
+
' id="wppa-go-edit-single"' .
|
434 |
+
' name="wppa-go-edit-single"' .
|
435 |
+
' onchange="wppaCookieCheckbox( this, \'wppa-go-edit-single\' )" />' .
|
436 |
+
'<script type="text/javascript" >' .
|
437 |
+
'if ( wppa_getCookie( \'wppa-go-edit-single\' ) == \'on\' ) document.getElementById( \'wppa-go-edit-single\' ).checked = \'checked\';' .
|
438 |
+
'</script>';
|
439 |
+
}
|
440 |
|
441 |
if ( current_user_can( 'wppa_admin' ) ) {
|
442 |
_e( 'After upload: Go to the <b>Edit Album</b> page.' , 'wp-photo-album-plus');
|
443 |
}
|
444 |
+
elseif ( wppa_opt( 'upload_edit' ) != 'none' ) {
|
445 |
_e( 'After upload: Go to the <b>Edit Photos</b> page.' , 'wp-photo-album-plus');
|
446 |
}
|
447 |
echo
|
448 |
'</form>' .
|
449 |
'<script type="text/javascript">' .
|
450 |
+
// '<!-- Create an instance of the multiSelector class, pass it the output target and the max number of files -->' .
|
451 |
'var multi_selector = new MultiSelector( document.getElementById( \'files_list\' ), ' . $max_files . ');' .
|
452 |
+
// '<!-- Pass in the file element -->' .
|
453 |
'multi_selector.addElement( document.getElementById( \'my_file_element\' ) );' .
|
454 |
'</script>' .
|
455 |
'</div>';
|
wppa-utils.php
CHANGED
@@ -876,8 +876,16 @@ global $wpdb;
|
|
876 |
if ( $iret ) return;
|
877 |
|
878 |
// Failed
|
879 |
-
|
880 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
881 |
return;
|
882 |
}
|
883 |
|
@@ -973,7 +981,14 @@ function wppa_send_mail( $to, $subj, $cont, $photo, $email = '' ) {
|
|
973 |
if ( $iret ) return;
|
974 |
|
975 |
// Failed
|
976 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
|
978 |
}
|
979 |
|
@@ -3338,7 +3353,7 @@ global $wppa_supported_photo_extensions;
|
|
3338 |
else {
|
3339 |
|
3340 |
// getimagesize on a non imagefile produces a php warning
|
3341 |
-
$result = is_array( getimagesize( $url ) );
|
3342 |
}
|
3343 |
|
3344 |
// Done
|
@@ -3406,4 +3421,52 @@ function wppa_print_tree( $path ) {
|
|
3406 |
wppa_print_tree( $file );
|
3407 |
}
|
3408 |
}
|
3409 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
if ( $iret ) return;
|
877 |
|
878 |
// Failed
|
879 |
+
if ( ! wppa_is_cron() ) {
|
880 |
+
echo 'Mail sending Failed';
|
881 |
+
echo 'Subj='.$subject.', content='.$content;
|
882 |
+
wppa_process_failed_mail( $user->user_email,
|
883 |
+
$subject,
|
884 |
+
$content,
|
885 |
+
array( 'Content-Type: text/html' ),
|
886 |
+
'' );
|
887 |
+
}
|
888 |
+
|
889 |
return;
|
890 |
}
|
891 |
|
981 |
if ( $iret ) return;
|
982 |
|
983 |
// Failed
|
984 |
+
if ( ! wppa_is_cron() ) {
|
985 |
+
echo 'Mail sending Failed';
|
986 |
+
wppa_process_failed_mail( $to,
|
987 |
+
$subject,
|
988 |
+
$message_part_1 . $message_part_2 . $message_part_3,
|
989 |
+
$headers,
|
990 |
+
'' );
|
991 |
+
}
|
992 |
|
993 |
}
|
994 |
|
3353 |
else {
|
3354 |
|
3355 |
// getimagesize on a non imagefile produces a php warning
|
3356 |
+
$result = is_array( @ getimagesize( $url ) );
|
3357 |
}
|
3358 |
|
3359 |
// Done
|
3421 |
wppa_print_tree( $file );
|
3422 |
}
|
3423 |
}
|
3424 |
+
}
|
3425 |
+
|
3426 |
+
function wppa_process_failed_mail( $to = '', $subject = '', $message = '', $headers = '', $att = '' ) {
|
3427 |
+
|
3428 |
+
// Ignore mails that lack essential data
|
3429 |
+
if ( ! $to || ! $subject || ! $message ) {
|
3430 |
+
return;
|
3431 |
+
}
|
3432 |
+
|
3433 |
+
// Log mail failed
|
3434 |
+
wppa_log( 'Err', 'Failed mail. To = ' . ( is_array( $to ) ? implode( '|', $to ) : $to ) . ', Subject = ' . $subject . ', Message = ' . $message );
|
3435 |
+
|
3436 |
+
// Compute mail id
|
3437 |
+
$id = md5( ( is_array( $to ) ? implode( '|', $to ) : $to ) . $subject . $message );
|
3438 |
+
|
3439 |
+
// Get stack of failed mails
|
3440 |
+
$failed_mails = get_option( 'wppa_failed_mails' );
|
3441 |
+
|
3442 |
+
// If no failed mails yet, create array
|
3443 |
+
if ( ! is_array( $failed_mails ) ) {
|
3444 |
+
$failed_mails = array();
|
3445 |
+
}
|
3446 |
+
|
3447 |
+
// See if this mail appears in the failed mails list
|
3448 |
+
$found = false;
|
3449 |
+
foreach( array_keys( $failed_mails ) as $key ) {
|
3450 |
+
if ( $id == $key ) {
|
3451 |
+
$found = true;
|
3452 |
+
}
|
3453 |
+
}
|
3454 |
+
|
3455 |
+
// Found? do nothing
|
3456 |
+
if ( $found ) {
|
3457 |
+
return;
|
3458 |
+
}
|
3459 |
+
|
3460 |
+
// Not found, add it
|
3461 |
+
$failed_mails[$id] = array( 'to' => $to,
|
3462 |
+
'subj' => $subject,
|
3463 |
+
'message' => $message,
|
3464 |
+
'headers' => $headers,
|
3465 |
+
'att' => $att,
|
3466 |
+
'retry' => wppa_opt( 'retry_mails' ),
|
3467 |
+
);
|
3468 |
+
|
3469 |
+
// Store list
|
3470 |
+
update_option( 'wppa_failed_mails', $failed_mails );
|
3471 |
+
|
3472 |
+
}
|
wppa-watermark.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-watermark.php
|
3 |
*
|
4 |
* Functions used for the application of watermarks
|
5 |
-
* Version 6.6.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -363,6 +363,27 @@ function wppa_get_water_file_and_pos( $id ) {
|
|
363 |
return $result;
|
364 |
}
|
365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
|
367 |
function wppa_add_watermark( $id ) {
|
368 |
|
2 |
/* wppa-watermark.php
|
3 |
*
|
4 |
* Functions used for the application of watermarks
|
5 |
+
* Version 6.6.17
|
6 |
*
|
7 |
*/
|
8 |
|
363 |
return $result;
|
364 |
}
|
365 |
|
366 |
+
function wppa_does_thumb_need_watermark( $id ) {
|
367 |
+
|
368 |
+
// Watermarks enabled?
|
369 |
+
if ( ! wppa_switch( 'watermark_on' ) ) {
|
370 |
+
return false;
|
371 |
+
}
|
372 |
+
|
373 |
+
// Watermarks on thumbs?
|
374 |
+
if ( ! wppa_switch( 'watermark_thumbs' ) ) {
|
375 |
+
return false;
|
376 |
+
}
|
377 |
+
|
378 |
+
// If setting is ---none--- no watermark either.
|
379 |
+
$temp = wppa_get_water_file_and_pos( $id );
|
380 |
+
if ( ! $temp['file'] || basename( $temp['file'] ) == '--- none ---' || ! is_file( $temp['file'] ) ) {
|
381 |
+
return false; // No watermark this time
|
382 |
+
}
|
383 |
+
|
384 |
+
// Yes, we need a wm on thumb
|
385 |
+
return true;
|
386 |
+
}
|
387 |
|
388 |
function wppa_add_watermark( $id ) {
|
389 |
|
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 |
|
@@ -267,7 +267,8 @@ global $wpdb;
|
|
267 |
'videoy' => '0',
|
268 |
'scheduledtm' => $args['album'] ? $wpdb->get_var( $wpdb->prepare( "SELECT `scheduledtm` FROM `".WPPA_ALBUMS."` WHERE `id` = %s", $args['album'] ) ) : '',
|
269 |
'custom' => '',
|
270 |
-
'crypt' => wppa_get_unique_photo_crypt()
|
|
|
271 |
) );
|
272 |
|
273 |
if ( $args['scheduledtm'] ) $args['status'] = 'scheduled';
|
@@ -300,9 +301,10 @@ global $wpdb;
|
|
300 |
`videoy`,
|
301 |
`scheduledtm`,
|
302 |
`custom`,
|
303 |
-
`crypt
|
|
|
304 |
)
|
305 |
-
VALUES ( %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s )",
|
306 |
$args['id'],
|
307 |
$args['album'],
|
308 |
$args['ext'],
|
@@ -329,7 +331,8 @@ global $wpdb;
|
|
329 |
$args['videoy'],
|
330 |
$args['scheduledtm'],
|
331 |
$args['custom'],
|
332 |
-
$args['crypt']
|
|
|
333 |
);
|
334 |
$iret = $wpdb->query($query);
|
335 |
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that add new records
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
267 |
'videoy' => '0',
|
268 |
'scheduledtm' => $args['album'] ? $wpdb->get_var( $wpdb->prepare( "SELECT `scheduledtm` FROM `".WPPA_ALBUMS."` WHERE `id` = %s", $args['album'] ) ) : '',
|
269 |
'custom' => '',
|
270 |
+
'crypt' => wppa_get_unique_photo_crypt(),
|
271 |
+
'magickstack' => '',
|
272 |
) );
|
273 |
|
274 |
if ( $args['scheduledtm'] ) $args['status'] = 'scheduled';
|
301 |
`videoy`,
|
302 |
`scheduledtm`,
|
303 |
`custom`,
|
304 |
+
`crypt`,
|
305 |
+
`magickstack`
|
306 |
)
|
307 |
+
VALUES ( %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s )",
|
308 |
$args['id'],
|
309 |
$args['album'],
|
310 |
$args['ext'],
|
331 |
$args['videoy'],
|
332 |
$args['scheduledtm'],
|
333 |
$args['custom'],
|
334 |
+
$args['crypt'],
|
335 |
+
$args['magickstack']
|
336 |
);
|
337 |
$iret = $wpdb->query($query);
|
338 |
|
wppa-wpdb-update.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that update records
|
6 |
-
* Version 6.6.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -175,6 +175,9 @@ global $wpdb;
|
|
175 |
}
|
176 |
else wppa_log('err', 'Invalid album id found in wppa_update_album(): '.$itemvalue);
|
177 |
break;
|
|
|
|
|
|
|
178 |
|
179 |
default:
|
180 |
wppa_log( 'Error', 'Not implemented in wppa_update_photo(): '.$itemname );
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains low-level wpdb routines that update records
|
6 |
+
* Version 6.6.17
|
7 |
*
|
8 |
*/
|
9 |
|
175 |
}
|
176 |
else wppa_log('err', 'Invalid album id found in wppa_update_album(): '.$itemvalue);
|
177 |
break;
|
178 |
+
case 'magickstack':
|
179 |
+
$doit = true;
|
180 |
+
break;
|
181 |
|
182 |
default:
|
183 |
wppa_log( 'Error', 'Not implemented in wppa_update_photo(): '.$itemname );
|
wppa.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
* Plugin Name: WP Photo Album Plus
|
4 |
* Description: Easily manage and display your photo albums and slideshows within your WordPress site.
|
5 |
-
* Version: 6.6.
|
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.17
|
6 |
* Author: J.N. Breetvelt a.k.a. OpaJaap
|
7 |
* Author URI: http://wppa.opajaap.nl/
|
8 |
* Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
|
22 |
global $wp_version;
|
23 |
|
24 |
/* WPPA GLOBALS */
|
25 |
+
global $wppa_revno; $wppa_revno = '6617'; // WPPA db version
|
26 |
+
global $wppa_api_version; $wppa_api_version = '6-6-17-007'; // WPPA software version
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|