Version Description
Download this release
Release Info
Developer | opajaap |
Plugin | WP Photo Album Plus |
Version | 6.5.08 |
Comparing to | |
See all releases |
Code changes from version 6.5.07 to 6.5.08
- js/wppa-lightbox.js +16 -12
- js/wppa-lightbox.min.js +4 -4
- js/wppa-tinymce-shortcodes.js +24 -1
- languages/wp-photo-album-plus-da_DK.mo +0 -0
- languages/wp-photo-album-plus-da_DK.po +339 -329
- languages/wp-photo-album-plus-de_DE.mo +0 -0
- languages/wp-photo-album-plus-de_DE.po +388 -420
- languages/wp-photo-album-plus-fr_FR.mo +0 -0
- languages/wp-photo-album-plus-fr_FR.po +356 -335
- readme.txt +18 -2
- wppa-admin.php +3 -3
- wppa-ajax.php +4 -2
- wppa-album-admin-autosave.php +180 -30
- wppa-common-functions.php +2 -1
- wppa-functions.php +25 -3
- wppa-links.php +4 -2
- wppa-non-admin.php +2 -2
- wppa-photo-admin-autosave.php +1 -1
- wppa-settings-autosave.php +33 -2
- wppa-setup.php +3 -1
- wppa-tinymce-shortcodes.php +11 -1
- wppa.php +3 -3
js/wppa-lightbox.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
// Conatins lightbox modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
-
var wppaLightboxVersion = '6.5.
|
7 |
|
8 |
// Global inits
|
9 |
var wppaNormsBtnOpac = 1;
|
@@ -11,7 +11,7 @@ var wppaIsVideo = false;
|
|
11 |
var wppaHasAudio = false;
|
12 |
var wppaOvlImgs = [];
|
13 |
var wppaKbHandlerInstalled = false;
|
14 |
-
var wppaOvlMode = '
|
15 |
var wppaOvlCurIdx = 0;
|
16 |
|
17 |
// Global size specs
|
@@ -149,6 +149,7 @@ function wppaOvlNorm( exit ) {
|
|
149 |
wppaConsoleLog( 'wppaOvlNorm' );
|
150 |
|
151 |
wppaOvlMode = 'normal';
|
|
|
152 |
if (document.cancelFullScreen) {
|
153 |
document.cancelFullScreen();
|
154 |
} else if (document.mozCancelFullScreen) {
|
@@ -157,7 +158,7 @@ wppaConsoleLog( 'wppaOvlNorm' );
|
|
157 |
document.webkitCancelFullScreen();
|
158 |
}
|
159 |
if ( exit ) {
|
160 |
-
wppaOvlMode = wppaOvlModeInitial;
|
161 |
return;
|
162 |
}
|
163 |
|
@@ -461,17 +462,17 @@ wppaConsoleLog( '_wppaOvlShow, idx='+idx );
|
|
461 |
}
|
462 |
|
463 |
// The 'back to normal' icon
|
464 |
-
else {
|
465 |
html += '<img' +
|
466 |
' id="wppa-norms-btn"' +
|
467 |
' src="' + wppaImageDirectory + 'norms.png"' +
|
468 |
' alt="' + wppaToggleFullScreen + '"' +
|
469 |
-
' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:'+wppaNormsBtnOpac+'"' +
|
470 |
' onclick="wppaOvlNorm()"' +
|
471 |
' onmouseover="jQuery(this).fadeTo(600,1);"' +
|
472 |
' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"' +
|
473 |
' >';
|
474 |
-
}
|
475 |
|
476 |
// Replacing the html stops a running video,
|
477 |
// so we only replace html on a new id, or a photo without audio
|
@@ -1177,7 +1178,7 @@ wppaConsoleLog( 'wppaOvlHide' );
|
|
1177 |
// Reset switches
|
1178 |
wppaOvlFirst = true;
|
1179 |
wppaOvlRunning = false;
|
1180 |
-
wppaOvlMode = wppaOvlModeInitial
|
1181 |
jQuery( '#wppa-overlay-sp' ).css({visibility:'hidden'});
|
1182 |
|
1183 |
// Remove orientationchange handler if mobile
|
@@ -1214,7 +1215,10 @@ wppaConsoleLog( 'wppaOvlOnClick' );
|
|
1214 |
function wppaInitOverlay() {
|
1215 |
wppaConsoleLog( 'wppaInitOverlay' );
|
1216 |
|
1217 |
-
wppaOvlMode
|
|
|
|
|
|
|
1218 |
var anchors = jQuery( 'a' );
|
1219 |
var anchor;
|
1220 |
var i;
|
@@ -1251,15 +1255,15 @@ wppaConsoleLog( 'wppaInitOverlay' );
|
|
1251 |
|
1252 |
// Install handler
|
1253 |
if ( wppaIsMobile ) {
|
1254 |
-
|
1255 |
// Install ontouch handlers
|
1256 |
jQuery( anchor ).on( 'touchstart', function( event ) { // tap
|
1257 |
-
|
1258 |
wppaStartTime();
|
1259 |
// event.preventDefault();
|
1260 |
});
|
1261 |
jQuery( anchor ).on( 'touchend', function( event ) { // tap
|
1262 |
-
|
1263 |
if ( wppaInTime() ) {
|
1264 |
wppaOvlShow( this );
|
1265 |
}
|
@@ -1268,7 +1272,7 @@ wppaConsoleLog( 'wppaInitOverlay' );
|
|
1268 |
|
1269 |
}
|
1270 |
else {
|
1271 |
-
|
1272 |
// Install onclick handler
|
1273 |
jQuery( anchor ).on( 'click', function( event ) {
|
1274 |
wppaOvlShow( this );
|
3 |
// Conatins lightbox modules
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
+
var wppaLightboxVersion = '6.5.08';
|
7 |
|
8 |
// Global inits
|
9 |
var wppaNormsBtnOpac = 1;
|
11 |
var wppaHasAudio = false;
|
12 |
var wppaOvlImgs = [];
|
13 |
var wppaKbHandlerInstalled = false;
|
14 |
+
var wppaOvlMode = '';
|
15 |
var wppaOvlCurIdx = 0;
|
16 |
|
17 |
// Global size specs
|
149 |
wppaConsoleLog( 'wppaOvlNorm' );
|
150 |
|
151 |
wppaOvlMode = 'normal';
|
152 |
+
|
153 |
if (document.cancelFullScreen) {
|
154 |
document.cancelFullScreen();
|
155 |
} else if (document.mozCancelFullScreen) {
|
158 |
document.webkitCancelFullScreen();
|
159 |
}
|
160 |
if ( exit ) {
|
161 |
+
wppaOvlMode = wppaOvlModeInitial;
|
162 |
return;
|
163 |
}
|
164 |
|
462 |
}
|
463 |
|
464 |
// The 'back to normal' icon
|
465 |
+
// else {
|
466 |
html += '<img' +
|
467 |
' id="wppa-norms-btn"' +
|
468 |
' src="' + wppaImageDirectory + 'norms.png"' +
|
469 |
' alt="' + wppaToggleFullScreen + '"' +
|
470 |
+
' style="height:32px;z-index:100092;position:fixed;top:0;' + ( wppaIsMobile ? 'left' : 'right' ) + ':0;opacity:'+wppaNormsBtnOpac+'"' +
|
471 |
' onclick="wppaOvlNorm()"' +
|
472 |
' onmouseover="jQuery(this).fadeTo(600,1);"' +
|
473 |
' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"' +
|
474 |
' >';
|
475 |
+
// }
|
476 |
|
477 |
// Replacing the html stops a running video,
|
478 |
// so we only replace html on a new id, or a photo without audio
|
1178 |
// Reset switches
|
1179 |
wppaOvlFirst = true;
|
1180 |
wppaOvlRunning = false;
|
1181 |
+
wppaOvlMode = wppaOvlModeInitial;
|
1182 |
jQuery( '#wppa-overlay-sp' ).css({visibility:'hidden'});
|
1183 |
|
1184 |
// Remove orientationchange handler if mobile
|
1215 |
function wppaInitOverlay() {
|
1216 |
wppaConsoleLog( 'wppaInitOverlay' );
|
1217 |
|
1218 |
+
if ( wppaOvlMode == '' ) {
|
1219 |
+
wppaOvlMode = wppaOvlModeInitial;
|
1220 |
+
}
|
1221 |
+
|
1222 |
var anchors = jQuery( 'a' );
|
1223 |
var anchor;
|
1224 |
var i;
|
1255 |
|
1256 |
// Install handler
|
1257 |
if ( wppaIsMobile ) {
|
1258 |
+
|
1259 |
// Install ontouch handlers
|
1260 |
jQuery( anchor ).on( 'touchstart', function( event ) { // tap
|
1261 |
+
|
1262 |
wppaStartTime();
|
1263 |
// event.preventDefault();
|
1264 |
});
|
1265 |
jQuery( anchor ).on( 'touchend', function( event ) { // tap
|
1266 |
+
|
1267 |
if ( wppaInTime() ) {
|
1268 |
wppaOvlShow( this );
|
1269 |
}
|
1272 |
|
1273 |
}
|
1274 |
else {
|
1275 |
+
|
1276 |
// Install onclick handler
|
1277 |
jQuery( anchor ).on( 'click', function( event ) {
|
1278 |
wppaOvlShow( this );
|
js/wppa-lightbox.min.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
-
var wppaLightboxVersion='6.5.
|
8 |
function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
|
9 |
var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
|
10 |
wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
|
@@ -53,8 +53,7 @@ wppaOvlAudioHtmls[idx]+'</audio>';}
|
|
53 |
html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
|
54 |
html+='</div>';'</div>';}
|
55 |
if(wppaIsMobile){html+='<img'+' id="wppa-exit-btn"'+' src="'+wppaImageDirectory+'graycross.png"'+' alt="Exit"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:0.5;"'+' onclick="wppaOvlHide()"'+' >';}
|
56 |
-
|
57 |
-
if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
|
58 |
wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlFormatFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
|
59 |
else{wppaOvlFsPhotoId=0;}
|
60 |
wppaOvlFirst=false;return false;}
|
@@ -123,7 +122,8 @@ jQuery('#wppa-overlay-ic').html('');jQuery('#wppa-overlay-bg').fadeOut(300);jQue
|
|
123 |
function wppaOvlOnclick(event){wppaConsoleLog('wppaOvlOnClick');switch(wppaOvlOnclickType){case'none':break;case'close':if(wppaOvlMode=='normal'){wppaOvlHide();}
|
124 |
break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
|
125 |
return true;}
|
126 |
-
function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');wppaOvlMode
|
|
|
127 |
else if(anchor.rel){temp=anchor.rel.split("[");}
|
128 |
else{temp[0]='';}
|
129 |
if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;if(wppaIsMobile){jQuery(anchor).on('touchstart',function(event){wppaStartTime();});jQuery(anchor).on('touchend',function(event){if(wppaInTime()){wppaOvlShow(this);}
|
4 |
// Dependancies: wppa.js and default wp jQuery library
|
5 |
//
|
6 |
|
7 |
+
var wppaLightboxVersion='6.5.08';var wppaNormsBtnOpac=1;var wppaIsVideo=false;var wppaHasAudio=false;var wppaOvlImgs=[];var wppaKbHandlerInstalled=false;var wppaOvlMode='';var wppaOvlCurIdx=0;var wppaSavedContainerWidth;var wppaSavedContainerHeight;var wppaSavedMarginLeft;var wppaSavedMarginTop;var wppaSavedImageWidth;var wppaSavedImageHeight;jQuery(document).ready(function(e){wppaInitOverlay();});jQuery(window).resize(function(){jQuery("#wppa-overlay-bg").css({height:window.innerHeight,width:window.innerWidth,});wppaOvlResize();});function wppaDoOnOrientationChange(e){if(wppaOvlMode!='normal'&&document.getElementById('wppa-overlay-img')){setTimeout('wppaOvlShow( '+wppaOvlIdx+' )',100);return;}}
|
8 |
function wppaOvlKeyboardHandler(e){var keycode;var escapeKey;if(e==null){keycode=event.keyCode;escapeKey=27;}else{keycode=e.keyCode;escapeKey=27;}
|
9 |
var key=String.fromCharCode(keycode).toLowerCase();switch(keycode){case escapeKey:wppaStopVideo(mocc);if(wppaOvlMode!='normal'){wppaOvlNorm(true);}
|
10 |
wppaOvlHide();break;case 37:wppaOvlShowPrev();break;case 39:wppaOvlShowNext();break;}
|
53 |
html+='<div style="height: 20px; width: 100%; position:absolute; top:0; left:0;" onmouseover="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'visible\');" onmouseout="jQuery(\'#wppa-ovl-legenda-2\').css(\'visibility\',\'hidden\');wppaShowLegenda=\'hidden\';" >';if(wppaOvlShowLegenda){html+='<div id="wppa-ovl-legenda-2" style="position:fixed; left:0; top:0; background-color:'+(wppaOvlTheme=='black'?'#272727':'#a7a7a7')+'; color:'+(wppaOvlTheme=='black'?'#a7a7a7':'#272727')+'; visibility:'+wppaShowLegenda+';" >'+'Mode='+wppaOvlMode+'. '+(wppaOvlIsSingle?wppaOvlFullLegendaSingle:wppaOvlFullLegenda)+'</div>';}
|
54 |
html+='</div>';'</div>';}
|
55 |
if(wppaIsMobile){html+='<img'+' id="wppa-exit-btn"'+' src="'+wppaImageDirectory+'graycross.png"'+' alt="Exit"'+' style="height:32px;z-index:100092;position:fixed;top:0;right:0;opacity:0.5;"'+' onclick="wppaOvlHide()"'+' >';}
|
56 |
+
html+='<img'+' id="wppa-norms-btn"'+' src="'+wppaImageDirectory+'norms.png"'+' alt="'+wppaToggleFullScreen+'"'+' style="height:32px;z-index:100092;position:fixed;top:0;'+(wppaIsMobile?'left':'right')+':0;opacity:'+wppaNormsBtnOpac+'"'+' onclick="wppaOvlNorm()"'+' onmouseover="jQuery(this).fadeTo(600,1);"'+' onmouseout="jQuery(this).fadeTo(600,0);wppaNormsBtnOpac=0;"'+' >';if((!wppaIsVideo&&!wppaHasAudio)||wppaOvlFsPhotoId!=wppaPhotoId||wppaPhotoId==0){wppaStopVideo(0);wppaStopAudio();jQuery('#wppa-overlay-ic').html(html);}
|
|
|
57 |
wppaOvlIsVideo=wppaIsVideo;setTimeout('wppaOvlFormatFull()',10);if(wppaIsVideo||wppaHasAudio){setTimeout('wppaOvlUpdateFsId()',2000);}
|
58 |
else{wppaOvlFsPhotoId=0;}
|
59 |
wppaOvlFirst=false;return false;}
|
122 |
function wppaOvlOnclick(event){wppaConsoleLog('wppaOvlOnClick');switch(wppaOvlOnclickType){case'none':break;case'close':if(wppaOvlMode=='normal'){wppaOvlHide();}
|
123 |
break;case'browse':var x=event.screenX-window.screenX;if(x<jQuery(window).width()/2)wppaOvlShowPrev();else wppaOvlShowNext();break;default:alert('Unimplemented action: '+wppaOvlOnclickType);break;}
|
124 |
return true;}
|
125 |
+
function wppaInitOverlay(){wppaConsoleLog('wppaInitOverlay');if(wppaOvlMode==''){wppaOvlMode=wppaOvlModeInitial;}
|
126 |
+
var anchors=jQuery('a');var anchor;var i;var temp=[];wppaOvlFsPhotoId=0;wppaPhotoId=0;wppaOvlCurIdx=0;wppaSavedContainerWidth=240+2*wppaOvlBorderWidth;wppaSavedContainerHeight=180+3*wppaOvlBorderWidth+20+(wppaOvlTxtHeight=='auto'?50:wppaOvlTxtHeight);wppaSavedMarginLeft=-(120+wppaOvlBorderWidth);wppaSavedMarginTop=-(90+wppaOvlBorderWidth+10+(wppaOvlTxtHeight=='auto'?25:wppaOvlTxtHeight/2));wppaSavedImageWidth=240;wppaSavedImageHeight=180+wppaOvlBorderWidth;for(i=0;i<anchors.length;i++){anchor=anchors[i];if(jQuery(anchor).attr('data-rel')){temp=jQuery(anchor).attr('data-rel').split("[");}
|
127 |
else if(anchor.rel){temp=anchor.rel.split("[");}
|
128 |
else{temp[0]='';}
|
129 |
if(temp[0]=='wppa'){wppaWppaOverlayActivated=true;if(wppaIsMobile){jQuery(anchor).on('touchstart',function(event){wppaStartTime();});jQuery(anchor).on('touchend',function(event){if(wppaInTime()){wppaOvlShow(this);}
|
js/wppa-tinymce-shortcodes.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* Pachkage: wp-photo-album-plus
|
3 |
*
|
4 |
*
|
5 |
-
* Version 6.5.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -78,6 +78,7 @@ function wppaGalleryEvaluate() {
|
|
78 |
jQuery('#wppagallery-miscel-type-tr').hide();
|
79 |
jQuery('#wppagallery-album-type-tr').hide();
|
80 |
jQuery('#wppagallery-album-real-tr').hide();
|
|
|
81 |
jQuery('#wppagallery-album-realopt-tr').hide();
|
82 |
jQuery('#wppagallery-album-virt-tr').hide();
|
83 |
jQuery('#wppagallery-album-virt-cover-tr').hide();
|
@@ -291,6 +292,28 @@ function wppaGalleryEvaluate() {
|
|
291 |
switch ( albumType ) {
|
292 |
case 'real':
|
293 |
jQuery('#wppagallery-album-real-tr').show();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
album = wppaGetSelectionEnumByClass('.wppagallery-album-r');
|
295 |
if ( album != '' ) {
|
296 |
jQuery('#wppagallery-album-type').css('color', '#070');
|
2 |
* Pachkage: wp-photo-album-plus
|
3 |
*
|
4 |
*
|
5 |
+
* Version 6.5.08
|
6 |
*
|
7 |
*/
|
8 |
|
78 |
jQuery('#wppagallery-miscel-type-tr').hide();
|
79 |
jQuery('#wppagallery-album-type-tr').hide();
|
80 |
jQuery('#wppagallery-album-real-tr').hide();
|
81 |
+
jQuery('#wppagallery-album-real-search-tr').hide();
|
82 |
jQuery('#wppagallery-album-realopt-tr').hide();
|
83 |
jQuery('#wppagallery-album-virt-tr').hide();
|
84 |
jQuery('#wppagallery-album-virt-cover-tr').hide();
|
292 |
switch ( albumType ) {
|
293 |
case 'real':
|
294 |
jQuery('#wppagallery-album-real-tr').show();
|
295 |
+
jQuery('#wppagallery-album-real-search-tr').show();
|
296 |
+
var s = jQuery('#wppagallery-album-real-search').val().toLowerCase();
|
297 |
+
if ( s != '' ) {
|
298 |
+
albums = jQuery('.wppagallery-album-r');
|
299 |
+
if ( albums.length > 0 ) {
|
300 |
+
var i = 0;
|
301 |
+
while ( i < albums.length ) {
|
302 |
+
var a = albums[i].innerHTML.toLowerCase();
|
303 |
+
if ( a.search( s ) == -1 ) {
|
304 |
+
jQuery( albums[i] ).removeAttr( 'selected' );
|
305 |
+
jQuery( albums[i] ).hide();
|
306 |
+
}
|
307 |
+
else {
|
308 |
+
jQuery( albums[i] ).show();
|
309 |
+
}
|
310 |
+
i++;
|
311 |
+
}
|
312 |
+
}
|
313 |
+
}
|
314 |
+
else {
|
315 |
+
jQuery('.wppagallery-album-r').show();
|
316 |
+
}
|
317 |
album = wppaGetSelectionEnumByClass('.wppagallery-album-r');
|
318 |
if ( album != '' ) {
|
319 |
jQuery('#wppagallery-album-type').css('color', '#070');
|
languages/wp-photo-album-plus-da_DK.mo
CHANGED
Binary file
|
languages/wp-photo-album-plus-da_DK.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
-
"POT-Creation-Date: 2016-09-
|
5 |
-
"PO-Revision-Date: 2016-09-
|
6 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
7 |
"Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language: da_DK\n"
|
@@ -100,17 +100,17 @@ msgstr ""
|
|
100 |
msgid "Settings file not found"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
104 |
-
#: wppa-ajax.php:
|
105 |
msgid "Please supply a numeric value greater than or equal to"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
109 |
-
#: wppa-ajax.php:
|
110 |
msgid "for"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: wppa-admin-functions.php:208 wppa-ajax.php:
|
114 |
msgid "and less than or equal to"
|
115 |
msgstr ""
|
116 |
|
@@ -286,15 +286,15 @@ msgid "Documentation"
|
|
286 |
msgstr ""
|
287 |
|
288 |
#: wppa-admin.php:111
|
289 |
-
msgid "Uploading is temporary
|
290 |
msgstr ""
|
291 |
|
292 |
#: wppa-admin.php:118
|
293 |
-
msgid "Editing is temporary
|
294 |
msgstr ""
|
295 |
|
296 |
#: wppa-admin.php:125
|
297 |
-
msgid "Importing is temporary
|
298 |
msgstr ""
|
299 |
|
300 |
#: wppa-admin.php:128 wppa-import.php:1226
|
@@ -351,7 +351,7 @@ msgid "Exit & Refresh"
|
|
351 |
msgstr ""
|
352 |
|
353 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
354 |
-
#: wppa-ajax.php:
|
355 |
msgid "Security check failure"
|
356 |
msgstr ""
|
357 |
|
@@ -359,7 +359,7 @@ msgstr ""
|
|
359 |
msgid "You do not have the rights to moderate photos this way"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: wppa-ajax.php:300 wppa-ajax.php:
|
363 |
msgid "Photo comment approved"
|
364 |
msgstr ""
|
365 |
|
@@ -503,72 +503,72 @@ msgid ""
|
|
503 |
"your vote became effective."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: wppa-ajax.php:
|
507 |
msgid "You do not have the rights to delete a photo"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: wppa-ajax.php:
|
511 |
#, php-format
|
512 |
msgid "Photo %s has been deleted"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: wppa-ajax.php:
|
516 |
msgid "You do not have the rights to update album information"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: wppa-ajax.php:
|
520 |
msgid "<b>Ratings cleared</b>"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: wppa-ajax.php:
|
524 |
msgid "No ratings for this photo."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: wppa-ajax.php:
|
528 |
msgid "An error occurred while clearing ratings"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: wppa-ajax.php:
|
532 |
msgid "<b>No photos in this album</b>"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: wppa-ajax.php:
|
536 |
msgid "<b>Tags set to defaults</b> (reload)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: wppa-ajax.php:
|
540 |
msgid "An error occurred while setting tags"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: wppa-ajax.php:
|
544 |
msgid "<b>Tags added width defaults</b> (reload)"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: wppa-ajax.php:
|
548 |
msgid "An error occurred while adding tags"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: wppa-ajax.php:
|
552 |
msgid "No subalbums found to process"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: wppa-ajax.php:
|
556 |
msgid "No categories found to process"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: wppa-ajax.php:
|
560 |
#, php-format
|
561 |
msgid "%d album updated"
|
562 |
msgid_plural "%d albums updated"
|
563 |
msgstr[0] ""
|
564 |
msgstr[1] ""
|
565 |
|
566 |
-
#: wppa-ajax.php:
|
567 |
#, php-format
|
568 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: wppa-ajax.php:
|
572 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
573 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
574 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
@@ -591,7 +591,7 @@ msgstr ""
|
|
591 |
msgid "Name"
|
592 |
msgstr "Navn"
|
593 |
|
594 |
-
#: wppa-ajax.php:
|
595 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
596 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
597 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
@@ -612,44 +612,44 @@ msgstr "Navn"
|
|
612 |
msgid "Description"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: wppa-ajax.php:
|
616 |
msgid "Unbalanced tags in album description!"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: wppa-ajax.php:
|
620 |
msgid "Album order #"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: wppa-ajax.php:
|
624 |
msgid "Cover photo"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: wppa-ajax.php:
|
628 |
msgid "Parent album"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: wppa-ajax.php:
|
632 |
msgid "Photo order"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: wppa-ajax.php:
|
636 |
msgid "Use Alt thumbsize"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: wppa-ajax.php:
|
640 |
msgid "Cover Type"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: wppa-ajax.php:
|
644 |
#: wppa-settings-autosave.php:6029
|
645 |
msgid "Link type"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: wppa-ajax.php:
|
649 |
msgid "Link to"
|
650 |
msgstr "Link til"
|
651 |
|
652 |
-
#: wppa-ajax.php:
|
653 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
654 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
655 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
@@ -657,225 +657,225 @@ msgstr "Link til"
|
|
657 |
msgid "Owner"
|
658 |
msgstr "Ejer"
|
659 |
|
660 |
-
#: wppa-ajax.php:
|
661 |
#, php-format
|
662 |
msgid "User %s does not exist"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: wppa-ajax.php:
|
666 |
msgid "Upload limit count"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: wppa-ajax.php:
|
670 |
msgid "Upload limit time"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: wppa-ajax.php:
|
674 |
msgid "Default tags"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: wppa-ajax.php:
|
678 |
msgid "Categories"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: wppa-ajax.php:
|
682 |
msgid "Sub albums sort order"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: wppa-ajax.php:
|
686 |
msgid "Schedule date/time"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: wppa-ajax.php:
|
690 |
#, php-format
|
691 |
msgid "<b>%s</b> of album %s updated"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: wppa-ajax.php:
|
695 |
msgid "All photos set to scheduled per date"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: wppa-ajax.php:
|
699 |
#, php-format
|
700 |
msgid "<b>Custom field %s</b> updated"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: wppa-ajax.php:
|
704 |
#, php-format
|
705 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: wppa-ajax.php:
|
709 |
msgid "Press CTRL+F5 and try again."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: wppa-ajax.php:
|
713 |
msgid "You do not have the rights to update comment status"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: wppa-ajax.php:
|
717 |
#, php-format
|
718 |
msgid "Status of comment #%s updated"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: wppa-ajax.php:
|
722 |
#, php-format
|
723 |
msgid "Error updating status comment #%s"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: wppa-ajax.php:
|
727 |
msgid "You do not have the rights to change photos"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: wppa-ajax.php:
|
731 |
msgid "Watermark applied"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: wppa-ajax.php:
|
735 |
msgid "An error occured while trying to apply a watermark"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: wppa-ajax.php:
|
739 |
msgid "You do not have the rights to update photo information"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: wppa-ajax.php:
|
743 |
#, php-format
|
744 |
msgid "%s updated to %s."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: wppa-ajax.php:
|
748 |
#, php-format
|
749 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: wppa-ajax.php:
|
753 |
msgid "Exif date/time updated"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: wppa-ajax.php:
|
757 |
msgid "Enter a value > -90 and < 90"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: wppa-ajax.php:
|
761 |
msgid "Lattitude updated"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: wppa-ajax.php:
|
765 |
msgid "Could not update lattitude"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: wppa-ajax.php:
|
769 |
msgid "Enter a value > -180 and < 180"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: wppa-ajax.php:
|
773 |
msgid "Longitude updated"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: wppa-ajax.php:
|
777 |
msgid "Could not update longitude"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: wppa-ajax.php:
|
781 |
msgid "Photo files remade"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: wppa-ajax.php:
|
785 |
msgid "Could not remake files"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: wppa-ajax.php:
|
789 |
msgid "Thumbnail remade"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: wppa-ajax.php:
|
793 |
msgid "Could not remake thumbnail"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: wppa-ajax.php:
|
797 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
798 |
-
#: wppa-tinymce-shortcodes.php:
|
799 |
msgid "left"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: wppa-ajax.php:
|
803 |
msgid "180°"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: wppa-ajax.php:
|
807 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
808 |
-
#: wppa-tinymce-shortcodes.php:
|
809 |
msgid "right"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: wppa-ajax.php:
|
813 |
#, php-format
|
814 |
msgid "Photo %s rotated %s"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: wppa-ajax.php:
|
818 |
#, php-format
|
819 |
msgid "An error occurred while trying to rotate photo %s"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: wppa-ajax.php:
|
823 |
#: wppa-photo-admin-autosave.php:1118
|
824 |
#, php-format
|
825 |
msgid "A photo with filename %s already exists in album %s."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: wppa-ajax.php:
|
829 |
#, php-format
|
830 |
msgid "Photo %s has been moved to album %s (%s)"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: wppa-ajax.php:
|
834 |
#, php-format
|
835 |
msgid "An error occurred while trying to move photo %s"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: wppa-ajax.php:
|
839 |
#, php-format
|
840 |
msgid "Photo %s copied to album %s (%s)"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: wppa-ajax.php:
|
844 |
#, php-format
|
845 |
msgid "An error occurred while trying to copy photo %s"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: wppa-ajax.php:
|
849 |
msgid "Unbalanced tags in photo description!"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: wppa-ajax.php:
|
853 |
msgid "Photo order #"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: wppa-ajax.php:
|
857 |
#, php-format
|
858 |
msgid "User %s does not exists"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: wppa-ajax.php:
|
862 |
msgid "Link url"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: wppa-ajax.php:
|
866 |
msgid "Link title"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: wppa-ajax.php:
|
870 |
msgid "Link target"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: wppa-ajax.php:
|
874 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
875 |
msgid "Photo Tags"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: wppa-ajax.php:
|
879 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
880 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
881 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
@@ -883,446 +883,446 @@ msgstr ""
|
|
883 |
msgid "Status"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: wppa-ajax.php:
|
887 |
msgid "HTML Alt"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: wppa-ajax.php:
|
891 |
msgid "Video width"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: wppa-ajax.php:
|
895 |
msgid "Please enter an integer value >= 0"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: wppa-ajax.php:
|
899 |
msgid "Video height"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: wppa-ajax.php:
|
903 |
#, php-format
|
904 |
msgid "<b>%s</b> of video %s updated"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: wppa-ajax.php:
|
908 |
#, php-format
|
909 |
msgid "<b>%s</b> of photo %s updated"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: wppa-ajax.php:
|
913 |
#, php-format
|
914 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: wppa-ajax.php:
|
918 |
#, php-format
|
919 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: wppa-ajax.php:
|
923 |
msgid "<b>Error during upload.</b>"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: wppa-ajax.php:
|
927 |
msgid "Photo files updated."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: wppa-ajax.php:
|
931 |
msgid "Could not update files."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: wppa-ajax.php:
|
935 |
#, php-format
|
936 |
msgid "Stereo mode updated in %d milliseconds"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: wppa-ajax.php:
|
940 |
msgid "You do not have the rights to update settings"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: wppa-ajax.php:
|
944 |
msgid "You do not have the rights to update photo of the day settings"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: wppa-ajax.php:
|
948 |
msgid "Capability granted"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: wppa-ajax.php:
|
952 |
msgid "Capability withdrawn"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: wppa-ajax.php:
|
956 |
msgid "Column width."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: wppa-ajax.php:
|
960 |
msgid "Initial width."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: wppa-ajax.php:
|
964 |
msgid "Full size."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: wppa-ajax.php:
|
968 |
msgid "Max height."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: wppa-ajax.php:
|
972 |
msgid "Thumbnail size."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: wppa-ajax.php:
|
976 |
msgid "Thumbnail frame width"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: wppa-ajax.php:
|
980 |
msgid "Thumbnail frame height"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: wppa-ajax.php:
|
984 |
msgid "Thumbnail Spacing"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: wppa-ajax.php:
|
988 |
msgid "Photocount treshold."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: wppa-ajax.php:
|
992 |
msgid "Thumb page size."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: wppa-ajax.php:
|
996 |
msgid "Cover photo size."
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: wppa-ajax.php:
|
1000 |
msgid "Album page size."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: wppa-ajax.php:
|
1004 |
msgid "Number of TopTen photos"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: wppa-ajax.php:
|
1008 |
msgid "Widget image thumbnail size"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: wppa-ajax.php:
|
1012 |
msgid "Max Cover width"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: wppa-ajax.php:
|
1016 |
msgid "Minimal description height"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: wppa-ajax.php:
|
1020 |
msgid "Minimal cover height"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: wppa-ajax.php:
|
1024 |
msgid "Minimal text frame height"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: wppa-ajax.php:
|
1028 |
msgid "Border width"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: wppa-ajax.php:
|
1032 |
#: wppa-settings-autosave.php:1411
|
1033 |
msgid "Border radius"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: wppa-ajax.php:
|
1037 |
msgid "Box spacing"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: wppa-ajax.php:
|
1041 |
msgid "Popup size"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: wppa-ajax.php:
|
1045 |
msgid "Fullsize border width"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: wppa-ajax.php:
|
1049 |
msgid "Lightbox Bordersize"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: wppa-ajax.php:
|
1053 |
msgid "Lightbox Borderwidth"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: wppa-ajax.php:
|
1057 |
msgid "Lightbox Borderradius"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: wppa-ajax.php:
|
1061 |
msgid "Number of Comment widget entries"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: wppa-ajax.php:
|
1065 |
msgid "Comment Widget image thumbnail size"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: wppa-ajax.php:
|
1069 |
msgid "Opacity."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: wppa-ajax.php:
|
1073 |
msgid "Avatar size"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: wppa-ajax.php:
|
1077 |
msgid "Watermark opacity"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: wppa-ajax.php:
|
1081 |
msgid "Number of text lines"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: wppa-ajax.php:
|
1085 |
msgid "Overlay opacity"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: wppa-ajax.php:
|
1089 |
msgid "Upload limit"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: wppa-ajax.php:
|
1093 |
msgid "Notify inappropriate"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: wppa-ajax.php:
|
1097 |
msgid "Dislike pending"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: wppa-ajax.php:
|
1101 |
msgid "Dislike delete"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: wppa-ajax.php:
|
1105 |
msgid "Max execution time"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: wppa-ajax.php:
|
1109 |
msgid "myCRED / Cube Points"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: wppa-ajax.php:
|
1113 |
msgid "JPG Image quality"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: wppa-ajax.php:
|
1117 |
msgid "Number of coverphotos"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: wppa-ajax.php:
|
1121 |
msgid "Dislike value"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: wppa-ajax.php:
|
1125 |
msgid "Slideshow pagesize"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: wppa-ajax.php:
|
1129 |
msgid "Slideonly max"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: wppa-ajax.php:
|
1133 |
msgid "Max Pagelinks"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: wppa-ajax.php:
|
1137 |
msgid "Start/pause symbol size"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: wppa-ajax.php:
|
1141 |
msgid "Start/pause symbol border radius"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: wppa-ajax.php:
|
1145 |
msgid "Stop symbol size"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: wppa-ajax.php:
|
1149 |
msgid "Stop symbol border radius"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: wppa-ajax.php:
|
1153 |
msgid "Sticky header size"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: wppa-ajax.php:
|
1157 |
msgid "Ratings cleared"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: wppa-ajax.php:
|
1161 |
msgid "Could not clear ratings"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: wppa-ajax.php:
|
1165 |
msgid "Viewcounts cleared"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: wppa-ajax.php:
|
1169 |
msgid "Could not clear viewcounts"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: wppa-ajax.php:
|
1173 |
msgid "IPTC data cleared"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: wppa-ajax.php:
|
1177 |
msgid "Refresh this page to clear table X"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: wppa-ajax.php:
|
1181 |
msgid "Could not clear IPTC data"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: wppa-ajax.php:
|
1185 |
msgid "EXIF data cleared"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: wppa-ajax.php:
|
1189 |
msgid "Refresh this page to clear table XI"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: wppa-ajax.php:
|
1193 |
msgid "Could not clear EXIF data"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: wppa-ajax.php:
|
1197 |
msgid "Recuperation performed"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: wppa-ajax.php:
|
1201 |
msgid ""
|
1202 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1203 |
"#77bbff"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: wppa-ajax.php:
|
1207 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: wppa-ajax.php:
|
1211 |
msgid "Please run the appropriate action in Table VIII."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: wppa-ajax.php:
|
1215 |
#, php-format
|
1216 |
msgid "Unable to create or write to %s"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: wppa-ajax.php:
|
1220 |
msgid "Source can not be inside the wppa folder."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: wppa-ajax.php:
|
1224 |
msgid "The content must contain w#album"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: wppa-ajax.php:
|
1228 |
msgid "The content must contain w#lat and w#lon"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: wppa-ajax.php:
|
1232 |
msgid "Members"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: wppa-ajax.php:
|
1236 |
msgid "Parent of the member albums"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: wppa-ajax.php:
|
1240 |
#, php-format
|
1241 |
msgid "User %s has been blacklisted."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: wppa-ajax.php:
|
1245 |
#, php-format
|
1246 |
msgid "User %s does not exist."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: wppa-ajax.php:
|
1250 |
#, php-format
|
1251 |
msgid "User %s is now superuser."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: wppa-ajax.php:
|
1255 |
msgid ""
|
1256 |
"The content of the Custom box has been changed to display the Fotomoto "
|
1257 |
"toolbar."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: wppa-ajax.php:
|
1261 |
msgid "The display of the custom box has been enabled"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: wppa-ajax.php:
|
1265 |
msgid "The content of the Custom box has been changed to display maps."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: wppa-ajax.php:
|
1269 |
msgid "This value can not be empty"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: wppa-ajax.php:
|
1273 |
msgid ""
|
1274 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1275 |
"encrypted urls."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: wppa-ajax.php:
|
1279 |
msgid "Table IV-A3 will be switched off."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: wppa-ajax.php:
|
1283 |
msgid "Table IV-A4 will be switched off."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: wppa-ajax.php:
|
1287 |
msgid "Not allowed when cryptic links is active"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: wppa-ajax.php:
|
1291 |
msgid "A Twitter account name must start with an at sign: @"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: wppa-ajax.php:
|
1295 |
#, php-format
|
1296 |
msgid "Failed to set %s to %s"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: wppa-ajax.php:
|
1300 |
#, php-format
|
1301 |
msgid "Setting %s updated to %s"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: wppa-ajax.php:
|
1305 |
msgid ""
|
1306 |
"You just changed a setting that requires the regeneration of thumbnails."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: wppa-ajax.php:
|
1310 |
msgid "Missing album id"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: wppa-ajax.php:
|
1314 |
msgid "You do not have the rights to delete this album"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: wppa-ajax.php:
|
1318 |
msgid "An error has occurred"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: wppa-ajax.php:
|
1322 |
msgid "You may also enter:"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: wppa-ajax.php:
|
1326 |
msgid "You may also leave/set this blank"
|
1327 |
msgstr ""
|
1328 |
|
@@ -1366,7 +1366,7 @@ msgstr ""
|
|
1366 |
msgid "Top of page"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: wppa-album-admin-autosave.php:118 wppa-functions.php:
|
1370 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1371 |
msgid "New Album"
|
1372 |
msgstr "Nyt Album"
|
@@ -1489,8 +1489,8 @@ msgid ""
|
|
1489 |
"here."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:
|
1493 |
-
#: wppa-tinymce-shortcodes.php:
|
1494 |
msgid "Parent album:"
|
1495 |
msgstr ""
|
1496 |
|
@@ -1505,7 +1505,7 @@ msgstr ""
|
|
1505 |
|
1506 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1507 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1508 |
-
#: wppa-tinymce-shortcodes.php:
|
1509 |
msgid "--- default ---"
|
1510 |
msgstr ""
|
1511 |
|
@@ -1994,7 +1994,7 @@ msgstr ""
|
|
1994 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
1995 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319
|
1996 |
#: wppa-comment-admin.php:388 wppa-comment-admin.php:406
|
1997 |
-
#: wppa-functions.php:2115 wppa-links.php:
|
1998 |
#: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
|
1999 |
#: wppa-thumbnails.php:629
|
2000 |
msgid "Delete"
|
@@ -2391,7 +2391,7 @@ msgstr ""
|
|
2391 |
msgid "--- all separate albums ---"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:
|
2395 |
#: wppa-items.php:436
|
2396 |
msgid "--- owner/public ---"
|
2397 |
msgstr "---ejer/offentlige---"
|
@@ -2521,7 +2521,7 @@ msgstr ""
|
|
2521 |
msgid "Rating count:"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: wppa-bestof-widget.php:198 wppa-common-functions.php:
|
2525 |
#: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
|
2526 |
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
|
2527 |
#: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
|
@@ -2532,7 +2532,7 @@ msgstr ""
|
|
2532 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
2533 |
#: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
|
2534 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
2535 |
-
#: wppa-tinymce-shortcodes.php:
|
2536 |
msgid "--- none ---"
|
2537 |
msgstr "--- ingen ---"
|
2538 |
|
@@ -2733,7 +2733,7 @@ msgstr "Indtast album beskrivelse"
|
|
2733 |
msgid "Create album"
|
2734 |
msgstr "Opret album"
|
2735 |
|
2736 |
-
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:
|
2737 |
msgid "Max uploads reached"
|
2738 |
msgstr "Maks. antal indsendinger er opnået"
|
2739 |
|
@@ -2895,7 +2895,7 @@ msgstr "skrev:"
|
|
2895 |
msgid "Avatar"
|
2896 |
msgstr "Profilbillede"
|
2897 |
|
2898 |
-
#: wppa-boxes-html.php:3109 wppa-links.php:
|
2899 |
msgid "Awaiting moderation"
|
2900 |
msgstr "Venter på godkendelse"
|
2901 |
|
@@ -3452,14 +3452,14 @@ msgstr "Foto ikke fundet"
|
|
3452 |
msgid "There are no commented photos (yet)"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: wppa-common-functions.php:
|
3456 |
#, php-format
|
3457 |
msgid "%d second"
|
3458 |
msgid_plural "%d seconds"
|
3459 |
msgstr[0] ""
|
3460 |
msgstr[1] ""
|
3461 |
|
3462 |
-
#: wppa-common-functions.php:
|
3463 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
3464 |
#, php-format
|
3465 |
msgid "%d minute"
|
@@ -3467,7 +3467,7 @@ msgid_plural "%d minutes"
|
|
3467 |
msgstr[0] ""
|
3468 |
msgstr[1] ""
|
3469 |
|
3470 |
-
#: wppa-common-functions.php:
|
3471 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
3472 |
#, php-format
|
3473 |
msgid "%d hour"
|
@@ -3475,7 +3475,7 @@ msgid_plural "%d hours"
|
|
3475 |
msgstr[0] ""
|
3476 |
msgstr[1] ""
|
3477 |
|
3478 |
-
#: wppa-common-functions.php:
|
3479 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
3480 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
3481 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
@@ -3488,7 +3488,7 @@ msgid_plural "%d days"
|
|
3488 |
msgstr[0] ""
|
3489 |
msgstr[1] ""
|
3490 |
|
3491 |
-
#: wppa-common-functions.php:
|
3492 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
3493 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
3494 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
@@ -3498,7 +3498,7 @@ msgid_plural "%d weeks"
|
|
3498 |
msgstr[0] ""
|
3499 |
msgstr[1] ""
|
3500 |
|
3501 |
-
#: wppa-common-functions.php:
|
3502 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
3503 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
3504 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
@@ -3508,7 +3508,7 @@ msgid_plural "%d months"
|
|
3508 |
msgstr[0] ""
|
3509 |
msgstr[1] ""
|
3510 |
|
3511 |
-
#: wppa-common-functions.php:
|
3512 |
#: wppa-settings-autosave.php:9025
|
3513 |
#, php-format
|
3514 |
msgid "%d year"
|
@@ -3516,7 +3516,7 @@ msgid_plural "%d years"
|
|
3516 |
msgstr[0] ""
|
3517 |
msgstr[1] ""
|
3518 |
|
3519 |
-
#: wppa-common-functions.php:
|
3520 |
#, php-format
|
3521 |
msgid ""
|
3522 |
"Based on your server memory limit you should not upload images larger then "
|
@@ -3525,39 +3525,39 @@ msgstr ""
|
|
3525 |
"Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
|
3526 |
"derefter <strong>%d x %d (% 2.1f MP)</strong>"
|
3527 |
|
3528 |
-
#: wppa-common-functions.php:
|
3529 |
msgid "- select an album -"
|
3530 |
msgstr "- vælg et album -"
|
3531 |
|
3532 |
-
#: wppa-common-functions.php:
|
3533 |
#: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
|
3534 |
#: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
|
3535 |
#: wppa-tagcloud-widget.php:79
|
3536 |
msgid "--- all ---"
|
3537 |
msgstr "--- alle ---"
|
3538 |
|
3539 |
-
#: wppa-common-functions.php:
|
3540 |
msgid "--- generic ---"
|
3541 |
msgstr "--- generisk ---"
|
3542 |
|
3543 |
-
#: wppa-common-functions.php:
|
3544 |
msgid "--- multiple see below ---"
|
3545 |
msgstr "--- multipel se nedenfor ---"
|
3546 |
|
3547 |
-
#: wppa-common-functions.php:
|
3548 |
msgid "--- a selection box ---"
|
3549 |
msgstr "--- et valgboksen ---"
|
3550 |
|
3551 |
-
#: wppa-common-functions.php:
|
3552 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
3553 |
msgid "--- separate ---"
|
3554 |
msgstr "--- adskille ---"
|
3555 |
|
3556 |
-
#: wppa-common-functions.php:
|
3557 |
msgid "Photo id ="
|
3558 |
msgstr "Foto id ="
|
3559 |
|
3560 |
-
#: wppa-common-functions.php:
|
3561 |
msgid "Value ="
|
3562 |
msgstr "Værdi ="
|
3563 |
|
@@ -3922,7 +3922,7 @@ msgstr ""
|
|
3922 |
"Der er %s album fundet. Kun den første %s vil blive vist. Venligst forfine "
|
3923 |
"dine søgekriterier."
|
3924 |
|
3925 |
-
#: wppa-functions.php:2112 wppa-links.php:
|
3926 |
#: wppa-thumbnails.php:627
|
3927 |
msgid "Are you sure you want to remove this photo?"
|
3928 |
msgstr "Er du sikker på, at du vil fjerne dette foto"
|
@@ -3966,7 +3966,7 @@ msgstr "Se fotos"
|
|
3966 |
msgid "Moderate comment admin"
|
3967 |
msgstr "Godkend kommentar administration"
|
3968 |
|
3969 |
-
#: wppa-functions.php:2366 wppa-functions.php:
|
3970 |
#: wppa-upload.php:570
|
3971 |
msgid "Moderate manage photo"
|
3972 |
msgstr "Se fotos"
|
@@ -4009,138 +4009,138 @@ msgstr ""
|
|
4009 |
msgid "Could not process comment.\\nProbably timed out."
|
4010 |
msgstr "Kommentar kunne ikke bearbejdes"
|
4011 |
|
4012 |
-
#: wppa-functions.php:2604 wppa-links.php:
|
4013 |
msgid "A video can not be printed or downloaded"
|
4014 |
msgstr "En video kan ikke udskrives eller downloades"
|
4015 |
|
4016 |
-
#: wppa-functions.php:
|
4017 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4018 |
msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
|
4019 |
|
4020 |
-
#: wppa-functions.php:
|
4021 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4022 |
msgstr "FEJL: Ulovlig forsøg på at indtaste en kommentar."
|
4023 |
|
4024 |
-
#: wppa-functions.php:
|
4025 |
msgid "ERROR: Illegal attempt to create an album."
|
4026 |
msgstr "FEJL: Ulovlig forsøg på at skabe et album."
|
4027 |
|
4028 |
-
#: wppa-functions.php:
|
4029 |
msgid "Wrong captcha, please try again"
|
4030 |
msgstr "Forkert captcha, prøv igen"
|
4031 |
|
4032 |
-
#: wppa-functions.php:
|
4033 |
#, php-format
|
4034 |
msgid "Album #%s created"
|
4035 |
msgstr "Album #%s oprettet"
|
4036 |
|
4037 |
-
#: wppa-functions.php:
|
4038 |
msgid "Could not create album"
|
4039 |
msgstr "Kunne ikke oprette album"
|
4040 |
|
4041 |
-
#: wppa-functions.php:
|
4042 |
msgid "ERROR: Illegal attempt to upload a file."
|
4043 |
msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
|
4044 |
|
4045 |
-
#: wppa-functions.php:
|
4046 |
msgid "Photo upload"
|
4047 |
msgstr "Foto upload"
|
4048 |
|
4049 |
-
#: wppa-functions.php:
|
4050 |
#, php-format
|
4051 |
msgid "%d photo successfully uploaded"
|
4052 |
msgid_plural "%d photos successfully uploaded"
|
4053 |
msgstr[0] ""
|
4054 |
msgstr[1] ""
|
4055 |
|
4056 |
-
#: wppa-functions.php:
|
4057 |
#, php-format
|
4058 |
msgid "%s points added"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: wppa-functions.php:
|
4062 |
msgid "Your post is awaiting moderation."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: wppa-functions.php:
|
4066 |
msgid "Upload failed"
|
4067 |
msgstr "Indlæsning fejlede"
|
4068 |
|
4069 |
-
#: wppa-functions.php:
|
4070 |
#, php-format
|
4071 |
msgid "%d upload failed"
|
4072 |
msgid_plural "%d uploads failed"
|
4073 |
msgstr[0] ""
|
4074 |
msgstr[1] ""
|
4075 |
|
4076 |
-
#: wppa-functions.php:
|
4077 |
msgid "Error during upload"
|
4078 |
msgstr "Fejl under upload"
|
4079 |
|
4080 |
-
#: wppa-functions.php:
|
4081 |
msgid "Could not insert media into db."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: wppa-functions.php:
|
4085 |
msgid "Uploaded file is not an image"
|
4086 |
msgstr "Uploaded fil er ikke et billede"
|
4087 |
|
4088 |
-
#: wppa-functions.php:
|
4089 |
#, php-format
|
4090 |
msgid ""
|
4091 |
"Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4092 |
msgstr ""
|
4093 |
"Kun gif, jpg og png filer understøttes. Den forkerte filtype er %d."
|
4094 |
|
4095 |
-
#: wppa-functions.php:
|
4096 |
#, php-format
|
4097 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4098 |
msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
|
4099 |
|
4100 |
-
#: wppa-functions.php:
|
4101 |
#, php-format
|
4102 |
msgid "Uploaded file %s already exists in this album."
|
4103 |
msgstr "Uploadet fil %s findes allerede i dette album."
|
4104 |
|
4105 |
-
#: wppa-functions.php:
|
4106 |
#, php-format
|
4107 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4108 |
msgstr ""
|
4109 |
"Billedet er for stort. Maks. foto størrelse: %d x %d (%2.1f MegaPixel)"
|
4110 |
|
4111 |
-
#: wppa-functions.php:
|
4112 |
msgid "Could not insert photo into db."
|
4113 |
msgstr "Kunne ikke indsætte foto i databasen."
|
4114 |
|
4115 |
-
#: wppa-functions.php:
|
4116 |
#, php-format
|
4117 |
msgid "New photo uploaded: %s"
|
4118 |
msgstr "Nyt foto indsendt: %s"
|
4119 |
|
4120 |
-
#: wppa-functions.php:
|
4121 |
#, php-format
|
4122 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4123 |
msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
|
4124 |
|
4125 |
-
#: wppa-functions.php:
|
4126 |
msgid "This upload requires moderation"
|
4127 |
msgstr "Denne indsendelse kræver godkendelse"
|
4128 |
|
4129 |
-
#: wppa-functions.php:
|
4130 |
msgid "Details:"
|
4131 |
msgstr "Detaljer:"
|
4132 |
|
4133 |
-
#: wppa-functions.php:
|
4134 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4135 |
msgid "Manage photo"
|
4136 |
msgstr "Se fotos"
|
4137 |
|
4138 |
-
#: wppa-functions.php:
|
4139 |
msgid "You can upload after"
|
4140 |
msgstr "Du kan indsende efter"
|
4141 |
|
4142 |
-
#: wppa-functions.php:
|
4143 |
-
#: wppa-functions.php:
|
4144 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4145 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4146 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
@@ -4148,21 +4148,21 @@ msgstr "Du kan indsende efter"
|
|
4148 |
msgid "Download"
|
4149 |
msgstr "Download"
|
4150 |
|
4151 |
-
#: wppa-functions.php:
|
4152 |
msgid "Zoom in"
|
4153 |
msgstr "Zoom ind"
|
4154 |
|
4155 |
-
#: wppa-functions.php:
|
4156 |
#, php-format
|
4157 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: wppa-functions.php:
|
4161 |
#, php-format
|
4162 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#: wppa-functions.php:
|
4166 |
#, php-format
|
4167 |
msgid "You can vote again after %s minutes and %s seconds"
|
4168 |
msgstr ""
|
@@ -4925,69 +4925,69 @@ msgstr ""
|
|
4925 |
msgid "Show time since:"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: wppa-links.php:
|
4929 |
msgid "App"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: wppa-links.php:
|
4933 |
msgid "Mod"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: wppa-links.php:
|
4937 |
msgid "Del"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: wppa-links.php:
|
4941 |
msgid "Are you sure you want to publish this photo?"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#: wppa-links.php:
|
4945 |
msgid "Approve"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
-
#: wppa-links.php:
|
4949 |
msgid "Moderate"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: wppa-links.php:
|
4953 |
msgid "PhotoAdmin"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#: wppa-links.php:
|
4957 |
msgid "CommentAdmin"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: wppa-links.php:
|
4961 |
msgid "Are you sure you want to publish this comment?"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: wppa-links.php:
|
4965 |
msgid "Are you sure you want to remove this comment?"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: wppa-links.php:
|
4969 |
#, php-format
|
4970 |
msgid "Scheduled for %s"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: wppa-links.php:
|
4974 |
msgid "Previous"
|
4975 |
msgstr "Forrige"
|
4976 |
|
4977 |
-
#: wppa-links.php:
|
4978 |
#: wppa-slideshow.php:1137
|
4979 |
msgid "Next"
|
4980 |
msgstr "Næste"
|
4981 |
|
4982 |
-
#: wppa-links.php:
|
4983 |
msgid "Download Album"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: wppa-links.php:
|
4987 |
msgid "View thumbnails"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: wppa-links.php:
|
4991 |
msgid "View fullsize slideshow"
|
4992 |
msgstr ""
|
4993 |
|
@@ -5886,7 +5886,7 @@ msgid "pixels wide"
|
|
5886 |
msgstr ""
|
5887 |
|
5888 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
5889 |
-
#: wppa-tinymce-shortcodes.php:
|
5890 |
msgid "Horizontal alignment:"
|
5891 |
msgstr ""
|
5892 |
|
@@ -5897,7 +5897,7 @@ msgstr ""
|
|
5897 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
5898 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
5899 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
5900 |
-
#: wppa-tinymce-shortcodes.php:
|
5901 |
msgid "center"
|
5902 |
msgstr ""
|
5903 |
|
@@ -16425,8 +16425,8 @@ msgid "--- All photos in the system ---"
|
|
16425 |
msgstr ""
|
16426 |
|
16427 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
16428 |
-
#: wppa-tinymce-shortcodes.php:
|
16429 |
-
#: wppa-tinymce-shortcodes.php:
|
16430 |
msgid "There are no albums yet"
|
16431 |
msgstr ""
|
16432 |
|
@@ -16445,11 +16445,11 @@ msgstr ""
|
|
16445 |
msgid "* Album contains less than the minimun number of photos"
|
16446 |
msgstr ""
|
16447 |
|
16448 |
-
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:
|
16449 |
msgid "The Photo to be used:"
|
16450 |
msgstr ""
|
16451 |
|
16452 |
-
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:
|
16453 |
msgid "Please select a photo"
|
16454 |
msgstr ""
|
16455 |
|
@@ -16461,15 +16461,15 @@ msgstr ""
|
|
16461 |
msgid "--- The photo of the day ---"
|
16462 |
msgstr ""
|
16463 |
|
16464 |
-
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:
|
16465 |
msgid "There are no photos yet"
|
16466 |
msgstr ""
|
16467 |
|
16468 |
-
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:
|
16469 |
msgid "Specify the photo to be used"
|
16470 |
msgstr ""
|
16471 |
|
16472 |
-
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:
|
16473 |
msgid "You can select from a maximum of 100 most recently added photos"
|
16474 |
msgstr ""
|
16475 |
|
@@ -16477,7 +16477,7 @@ msgstr ""
|
|
16477 |
msgid "The tags the photos should have:"
|
16478 |
msgstr ""
|
16479 |
|
16480 |
-
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:
|
16481 |
msgid "--- please select tag(s) ---"
|
16482 |
msgstr ""
|
16483 |
|
@@ -16488,32 +16488,32 @@ msgid ""
|
|
16488 |
"tags"
|
16489 |
msgstr ""
|
16490 |
|
16491 |
-
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:
|
16492 |
msgid "The size of the display:"
|
16493 |
msgstr ""
|
16494 |
|
16495 |
-
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:
|
16496 |
msgid ""
|
16497 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
16498 |
"span>."
|
16499 |
msgstr ""
|
16500 |
|
16501 |
-
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:
|
16502 |
msgid ""
|
16503 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
16504 |
"interpreted as a <span style=\"color:blue\" >percentage</span> of the "
|
16505 |
"available space."
|
16506 |
msgstr ""
|
16507 |
|
16508 |
-
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:
|
16509 |
msgid "Leave this blank for default size"
|
16510 |
msgstr ""
|
16511 |
|
16512 |
-
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:
|
16513 |
msgid "Specify the alignment to be used or --- none ---"
|
16514 |
msgstr ""
|
16515 |
|
16516 |
-
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:
|
16517 |
msgid "Insert Gallery"
|
16518 |
msgstr ""
|
16519 |
|
@@ -16741,7 +16741,7 @@ msgstr ""
|
|
16741 |
msgid "All albums in the system"
|
16742 |
msgstr ""
|
16743 |
|
16744 |
-
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:
|
16745 |
msgid "The Album(s) to be used:"
|
16746 |
msgstr ""
|
16747 |
|
@@ -16749,152 +16749,162 @@ msgstr ""
|
|
16749 |
msgid "Please select one or more albums"
|
16750 |
msgstr ""
|
16751 |
|
16752 |
-
#: wppa-tinymce-shortcodes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16753 |
msgid "All albums"
|
16754 |
msgstr ""
|
16755 |
|
16756 |
-
#: wppa-tinymce-shortcodes.php:
|
16757 |
msgid "The album owner:"
|
16758 |
msgstr ""
|
16759 |
|
16760 |
-
#: wppa-tinymce-shortcodes.php:
|
16761 |
msgid "Please select a user"
|
16762 |
msgstr ""
|
16763 |
|
16764 |
-
#: wppa-tinymce-shortcodes.php:
|
16765 |
msgid "The logged in visitor"
|
16766 |
msgstr ""
|
16767 |
|
16768 |
-
#: wppa-tinymce-shortcodes.php:
|
16769 |
msgid "Too many users, edit manually"
|
16770 |
msgstr ""
|
16771 |
|
16772 |
-
#: wppa-tinymce-shortcodes.php:
|
16773 |
msgid "No parent specification"
|
16774 |
msgstr ""
|
16775 |
|
16776 |
-
#: wppa-tinymce-shortcodes.php:
|
16777 |
-
#: wppa-tinymce-shortcodes.php:
|
16778 |
msgid "The generic parent"
|
16779 |
msgstr ""
|
16780 |
|
16781 |
-
#: wppa-tinymce-shortcodes.php:
|
16782 |
msgid "Max Albums:"
|
16783 |
msgstr ""
|
16784 |
|
16785 |
-
#: wppa-tinymce-shortcodes.php:
|
16786 |
msgid "Max Photos:"
|
16787 |
msgstr ""
|
16788 |
|
16789 |
-
#: wppa-tinymce-shortcodes.php:
|
16790 |
msgid "The album cat(s):"
|
16791 |
msgstr ""
|
16792 |
|
16793 |
-
#: wppa-tinymce-shortcodes.php:
|
16794 |
msgid "--- please select category ---"
|
16795 |
msgstr ""
|
16796 |
|
16797 |
-
#: wppa-tinymce-shortcodes.php:
|
16798 |
msgid "The photo of the day"
|
16799 |
msgstr ""
|
16800 |
|
16801 |
-
#: wppa-tinymce-shortcodes.php:
|
16802 |
msgid "The most recently uploaded photo"
|
16803 |
msgstr ""
|
16804 |
|
16805 |
-
#: wppa-tinymce-shortcodes.php:
|
16806 |
msgid "Preview image:"
|
16807 |
msgstr ""
|
16808 |
|
16809 |
-
#: wppa-tinymce-shortcodes.php:
|
16810 |
msgid "The photo tag(s):"
|
16811 |
msgstr ""
|
16812 |
|
16813 |
-
#: wppa-tinymce-shortcodes.php:
|
16814 |
msgid "Or / And:"
|
16815 |
msgstr ""
|
16816 |
|
16817 |
-
#: wppa-tinymce-shortcodes.php:
|
16818 |
msgid "Meet any"
|
16819 |
msgstr ""
|
16820 |
|
16821 |
-
#: wppa-tinymce-shortcodes.php:
|
16822 |
msgid "Meet all"
|
16823 |
msgstr ""
|
16824 |
|
16825 |
-
#: wppa-tinymce-shortcodes.php:
|
16826 |
msgid "Additional features:"
|
16827 |
msgstr ""
|
16828 |
|
16829 |
-
#: wppa-tinymce-shortcodes.php:
|
16830 |
msgid "Enable Subsearch"
|
16831 |
msgstr ""
|
16832 |
|
16833 |
-
#: wppa-tinymce-shortcodes.php:
|
16834 |
msgid "Enable Rootsearch"
|
16835 |
msgstr ""
|
16836 |
|
16837 |
-
#: wppa-tinymce-shortcodes.php:
|
16838 |
msgid "Search root:"
|
16839 |
msgstr ""
|
16840 |
|
16841 |
-
#: wppa-tinymce-shortcodes.php:
|
16842 |
msgid "Landing page:"
|
16843 |
msgstr ""
|
16844 |
|
16845 |
-
#: wppa-tinymce-shortcodes.php:
|
16846 |
msgid "Enable all tags"
|
16847 |
msgstr ""
|
16848 |
|
16849 |
-
#: wppa-tinymce-shortcodes.php:
|
16850 |
msgid "Please select the tags to show"
|
16851 |
msgstr ""
|
16852 |
|
16853 |
-
#: wppa-tinymce-shortcodes.php:
|
16854 |
msgid "There are no tags"
|
16855 |
msgstr ""
|
16856 |
|
16857 |
-
#: wppa-tinymce-shortcodes.php:
|
16858 |
msgid "Calendar type:"
|
16859 |
msgstr ""
|
16860 |
|
16861 |
-
#: wppa-tinymce-shortcodes.php:
|
16862 |
msgid "By EXIF date"
|
16863 |
msgstr ""
|
16864 |
|
16865 |
-
#: wppa-tinymce-shortcodes.php:
|
16866 |
msgid "By date of upload"
|
16867 |
msgstr ""
|
16868 |
|
16869 |
-
#: wppa-tinymce-shortcodes.php:
|
16870 |
msgid "By date last modified"
|
16871 |
msgstr ""
|
16872 |
|
16873 |
-
#: wppa-tinymce-shortcodes.php:
|
16874 |
msgid "Last date first"
|
16875 |
msgstr ""
|
16876 |
|
16877 |
-
#: wppa-tinymce-shortcodes.php:
|
16878 |
msgid "Initially display all"
|
16879 |
msgstr ""
|
16880 |
|
16881 |
-
#: wppa-tinymce-shortcodes.php:
|
16882 |
msgid ""
|
16883 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
16884 |
"\"color:blue\" >auto,550</span>"
|
16885 |
msgstr ""
|
16886 |
|
16887 |
-
#: wppa-tinymce-shortcodes.php:
|
16888 |
msgid ""
|
16889 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
16890 |
"comment"
|
16891 |
msgstr ""
|
16892 |
|
16893 |
-
#: wppa-tinymce-shortcodes.php:
|
16894 |
msgid "insert Gallery"
|
16895 |
msgstr ""
|
16896 |
|
16897 |
-
#: wppa-tinymce-shortcodes.php:
|
16898 |
msgid "Please complete the shortcode specs"
|
16899 |
msgstr ""
|
16900 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
+
"POT-Creation-Date: 2016-09-23 13:40+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-09-23 13:40+0200\n"
|
6 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
7 |
"Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language: da_DK\n"
|
100 |
msgid "Settings file not found"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
104 |
+
#: wppa-ajax.php:2718
|
105 |
msgid "Please supply a numeric value greater than or equal to"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
109 |
+
#: wppa-ajax.php:2718
|
110 |
msgid "for"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: wppa-admin-functions.php:208 wppa-ajax.php:2718
|
114 |
msgid "and less than or equal to"
|
115 |
msgstr ""
|
116 |
|
286 |
msgstr ""
|
287 |
|
288 |
#: wppa-admin.php:111
|
289 |
+
msgid "Uploading is temporary disabled for you"
|
290 |
msgstr ""
|
291 |
|
292 |
#: wppa-admin.php:118
|
293 |
+
msgid "Editing is temporary disabled for you"
|
294 |
msgstr ""
|
295 |
|
296 |
#: wppa-admin.php:125
|
297 |
+
msgid "Importing is temporary disabled for you"
|
298 |
msgstr ""
|
299 |
|
300 |
#: wppa-admin.php:128 wppa-import.php:1226
|
351 |
msgstr ""
|
352 |
|
353 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
354 |
+
#: wppa-ajax.php:929 wppa-ajax.php:2668
|
355 |
msgid "Security check failure"
|
356 |
msgstr ""
|
357 |
|
359 |
msgid "You do not have the rights to moderate photos this way"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: wppa-ajax.php:300 wppa-ajax.php:1233 wppa-functions.php:2339
|
363 |
msgid "Photo comment approved"
|
364 |
msgstr ""
|
365 |
|
503 |
"your vote became effective."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: wppa-ajax.php:925
|
507 |
msgid "You do not have the rights to delete a photo"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: wppa-ajax.php:935
|
511 |
#, php-format
|
512 |
msgid "Photo %s has been deleted"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: wppa-ajax.php:951
|
516 |
msgid "You do not have the rights to update album information"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: wppa-ajax.php:963
|
520 |
msgid "<b>Ratings cleared</b>"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: wppa-ajax.php:963 wppa-ajax.php:969 wppa-photo-admin-autosave.php:318
|
524 |
msgid "No ratings for this photo."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: wppa-ajax.php:966
|
528 |
msgid "An error occurred while clearing ratings"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: wppa-ajax.php:969 wppa-ajax.php:990 wppa-ajax.php:1012
|
532 |
msgid "<b>No photos in this album</b>"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: wppa-ajax.php:984
|
536 |
msgid "<b>Tags set to defaults</b> (reload)"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: wppa-ajax.php:987
|
540 |
msgid "An error occurred while setting tags"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: wppa-ajax.php:1006
|
544 |
msgid "<b>Tags added width defaults</b> (reload)"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: wppa-ajax.php:1009
|
548 |
msgid "An error occurred while adding tags"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: wppa-ajax.php:1035
|
552 |
msgid "No subalbums found to process"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: wppa-ajax.php:1040
|
556 |
msgid "No categories found to process"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: wppa-ajax.php:1044
|
560 |
#, php-format
|
561 |
msgid "%d album updated"
|
562 |
msgid_plural "%d albums updated"
|
563 |
msgstr[0] ""
|
564 |
msgstr[1] ""
|
565 |
|
566 |
+
#: wppa-ajax.php:1051
|
567 |
#, php-format
|
568 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: wppa-ajax.php:1053 wppa-ajax.php:1493 wppa-album-admin-autosave.php:393
|
572 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
573 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
574 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
591 |
msgid "Name"
|
592 |
msgstr "Navn"
|
593 |
|
594 |
+
#: wppa-ajax.php:1056 wppa-ajax.php:1496 wppa-album-admin-autosave.php:1109
|
595 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
596 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
597 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
612 |
msgid "Description"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: wppa-ajax.php:1060
|
616 |
msgid "Unbalanced tags in album description!"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: wppa-ajax.php:1067
|
620 |
msgid "Album order #"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: wppa-ajax.php:1070
|
624 |
msgid "Cover photo"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: wppa-ajax.php:1073
|
628 |
msgid "Parent album"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: wppa-ajax.php:1078 wppa-settings-autosave.php:4031
|
632 |
msgid "Photo order"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: wppa-ajax.php:1081
|
636 |
msgid "Use Alt thumbsize"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: wppa-ajax.php:1084
|
640 |
msgid "Cover Type"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: wppa-ajax.php:1087 wppa-settings-autosave.php:5023
|
644 |
#: wppa-settings-autosave.php:6029
|
645 |
msgid "Link type"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: wppa-ajax.php:1090 wppa-album-covers.php:1305
|
649 |
msgid "Link to"
|
650 |
msgstr "Link til"
|
651 |
|
652 |
+
#: wppa-ajax.php:1093 wppa-ajax.php:1517 wppa-album-admin-autosave.php:1120
|
653 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
654 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
655 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
657 |
msgid "Owner"
|
658 |
msgstr "Ejer"
|
659 |
|
660 |
+
#: wppa-ajax.php:1095
|
661 |
#, php-format
|
662 |
msgid "User %s does not exist"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: wppa-ajax.php:1100 wppa-ajax.php:1106
|
666 |
msgid "Upload limit count"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: wppa-ajax.php:1113
|
670 |
msgid "Upload limit time"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: wppa-ajax.php:1117
|
674 |
msgid "Default tags"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: wppa-ajax.php:1122
|
678 |
msgid "Categories"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: wppa-ajax.php:1125
|
682 |
msgid "Sub albums sort order"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: wppa-ajax.php:1133 wppa-ajax.php:1587
|
686 |
msgid "Schedule date/time"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: wppa-ajax.php:1146 wppa-ajax.php:1198
|
690 |
#, php-format
|
691 |
msgid "<b>%s</b> of album %s updated"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: wppa-ajax.php:1154
|
695 |
msgid "All photos set to scheduled per date"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: wppa-ajax.php:1181
|
699 |
#, php-format
|
700 |
msgid "<b>Custom field %s</b> updated"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: wppa-ajax.php:1207
|
704 |
#, php-format
|
705 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: wppa-ajax.php:1208 wppa-ajax.php:1471 wppa-ajax.php:1577
|
709 |
msgid "Press CTRL+F5 and try again."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: wppa-ajax.php:1222
|
713 |
msgid "You do not have the rights to update comment status"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: wppa-ajax.php:1239
|
717 |
#, php-format
|
718 |
msgid "Status of comment #%s updated"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: wppa-ajax.php:1242
|
722 |
#, php-format
|
723 |
msgid "Error updating status comment #%s"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: wppa-ajax.php:1253
|
727 |
msgid "You do not have the rights to change photos"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: wppa-ajax.php:1262
|
731 |
msgid "Watermark applied"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: wppa-ajax.php:1266
|
735 |
msgid "An error occured while trying to apply a watermark"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: wppa-ajax.php:1285
|
739 |
msgid "You do not have the rights to update photo information"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: wppa-ajax.php:1291
|
743 |
#, php-format
|
744 |
msgid "%s updated to %s."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: wppa-ajax.php:1341
|
748 |
#, php-format
|
749 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: wppa-ajax.php:1345
|
753 |
msgid "Exif date/time updated"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: wppa-ajax.php:1351
|
757 |
msgid "Enter a value > -90 and < 90"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: wppa-ajax.php:1359
|
761 |
msgid "Lattitude updated"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: wppa-ajax.php:1361
|
765 |
msgid "Could not update lattitude"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: wppa-ajax.php:1367
|
769 |
msgid "Enter a value > -180 and < 180"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: wppa-ajax.php:1375
|
773 |
msgid "Longitude updated"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: wppa-ajax.php:1377
|
777 |
msgid "Could not update longitude"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: wppa-ajax.php:1385
|
781 |
msgid "Photo files remade"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: wppa-ajax.php:1388
|
785 |
msgid "Could not remake files"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: wppa-ajax.php:1394
|
789 |
msgid "Thumbnail remade"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: wppa-ajax.php:1397
|
793 |
msgid "Could not remake thumbnail"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: wppa-ajax.php:1407 wppa-photo-admin-autosave.php:184 wppa-potd-admin.php:100
|
797 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
798 |
+
#: wppa-tinymce-shortcodes.php:627
|
799 |
msgid "left"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: wppa-ajax.php:1411 wppa-photo-admin-autosave.php:186
|
803 |
msgid "180°"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: wppa-ajax.php:1415 wppa-photo-admin-autosave.php:188 wppa-potd-admin.php:100
|
807 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
808 |
+
#: wppa-tinymce-shortcodes.php:629
|
809 |
msgid "right"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: wppa-ajax.php:1423
|
813 |
#, php-format
|
814 |
msgid "Photo %s rotated %s"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: wppa-ajax.php:1426
|
818 |
#, php-format
|
819 |
msgid "An error occurred while trying to rotate photo %s"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: wppa-ajax.php:1436 wppa-ajax.php:1459 wppa-photo-admin-autosave.php:1100
|
823 |
#: wppa-photo-admin-autosave.php:1118
|
824 |
#, php-format
|
825 |
msgid "A photo with filename %s already exists in album %s."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: wppa-ajax.php:1446
|
829 |
#, php-format
|
830 |
msgid "Photo %s has been moved to album %s (%s)"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: wppa-ajax.php:1449
|
834 |
#, php-format
|
835 |
msgid "An error occurred while trying to move photo %s"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: wppa-ajax.php:1467
|
839 |
#, php-format
|
840 |
msgid "Photo %s copied to album %s (%s)"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: wppa-ajax.php:1470
|
844 |
#, php-format
|
845 |
msgid "An error occurred while trying to copy photo %s"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: wppa-ajax.php:1500 wppa-ajax.php:2142
|
849 |
msgid "Unbalanced tags in photo description!"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: wppa-ajax.php:1506
|
853 |
msgid "Photo order #"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: wppa-ajax.php:1511
|
857 |
#, php-format
|
858 |
msgid "User %s does not exists"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: wppa-ajax.php:1520
|
862 |
msgid "Link url"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: wppa-ajax.php:1523
|
866 |
msgid "Link title"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: wppa-ajax.php:1526
|
870 |
msgid "Link target"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: wppa-ajax.php:1532 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
|
874 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
875 |
msgid "Photo Tags"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: wppa-ajax.php:1537 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
879 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
880 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
881 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
883 |
msgid "Status"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: wppa-ajax.php:1540
|
887 |
msgid "HTML Alt"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: wppa-ajax.php:1544
|
891 |
msgid "Video width"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: wppa-ajax.php:1546 wppa-ajax.php:1553
|
895 |
msgid "Please enter an integer value >= 0"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: wppa-ajax.php:1551
|
899 |
msgid "Video height"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: wppa-ajax.php:1569 wppa-ajax.php:1603
|
903 |
#, php-format
|
904 |
msgid "<b>%s</b> of video %s updated"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: wppa-ajax.php:1572 wppa-ajax.php:1606
|
908 |
#, php-format
|
909 |
msgid "<b>%s</b> of photo %s updated"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: wppa-ajax.php:1576
|
913 |
#, php-format
|
914 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: wppa-ajax.php:1632
|
918 |
#, php-format
|
919 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: wppa-ajax.php:1639
|
923 |
msgid "<b>Error during upload.</b>"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: wppa-ajax.php:1673
|
927 |
msgid "Photo files updated."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: wppa-ajax.php:1678
|
931 |
msgid "Could not update files."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: wppa-ajax.php:1689
|
935 |
#, php-format
|
936 |
msgid "Stereo mode updated in %d milliseconds"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: wppa-ajax.php:1706 wppa-ajax.php:1748
|
940 |
msgid "You do not have the rights to update settings"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: wppa-ajax.php:1742
|
944 |
msgid "You do not have the rights to update photo of the day settings"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: wppa-ajax.php:1820
|
948 |
msgid "Capability granted"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: wppa-ajax.php:1825
|
952 |
msgid "Capability withdrawn"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: wppa-ajax.php:1856
|
956 |
msgid "Column width."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: wppa-ajax.php:1859
|
960 |
msgid "Initial width."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: wppa-ajax.php:1862
|
964 |
msgid "Full size."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: wppa-ajax.php:1865
|
968 |
msgid "Max height."
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: wppa-ajax.php:1870
|
972 |
msgid "Thumbnail size."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: wppa-ajax.php:1874
|
976 |
msgid "Thumbnail frame width"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: wppa-ajax.php:1878
|
980 |
msgid "Thumbnail frame height"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: wppa-ajax.php:1881
|
984 |
msgid "Thumbnail Spacing"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: wppa-ajax.php:1884
|
988 |
msgid "Photocount treshold."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: wppa-ajax.php:1887
|
992 |
msgid "Thumb page size."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: wppa-ajax.php:1890
|
996 |
msgid "Cover photo size."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: wppa-ajax.php:1893
|
1000 |
msgid "Album page size."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: wppa-ajax.php:1896
|
1004 |
msgid "Number of TopTen photos"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: wppa-ajax.php:1899
|
1008 |
msgid "Widget image thumbnail size"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: wppa-ajax.php:1902 wppa-settings-autosave.php:1105
|
1012 |
msgid "Max Cover width"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: wppa-ajax.php:1905
|
1016 |
msgid "Minimal description height"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: wppa-ajax.php:1908
|
1020 |
msgid "Minimal cover height"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: wppa-ajax.php:1911
|
1024 |
msgid "Minimal text frame height"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: wppa-ajax.php:1914 wppa-settings-autosave.php:1402
|
1028 |
msgid "Border width"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: wppa-ajax.php:1917 wppa-settings-autosave.php:776
|
1032 |
#: wppa-settings-autosave.php:1411
|
1033 |
msgid "Border radius"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: wppa-ajax.php:1920 wppa-settings-autosave.php:787
|
1037 |
msgid "Box spacing"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: wppa-ajax.php:1926 wppa-settings-autosave.php:1080
|
1041 |
msgid "Popup size"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: wppa-ajax.php:1929
|
1045 |
msgid "Fullsize border width"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: wppa-ajax.php:1932
|
1049 |
msgid "Lightbox Bordersize"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: wppa-ajax.php:1935
|
1053 |
msgid "Lightbox Borderwidth"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: wppa-ajax.php:1938
|
1057 |
msgid "Lightbox Borderradius"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: wppa-ajax.php:1941
|
1061 |
msgid "Number of Comment widget entries"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: wppa-ajax.php:1944
|
1065 |
msgid "Comment Widget image thumbnail size"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: wppa-ajax.php:1947 wppa-ajax.php:1950 wppa-ajax.php:1953
|
1069 |
msgid "Opacity."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: wppa-ajax.php:1962 wppa-settings-autosave.php:1211
|
1073 |
msgid "Avatar size"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: wppa-ajax.php:1965 wppa-ajax.php:1968
|
1077 |
msgid "Watermark opacity"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: wppa-ajax.php:1971 wppa-settings-autosave.php:1380
|
1081 |
msgid "Number of text lines"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: wppa-ajax.php:1974 wppa-settings-autosave.php:4677
|
1085 |
msgid "Overlay opacity"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: wppa-ajax.php:1977 wppa-settings-autosave.php:8014
|
1089 |
msgid "Upload limit"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: wppa-ajax.php:1980 wppa-settings-autosave.php:4347
|
1093 |
msgid "Notify inappropriate"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: wppa-ajax.php:1983
|
1097 |
msgid "Dislike pending"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: wppa-ajax.php:1986
|
1101 |
msgid "Dislike delete"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: wppa-ajax.php:1989 wppa-settings-autosave.php:7550
|
1105 |
msgid "Max execution time"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: wppa-ajax.php:1995
|
1109 |
msgid "myCRED / Cube Points"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: wppa-ajax.php:1998
|
1113 |
msgid "JPG Image quality"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: wppa-ajax.php:2004 wppa-settings-autosave.php:4240
|
1117 |
msgid "Number of coverphotos"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: wppa-ajax.php:2007 wppa-settings-autosave.php:4318
|
1121 |
msgid "Dislike value"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: wppa-ajax.php:2010 wppa-settings-autosave.php:917
|
1125 |
msgid "Slideshow pagesize"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: wppa-ajax.php:2013 wppa-settings-autosave.php:936
|
1129 |
msgid "Slideonly max"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: wppa-ajax.php:2016 wppa-settings-autosave.php:805
|
1133 |
msgid "Max Pagelinks"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: wppa-ajax.php:2019 wppa-settings-autosave.php:3032
|
1137 |
msgid "Start/pause symbol size"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: wppa-ajax.php:2022 wppa-settings-autosave.php:3041
|
1141 |
msgid "Start/pause symbol border radius"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: wppa-ajax.php:2025 wppa-settings-autosave.php:3050
|
1145 |
msgid "Stop symbol size"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: wppa-ajax.php:2028 wppa-settings-autosave.php:3059
|
1149 |
msgid "Stop symbol border radius"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: wppa-ajax.php:2031 wppa-settings-autosave.php:832
|
1153 |
msgid "Sticky header size"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: wppa-ajax.php:2039
|
1157 |
msgid "Ratings cleared"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: wppa-ajax.php:2042
|
1161 |
msgid "Could not clear ratings"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: wppa-ajax.php:2051
|
1165 |
msgid "Viewcounts cleared"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: wppa-ajax.php:2054
|
1169 |
msgid "Could not clear viewcounts"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: wppa-ajax.php:2064
|
1173 |
msgid "IPTC data cleared"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: wppa-ajax.php:2065
|
1177 |
msgid "Refresh this page to clear table X"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: wppa-ajax.php:2069
|
1181 |
msgid "Could not clear IPTC data"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: wppa-ajax.php:2079
|
1185 |
msgid "EXIF data cleared"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: wppa-ajax.php:2080
|
1189 |
msgid "Refresh this page to clear table XI"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: wppa-ajax.php:2084
|
1193 |
msgid "Could not clear EXIF data"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: wppa-ajax.php:2092
|
1197 |
msgid "Recuperation performed"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: wppa-ajax.php:2107
|
1201 |
msgid ""
|
1202 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1203 |
"#77bbff"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: wppa-ajax.php:2133
|
1207 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: wppa-ajax.php:2134 wppa-ajax.php:2582
|
1211 |
msgid "Please run the appropriate action in Table VIII."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: wppa-ajax.php:2158 wppa-ajax.php:2174
|
1215 |
#, php-format
|
1216 |
msgid "Unable to create or write to %s"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: wppa-ajax.php:2167
|
1220 |
msgid "Source can not be inside the wppa folder."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: wppa-ajax.php:2184
|
1224 |
msgid "The content must contain w#album"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: wppa-ajax.php:2191
|
1228 |
msgid "The content must contain w#lat and w#lon"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: wppa-ajax.php:2239 wppa-ajax.php:2245
|
1232 |
msgid "Members"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: wppa-ajax.php:2239
|
1236 |
msgid "Parent of the member albums"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: wppa-ajax.php:2383
|
1240 |
#, php-format
|
1241 |
msgid "User %s has been blacklisted."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: wppa-ajax.php:2386 wppa-ajax.php:2416
|
1245 |
#, php-format
|
1246 |
msgid "User %s does not exist."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: wppa-ajax.php:2413
|
1250 |
#, php-format
|
1251 |
msgid "User %s is now superuser."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: wppa-ajax.php:2438
|
1255 |
msgid ""
|
1256 |
"The content of the Custom box has been changed to display the Fotomoto "
|
1257 |
"toolbar."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: wppa-ajax.php:2442 wppa-ajax.php:2457
|
1261 |
msgid "The display of the custom box has been enabled"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: wppa-ajax.php:2453
|
1265 |
msgid "The content of the Custom box has been changed to display maps."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: wppa-ajax.php:2491
|
1269 |
msgid "This value can not be empty"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: wppa-ajax.php:2520
|
1273 |
msgid ""
|
1274 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1275 |
"encrypted urls."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: wppa-ajax.php:2523
|
1279 |
msgid "Table IV-A3 will be switched off."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: wppa-ajax.php:2527
|
1283 |
msgid "Table IV-A4 will be switched off."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: wppa-ajax.php:2537
|
1287 |
msgid "Not allowed when cryptic links is active"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: wppa-ajax.php:2549
|
1291 |
msgid "A Twitter account name must start with an at sign: @"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: wppa-ajax.php:2560
|
1295 |
#, php-format
|
1296 |
msgid "Failed to set %s to %s"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: wppa-ajax.php:2565
|
1300 |
#, php-format
|
1301 |
msgid "Setting %s updated to %s"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: wppa-ajax.php:2581
|
1305 |
msgid ""
|
1306 |
"You just changed a setting that requires the regeneration of thumbnails."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: wppa-ajax.php:2636
|
1310 |
msgid "Missing album id"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: wppa-ajax.php:2656
|
1314 |
msgid "You do not have the rights to delete this album"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: wppa-ajax.php:2677
|
1318 |
msgid "An error has occurred"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: wppa-ajax.php:2713 wppa-ajax.php:2720
|
1322 |
msgid "You may also enter:"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: wppa-ajax.php:2714 wppa-ajax.php:2721
|
1326 |
msgid "You may also leave/set this blank"
|
1327 |
msgstr ""
|
1328 |
|
1366 |
msgid "Top of page"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: wppa-album-admin-autosave.php:118 wppa-functions.php:4011
|
1370 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1371 |
msgid "New Album"
|
1372 |
msgstr "Nyt Album"
|
1489 |
"here."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:356
|
1493 |
+
#: wppa-tinymce-shortcodes.php:382 wppa-tinymce-shortcodes.php:570
|
1494 |
msgid "Parent album:"
|
1495 |
msgstr ""
|
1496 |
|
1505 |
|
1506 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1507 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1508 |
+
#: wppa-tinymce-shortcodes.php:515 wppa-tinymce-shortcodes.php:534
|
1509 |
msgid "--- default ---"
|
1510 |
msgstr ""
|
1511 |
|
1994 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
1995 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319
|
1996 |
#: wppa-comment-admin.php:388 wppa-comment-admin.php:406
|
1997 |
+
#: wppa-functions.php:2115 wppa-links.php:784 wppa-links.php:802
|
1998 |
#: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
|
1999 |
#: wppa-thumbnails.php:629
|
2000 |
msgid "Delete"
|
2391 |
msgid "--- all separate albums ---"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1702
|
2395 |
#: wppa-items.php:436
|
2396 |
msgid "--- owner/public ---"
|
2397 |
msgstr "---ejer/offentlige---"
|
2521 |
msgid "Rating count:"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1684
|
2525 |
#: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
|
2526 |
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
|
2527 |
#: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
|
2532 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
2533 |
#: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
|
2534 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
2535 |
+
#: wppa-tinymce-shortcodes.php:626 wppa-watermark.php:519
|
2536 |
msgid "--- none ---"
|
2537 |
msgstr "--- ingen ---"
|
2538 |
|
2733 |
msgid "Create album"
|
2734 |
msgstr "Opret album"
|
2735 |
|
2736 |
+
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4230
|
2737 |
msgid "Max uploads reached"
|
2738 |
msgstr "Maks. antal indsendinger er opnået"
|
2739 |
|
2895 |
msgid "Avatar"
|
2896 |
msgstr "Profilbillede"
|
2897 |
|
2898 |
+
#: wppa-boxes-html.php:3109 wppa-links.php:828
|
2899 |
msgid "Awaiting moderation"
|
2900 |
msgstr "Venter på godkendelse"
|
2901 |
|
3452 |
msgid "There are no commented photos (yet)"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: wppa-common-functions.php:654 wppa-functions.php:4648
|
3456 |
#, php-format
|
3457 |
msgid "%d second"
|
3458 |
msgid_plural "%d seconds"
|
3459 |
msgstr[0] ""
|
3460 |
msgstr[1] ""
|
3461 |
|
3462 |
+
#: wppa-common-functions.php:658 wppa-functions.php:4644
|
3463 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
3464 |
#, php-format
|
3465 |
msgid "%d minute"
|
3467 |
msgstr[0] ""
|
3468 |
msgstr[1] ""
|
3469 |
|
3470 |
+
#: wppa-common-functions.php:662 wppa-functions.php:4640
|
3471 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
3472 |
#, php-format
|
3473 |
msgid "%d hour"
|
3475 |
msgstr[0] ""
|
3476 |
msgstr[1] ""
|
3477 |
|
3478 |
+
#: wppa-common-functions.php:666 wppa-functions.php:4636
|
3479 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
3480 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
3481 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
3488 |
msgstr[0] ""
|
3489 |
msgstr[1] ""
|
3490 |
|
3491 |
+
#: wppa-common-functions.php:670 wppa-functions.php:4632
|
3492 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
3493 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
3494 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
3498 |
msgstr[0] ""
|
3499 |
msgstr[1] ""
|
3500 |
|
3501 |
+
#: wppa-common-functions.php:674 wppa-settings-autosave.php:7842
|
3502 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
3503 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
3504 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
3508 |
msgstr[0] ""
|
3509 |
msgstr[1] ""
|
3510 |
|
3511 |
+
#: wppa-common-functions.php:677 wppa-settings-autosave.php:9023
|
3512 |
#: wppa-settings-autosave.php:9025
|
3513 |
#, php-format
|
3514 |
msgid "%d year"
|
3516 |
msgstr[0] ""
|
3517 |
msgstr[1] ""
|
3518 |
|
3519 |
+
#: wppa-common-functions.php:1400
|
3520 |
#, php-format
|
3521 |
msgid ""
|
3522 |
"Based on your server memory limit you should not upload images larger then "
|
3525 |
"Baseret på din server hukommelse grænse bør du ikke uploade billeder større "
|
3526 |
"derefter <strong>%d x %d (% 2.1f MP)</strong>"
|
3527 |
|
3528 |
+
#: wppa-common-functions.php:1678
|
3529 |
msgid "- select an album -"
|
3530 |
msgstr "- vælg et album -"
|
3531 |
|
3532 |
+
#: wppa-common-functions.php:1690 wppa-items.php:432
|
3533 |
#: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
|
3534 |
#: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
|
3535 |
#: wppa-tagcloud-widget.php:79
|
3536 |
msgid "--- all ---"
|
3537 |
msgstr "--- alle ---"
|
3538 |
|
3539 |
+
#: wppa-common-functions.php:1696
|
3540 |
msgid "--- generic ---"
|
3541 |
msgstr "--- generisk ---"
|
3542 |
|
3543 |
+
#: wppa-common-functions.php:1713
|
3544 |
msgid "--- multiple see below ---"
|
3545 |
msgstr "--- multipel se nedenfor ---"
|
3546 |
|
3547 |
+
#: wppa-common-functions.php:1719
|
3548 |
msgid "--- a selection box ---"
|
3549 |
msgstr "--- et valgboksen ---"
|
3550 |
|
3551 |
+
#: wppa-common-functions.php:1766 wppa-import.php:1605 wppa-items.php:428
|
3552 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
3553 |
msgid "--- separate ---"
|
3554 |
msgstr "--- adskille ---"
|
3555 |
|
3556 |
+
#: wppa-common-functions.php:1872
|
3557 |
msgid "Photo id ="
|
3558 |
msgstr "Foto id ="
|
3559 |
|
3560 |
+
#: wppa-common-functions.php:1872
|
3561 |
msgid "Value ="
|
3562 |
msgstr "Værdi ="
|
3563 |
|
3922 |
"Der er %s album fundet. Kun den første %s vil blive vist. Venligst forfine "
|
3923 |
"dine søgekriterier."
|
3924 |
|
3925 |
+
#: wppa-functions.php:2112 wppa-links.php:777 wppa-links.php:794
|
3926 |
#: wppa-thumbnails.php:627
|
3927 |
msgid "Are you sure you want to remove this photo?"
|
3928 |
msgstr "Er du sikker på, at du vil fjerne dette foto"
|
3966 |
msgid "Moderate comment admin"
|
3967 |
msgstr "Godkend kommentar administration"
|
3968 |
|
3969 |
+
#: wppa-functions.php:2366 wppa-functions.php:4445 wppa-import.php:1524
|
3970 |
#: wppa-upload.php:570
|
3971 |
msgid "Moderate manage photo"
|
3972 |
msgstr "Se fotos"
|
4009 |
msgid "Could not process comment.\\nProbably timed out."
|
4010 |
msgstr "Kommentar kunne ikke bearbejdes"
|
4011 |
|
4012 |
+
#: wppa-functions.php:2604 wppa-links.php:1516
|
4013 |
msgid "A video can not be printed or downloaded"
|
4014 |
msgstr "En video kan ikke udskrives eller downloades"
|
4015 |
|
4016 |
+
#: wppa-functions.php:3083
|
4017 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4018 |
msgstr "FEJL: Ulovlig forsøg på at indtaste en rating."
|
4019 |
|
4020 |
+
#: wppa-functions.php:3096
|
4021 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4022 |
msgstr "FEJL: Ulovlig forsøg på at indtaste en kommentar."
|
4023 |
|
4024 |
+
#: wppa-functions.php:4014
|
4025 |
msgid "ERROR: Illegal attempt to create an album."
|
4026 |
msgstr "FEJL: Ulovlig forsøg på at skabe et album."
|
4027 |
|
4028 |
+
#: wppa-functions.php:4022
|
4029 |
msgid "Wrong captcha, please try again"
|
4030 |
msgstr "Forkert captcha, prøv igen"
|
4031 |
|
4032 |
+
#: wppa-functions.php:4038
|
4033 |
#, php-format
|
4034 |
msgid "Album #%s created"
|
4035 |
msgstr "Album #%s oprettet"
|
4036 |
|
4037 |
+
#: wppa-functions.php:4044
|
4038 |
msgid "Could not create album"
|
4039 |
msgstr "Kunne ikke oprette album"
|
4040 |
|
4041 |
+
#: wppa-functions.php:4056
|
4042 |
msgid "ERROR: Illegal attempt to upload a file."
|
4043 |
msgstr "FEJL: Ulovlig forsøg på at uploade en fil."
|
4044 |
|
4045 |
+
#: wppa-functions.php:4129
|
4046 |
msgid "Photo upload"
|
4047 |
msgstr "Foto upload"
|
4048 |
|
4049 |
+
#: wppa-functions.php:4130
|
4050 |
#, php-format
|
4051 |
msgid "%d photo successfully uploaded"
|
4052 |
msgid_plural "%d photos successfully uploaded"
|
4053 |
msgstr[0] ""
|
4054 |
msgstr[1] ""
|
4055 |
|
4056 |
+
#: wppa-functions.php:4131
|
4057 |
#, php-format
|
4058 |
msgid "%s points added"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: wppa-functions.php:4143
|
4062 |
msgid "Your post is awaiting moderation."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: wppa-functions.php:4152
|
4066 |
msgid "Upload failed"
|
4067 |
msgstr "Indlæsning fejlede"
|
4068 |
|
4069 |
+
#: wppa-functions.php:4155
|
4070 |
#, php-format
|
4071 |
msgid "%d upload failed"
|
4072 |
msgid_plural "%d uploads failed"
|
4073 |
msgstr[0] ""
|
4074 |
msgstr[1] ""
|
4075 |
|
4076 |
+
#: wppa-functions.php:4236
|
4077 |
msgid "Error during upload"
|
4078 |
msgstr "Fejl under upload"
|
4079 |
|
4080 |
+
#: wppa-functions.php:4292
|
4081 |
msgid "Could not insert media into db."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: wppa-functions.php:4332
|
4085 |
msgid "Uploaded file is not an image"
|
4086 |
msgstr "Uploaded fil er ikke et billede"
|
4087 |
|
4088 |
+
#: wppa-functions.php:4338
|
4089 |
#, php-format
|
4090 |
msgid ""
|
4091 |
"Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4092 |
msgstr ""
|
4093 |
"Kun gif, jpg og png filer understøttes. Den forkerte filtype er %d."
|
4094 |
|
4095 |
+
#: wppa-functions.php:4346
|
4096 |
#, php-format
|
4097 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4098 |
msgstr "Uploadede fil er større end den tilladte maksimum på %d x %d pixel."
|
4099 |
|
4100 |
+
#: wppa-functions.php:4354
|
4101 |
#, php-format
|
4102 |
msgid "Uploaded file %s already exists in this album."
|
4103 |
msgstr "Uploadet fil %s findes allerede i dette album."
|
4104 |
|
4105 |
+
#: wppa-functions.php:4364
|
4106 |
#, php-format
|
4107 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4108 |
msgstr ""
|
4109 |
"Billedet er for stort. Maks. foto størrelse: %d x %d (%2.1f MegaPixel)"
|
4110 |
|
4111 |
+
#: wppa-functions.php:4404
|
4112 |
msgid "Could not insert photo into db."
|
4113 |
msgstr "Kunne ikke indsætte foto i databasen."
|
4114 |
|
4115 |
+
#: wppa-functions.php:4441 wppa-import.php:1520 wppa-upload.php:566
|
4116 |
#, php-format
|
4117 |
msgid "New photo uploaded: %s"
|
4118 |
msgstr "Nyt foto indsendt: %s"
|
4119 |
|
4120 |
+
#: wppa-functions.php:4442 wppa-import.php:1521 wppa-upload.php:567
|
4121 |
#, php-format
|
4122 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4123 |
msgstr "Bruger %1$s indsendte foto %2$s ind i album %3$s"
|
4124 |
|
4125 |
+
#: wppa-functions.php:4444 wppa-import.php:1523 wppa-upload.php:569
|
4126 |
msgid "This upload requires moderation"
|
4127 |
msgstr "Denne indsendelse kræver godkendelse"
|
4128 |
|
4129 |
+
#: wppa-functions.php:4448 wppa-import.php:1527 wppa-upload.php:573
|
4130 |
msgid "Details:"
|
4131 |
msgstr "Detaljer:"
|
4132 |
|
4133 |
+
#: wppa-functions.php:4449 wppa-import.php:1528 wppa-upload.php:574
|
4134 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4135 |
msgid "Manage photo"
|
4136 |
msgstr "Se fotos"
|
4137 |
|
4138 |
+
#: wppa-functions.php:4629
|
4139 |
msgid "You can upload after"
|
4140 |
msgstr "Du kan indsende efter"
|
4141 |
|
4142 |
+
#: wppa-functions.php:4672 wppa-functions.php:4676 wppa-functions.php:4683
|
4143 |
+
#: wppa-functions.php:4687 wppa-links.php:1108 wppa-non-admin.php:813
|
4144 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4145 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4146 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
4148 |
msgid "Download"
|
4149 |
msgstr "Download"
|
4150 |
|
4151 |
+
#: wppa-functions.php:4731
|
4152 |
msgid "Zoom in"
|
4153 |
msgstr "Zoom ind"
|
4154 |
|
4155 |
+
#: wppa-functions.php:4762
|
4156 |
#, php-format
|
4157 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: wppa-functions.php:4765
|
4161 |
#, php-format
|
4162 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: wppa-functions.php:4768
|
4166 |
#, php-format
|
4167 |
msgid "You can vote again after %s minutes and %s seconds"
|
4168 |
msgstr ""
|
4925 |
msgid "Show time since:"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
+
#: wppa-links.php:765
|
4929 |
msgid "App"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
+
#: wppa-links.php:766
|
4933 |
msgid "Mod"
|
4934 |
msgstr ""
|
4935 |
|
4936 |
+
#: wppa-links.php:767
|
4937 |
msgid "Del"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
+
#: wppa-links.php:771 wppa-links.php:788
|
4941 |
msgid "Are you sure you want to publish this photo?"
|
4942 |
msgstr ""
|
4943 |
|
4944 |
+
#: wppa-links.php:782 wppa-links.php:799
|
4945 |
msgid "Approve"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
+
#: wppa-links.php:783
|
4949 |
msgid "Moderate"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
+
#: wppa-links.php:800
|
4953 |
msgid "PhotoAdmin"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: wppa-links.php:801
|
4957 |
msgid "CommentAdmin"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
+
#: wppa-links.php:805
|
4961 |
msgid "Are you sure you want to publish this comment?"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: wppa-links.php:817
|
4965 |
msgid "Are you sure you want to remove this comment?"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: wppa-links.php:831
|
4969 |
#, php-format
|
4970 |
msgid "Scheduled for %s"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: wppa-links.php:1044 wppa-links.php:1047 wppa-slideshow.php:1123
|
4974 |
msgid "Previous"
|
4975 |
msgstr "Forrige"
|
4976 |
|
4977 |
+
#: wppa-links.php:1054 wppa-links.php:1057 wppa-non-admin.php:764
|
4978 |
#: wppa-slideshow.php:1137
|
4979 |
msgid "Next"
|
4980 |
msgstr "Næste"
|
4981 |
|
4982 |
+
#: wppa-links.php:1110
|
4983 |
msgid "Download Album"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
+
#: wppa-links.php:1254
|
4987 |
msgid "View thumbnails"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
+
#: wppa-links.php:1267
|
4991 |
msgid "View fullsize slideshow"
|
4992 |
msgstr ""
|
4993 |
|
5886 |
msgstr ""
|
5887 |
|
5888 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
5889 |
+
#: wppa-tinymce-shortcodes.php:623
|
5890 |
msgid "Horizontal alignment:"
|
5891 |
msgstr ""
|
5892 |
|
5897 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
5898 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
5899 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
5900 |
+
#: wppa-tinymce-shortcodes.php:628
|
5901 |
msgid "center"
|
5902 |
msgstr ""
|
5903 |
|
16425 |
msgstr ""
|
16426 |
|
16427 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
16428 |
+
#: wppa-tinymce-shortcodes.php:329 wppa-tinymce-shortcodes.php:374
|
16429 |
+
#: wppa-tinymce-shortcodes.php:397 wppa-tinymce-shortcodes.php:585
|
16430 |
msgid "There are no albums yet"
|
16431 |
msgstr ""
|
16432 |
|
16445 |
msgid "* Album contains less than the minimun number of photos"
|
16446 |
msgstr ""
|
16447 |
|
16448 |
+
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:435
|
16449 |
msgid "The Photo to be used:"
|
16450 |
msgstr ""
|
16451 |
|
16452 |
+
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:441
|
16453 |
msgid "Please select a photo"
|
16454 |
msgstr ""
|
16455 |
|
16461 |
msgid "--- The photo of the day ---"
|
16462 |
msgstr ""
|
16463 |
|
16464 |
+
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:459
|
16465 |
msgid "There are no photos yet"
|
16466 |
msgstr ""
|
16467 |
|
16468 |
+
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:465
|
16469 |
msgid "Specify the photo to be used"
|
16470 |
msgstr ""
|
16471 |
|
16472 |
+
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:466
|
16473 |
msgid "You can select from a maximum of 100 most recently added photos"
|
16474 |
msgstr ""
|
16475 |
|
16477 |
msgid "The tags the photos should have:"
|
16478 |
msgstr ""
|
16479 |
|
16480 |
+
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:483
|
16481 |
msgid "--- please select tag(s) ---"
|
16482 |
msgstr ""
|
16483 |
|
16488 |
"tags"
|
16489 |
msgstr ""
|
16490 |
|
16491 |
+
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:608
|
16492 |
msgid "The size of the display:"
|
16493 |
msgstr ""
|
16494 |
|
16495 |
+
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:613
|
16496 |
msgid ""
|
16497 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
16498 |
"span>."
|
16499 |
msgstr ""
|
16500 |
|
16501 |
+
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:614
|
16502 |
msgid ""
|
16503 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
16504 |
"interpreted as a <span style=\"color:blue\" >percentage</span> of the "
|
16505 |
"available space."
|
16506 |
msgstr ""
|
16507 |
|
16508 |
+
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:616
|
16509 |
msgid "Leave this blank for default size"
|
16510 |
msgstr ""
|
16511 |
|
16512 |
+
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:632
|
16513 |
msgid "Specify the alignment to be used or --- none ---"
|
16514 |
msgstr ""
|
16515 |
|
16516 |
+
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:642
|
16517 |
msgid "Insert Gallery"
|
16518 |
msgstr ""
|
16519 |
|
16741 |
msgid "All albums in the system"
|
16742 |
msgstr ""
|
16743 |
|
16744 |
+
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:314
|
16745 |
msgid "The Album(s) to be used:"
|
16746 |
msgstr ""
|
16747 |
|
16749 |
msgid "Please select one or more albums"
|
16750 |
msgstr ""
|
16751 |
|
16752 |
+
#: wppa-tinymce-shortcodes.php:302
|
16753 |
+
msgid "Search album:"
|
16754 |
+
msgstr ""
|
16755 |
+
|
16756 |
+
#: wppa-tinymce-shortcodes.php:307
|
16757 |
+
msgid ""
|
16758 |
+
"Enter a (part of) the album name to limit the options in the selection box "
|
16759 |
+
"above."
|
16760 |
+
msgstr ""
|
16761 |
+
|
16762 |
+
#: wppa-tinymce-shortcodes.php:320 wppa-upldr-widget.php:210 wppa-utils.php:450
|
16763 |
msgid "All albums"
|
16764 |
msgstr ""
|
16765 |
|
16766 |
+
#: wppa-tinymce-shortcodes.php:337
|
16767 |
msgid "The album owner:"
|
16768 |
msgstr ""
|
16769 |
|
16770 |
+
#: wppa-tinymce-shortcodes.php:340
|
16771 |
msgid "Please select a user"
|
16772 |
msgstr ""
|
16773 |
|
16774 |
+
#: wppa-tinymce-shortcodes.php:341
|
16775 |
msgid "The logged in visitor"
|
16776 |
msgstr ""
|
16777 |
|
16778 |
+
#: wppa-tinymce-shortcodes.php:347
|
16779 |
msgid "Too many users, edit manually"
|
16780 |
msgstr ""
|
16781 |
|
16782 |
+
#: wppa-tinymce-shortcodes.php:362
|
16783 |
msgid "No parent specification"
|
16784 |
msgstr ""
|
16785 |
|
16786 |
+
#: wppa-tinymce-shortcodes.php:365 wppa-tinymce-shortcodes.php:388
|
16787 |
+
#: wppa-tinymce-shortcodes.php:576
|
16788 |
msgid "The generic parent"
|
16789 |
msgstr ""
|
16790 |
|
16791 |
+
#: wppa-tinymce-shortcodes.php:405
|
16792 |
msgid "Max Albums:"
|
16793 |
msgstr ""
|
16794 |
|
16795 |
+
#: wppa-tinymce-shortcodes.php:413
|
16796 |
msgid "Max Photos:"
|
16797 |
msgstr ""
|
16798 |
|
16799 |
+
#: wppa-tinymce-shortcodes.php:421
|
16800 |
msgid "The album cat(s):"
|
16801 |
msgstr ""
|
16802 |
|
16803 |
+
#: wppa-tinymce-shortcodes.php:424
|
16804 |
msgid "--- please select category ---"
|
16805 |
msgstr ""
|
16806 |
|
16807 |
+
#: wppa-tinymce-shortcodes.php:442 wppa-tinymce-shortcodes.php:456
|
16808 |
msgid "The photo of the day"
|
16809 |
msgstr ""
|
16810 |
|
16811 |
+
#: wppa-tinymce-shortcodes.php:455
|
16812 |
msgid "The most recently uploaded photo"
|
16813 |
msgstr ""
|
16814 |
|
16815 |
+
#: wppa-tinymce-shortcodes.php:473
|
16816 |
msgid "Preview image:"
|
16817 |
msgstr ""
|
16818 |
|
16819 |
+
#: wppa-tinymce-shortcodes.php:480
|
16820 |
msgid "The photo tag(s):"
|
16821 |
msgstr ""
|
16822 |
|
16823 |
+
#: wppa-tinymce-shortcodes.php:494
|
16824 |
msgid "Or / And:"
|
16825 |
msgstr ""
|
16826 |
|
16827 |
+
#: wppa-tinymce-shortcodes.php:496
|
16828 |
msgid "Meet any"
|
16829 |
msgstr ""
|
16830 |
|
16831 |
+
#: wppa-tinymce-shortcodes.php:497
|
16832 |
msgid "Meet all"
|
16833 |
msgstr ""
|
16834 |
|
16835 |
+
#: wppa-tinymce-shortcodes.php:503 wppa-tinymce-shortcodes.php:551
|
16836 |
msgid "Additional features:"
|
16837 |
msgstr ""
|
16838 |
|
16839 |
+
#: wppa-tinymce-shortcodes.php:505
|
16840 |
msgid "Enable Subsearch"
|
16841 |
msgstr ""
|
16842 |
|
16843 |
+
#: wppa-tinymce-shortcodes.php:506
|
16844 |
msgid "Enable Rootsearch"
|
16845 |
msgstr ""
|
16846 |
|
16847 |
+
#: wppa-tinymce-shortcodes.php:512
|
16848 |
msgid "Search root:"
|
16849 |
msgstr ""
|
16850 |
|
16851 |
+
#: wppa-tinymce-shortcodes.php:531
|
16852 |
msgid "Landing page:"
|
16853 |
msgstr ""
|
16854 |
|
16855 |
+
#: wppa-tinymce-shortcodes.php:553
|
16856 |
msgid "Enable all tags"
|
16857 |
msgstr ""
|
16858 |
|
16859 |
+
#: wppa-tinymce-shortcodes.php:556
|
16860 |
msgid "Please select the tags to show"
|
16861 |
msgstr ""
|
16862 |
|
16863 |
+
#: wppa-tinymce-shortcodes.php:562
|
16864 |
msgid "There are no tags"
|
16865 |
msgstr ""
|
16866 |
|
16867 |
+
#: wppa-tinymce-shortcodes.php:593
|
16868 |
msgid "Calendar type:"
|
16869 |
msgstr ""
|
16870 |
|
16871 |
+
#: wppa-tinymce-shortcodes.php:596
|
16872 |
msgid "By EXIF date"
|
16873 |
msgstr ""
|
16874 |
|
16875 |
+
#: wppa-tinymce-shortcodes.php:597
|
16876 |
msgid "By date of upload"
|
16877 |
msgstr ""
|
16878 |
|
16879 |
+
#: wppa-tinymce-shortcodes.php:598
|
16880 |
msgid "By date last modified"
|
16881 |
msgstr ""
|
16882 |
|
16883 |
+
#: wppa-tinymce-shortcodes.php:601
|
16884 |
msgid "Last date first"
|
16885 |
msgstr ""
|
16886 |
|
16887 |
+
#: wppa-tinymce-shortcodes.php:602
|
16888 |
msgid "Initially display all"
|
16889 |
msgstr ""
|
16890 |
|
16891 |
+
#: wppa-tinymce-shortcodes.php:615
|
16892 |
msgid ""
|
16893 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
16894 |
"\"color:blue\" >auto,550</span>"
|
16895 |
msgstr ""
|
16896 |
|
16897 |
+
#: wppa-tinymce-shortcodes.php:640
|
16898 |
msgid ""
|
16899 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
16900 |
"comment"
|
16901 |
msgstr ""
|
16902 |
|
16903 |
+
#: wppa-tinymce-shortcodes.php:643
|
16904 |
msgid "insert Gallery"
|
16905 |
msgstr ""
|
16906 |
|
16907 |
+
#: wppa-tinymce-shortcodes.php:643
|
16908 |
msgid "Please complete the shortcode specs"
|
16909 |
msgstr ""
|
16910 |
|
languages/wp-photo-album-plus-de_DE.mo
CHANGED
Binary file
|
languages/wp-photo-album-plus-de_DE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
-
"POT-Creation-Date: 2016-09-
|
5 |
-
"PO-Revision-Date: 2016-09-
|
6 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
7 |
"Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language: de_DE\n"
|
@@ -101,17 +101,17 @@ msgstr "Fehler beim Schreiben in Einstellungen-backup-Datei"
|
|
101 |
msgid "Settings file not found"
|
102 |
msgstr "Einstellungsdatei nicht gefunden"
|
103 |
|
104 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
105 |
-
#: wppa-ajax.php:
|
106 |
msgid "Please supply a numeric value greater than or equal to"
|
107 |
msgstr "Bitte geben Sie einen numerischen Wert größer als oder gleich zu"
|
108 |
|
109 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
110 |
-
#: wppa-ajax.php:
|
111 |
msgid "for"
|
112 |
msgstr "für"
|
113 |
|
114 |
-
#: wppa-admin-functions.php:208 wppa-ajax.php:
|
115 |
msgid "and less than or equal to"
|
116 |
msgstr "und kleiner oder gleich zu"
|
117 |
|
@@ -210,153 +210,127 @@ msgid "Unsupported mime type encountered:"
|
|
210 |
msgstr "Nicht unterstützten MIME-Typ begegnet:"
|
211 |
|
212 |
#: wppa-admin-functions.php:875
|
213 |
-
#, fuzzy
|
214 |
msgid "Album not known while trying to add a photo"
|
215 |
msgstr "Album nicht bekannt bei dem Versuch, ein Foto hinzufügen"
|
216 |
|
217 |
#: wppa-admin-functions.php:879
|
218 |
-
#,
|
219 |
msgid ""
|
220 |
"Album %s does not exist or is not accessable while trying to add a photo"
|
221 |
msgstr ""
|
222 |
-
"Album%s existiert nicht oder ist nicht erreichbar beim Versuch, ein Foto "
|
223 |
"hinzufügen"
|
224 |
|
225 |
#: wppa-admin-functions.php:898
|
226 |
-
#, fuzzy
|
227 |
msgid "Could not insert photo."
|
228 |
-
msgstr "Konnte Foto nicht
|
229 |
|
230 |
#: wppa-admin-functions.php:934
|
231 |
-
#, fuzzy
|
232 |
msgid "ERROR: Unknown file or album."
|
233 |
-
msgstr "
|
234 |
|
235 |
#: wppa-admin.php:56
|
236 |
-
#, fuzzy
|
237 |
msgid "Photo Albums"
|
238 |
-
msgstr "
|
239 |
|
240 |
#: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6061
|
241 |
-
#, fuzzy
|
242 |
msgid "Album Admin"
|
243 |
msgstr "Album Admin"
|
244 |
|
245 |
#: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6062
|
246 |
#: wppa-upload-widget.php:79 wppa-upload.php:119
|
247 |
-
#, fuzzy
|
248 |
msgid "Upload Photos"
|
249 |
msgstr "Fotos hochladen"
|
250 |
|
251 |
#: wppa-admin.php:63 wppa-adminbar.php:53
|
252 |
-
#, fuzzy
|
253 |
msgid "Edit Photos"
|
254 |
msgstr "Fotos bearbeiten"
|
255 |
|
256 |
#: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
|
257 |
#: wppa-settings-autosave.php:6063
|
258 |
-
#, fuzzy
|
259 |
msgid "Import Photos"
|
260 |
msgstr "Fotos importieren"
|
261 |
|
262 |
#: wppa-admin.php:66 wppa-adminbar.php:68
|
263 |
-
#, fuzzy
|
264 |
msgid "Moderate Photos"
|
265 |
-
msgstr "
|
266 |
|
267 |
#: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
|
268 |
#: wppa-settings-autosave.php:6065
|
269 |
-
#, fuzzy
|
270 |
msgid "Export Photos"
|
271 |
msgstr "Fotos exportieren"
|
272 |
|
273 |
#: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
274 |
#: wppa-settings-autosave.php:6066
|
275 |
-
#, fuzzy
|
276 |
msgid "Settings"
|
277 |
-
msgstr "
|
278 |
|
279 |
#: wppa-admin.php:69
|
280 |
-
#, fuzzy
|
281 |
msgid "Photo of the day Widget"
|
282 |
msgstr "Foto des Tages Widget"
|
283 |
|
284 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
285 |
#: wppa-settings-autosave.php:6067 wppa-setup.php:1589
|
286 |
-
#, fuzzy
|
287 |
msgid "Photo of the day"
|
288 |
msgstr "Foto des Tages"
|
289 |
|
290 |
#: wppa-admin.php:70
|
291 |
-
#, fuzzy
|
292 |
msgid "Manage comments"
|
293 |
msgstr "Kommentare verwalten"
|
294 |
|
295 |
#: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
|
296 |
#: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8561
|
297 |
#: wppa-settings-autosave.php:8606
|
298 |
-
#, fuzzy
|
299 |
msgid "Comments"
|
300 |
msgstr "Kommentare"
|
301 |
|
302 |
#: wppa-admin.php:71
|
303 |
-
#, fuzzy
|
304 |
msgid "Help & Info"
|
305 |
-
msgstr "Hilfe und
|
306 |
|
307 |
#: wppa-admin.php:71 wppa-adminbar.php:103
|
308 |
msgid "Documentation"
|
309 |
msgstr "Documentation"
|
310 |
|
311 |
#: wppa-admin.php:111
|
312 |
-
|
313 |
-
|
314 |
-
msgstr "Das Hochladen ist vorübergehend diabled für Sie"
|
315 |
|
316 |
#: wppa-admin.php:118
|
317 |
-
|
318 |
-
|
319 |
-
msgstr "Die Bearbeitung ist vorübergehend diabled für Sie"
|
320 |
|
321 |
#: wppa-admin.php:125
|
322 |
-
|
323 |
-
|
324 |
-
msgstr "Der Import ist nur vorübergehend diabled für Sie"
|
325 |
|
326 |
#: wppa-admin.php:128 wppa-import.php:1226
|
327 |
-
#, fuzzy
|
328 |
msgid "Import"
|
329 |
msgstr "Importieren"
|
330 |
|
331 |
#: wppa-admin.php:128 wppa-settings-autosave.php:9739
|
332 |
-
#, fuzzy
|
333 |
msgid "Update"
|
334 |
msgstr "Aktualisierung"
|
335 |
|
336 |
#: wppa-adminbar.php:110 wppa-album-navigator-widget.php:41
|
337 |
#: wppa-album-navigator-widget.php:88 wppa-album-widget.php:47
|
338 |
-
#, fuzzy
|
339 |
msgid "Photo Albums"
|
340 |
msgstr "Fotoalben"
|
341 |
|
342 |
#: wppa-admins-choice-widget.php:13
|
343 |
-
#, fuzzy
|
344 |
msgid "Admins choice of photos"
|
345 |
msgstr "Admins Wahl von Fotos"
|
346 |
|
347 |
#: wppa-admins-choice-widget.php:14 wppa-admins-choice-widget.php:34
|
348 |
#: wppa-admins-choice-widget.php:73
|
349 |
-
#, fuzzy
|
350 |
msgid "Admins Choice"
|
351 |
msgstr "Admins Wahl"
|
352 |
|
353 |
#: wppa-admins-choice-widget.php:44
|
354 |
-
#, fuzzy
|
355 |
msgid "This feature is not enabled"
|
356 |
msgstr "Diese Funktion ist nicht aktiviert."
|
357 |
|
358 |
#: wppa-admins-choice-widget.php:68
|
359 |
-
#, fuzzy
|
360 |
msgid "Please enable this feature in Table IV-A27"
|
361 |
msgstr "Bitte aktivieren Sie diese Funktion in der Tabelle IV-A27"
|
362 |
|
@@ -369,12 +343,10 @@ msgstr "Bitte aktivieren Sie diese Funktion in der Tabelle IV-A27"
|
|
369 |
#: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
|
370 |
#: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
|
371 |
#: wppa-upldr-widget.php:176 wppa-upload-widget.php:83
|
372 |
-
#, fuzzy
|
373 |
msgid "Title:"
|
374 |
msgstr "Titel:"
|
375 |
|
376 |
#: wppa-ajax.php:174
|
377 |
-
#, fuzzy
|
378 |
msgid ""
|
379 |
"All modifications are instantly updated on the server. The <b style=\"color:"
|
380 |
"#070\" >Remark</b> field keeps you informed on the actions taken at the "
|
@@ -385,174 +357,146 @@ msgstr ""
|
|
385 |
"Hintergrund."
|
386 |
|
387 |
#: wppa-ajax.php:177
|
388 |
-
#, fuzzy
|
389 |
msgid "Exit & Refresh"
|
390 |
msgstr "Exit & Refresh"
|
391 |
|
392 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
393 |
-
#: wppa-ajax.php:
|
394 |
-
#, fuzzy
|
395 |
msgid "Security check failure"
|
396 |
msgstr "Sicherheitsfehler"
|
397 |
|
398 |
#: wppa-ajax.php:284 wppa-ajax.php:340
|
399 |
-
#, fuzzy
|
400 |
msgid "You do not have the rights to moderate photos this way"
|
401 |
msgstr "Sie haben nicht die Rechte Fotos auf diese Weise zu moderieren"
|
402 |
|
403 |
-
#: wppa-ajax.php:300 wppa-ajax.php:
|
404 |
-
#, fuzzy
|
405 |
msgid "Photo comment approved"
|
406 |
msgstr "Foto Kommentar genehmigt"
|
407 |
|
408 |
#: wppa-ajax.php:313
|
409 |
-
#,
|
410 |
msgid "Failed to update stutus of photo %s"
|
411 |
-
msgstr "Fehlgeschlagen stutus von Foto zu aktualisieren
|
412 |
|
413 |
#: wppa-ajax.php:313 wppa-ajax.php:320
|
414 |
-
#, fuzzy
|
415 |
msgid "Please refresh the page"
|
416 |
msgstr "Bitte aktualisieren Sie die Seite."
|
417 |
|
418 |
#: wppa-ajax.php:320
|
419 |
-
#,
|
420 |
msgid "Failed to update stutus of comment %s"
|
421 |
-
msgstr "Fehlgeschlagen stutus von Kommentar zu aktualisieren
|
422 |
|
423 |
#: wppa-ajax.php:335 wppa-ajax.php:355
|
424 |
-
#, fuzzy
|
425 |
msgid "Photo removed"
|
426 |
msgstr "Foto entfernt"
|
427 |
|
428 |
#: wppa-ajax.php:360
|
429 |
-
#, fuzzy
|
430 |
msgid "Comment removed"
|
431 |
-
msgstr "Kommentar
|
432 |
|
433 |
#: wppa-ajax.php:361
|
434 |
-
#, fuzzy
|
435 |
msgid "Could not remove comment"
|
436 |
-
msgstr "Konnte nicht entfernen
|
437 |
|
438 |
#: wppa-ajax.php:364 wppa-ajax.php:795
|
439 |
-
#, fuzzy
|
440 |
msgid "Unexpected error"
|
441 |
-
msgstr "Unerwarteter Fehler
|
442 |
|
443 |
#: wppa-ajax.php:370
|
444 |
-
#, fuzzy
|
445 |
msgid "This feature is not enabled on this website"
|
446 |
msgstr "Diese Funktion ist nicht auf dieser Website aktiviert"
|
447 |
|
448 |
#: wppa-ajax.php:382
|
449 |
-
#, fuzzy
|
450 |
msgid "The album is empty"
|
451 |
-
msgstr "Das Album ist leer
|
452 |
|
453 |
#: wppa-ajax.php:391 wppa-ajax.php:470 wppa-ajax.php:592
|
454 |
-
#, fuzzy
|
455 |
msgid "Unable to create zip archive"
|
456 |
-
msgstr "Konnte kein Archiv erstellen
|
457 |
|
458 |
#: wppa-ajax.php:403
|
459 |
-
#,
|
460 |
msgid "Unable to create zip archive. code = %s"
|
461 |
-
msgstr "Kann
|
462 |
|
463 |
#: wppa-ajax.php:440
|
464 |
-
#,
|
465 |
msgid "Only %s out of %s photos could be added to the zipfile"
|
466 |
-
msgstr "Nur%s Fotos aus%s auf die ZIP-Datei hinzugefügt werden
|
467 |
|
468 |
#: wppa-ajax.php:478
|
469 |
-
#, fuzzy
|
470 |
msgid "Unable to create zipsdir"
|
471 |
-
msgstr "Unfähig zipsdir erstellen"
|
472 |
|
473 |
#: wppa-ajax.php:503 wppa-functions.php:2137 wppa-thumbnails.php:616
|
474 |
-
#, fuzzy
|
475 |
msgid "Selected"
|
476 |
msgstr "Ausgewählt"
|
477 |
|
478 |
#: wppa-ajax.php:533
|
479 |
-
#, fuzzy
|
480 |
msgid "Unknown source of request"
|
481 |
msgstr "Unbekannte Quelle der Anfrage"
|
482 |
|
483 |
#: wppa-ajax.php:551
|
484 |
-
#, fuzzy
|
485 |
msgid "Empty filename"
|
486 |
msgstr "Leerer Dateiname"
|
487 |
|
488 |
#: wppa-ajax.php:578
|
489 |
-
#, fuzzy
|
490 |
msgid "Unable to create tempdir"
|
491 |
-
msgstr "Unfähig tempdir erstellen"
|
492 |
|
493 |
#: wppa-ajax.php:602
|
494 |
-
#, fuzzy
|
495 |
msgid "Unknown type"
|
496 |
-
msgstr "
|
497 |
|
498 |
#: wppa-ajax.php:611
|
499 |
-
#, fuzzy
|
500 |
msgid "The photo does no longer exist"
|
501 |
msgstr "Das Foto existiert nicht mehr"
|
502 |
|
503 |
#: wppa-ajax.php:643
|
504 |
-
#, fuzzy
|
505 |
msgid "An error occurred while processing you rating request."
|
506 |
-
msgstr "
|
|
|
507 |
|
508 |
#: wppa-ajax.php:644
|
509 |
-
#, fuzzy
|
510 |
msgid "Maybe you opened the page too long ago to recognize you."
|
511 |
-
msgstr "Vielleicht eröffnet Ihnen die Seite zu lange her
|
512 |
|
513 |
#: wppa-ajax.php:645
|
514 |
-
#, fuzzy
|
515 |
msgid "You may refresh the page and try again."
|
516 |
msgstr "Sie können die Seite aktualisieren und versuchen Sie es erneut."
|
517 |
|
518 |
#: wppa-ajax.php:646
|
519 |
-
#, fuzzy
|
520 |
msgid ""
|
521 |
"Althoug an error occurred while processing your rating, your vote has been "
|
522 |
"registered."
|
523 |
msgstr ""
|
524 |
-
"
|
525 |
-
"Ihre Stimme registriert
|
526 |
|
527 |
#: wppa-ajax.php:647
|
528 |
-
#, fuzzy
|
529 |
msgid "However, this may not be reflected in the current pageview"
|
530 |
msgstr "Dies kann jedoch nicht in der aktuellen Seitenzugriff widerspiegeln"
|
531 |
|
532 |
#: wppa-ajax.php:676
|
533 |
-
#, fuzzy
|
534 |
msgid "Photo has been removed."
|
535 |
msgstr "Foto wurde entfernt."
|
536 |
|
537 |
#: wppa-ajax.php:688 wppa-slideshow.php:743
|
538 |
-
#, fuzzy
|
539 |
msgid "Sorry, you can not rate your own photos"
|
540 |
-
msgstr "Sorry, Sie können Ihre eigenen Fotos nicht
|
541 |
|
542 |
#: wppa-ajax.php:700
|
543 |
-
#, fuzzy
|
544 |
msgid "Please enter a comment."
|
545 |
msgstr "Bitte geben Sie einen Kommentar ein."
|
546 |
|
547 |
#: wppa-ajax.php:727
|
548 |
-
#, fuzzy
|
549 |
msgid "You can not change your vote"
|
550 |
-
msgstr "Sie können
|
551 |
|
552 |
#: wppa-ajax.php:733
|
553 |
-
#, fuzzy
|
554 |
msgid "You can not change a dislike"
|
555 |
-
msgstr "Sie können
|
556 |
|
557 |
#: wppa-ajax.php:739
|
558 |
#, fuzzy
|
@@ -579,84 +523,84 @@ msgstr ""
|
|
579 |
"abgeschlossen haben, können Sie die Seite aktualisieren Ihre Stimme wurde "
|
580 |
"wirksam zu sehen."
|
581 |
|
582 |
-
#: wppa-ajax.php:
|
583 |
#, fuzzy
|
584 |
msgid "You do not have the rights to delete a photo"
|
585 |
msgstr "Sie haben nicht die Rechte, ein Foto zu löschen"
|
586 |
|
587 |
-
#: wppa-ajax.php:
|
588 |
#, fuzzy, php-format
|
589 |
msgid "Photo %s has been deleted"
|
590 |
msgstr "Foto%s wurde gelöscht"
|
591 |
|
592 |
-
#: wppa-ajax.php:
|
593 |
#, fuzzy
|
594 |
msgid "You do not have the rights to update album information"
|
595 |
msgstr "Sie haben nicht die Rechte Album-Informationen zu aktualisieren"
|
596 |
|
597 |
-
#: wppa-ajax.php:
|
598 |
#, fuzzy
|
599 |
msgid "<b>Ratings cleared</b>"
|
600 |
msgstr "<b>Bewertungen gelöscht</b>"
|
601 |
|
602 |
-
#: wppa-ajax.php:
|
603 |
#, fuzzy
|
604 |
msgid "No ratings for this photo."
|
605 |
msgstr "Keine Bewertungen für dieses Foto."
|
606 |
|
607 |
-
#: wppa-ajax.php:
|
608 |
#, fuzzy
|
609 |
msgid "An error occurred while clearing ratings"
|
610 |
msgstr "Ein Fehler ist aufgetreten, während Bewertungen Clearing"
|
611 |
|
612 |
-
#: wppa-ajax.php:
|
613 |
#, fuzzy
|
614 |
msgid "<b>No photos in this album</b>"
|
615 |
msgstr "<b>Keine Fotos in diesem Album</b>"
|
616 |
|
617 |
-
#: wppa-ajax.php:
|
618 |
#, fuzzy
|
619 |
msgid "<b>Tags set to defaults</b> (reload)"
|
620 |
msgstr "<b>Stichworte auf Standardwerte</b> (neu laden)"
|
621 |
|
622 |
-
#: wppa-ajax.php:
|
623 |
#, fuzzy
|
624 |
msgid "An error occurred while setting tags"
|
625 |
msgstr "Ein Fehler ist aufgetreten, während Tags Einstellung"
|
626 |
|
627 |
-
#: wppa-ajax.php:
|
628 |
#, fuzzy
|
629 |
msgid "<b>Tags added width defaults</b> (reload)"
|
630 |
msgstr "<b>Tags hinzugefügt Breite defaults</b> (neu laden)"
|
631 |
|
632 |
-
#: wppa-ajax.php:
|
633 |
#, fuzzy
|
634 |
msgid "An error occurred while adding tags"
|
635 |
msgstr "Fehler beim Hinzufügen von Tags"
|
636 |
|
637 |
-
#: wppa-ajax.php:
|
638 |
#, fuzzy
|
639 |
msgid "No subalbums found to process"
|
640 |
msgstr "Keine Unteralben zu verarbeiten gefunden"
|
641 |
|
642 |
-
#: wppa-ajax.php:
|
643 |
#, fuzzy
|
644 |
msgid "No categories found to process"
|
645 |
msgstr "Keine Kategorien zu verarbeiten gefunden"
|
646 |
|
647 |
-
#: wppa-ajax.php:
|
648 |
#, php-format
|
649 |
msgid "%d album updated"
|
650 |
msgid_plural "%d albums updated"
|
651 |
msgstr[0] "%d Album aktualisiert"
|
652 |
msgstr[1] "%d Album aktualisiert"
|
653 |
|
654 |
-
#: wppa-ajax.php:
|
655 |
#, fuzzy, php-format
|
656 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
657 |
msgstr "Name des Albums darf nicht leer sein. <br /> Reset <b>to%s</b>"
|
658 |
|
659 |
-
#: wppa-ajax.php:
|
660 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
661 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
662 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
@@ -679,7 +623,7 @@ msgstr "Name des Albums darf nicht leer sein. <br /> Reset <b>to%s</b>"
|
|
679 |
msgid "Name"
|
680 |
msgstr "Name"
|
681 |
|
682 |
-
#: wppa-ajax.php:
|
683 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
684 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
685 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
@@ -701,52 +645,52 @@ msgstr "Name"
|
|
701 |
msgid "Description"
|
702 |
msgstr "Album Beschreibung eingeben"
|
703 |
|
704 |
-
#: wppa-ajax.php:
|
705 |
#, fuzzy
|
706 |
msgid "Unbalanced tags in album description!"
|
707 |
msgstr "Unsymmetrische Tags in Albumbeschreibung!"
|
708 |
|
709 |
-
#: wppa-ajax.php:
|
710 |
#, fuzzy
|
711 |
msgid "Album order #"
|
712 |
msgstr "Album bestellen #"
|
713 |
|
714 |
-
#: wppa-ajax.php:
|
715 |
#, fuzzy
|
716 |
msgid "Cover photo"
|
717 |
msgstr "Titelbild"
|
718 |
|
719 |
-
#: wppa-ajax.php:
|
720 |
#, fuzzy
|
721 |
msgid "Parent album"
|
722 |
msgstr "Übergeordnetes Album"
|
723 |
|
724 |
-
#: wppa-ajax.php:
|
725 |
#, fuzzy
|
726 |
msgid "Photo order"
|
727 |
msgstr "Bildersortierung"
|
728 |
|
729 |
-
#: wppa-ajax.php:
|
730 |
#, fuzzy
|
731 |
msgid "Use Alt thumbsize"
|
732 |
msgstr "Mit Alt thumbsize"
|
733 |
|
734 |
-
#: wppa-ajax.php:
|
735 |
#, fuzzy
|
736 |
msgid "Cover Type"
|
737 |
msgstr "Cover-Typ"
|
738 |
|
739 |
-
#: wppa-ajax.php:
|
740 |
#: wppa-settings-autosave.php:6029
|
741 |
#, fuzzy
|
742 |
msgid "Link type"
|
743 |
msgstr "Verknüpfungstyp"
|
744 |
|
745 |
-
#: wppa-ajax.php:
|
746 |
msgid "Link to"
|
747 |
msgstr "Link zu"
|
748 |
|
749 |
-
#: wppa-ajax.php:
|
750 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
751 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
752 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
@@ -754,259 +698,259 @@ msgstr "Link zu"
|
|
754 |
msgid "Owner"
|
755 |
msgstr "Inhaber"
|
756 |
|
757 |
-
#: wppa-ajax.php:
|
758 |
#, fuzzy, php-format
|
759 |
msgid "User %s does not exist"
|
760 |
msgstr "Benutzer \"%s\" nicht vorhanden"
|
761 |
|
762 |
-
#: wppa-ajax.php:
|
763 |
#, fuzzy
|
764 |
msgid "Upload limit count"
|
765 |
msgstr "Upload-Limit Zahl"
|
766 |
|
767 |
-
#: wppa-ajax.php:
|
768 |
#, fuzzy
|
769 |
msgid "Upload limit time"
|
770 |
msgstr "Hochladebegrenzung"
|
771 |
|
772 |
-
#: wppa-ajax.php:
|
773 |
#, fuzzy
|
774 |
msgid "Default tags"
|
775 |
msgstr "Default-Tags"
|
776 |
|
777 |
-
#: wppa-ajax.php:
|
778 |
#, fuzzy
|
779 |
msgid "Categories"
|
780 |
msgstr "Kategorien"
|
781 |
|
782 |
-
#: wppa-ajax.php:
|
783 |
#, fuzzy
|
784 |
msgid "Sub albums sort order"
|
785 |
msgstr "Unteralben sortieren bestellen"
|
786 |
|
787 |
-
#: wppa-ajax.php:
|
788 |
#, fuzzy
|
789 |
msgid "Schedule date/time"
|
790 |
msgstr "Geplantes Datum / Zeit"
|
791 |
|
792 |
-
#: wppa-ajax.php:
|
793 |
#, fuzzy, php-format
|
794 |
msgid "<b>%s</b> of album %s updated"
|
795 |
msgstr "<b>%s</b> Album%s aktualisiert"
|
796 |
|
797 |
-
#: wppa-ajax.php:
|
798 |
#, fuzzy
|
799 |
msgid "All photos set to scheduled per date"
|
800 |
msgstr "Alle Fotos auf pro Tag geplant"
|
801 |
|
802 |
-
#: wppa-ajax.php:
|
803 |
#, fuzzy, php-format
|
804 |
msgid "<b>Custom field %s</b> updated"
|
805 |
msgstr "Benutzerdefiniertes Feld aktualisiert."
|
806 |
|
807 |
-
#: wppa-ajax.php:
|
808 |
#, fuzzy, php-format
|
809 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
810 |
msgstr "Ein Fehler beim Versuch , <b>%s</b> Album%s zu aktualisieren"
|
811 |
|
812 |
-
#: wppa-ajax.php:
|
813 |
#, fuzzy
|
814 |
msgid "Press CTRL+F5 and try again."
|
815 |
msgstr "Drücken Sie STRG F5 und versuchen Sie es erneut."
|
816 |
|
817 |
-
#: wppa-ajax.php:
|
818 |
#, fuzzy
|
819 |
msgid "You do not have the rights to update comment status"
|
820 |
msgstr "Sie haben nicht die Rechte Kommentar Status zu aktualisieren"
|
821 |
|
822 |
-
#: wppa-ajax.php:
|
823 |
#, fuzzy, php-format
|
824 |
msgid "Status of comment #%s updated"
|
825 |
msgstr "Status Kommentar #%s aktualisiert"
|
826 |
|
827 |
-
#: wppa-ajax.php:
|
828 |
#, fuzzy, php-format
|
829 |
msgid "Error updating status comment #%s"
|
830 |
msgstr "Fehler beim Aktualisieren der Status Kommentar #%s"
|
831 |
|
832 |
-
#: wppa-ajax.php:
|
833 |
#, fuzzy
|
834 |
msgid "You do not have the rights to change photos"
|
835 |
msgstr "Sie haben nicht die Rechte Fotos zu ändern"
|
836 |
|
837 |
-
#: wppa-ajax.php:
|
838 |
#, fuzzy
|
839 |
msgid "Watermark applied"
|
840 |
msgstr "Wasserzeichen eingefügt werden"
|
841 |
|
842 |
-
#: wppa-ajax.php:
|
843 |
#, fuzzy
|
844 |
msgid "An error occured while trying to apply a watermark"
|
845 |
msgstr ""
|
846 |
"Ein Fehler ist aufgetreten bei dem Versuch, ein Wasserzeichen zu beantragen"
|
847 |
|
848 |
-
#: wppa-ajax.php:
|
849 |
#, fuzzy
|
850 |
msgid "You do not have the rights to update photo information"
|
851 |
msgstr "Sie haben nicht die Rechte Foto Informationen zu aktualisieren"
|
852 |
|
853 |
-
#: wppa-ajax.php:
|
854 |
#, fuzzy, php-format
|
855 |
msgid "%s updated to %s."
|
856 |
msgstr "%s%s aktualisiert."
|
857 |
|
858 |
-
#: wppa-ajax.php:
|
859 |
#, fuzzy, php-format
|
860 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
861 |
msgstr "Formatfehler%s. Müssen jjjj: mm: tt hh: mm: ss"
|
862 |
|
863 |
-
#: wppa-ajax.php:
|
864 |
#, fuzzy
|
865 |
msgid "Exif date/time updated"
|
866 |
msgstr "Exif Datum / Uhrzeit aktualisiert"
|
867 |
|
868 |
-
#: wppa-ajax.php:
|
869 |
#, fuzzy
|
870 |
msgid "Enter a value > -90 and < 90"
|
871 |
msgstr "Geben Sie einen Wert> -90 und <90"
|
872 |
|
873 |
-
#: wppa-ajax.php:
|
874 |
#, fuzzy
|
875 |
msgid "Lattitude updated"
|
876 |
msgstr "Lattitude aktualisiert"
|
877 |
|
878 |
-
#: wppa-ajax.php:
|
879 |
#, fuzzy
|
880 |
msgid "Could not update lattitude"
|
881 |
msgstr "Konnte nicht aktualisiert werden lattitude"
|
882 |
|
883 |
-
#: wppa-ajax.php:
|
884 |
#, fuzzy
|
885 |
msgid "Enter a value > -180 and < 180"
|
886 |
msgstr "Geben Sie einen Wert> -180 und <180"
|
887 |
|
888 |
-
#: wppa-ajax.php:
|
889 |
#, fuzzy
|
890 |
msgid "Longitude updated"
|
891 |
msgstr "Länge aktualisiert"
|
892 |
|
893 |
-
#: wppa-ajax.php:
|
894 |
#, fuzzy
|
895 |
msgid "Could not update longitude"
|
896 |
msgstr "Konnte nicht aktualisieren Länge"
|
897 |
|
898 |
-
#: wppa-ajax.php:
|
899 |
#, fuzzy
|
900 |
msgid "Photo files remade"
|
901 |
msgstr "Fotodateien neu gemacht"
|
902 |
|
903 |
-
#: wppa-ajax.php:
|
904 |
#, fuzzy
|
905 |
msgid "Could not remake files"
|
906 |
msgstr "Konnte nicht Dateien Remake"
|
907 |
|
908 |
-
#: wppa-ajax.php:
|
909 |
#, fuzzy
|
910 |
msgid "Thumbnail remade"
|
911 |
msgstr "Thumbnail neu gemacht"
|
912 |
|
913 |
-
#: wppa-ajax.php:
|
914 |
#, fuzzy
|
915 |
msgid "Could not remake thumbnail"
|
916 |
msgstr "Konnte nicht Thumbnail Remake"
|
917 |
|
918 |
-
#: wppa-ajax.php:
|
919 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
920 |
-
#: wppa-tinymce-shortcodes.php:
|
921 |
#, fuzzy
|
922 |
msgid "left"
|
923 |
msgstr "links"
|
924 |
|
925 |
-
#: wppa-ajax.php:
|
926 |
#, fuzzy
|
927 |
msgid "180°"
|
928 |
msgstr "180 °"
|
929 |
|
930 |
-
#: wppa-ajax.php:
|
931 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
932 |
-
#: wppa-tinymce-shortcodes.php:
|
933 |
#, fuzzy
|
934 |
msgid "right"
|
935 |
msgstr "rechts"
|
936 |
|
937 |
-
#: wppa-ajax.php:
|
938 |
#, fuzzy, php-format
|
939 |
msgid "Photo %s rotated %s"
|
940 |
msgstr "Foto%s gedreht%s"
|
941 |
|
942 |
-
#: wppa-ajax.php:
|
943 |
#, fuzzy, php-format
|
944 |
msgid "An error occurred while trying to rotate photo %s"
|
945 |
msgstr "Ein Fehler beim Versuch, das Foto zu drehen%s"
|
946 |
|
947 |
-
#: wppa-ajax.php:
|
948 |
#: wppa-photo-admin-autosave.php:1118
|
949 |
#, fuzzy, php-format
|
950 |
msgid "A photo with filename %s already exists in album %s."
|
951 |
msgstr "Ein Foto mit dem Dateinamen%s existiert bereits in Album%s."
|
952 |
|
953 |
-
#: wppa-ajax.php:
|
954 |
#, fuzzy, php-format
|
955 |
msgid "Photo %s has been moved to album %s (%s)"
|
956 |
msgstr "Foto%s wurde auf Album%s (%s) bewegt"
|
957 |
|
958 |
-
#: wppa-ajax.php:
|
959 |
#, fuzzy, php-format
|
960 |
msgid "An error occurred while trying to move photo %s"
|
961 |
msgstr "Ein Fehler beim Versuch, das Foto zu bewegen%s"
|
962 |
|
963 |
-
#: wppa-ajax.php:
|
964 |
#, fuzzy, php-format
|
965 |
msgid "Photo %s copied to album %s (%s)"
|
966 |
msgstr "Foto%s kopiert Album%s (%s)"
|
967 |
|
968 |
-
#: wppa-ajax.php:
|
969 |
#, fuzzy, php-format
|
970 |
msgid "An error occurred while trying to copy photo %s"
|
971 |
msgstr "Ein Fehler beim Versuch, das Foto zu kopieren%s"
|
972 |
|
973 |
-
#: wppa-ajax.php:
|
974 |
#, fuzzy
|
975 |
msgid "Unbalanced tags in photo description!"
|
976 |
msgstr "Unsymmetrische Tags in fotobeschreibung!"
|
977 |
|
978 |
-
#: wppa-ajax.php:
|
979 |
#, fuzzy
|
980 |
msgid "Photo order #"
|
981 |
msgstr "Bildersortierung"
|
982 |
|
983 |
-
#: wppa-ajax.php:
|
984 |
#, fuzzy, php-format
|
985 |
msgid "User %s does not exists"
|
986 |
msgstr "Benutzer%s existiert nicht"
|
987 |
|
988 |
-
#: wppa-ajax.php:
|
989 |
#, fuzzy
|
990 |
msgid "Link url"
|
991 |
msgstr "Link URL"
|
992 |
|
993 |
-
#: wppa-ajax.php:
|
994 |
#, fuzzy
|
995 |
msgid "Link title"
|
996 |
msgstr "Link Titel"
|
997 |
|
998 |
-
#: wppa-ajax.php:
|
999 |
#, fuzzy
|
1000 |
msgid "Link target"
|
1001 |
msgstr "Link-Ziel"
|
1002 |
|
1003 |
-
#: wppa-ajax.php:
|
1004 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
1005 |
#, fuzzy
|
1006 |
msgid "Photo Tags"
|
1007 |
msgstr "Foto-Tags"
|
1008 |
|
1009 |
-
#: wppa-ajax.php:
|
1010 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
1011 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
1012 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
@@ -1015,394 +959,394 @@ msgstr "Foto-Tags"
|
|
1015 |
msgid "Status"
|
1016 |
msgstr "Status"
|
1017 |
|
1018 |
-
#: wppa-ajax.php:
|
1019 |
#, fuzzy
|
1020 |
msgid "HTML Alt"
|
1021 |
msgstr "HTML Alt"
|
1022 |
|
1023 |
-
#: wppa-ajax.php:
|
1024 |
#, fuzzy
|
1025 |
msgid "Video width"
|
1026 |
msgstr "Breite des Videos"
|
1027 |
|
1028 |
-
#: wppa-ajax.php:
|
1029 |
#, fuzzy
|
1030 |
msgid "Please enter an integer value >= 0"
|
1031 |
msgstr "Bitte geben Sie einen ganzzahligen Wert =%1 ein."
|
1032 |
|
1033 |
-
#: wppa-ajax.php:
|
1034 |
#, fuzzy
|
1035 |
msgid "Video height"
|
1036 |
msgstr "Video Höhe"
|
1037 |
|
1038 |
-
#: wppa-ajax.php:
|
1039 |
#, fuzzy, php-format
|
1040 |
msgid "<b>%s</b> of video %s updated"
|
1041 |
msgstr "<b>%s</b> von Video%s aktualisiert"
|
1042 |
|
1043 |
-
#: wppa-ajax.php:
|
1044 |
#, fuzzy, php-format
|
1045 |
msgid "<b>%s</b> of photo %s updated"
|
1046 |
msgstr "<b>%s</b> von Foto%s aktualisiert"
|
1047 |
|
1048 |
-
#: wppa-ajax.php:
|
1049 |
#, fuzzy, php-format
|
1050 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
1051 |
msgstr "Ein Fehler beim Versuch , <b>%s</b> Foto%s zu aktualisieren"
|
1052 |
|
1053 |
-
#: wppa-ajax.php:
|
1054 |
#, fuzzy, php-format
|
1055 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
1056 |
msgstr "<b>Benutzerdefinierte Feld%s</b> von Foto%s aktualisiert"
|
1057 |
|
1058 |
-
#: wppa-ajax.php:
|
1059 |
#, fuzzy
|
1060 |
msgid "<b>Error during upload.</b>"
|
1061 |
msgstr "Fehler beim Datei-Upload."
|
1062 |
|
1063 |
-
#: wppa-ajax.php:
|
1064 |
#, fuzzy
|
1065 |
msgid "Photo files updated."
|
1066 |
msgstr "Foto-Dateien aktualisiert."
|
1067 |
|
1068 |
-
#: wppa-ajax.php:
|
1069 |
#, fuzzy
|
1070 |
msgid "Could not update files."
|
1071 |
msgstr "Konnte nicht Dateien aktualisieren."
|
1072 |
|
1073 |
-
#: wppa-ajax.php:
|
1074 |
#, fuzzy, php-format
|
1075 |
msgid "Stereo mode updated in %d milliseconds"
|
1076 |
msgstr "Stereo-Modus in% d Millisekunden aktualisiert"
|
1077 |
|
1078 |
-
#: wppa-ajax.php:
|
1079 |
#, fuzzy
|
1080 |
msgid "You do not have the rights to update settings"
|
1081 |
msgstr "Sie haben nicht die Rechte-Einstellungen aktualisieren"
|
1082 |
|
1083 |
-
#: wppa-ajax.php:
|
1084 |
#, fuzzy
|
1085 |
msgid "You do not have the rights to update photo of the day settings"
|
1086 |
msgstr ""
|
1087 |
"Sie haben nicht die Rechte Foto des Tages Einstellungen zu aktualisieren"
|
1088 |
|
1089 |
-
#: wppa-ajax.php:
|
1090 |
#, fuzzy
|
1091 |
msgid "Capability granted"
|
1092 |
msgstr "Capability gewährt"
|
1093 |
|
1094 |
-
#: wppa-ajax.php:
|
1095 |
#, fuzzy
|
1096 |
msgid "Capability withdrawn"
|
1097 |
msgstr "Capability zurückgezogen"
|
1098 |
|
1099 |
-
#: wppa-ajax.php:
|
1100 |
#, fuzzy
|
1101 |
msgid "Column width."
|
1102 |
msgstr "Breite der Spalte"
|
1103 |
|
1104 |
-
#: wppa-ajax.php:
|
1105 |
#, fuzzy
|
1106 |
msgid "Initial width."
|
1107 |
msgstr "Ursprüngliche Breite"
|
1108 |
|
1109 |
-
#: wppa-ajax.php:
|
1110 |
#, fuzzy
|
1111 |
msgid "Full size."
|
1112 |
msgstr "Originalgröße"
|
1113 |
|
1114 |
-
#: wppa-ajax.php:
|
1115 |
#, fuzzy
|
1116 |
msgid "Max height."
|
1117 |
msgstr "Max. Höhe:"
|
1118 |
|
1119 |
-
#: wppa-ajax.php:
|
1120 |
#, fuzzy
|
1121 |
msgid "Thumbnail size."
|
1122 |
msgstr "Thumbnail Größe"
|
1123 |
|
1124 |
-
#: wppa-ajax.php:
|
1125 |
#, fuzzy
|
1126 |
msgid "Thumbnail frame width"
|
1127 |
msgstr "Rahmenbreite des Minibildes:"
|
1128 |
|
1129 |
-
#: wppa-ajax.php:
|
1130 |
#, fuzzy
|
1131 |
msgid "Thumbnail frame height"
|
1132 |
msgstr "Miniaturrahmenhöhe"
|
1133 |
|
1134 |
-
#: wppa-ajax.php:
|
1135 |
#, fuzzy
|
1136 |
msgid "Thumbnail Spacing"
|
1137 |
msgstr "Thumbnail-Abstand"
|
1138 |
|
1139 |
-
#: wppa-ajax.php:
|
1140 |
#, fuzzy
|
1141 |
msgid "Photocount treshold."
|
1142 |
msgstr "Photocount treshold."
|
1143 |
|
1144 |
-
#: wppa-ajax.php:
|
1145 |
#, fuzzy
|
1146 |
msgid "Thumb page size."
|
1147 |
msgstr "Thumb Seitengröße."
|
1148 |
|
1149 |
-
#: wppa-ajax.php:
|
1150 |
#, fuzzy
|
1151 |
msgid "Cover photo size."
|
1152 |
msgstr "Coverbild Größe"
|
1153 |
|
1154 |
-
#: wppa-ajax.php:
|
1155 |
#, fuzzy
|
1156 |
msgid "Album page size."
|
1157 |
msgstr "Größe der Album Seite"
|
1158 |
|
1159 |
-
#: wppa-ajax.php:
|
1160 |
#, fuzzy
|
1161 |
msgid "Number of TopTen photos"
|
1162 |
msgstr "Anzahl der TopTen Fotos"
|
1163 |
|
1164 |
-
#: wppa-ajax.php:
|
1165 |
#, fuzzy
|
1166 |
msgid "Widget image thumbnail size"
|
1167 |
msgstr "Widget Bild Miniaturgröße"
|
1168 |
|
1169 |
-
#: wppa-ajax.php:
|
1170 |
#, fuzzy
|
1171 |
msgid "Max Cover width"
|
1172 |
msgstr "Max Deckbreite"
|
1173 |
|
1174 |
-
#: wppa-ajax.php:
|
1175 |
#, fuzzy
|
1176 |
msgid "Minimal description height"
|
1177 |
msgstr "Minimale Beschreibung Höhe"
|
1178 |
|
1179 |
-
#: wppa-ajax.php:
|
1180 |
#, fuzzy
|
1181 |
msgid "Minimal cover height"
|
1182 |
msgstr "Minimale Abdeckung Höhe"
|
1183 |
|
1184 |
-
#: wppa-ajax.php:
|
1185 |
#, fuzzy
|
1186 |
msgid "Minimal text frame height"
|
1187 |
msgstr "Minimale Rahmenhöhe"
|
1188 |
|
1189 |
-
#: wppa-ajax.php:
|
1190 |
#, fuzzy
|
1191 |
msgid "Border width"
|
1192 |
msgstr "Rahmenbreite"
|
1193 |
|
1194 |
-
#: wppa-ajax.php:
|
1195 |
#: wppa-settings-autosave.php:1411
|
1196 |
#, fuzzy
|
1197 |
msgid "Border radius"
|
1198 |
msgstr "Rahmen Radius"
|
1199 |
|
1200 |
-
#: wppa-ajax.php:
|
1201 |
#, fuzzy
|
1202 |
msgid "Box spacing"
|
1203 |
msgstr "Box Abstand"
|
1204 |
|
1205 |
-
#: wppa-ajax.php:
|
1206 |
#, fuzzy
|
1207 |
msgid "Popup size"
|
1208 |
msgstr "Popup-Größe"
|
1209 |
|
1210 |
-
#: wppa-ajax.php:
|
1211 |
#, fuzzy
|
1212 |
msgid "Fullsize border width"
|
1213 |
msgstr "Fullsize Randbreite"
|
1214 |
|
1215 |
-
#: wppa-ajax.php:
|
1216 |
#, fuzzy
|
1217 |
msgid "Lightbox Bordersize"
|
1218 |
msgstr "Lightbox Bordersize"
|
1219 |
|
1220 |
-
#: wppa-ajax.php:
|
1221 |
#, fuzzy
|
1222 |
msgid "Lightbox Borderwidth"
|
1223 |
msgstr "Lightbox Border"
|
1224 |
|
1225 |
-
#: wppa-ajax.php:
|
1226 |
#, fuzzy
|
1227 |
msgid "Lightbox Borderradius"
|
1228 |
msgstr "Lightbox Borderradius"
|
1229 |
|
1230 |
-
#: wppa-ajax.php:
|
1231 |
#, fuzzy
|
1232 |
msgid "Number of Comment widget entries"
|
1233 |
msgstr "Anzahl der Kommentar-Widget Einträge"
|
1234 |
|
1235 |
-
#: wppa-ajax.php:
|
1236 |
#, fuzzy
|
1237 |
msgid "Comment Widget image thumbnail size"
|
1238 |
msgstr "Kommentar Widget Bild Miniaturgröße"
|
1239 |
|
1240 |
-
#: wppa-ajax.php:
|
1241 |
#, fuzzy
|
1242 |
msgid "Opacity."
|
1243 |
msgstr "Deckkraft"
|
1244 |
|
1245 |
-
#: wppa-ajax.php:
|
1246 |
#, fuzzy
|
1247 |
msgid "Avatar size"
|
1248 |
msgstr "Avatar-Grösse"
|
1249 |
|
1250 |
-
#: wppa-ajax.php:
|
1251 |
#, fuzzy
|
1252 |
msgid "Watermark opacity"
|
1253 |
msgstr "Deckkraft Wasserzeichen"
|
1254 |
|
1255 |
-
#: wppa-ajax.php:
|
1256 |
#, fuzzy
|
1257 |
msgid "Number of text lines"
|
1258 |
msgstr "Anzahl der Textzeilen"
|
1259 |
|
1260 |
-
#: wppa-ajax.php:
|
1261 |
#, fuzzy
|
1262 |
msgid "Overlay opacity"
|
1263 |
msgstr "Überlagerungsdeckkraft"
|
1264 |
|
1265 |
-
#: wppa-ajax.php:
|
1266 |
#, fuzzy
|
1267 |
msgid "Upload limit"
|
1268 |
msgstr "Hochladebegrenzung"
|
1269 |
|
1270 |
-
#: wppa-ajax.php:
|
1271 |
#, fuzzy
|
1272 |
msgid "Notify inappropriate"
|
1273 |
msgstr "Benachrichtigen Sie ungeeignet"
|
1274 |
|
1275 |
-
#: wppa-ajax.php:
|
1276 |
#, fuzzy
|
1277 |
msgid "Dislike pending"
|
1278 |
msgstr "Dislike angemeldet"
|
1279 |
|
1280 |
-
#: wppa-ajax.php:
|
1281 |
#, fuzzy
|
1282 |
msgid "Dislike delete"
|
1283 |
msgstr "Dislike löschen"
|
1284 |
|
1285 |
-
#: wppa-ajax.php:
|
1286 |
#, fuzzy
|
1287 |
msgid "Max execution time"
|
1288 |
msgstr "Max Durchführungszeit"
|
1289 |
|
1290 |
-
#: wppa-ajax.php:
|
1291 |
#, fuzzy
|
1292 |
msgid "myCRED / Cube Points"
|
1293 |
msgstr "myCRED / Cube-Punkte"
|
1294 |
|
1295 |
-
#: wppa-ajax.php:
|
1296 |
#, fuzzy
|
1297 |
msgid "JPG Image quality"
|
1298 |
msgstr "JPG Bildqualität"
|
1299 |
|
1300 |
-
#: wppa-ajax.php:
|
1301 |
#, fuzzy
|
1302 |
msgid "Number of coverphotos"
|
1303 |
msgstr "Anzahl der coverphotos"
|
1304 |
|
1305 |
-
#: wppa-ajax.php:
|
1306 |
#, fuzzy
|
1307 |
msgid "Dislike value"
|
1308 |
msgstr "Dislike Wert"
|
1309 |
|
1310 |
-
#: wppa-ajax.php:
|
1311 |
#, fuzzy
|
1312 |
msgid "Slideshow pagesize"
|
1313 |
msgstr "Diashow Seitengröße"
|
1314 |
|
1315 |
-
#: wppa-ajax.php:
|
1316 |
#, fuzzy
|
1317 |
msgid "Slideonly max"
|
1318 |
msgstr "Slideonly max"
|
1319 |
|
1320 |
-
#: wppa-ajax.php:
|
1321 |
#, fuzzy
|
1322 |
msgid "Max Pagelinks"
|
1323 |
msgstr "Max pagelinks"
|
1324 |
|
1325 |
-
#: wppa-ajax.php:
|
1326 |
#, fuzzy
|
1327 |
msgid "Start/pause symbol size"
|
1328 |
msgstr "Start / Pause Symbolgröße"
|
1329 |
|
1330 |
-
#: wppa-ajax.php:
|
1331 |
#, fuzzy
|
1332 |
msgid "Start/pause symbol border radius"
|
1333 |
msgstr "Start / Pause Symbol Grenzradius"
|
1334 |
|
1335 |
-
#: wppa-ajax.php:
|
1336 |
#, fuzzy
|
1337 |
msgid "Stop symbol size"
|
1338 |
msgstr "Symbolgröße"
|
1339 |
|
1340 |
-
#: wppa-ajax.php:
|
1341 |
#, fuzzy
|
1342 |
msgid "Stop symbol border radius"
|
1343 |
msgstr "Stop-Symbol Grenze Radius"
|
1344 |
|
1345 |
-
#: wppa-ajax.php:
|
1346 |
#, fuzzy
|
1347 |
msgid "Sticky header size"
|
1348 |
msgstr "Sticky"
|
1349 |
|
1350 |
-
#: wppa-ajax.php:
|
1351 |
#, fuzzy
|
1352 |
msgid "Ratings cleared"
|
1353 |
msgstr "Bewertungen gelöscht"
|
1354 |
|
1355 |
-
#: wppa-ajax.php:
|
1356 |
#, fuzzy
|
1357 |
msgid "Could not clear ratings"
|
1358 |
msgstr "Könnte nicht klar Bewertungen"
|
1359 |
|
1360 |
-
#: wppa-ajax.php:
|
1361 |
#, fuzzy
|
1362 |
msgid "Viewcounts cleared"
|
1363 |
msgstr "Viewcounts gelöscht"
|
1364 |
|
1365 |
-
#: wppa-ajax.php:
|
1366 |
#, fuzzy
|
1367 |
msgid "Could not clear viewcounts"
|
1368 |
msgstr "Könnte nicht klar viewcounts"
|
1369 |
|
1370 |
-
#: wppa-ajax.php:
|
1371 |
#, fuzzy
|
1372 |
msgid "IPTC data cleared"
|
1373 |
msgstr "IPTC-Daten gelöscht"
|
1374 |
|
1375 |
-
#: wppa-ajax.php:
|
1376 |
#, fuzzy
|
1377 |
msgid "Refresh this page to clear table X"
|
1378 |
msgstr "Seite aktualisieren Tabelle X zu löschen"
|
1379 |
|
1380 |
-
#: wppa-ajax.php:
|
1381 |
#, fuzzy
|
1382 |
msgid "Could not clear IPTC data"
|
1383 |
msgstr "Könnte nicht klar, IPTC-Daten"
|
1384 |
|
1385 |
-
#: wppa-ajax.php:
|
1386 |
#, fuzzy
|
1387 |
msgid "EXIF data cleared"
|
1388 |
msgstr "EXIF-Daten gelöscht"
|
1389 |
|
1390 |
-
#: wppa-ajax.php:
|
1391 |
#, fuzzy
|
1392 |
msgid "Refresh this page to clear table XI"
|
1393 |
msgstr "Seite aktualisieren Tabelle XI zu löschen"
|
1394 |
|
1395 |
-
#: wppa-ajax.php:
|
1396 |
#, fuzzy
|
1397 |
msgid "Could not clear EXIF data"
|
1398 |
msgstr "Könnte nicht klar, EXIF-Daten"
|
1399 |
|
1400 |
-
#: wppa-ajax.php:
|
1401 |
#, fuzzy
|
1402 |
msgid "Recuperation performed"
|
1403 |
msgstr "Rekuperation ausgeführt"
|
1404 |
|
1405 |
-
#: wppa-ajax.php:
|
1406 |
#, fuzzy
|
1407 |
msgid ""
|
1408 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
@@ -1411,64 +1355,64 @@ msgstr ""
|
|
1411 |
"Illegal Format. Bitte geben Sie eine 6-stellige hexadezimale Farbwert. "
|
1412 |
"Beispiel: # 77bbff"
|
1413 |
|
1414 |
-
#: wppa-ajax.php:
|
1415 |
#, fuzzy
|
1416 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1417 |
msgstr ""
|
1418 |
"Sie verändert nur eine Einstellung, die Neuberechnung der Bewertungen "
|
1419 |
"erfordert."
|
1420 |
|
1421 |
-
#: wppa-ajax.php:
|
1422 |
#, fuzzy
|
1423 |
msgid "Please run the appropriate action in Table VIII."
|
1424 |
msgstr "Bitte führen Sie die entsprechende Aktion in der Tabelle VIII."
|
1425 |
|
1426 |
-
#: wppa-ajax.php:
|
1427 |
#, fuzzy, php-format
|
1428 |
msgid "Unable to create or write to %s"
|
1429 |
msgstr "Kann nicht erstellt oder schreiben zu%s"
|
1430 |
|
1431 |
-
#: wppa-ajax.php:
|
1432 |
#, fuzzy
|
1433 |
msgid "Source can not be inside the wppa folder."
|
1434 |
msgstr "Quelle kann nicht innerhalb des WPPA Ordner sein."
|
1435 |
|
1436 |
-
#: wppa-ajax.php:
|
1437 |
#, fuzzy
|
1438 |
msgid "The content must contain w#album"
|
1439 |
msgstr "Der Inhalt muss w # Album enthalten"
|
1440 |
|
1441 |
-
#: wppa-ajax.php:
|
1442 |
#, fuzzy
|
1443 |
msgid "The content must contain w#lat and w#lon"
|
1444 |
msgstr "Der Inhalt muss enthalten w # lat und w # lon"
|
1445 |
|
1446 |
-
#: wppa-ajax.php:
|
1447 |
#, fuzzy
|
1448 |
msgid "Members"
|
1449 |
msgstr "Mitglieder"
|
1450 |
|
1451 |
-
#: wppa-ajax.php:
|
1452 |
#, fuzzy
|
1453 |
msgid "Parent of the member albums"
|
1454 |
msgstr "Eltern der Mitglieds Alben"
|
1455 |
|
1456 |
-
#: wppa-ajax.php:
|
1457 |
#, fuzzy, php-format
|
1458 |
msgid "User %s has been blacklisted."
|
1459 |
msgstr "Benutzer%s hat die schwarze Liste gesetzt worden."
|
1460 |
|
1461 |
-
#: wppa-ajax.php:
|
1462 |
#, fuzzy, php-format
|
1463 |
msgid "User %s does not exist."
|
1464 |
msgstr "Benutzer \"%s\" nicht vorhanden"
|
1465 |
|
1466 |
-
#: wppa-ajax.php:
|
1467 |
#, fuzzy, php-format
|
1468 |
msgid "User %s is now superuser."
|
1469 |
msgstr "Benutzer%s ist jetzt Super-User."
|
1470 |
|
1471 |
-
#: wppa-ajax.php:
|
1472 |
#, fuzzy
|
1473 |
msgid ""
|
1474 |
"The content of the Custom box has been changed to display the Fotomoto "
|
@@ -1477,22 +1421,22 @@ msgstr ""
|
|
1477 |
"Der Inhalt des Custom-Box wurde geändert, um die Fotomoto Symbolleiste "
|
1478 |
"angezeigt werden soll."
|
1479 |
|
1480 |
-
#: wppa-ajax.php:
|
1481 |
#, fuzzy
|
1482 |
msgid "The display of the custom box has been enabled"
|
1483 |
msgstr "Die Anzeige der Anwender-Box aktiviert wurde"
|
1484 |
|
1485 |
-
#: wppa-ajax.php:
|
1486 |
#, fuzzy
|
1487 |
msgid "The content of the Custom box has been changed to display maps."
|
1488 |
msgstr "Der Inhalt des Custom-Box wurde geändert Karten anzuzeigen."
|
1489 |
|
1490 |
-
#: wppa-ajax.php:
|
1491 |
#, fuzzy
|
1492 |
msgid "This value can not be empty"
|
1493 |
msgstr "Dieser Wert darf nicht leer sein"
|
1494 |
|
1495 |
-
#: wppa-ajax.php:
|
1496 |
#, fuzzy
|
1497 |
msgid ""
|
1498 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
@@ -1501,37 +1445,37 @@ msgstr ""
|
|
1501 |
"Sie müssen Tabelle VIII-A13 und VIII-A14 laufen, bevor Sie auf die "
|
1502 |
"verschlüsselten URLs wechseln."
|
1503 |
|
1504 |
-
#: wppa-ajax.php:
|
1505 |
#, fuzzy
|
1506 |
msgid "Table IV-A3 will be switched off."
|
1507 |
msgstr "Tabelle IV-A3 wird ausgeschaltet."
|
1508 |
|
1509 |
-
#: wppa-ajax.php:
|
1510 |
#, fuzzy
|
1511 |
msgid "Table IV-A4 will be switched off."
|
1512 |
msgstr "Tabelle IV-A4 wird ausgeschaltet."
|
1513 |
|
1514 |
-
#: wppa-ajax.php:
|
1515 |
#, fuzzy
|
1516 |
msgid "Not allowed when cryptic links is active"
|
1517 |
msgstr "Nicht erlaubt, wenn kryptischen Links aktiv"
|
1518 |
|
1519 |
-
#: wppa-ajax.php:
|
1520 |
#, fuzzy
|
1521 |
msgid "A Twitter account name must start with an at sign: @"
|
1522 |
msgstr "Ein Twitter-Account-Name muss mit einem at-Zeichen beginnen: @"
|
1523 |
|
1524 |
-
#: wppa-ajax.php:
|
1525 |
#, fuzzy, php-format
|
1526 |
msgid "Failed to set %s to %s"
|
1527 |
msgstr "Fehlgeschlagen% einzustellen s zu%s"
|
1528 |
|
1529 |
-
#: wppa-ajax.php:
|
1530 |
#, fuzzy, php-format
|
1531 |
msgid "Setting %s updated to %s"
|
1532 |
msgstr "Einstellung%s aktualisiert% auf s"
|
1533 |
|
1534 |
-
#: wppa-ajax.php:
|
1535 |
#, fuzzy
|
1536 |
msgid ""
|
1537 |
"You just changed a setting that requires the regeneration of thumbnails."
|
@@ -1539,27 +1483,27 @@ msgstr ""
|
|
1539 |
"Sie verändert nur eine Einstellung, die die Regeneration von Thumbnails "
|
1540 |
"erfordert."
|
1541 |
|
1542 |
-
#: wppa-ajax.php:
|
1543 |
#, fuzzy
|
1544 |
msgid "Missing album id"
|
1545 |
msgstr "Fehlende Album-ID"
|
1546 |
|
1547 |
-
#: wppa-ajax.php:
|
1548 |
#, fuzzy
|
1549 |
msgid "You do not have the rights to delete this album"
|
1550 |
msgstr "Sie haben nicht die Rechte dieses Album löschen"
|
1551 |
|
1552 |
-
#: wppa-ajax.php:
|
1553 |
#, fuzzy
|
1554 |
msgid "An error has occurred"
|
1555 |
msgstr "Ein Interner Fehler Ist Aufgetreten"
|
1556 |
|
1557 |
-
#: wppa-ajax.php:
|
1558 |
#, fuzzy
|
1559 |
msgid "You may also enter:"
|
1560 |
msgstr "Sie können auch ein:"
|
1561 |
|
1562 |
-
#: wppa-ajax.php:
|
1563 |
#, fuzzy
|
1564 |
msgid "You may also leave/set this blank"
|
1565 |
msgstr "Sie können auch dieses Feld leer lassen / set"
|
@@ -1616,7 +1560,7 @@ msgstr "Zurück zum Album Tisch"
|
|
1616 |
msgid "Top of page"
|
1617 |
msgstr "Am Anfang der Seite"
|
1618 |
|
1619 |
-
#: wppa-album-admin-autosave.php:118 wppa-functions.php:
|
1620 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1621 |
msgid "New Album"
|
1622 |
msgstr "Neues Fotoalbum"
|
@@ -1776,8 +1720,8 @@ msgstr ""
|
|
1776 |
"Wenn Sie die Alben, um # sortieren möchten, geben Sie / ändern hier die "
|
1777 |
"Bestellnummer."
|
1778 |
|
1779 |
-
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:
|
1780 |
-
#: wppa-tinymce-shortcodes.php:
|
1781 |
#, fuzzy
|
1782 |
msgid "Parent album:"
|
1783 |
msgstr "Übergeordnetes Album"
|
@@ -1797,7 +1741,7 @@ msgstr "Bildersortierung"
|
|
1797 |
|
1798 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1799 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1800 |
-
#: wppa-tinymce-shortcodes.php:
|
1801 |
#, fuzzy
|
1802 |
msgid "--- default ---"
|
1803 |
msgstr "Standard-Fotoalbum für"
|
@@ -2415,7 +2359,7 @@ msgstr "Was würden Sie aktuell im Album mit Fotos zu tun?"
|
|
2415 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
2416 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319
|
2417 |
#: wppa-comment-admin.php:388 wppa-comment-admin.php:406
|
2418 |
-
#: wppa-functions.php:2115 wppa-links.php:
|
2419 |
#: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
|
2420 |
#: wppa-thumbnails.php:629
|
2421 |
msgid "Delete"
|
@@ -2885,7 +2829,7 @@ msgstr "--- Alle generischen Alben ---"
|
|
2885 |
msgid "--- all separate albums ---"
|
2886 |
msgstr "- Alle -separate- Alben -"
|
2887 |
|
2888 |
-
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:
|
2889 |
#: wppa-items.php:436
|
2890 |
msgid "--- owner/public ---"
|
2891 |
msgstr "--- Besitzer/öffentliche ---"
|
@@ -3041,7 +2985,7 @@ msgstr "Die durchschnittliche Bewertung:"
|
|
3041 |
msgid "Rating count:"
|
3042 |
msgstr "Bewertungen"
|
3043 |
|
3044 |
-
#: wppa-bestof-widget.php:198 wppa-common-functions.php:
|
3045 |
#: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
|
3046 |
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
|
3047 |
#: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
|
@@ -3052,7 +2996,7 @@ msgstr "Bewertungen"
|
|
3052 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
3053 |
#: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
|
3054 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
3055 |
-
#: wppa-tinymce-shortcodes.php:
|
3056 |
msgid "--- none ---"
|
3057 |
msgstr "--- keine ---"
|
3058 |
|
@@ -3259,7 +3203,7 @@ msgstr "Album Beschreibung eingeben"
|
|
3259 |
msgid "Create album"
|
3260 |
msgstr "Album Erstellen"
|
3261 |
|
3262 |
-
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:
|
3263 |
msgid "Max uploads reached"
|
3264 |
msgstr "Max Uploads erreicht"
|
3265 |
|
@@ -3439,7 +3383,7 @@ msgstr "schrieb:"
|
|
3439 |
msgid "Avatar"
|
3440 |
msgstr "Profilbild"
|
3441 |
|
3442 |
-
#: wppa-boxes-html.php:3109 wppa-links.php:
|
3443 |
msgid "Awaiting moderation"
|
3444 |
msgstr "Warten auf Moderation"
|
3445 |
|
@@ -4056,14 +4000,14 @@ msgstr "Foto nicht gefunden"
|
|
4056 |
msgid "There are no commented photos (yet)"
|
4057 |
msgstr "Es sind (noch) keine kommentierte Fotos"
|
4058 |
|
4059 |
-
#: wppa-common-functions.php:
|
4060 |
#, php-format
|
4061 |
msgid "%d second"
|
4062 |
msgid_plural "%d seconds"
|
4063 |
msgstr[0] "%d Sekunde"
|
4064 |
msgstr[1] "%d Sekunden"
|
4065 |
|
4066 |
-
#: wppa-common-functions.php:
|
4067 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
4068 |
#, php-format
|
4069 |
msgid "%d minute"
|
@@ -4071,7 +4015,7 @@ msgid_plural "%d minutes"
|
|
4071 |
msgstr[0] "%d Minute"
|
4072 |
msgstr[1] "%d Minuten"
|
4073 |
|
4074 |
-
#: wppa-common-functions.php:
|
4075 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
4076 |
#, php-format
|
4077 |
msgid "%d hour"
|
@@ -4079,7 +4023,7 @@ msgid_plural "%d hours"
|
|
4079 |
msgstr[0] "%d Stunde"
|
4080 |
msgstr[1] "%d Stunden"
|
4081 |
|
4082 |
-
#: wppa-common-functions.php:
|
4083 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
4084 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
4085 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
@@ -4092,7 +4036,7 @@ msgid_plural "%d days"
|
|
4092 |
msgstr[0] "%d Tag"
|
4093 |
msgstr[1] "%d Tage"
|
4094 |
|
4095 |
-
#: wppa-common-functions.php:
|
4096 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
4097 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
4098 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
@@ -4102,7 +4046,7 @@ msgid_plural "%d weeks"
|
|
4102 |
msgstr[0] "%d Woche"
|
4103 |
msgstr[1] "%d Wochen"
|
4104 |
|
4105 |
-
#: wppa-common-functions.php:
|
4106 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
4107 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
4108 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
@@ -4112,7 +4056,7 @@ msgid_plural "%d months"
|
|
4112 |
msgstr[0] "%d Monat"
|
4113 |
msgstr[1] "%d Monate"
|
4114 |
|
4115 |
-
#: wppa-common-functions.php:
|
4116 |
#: wppa-settings-autosave.php:9025
|
4117 |
#, php-format
|
4118 |
msgid "%d year"
|
@@ -4120,7 +4064,7 @@ msgid_plural "%d years"
|
|
4120 |
msgstr[0] "%d Jahr"
|
4121 |
msgstr[1] "%d Jahre"
|
4122 |
|
4123 |
-
#: wppa-common-functions.php:
|
4124 |
#, php-format
|
4125 |
msgid ""
|
4126 |
"Based on your server memory limit you should not upload images larger then "
|
@@ -4129,39 +4073,39 @@ msgstr ""
|
|
4129 |
"Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
|
4130 |
"größer <strong>dann %d x %d (% 2.1f MP)</strong>"
|
4131 |
|
4132 |
-
#: wppa-common-functions.php:
|
4133 |
msgid "- select an album -"
|
4134 |
msgstr "- wählen Sie ein Album -"
|
4135 |
|
4136 |
-
#: wppa-common-functions.php:
|
4137 |
#: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
|
4138 |
#: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
|
4139 |
#: wppa-tagcloud-widget.php:79
|
4140 |
msgid "--- all ---"
|
4141 |
msgstr "--- alle ---"
|
4142 |
|
4143 |
-
#: wppa-common-functions.php:
|
4144 |
msgid "--- generic ---"
|
4145 |
msgstr "--- generikum ---"
|
4146 |
|
4147 |
-
#: wppa-common-functions.php:
|
4148 |
msgid "--- multiple see below ---"
|
4149 |
msgstr "--- Mehrere siehe unten ---"
|
4150 |
|
4151 |
-
#: wppa-common-functions.php:
|
4152 |
msgid "--- a selection box ---"
|
4153 |
msgstr "--- eine Auswahlbox ---"
|
4154 |
|
4155 |
-
#: wppa-common-functions.php:
|
4156 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
4157 |
msgid "--- separate ---"
|
4158 |
msgstr "--- separat ---"
|
4159 |
|
4160 |
-
#: wppa-common-functions.php:
|
4161 |
msgid "Photo id ="
|
4162 |
msgstr "Foto id ="
|
4163 |
|
4164 |
-
#: wppa-common-functions.php:
|
4165 |
msgid "Value ="
|
4166 |
msgstr "Wert ="
|
4167 |
|
@@ -4565,7 +4509,7 @@ msgstr ""
|
|
4565 |
"Es gibt %s Alben gefunden. Nur das erste %s wird angezeigt. Bitte verfeinern "
|
4566 |
"Sie Ihre Suchkriterien."
|
4567 |
|
4568 |
-
#: wppa-functions.php:2112 wppa-links.php:
|
4569 |
#: wppa-thumbnails.php:627
|
4570 |
msgid "Are you sure you want to remove this photo?"
|
4571 |
msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
|
@@ -4611,7 +4555,7 @@ msgstr "schrieb am Foto"
|
|
4611 |
msgid "Moderate comment admin"
|
4612 |
msgstr "Moderiere Kommentare"
|
4613 |
|
4614 |
-
#: wppa-functions.php:2366 wppa-functions.php:
|
4615 |
#: wppa-upload.php:570
|
4616 |
msgid "Moderate manage photo"
|
4617 |
msgstr "Moderiere Fotos"
|
@@ -4655,140 +4599,140 @@ msgstr ""
|
|
4655 |
"Konnte Kommentar nicht werarbeiten. \n"
|
4656 |
"Warscheinlich Zeitüberschreitung."
|
4657 |
|
4658 |
-
#: wppa-functions.php:2604 wppa-links.php:
|
4659 |
msgid "A video can not be printed or downloaded"
|
4660 |
msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
|
4661 |
|
4662 |
-
#: wppa-functions.php:
|
4663 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4664 |
msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
|
4665 |
|
4666 |
-
#: wppa-functions.php:
|
4667 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4668 |
msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
|
4669 |
|
4670 |
-
#: wppa-functions.php:
|
4671 |
msgid "ERROR: Illegal attempt to create an album."
|
4672 |
msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
|
4673 |
|
4674 |
-
#: wppa-functions.php:
|
4675 |
msgid "Wrong captcha, please try again"
|
4676 |
msgstr "Falsche Captcha, versuchen Sie es erneut"
|
4677 |
|
4678 |
-
#: wppa-functions.php:
|
4679 |
#, php-format
|
4680 |
msgid "Album #%s created"
|
4681 |
msgstr "Album #%s erstellt"
|
4682 |
|
4683 |
-
#: wppa-functions.php:
|
4684 |
msgid "Could not create album"
|
4685 |
msgstr "Album konnte nicht erstellt werden"
|
4686 |
|
4687 |
-
#: wppa-functions.php:
|
4688 |
msgid "ERROR: Illegal attempt to upload a file."
|
4689 |
msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
|
4690 |
|
4691 |
-
#: wppa-functions.php:
|
4692 |
msgid "Photo upload"
|
4693 |
msgstr "Fotos hochgeladen"
|
4694 |
|
4695 |
-
#: wppa-functions.php:
|
4696 |
#, php-format
|
4697 |
msgid "%d photo successfully uploaded"
|
4698 |
msgid_plural "%d photos successfully uploaded"
|
4699 |
msgstr[0] "%d Foto erfolgreich hochgeladen"
|
4700 |
msgstr[1] "%d Fotos erfolgreich hochgeladen"
|
4701 |
|
4702 |
-
#: wppa-functions.php:
|
4703 |
#, php-format
|
4704 |
msgid "%s points added"
|
4705 |
msgstr "%s Punkte hinzugefügt"
|
4706 |
|
4707 |
-
#: wppa-functions.php:
|
4708 |
#, fuzzy
|
4709 |
msgid "Your post is awaiting moderation."
|
4710 |
msgstr "Dein Eintrag wartet auf Moderation."
|
4711 |
|
4712 |
-
#: wppa-functions.php:
|
4713 |
msgid "Upload failed"
|
4714 |
msgstr "Upload fehlgeschlagen"
|
4715 |
|
4716 |
-
#: wppa-functions.php:
|
4717 |
#, php-format
|
4718 |
msgid "%d upload failed"
|
4719 |
msgid_plural "%d uploads failed"
|
4720 |
msgstr[0] "%d Hochladung fehlgeschlagen"
|
4721 |
msgstr[1] "%d Hochladungen fehlgeschlagen"
|
4722 |
|
4723 |
-
#: wppa-functions.php:
|
4724 |
msgid "Error during upload"
|
4725 |
msgstr "Fehler beim Hochladen"
|
4726 |
|
4727 |
-
#: wppa-functions.php:
|
4728 |
#, fuzzy
|
4729 |
msgid "Could not insert media into db."
|
4730 |
msgstr "Konnte nicht Medien in db einfügen."
|
4731 |
|
4732 |
-
#: wppa-functions.php:
|
4733 |
msgid "Uploaded file is not an image"
|
4734 |
msgstr "Hochgeladenen datei ist kein Bild"
|
4735 |
|
4736 |
-
#: wppa-functions.php:
|
4737 |
#, php-format
|
4738 |
msgid ""
|
4739 |
"Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4740 |
msgstr ""
|
4741 |
"Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
|
4742 |
|
4743 |
-
#: wppa-functions.php:
|
4744 |
#, php-format
|
4745 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4746 |
msgstr ""
|
4747 |
"Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
|
4748 |
|
4749 |
-
#: wppa-functions.php:
|
4750 |
#, php-format
|
4751 |
msgid "Uploaded file %s already exists in this album."
|
4752 |
msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
|
4753 |
|
4754 |
-
#: wppa-functions.php:
|
4755 |
#, php-format
|
4756 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4757 |
msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
|
4758 |
|
4759 |
-
#: wppa-functions.php:
|
4760 |
msgid "Could not insert photo into db."
|
4761 |
msgstr "Konnte Foto nicht in db einfügen."
|
4762 |
|
4763 |
-
#: wppa-functions.php:
|
4764 |
#, php-format
|
4765 |
msgid "New photo uploaded: %s"
|
4766 |
msgstr "Neues Foto hochgeladen: %s"
|
4767 |
|
4768 |
-
#: wppa-functions.php:
|
4769 |
#, php-format
|
4770 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4771 |
msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
|
4772 |
|
4773 |
-
#: wppa-functions.php:
|
4774 |
msgid "This upload requires moderation"
|
4775 |
msgstr "Dieser Upload erfordert Moderation"
|
4776 |
|
4777 |
-
#: wppa-functions.php:
|
4778 |
msgid "Details:"
|
4779 |
msgstr "Details:"
|
4780 |
|
4781 |
-
#: wppa-functions.php:
|
4782 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4783 |
msgid "Manage photo"
|
4784 |
msgstr "Fotos verwalten"
|
4785 |
|
4786 |
-
#: wppa-functions.php:
|
4787 |
msgid "You can upload after"
|
4788 |
msgstr "Sie können Hochladen nach"
|
4789 |
|
4790 |
-
#: wppa-functions.php:
|
4791 |
-
#: wppa-functions.php:
|
4792 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4793 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4794 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
@@ -4796,22 +4740,22 @@ msgstr "Sie können Hochladen nach"
|
|
4796 |
msgid "Download"
|
4797 |
msgstr "Herunterladen"
|
4798 |
|
4799 |
-
#: wppa-functions.php:
|
4800 |
msgid "Zoom in"
|
4801 |
msgstr "Hineinzoomen"
|
4802 |
|
4803 |
-
#: wppa-functions.php:
|
4804 |
#, fuzzy, php-format
|
4805 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4806 |
msgstr ""
|
4807 |
"Sie können wieder stimmen nach%s Tage,%s Stunden,%s Minuten und%s Sekunden"
|
4808 |
|
4809 |
-
#: wppa-functions.php:
|
4810 |
#, fuzzy, php-format
|
4811 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4812 |
msgstr "Sie können wieder stimmen nach%s Stunden,%s Minuten und%s Sekunden"
|
4813 |
|
4814 |
-
#: wppa-functions.php:
|
4815 |
#, fuzzy, php-format
|
4816 |
msgid "You can vote again after %s minutes and %s seconds"
|
4817 |
msgstr "Sie können wieder stimmen nach%s Minuten und%s Sekunden"
|
@@ -5765,81 +5709,81 @@ msgstr "Foto Name"
|
|
5765 |
msgid "Show time since:"
|
5766 |
msgstr "Zeit seit:"
|
5767 |
|
5768 |
-
#: wppa-links.php:
|
5769 |
#, fuzzy
|
5770 |
msgid "App"
|
5771 |
msgstr "App"
|
5772 |
|
5773 |
-
#: wppa-links.php:
|
5774 |
#, fuzzy
|
5775 |
msgid "Mod"
|
5776 |
msgstr "Mod"
|
5777 |
|
5778 |
-
#: wppa-links.php:
|
5779 |
#, fuzzy
|
5780 |
msgid "Del"
|
5781 |
msgstr "Entf."
|
5782 |
|
5783 |
-
#: wppa-links.php:
|
5784 |
#, fuzzy
|
5785 |
msgid "Are you sure you want to publish this photo?"
|
5786 |
msgstr "Sind Sie sicher, dass Sie dieses Foto zu veröffentlichen?"
|
5787 |
|
5788 |
-
#: wppa-links.php:
|
5789 |
#, fuzzy
|
5790 |
msgid "Approve"
|
5791 |
msgstr "Interessant"
|
5792 |
|
5793 |
-
#: wppa-links.php:
|
5794 |
#, fuzzy
|
5795 |
msgid "Moderate"
|
5796 |
msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
|
5797 |
|
5798 |
-
#: wppa-links.php:
|
5799 |
#, fuzzy
|
5800 |
msgid "PhotoAdmin"
|
5801 |
msgstr "PhotoAdmin"
|
5802 |
|
5803 |
-
#: wppa-links.php:
|
5804 |
#, fuzzy
|
5805 |
msgid "CommentAdmin"
|
5806 |
msgstr "CommentAdmin"
|
5807 |
|
5808 |
-
#: wppa-links.php:
|
5809 |
#, fuzzy
|
5810 |
msgid "Are you sure you want to publish this comment?"
|
5811 |
msgstr "Sind Sie sicher, dass Sie diesen Kommentar zu veröffentlichen?"
|
5812 |
|
5813 |
-
#: wppa-links.php:
|
5814 |
#, fuzzy
|
5815 |
msgid "Are you sure you want to remove this comment?"
|
5816 |
msgstr "Bist Du sicher, dass Du diesen Kommentar entfernen möchtest?"
|
5817 |
|
5818 |
-
#: wppa-links.php:
|
5819 |
#, fuzzy, php-format
|
5820 |
msgid "Scheduled for %s"
|
5821 |
msgstr "Geplant für%s"
|
5822 |
|
5823 |
-
#: wppa-links.php:
|
5824 |
msgid "Previous"
|
5825 |
msgstr "Vorheriges"
|
5826 |
|
5827 |
-
#: wppa-links.php:
|
5828 |
#: wppa-slideshow.php:1137
|
5829 |
msgid "Next"
|
5830 |
msgstr "Nächstes"
|
5831 |
|
5832 |
-
#: wppa-links.php:
|
5833 |
#, fuzzy
|
5834 |
msgid "Download Album"
|
5835 |
msgstr "Album herunterladen"
|
5836 |
|
5837 |
-
#: wppa-links.php:
|
5838 |
#, fuzzy
|
5839 |
msgid "View thumbnails"
|
5840 |
msgstr "Anzeigen die Miniaturen"
|
5841 |
|
5842 |
-
#: wppa-links.php:
|
5843 |
#, fuzzy
|
5844 |
msgid "View fullsize slideshow"
|
5845 |
msgstr "Vollbild ansehen Diashow"
|
@@ -6916,7 +6860,7 @@ msgid "pixels wide"
|
|
6916 |
msgstr "0像素宽"
|
6917 |
|
6918 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
6919 |
-
#: wppa-tinymce-shortcodes.php:
|
6920 |
#, fuzzy
|
6921 |
msgid "Horizontal alignment:"
|
6922 |
msgstr "horizontale Ausrichtung"
|
@@ -6930,7 +6874,7 @@ msgstr ""
|
|
6930 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
6931 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
6932 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
6933 |
-
#: wppa-tinymce-shortcodes.php:
|
6934 |
#, fuzzy
|
6935 |
msgid "center"
|
6936 |
msgstr "mittig"
|
@@ -20749,8 +20693,8 @@ msgid "--- All photos in the system ---"
|
|
20749 |
msgstr "--- Alle Fotos im System ---"
|
20750 |
|
20751 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
20752 |
-
#: wppa-tinymce-shortcodes.php:
|
20753 |
-
#: wppa-tinymce-shortcodes.php:
|
20754 |
#, fuzzy
|
20755 |
msgid "There are no albums yet"
|
20756 |
msgstr "Es gibt keine Alben noch"
|
@@ -20778,12 +20722,12 @@ msgstr ""
|
|
20778 |
msgid "* Album contains less than the minimun number of photos"
|
20779 |
msgstr "* Album enthält weniger als die minimun Anzahl der Fotos"
|
20780 |
|
20781 |
-
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:
|
20782 |
#, fuzzy
|
20783 |
msgid "The Photo to be used:"
|
20784 |
msgstr "Das Foto verwendet werden soll:"
|
20785 |
|
20786 |
-
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:
|
20787 |
#, fuzzy
|
20788 |
msgid "Please select a photo"
|
20789 |
msgstr "Bitte wählen Sie ein Foto"
|
@@ -20798,17 +20742,17 @@ msgstr "--- Die zuletzt hochgeladenen Foto ---"
|
|
20798 |
msgid "--- The photo of the day ---"
|
20799 |
msgstr "--- Das Foto des Tages ---"
|
20800 |
|
20801 |
-
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:
|
20802 |
#, fuzzy
|
20803 |
msgid "There are no photos yet"
|
20804 |
msgstr "Es sind (noch) keine Fotos"
|
20805 |
|
20806 |
-
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:
|
20807 |
#, fuzzy
|
20808 |
msgid "Specify the photo to be used"
|
20809 |
msgstr "das Foto Geben Sie verwendet werden"
|
20810 |
|
20811 |
-
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:
|
20812 |
#, fuzzy
|
20813 |
msgid "You can select from a maximum of 100 most recently added photos"
|
20814 |
msgstr "Sie können von maximal 100 zuletzt hinzugefügten Fotos auswählen"
|
@@ -20818,7 +20762,7 @@ msgstr "Sie können von maximal 100 zuletzt hinzugefügten Fotos auswählen"
|
|
20818 |
msgid "The tags the photos should have:"
|
20819 |
msgstr "Die Tags sollten die Fotos haben:"
|
20820 |
|
20821 |
-
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:
|
20822 |
#, fuzzy
|
20823 |
msgid "--- please select tag(s) ---"
|
20824 |
msgstr "Bitte wählen Sie Tag(s) aus."
|
@@ -20834,12 +20778,12 @@ msgstr ""
|
|
20834 |
"dieses Feld. Lassen Sie es nicht aktiviert, wenn das Foto ein atleast nur "
|
20835 |
"der ausgewählten Variablen haben muss"
|
20836 |
|
20837 |
-
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:
|
20838 |
#, fuzzy
|
20839 |
msgid "The size of the display:"
|
20840 |
msgstr "Die Größe des Displays:"
|
20841 |
|
20842 |
-
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:
|
20843 |
#, fuzzy
|
20844 |
msgid ""
|
20845 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
@@ -20848,7 +20792,7 @@ msgstr ""
|
|
20848 |
"Geben Sie die horizontale Größe in Pixeln oder <span style=\"color:blue\" "
|
20849 |
">Auto.</span>"
|
20850 |
|
20851 |
-
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:
|
20852 |
#, fuzzy
|
20853 |
msgid ""
|
20854 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
@@ -20859,17 +20803,17 @@ msgstr ""
|
|
20859 |
"automatisch als <span style=\"color:blue\" >Prozentsatz</span> des "
|
20860 |
"verfügbaren Raums interpretiert werden."
|
20861 |
|
20862 |
-
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:
|
20863 |
#, fuzzy
|
20864 |
msgid "Leave this blank for default size"
|
20865 |
msgstr "Lassen Sie dieses Feld leer, für Standardgröße"
|
20866 |
|
20867 |
-
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:
|
20868 |
#, fuzzy
|
20869 |
msgid "Specify the alignment to be used or --- none ---"
|
20870 |
msgstr "Legen Sie die Ausrichtung verwendet werden oder --- keine ---"
|
20871 |
|
20872 |
-
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:
|
20873 |
#, fuzzy
|
20874 |
msgid "Insert Gallery"
|
20875 |
msgstr "Bildergalerie"
|
@@ -21154,7 +21098,7 @@ msgstr "Alben getaggt mit bestimmten Kategorien"
|
|
21154 |
msgid "All albums in the system"
|
21155 |
msgstr "Alle Alben im System"
|
21156 |
|
21157 |
-
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:
|
21158 |
#, fuzzy
|
21159 |
msgid "The Album(s) to be used:"
|
21160 |
msgstr "Das Album (e) verwendet werden:"
|
@@ -21164,168 +21108,180 @@ msgstr "Das Album (e) verwendet werden:"
|
|
21164 |
msgid "Please select one or more albums"
|
21165 |
msgstr "Bitte wählen Sie ein oder mehrere Alben"
|
21166 |
|
21167 |
-
#: wppa-tinymce-shortcodes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21168 |
#, fuzzy
|
21169 |
msgid "All albums"
|
21170 |
msgstr "- Alle Alben -"
|
21171 |
|
21172 |
-
#: wppa-tinymce-shortcodes.php:
|
21173 |
#, fuzzy
|
21174 |
msgid "The album owner:"
|
21175 |
msgstr "Das Album Besitzer:"
|
21176 |
|
21177 |
-
#: wppa-tinymce-shortcodes.php:
|
21178 |
#, fuzzy
|
21179 |
msgid "Please select a user"
|
21180 |
msgstr "Bitte wähle einen Benutzer"
|
21181 |
|
21182 |
-
#: wppa-tinymce-shortcodes.php:
|
21183 |
#, fuzzy
|
21184 |
msgid "The logged in visitor"
|
21185 |
msgstr "Der Besucher angemeldet"
|
21186 |
|
21187 |
-
#: wppa-tinymce-shortcodes.php:
|
21188 |
#, fuzzy
|
21189 |
msgid "Too many users, edit manually"
|
21190 |
msgstr "Zu viele Benutzer, manuell bearbeiten"
|
21191 |
|
21192 |
-
#: wppa-tinymce-shortcodes.php:
|
21193 |
#, fuzzy
|
21194 |
msgid "No parent specification"
|
21195 |
msgstr "Kein Elternteil Spezifikation"
|
21196 |
|
21197 |
-
#: wppa-tinymce-shortcodes.php:
|
21198 |
-
#: wppa-tinymce-shortcodes.php:
|
21199 |
#, fuzzy
|
21200 |
msgid "The generic parent"
|
21201 |
msgstr "Die generische Mutter"
|
21202 |
|
21203 |
-
#: wppa-tinymce-shortcodes.php:
|
21204 |
#, fuzzy
|
21205 |
msgid "Max Albums:"
|
21206 |
msgstr "Max Alben:"
|
21207 |
|
21208 |
-
#: wppa-tinymce-shortcodes.php:
|
21209 |
#, fuzzy
|
21210 |
msgid "Max Photos:"
|
21211 |
msgstr "Max Fotos:"
|
21212 |
|
21213 |
-
#: wppa-tinymce-shortcodes.php:
|
21214 |
#, fuzzy
|
21215 |
msgid "The album cat(s):"
|
21216 |
msgstr "Das Album Katze (n):"
|
21217 |
|
21218 |
-
#: wppa-tinymce-shortcodes.php:
|
21219 |
#, fuzzy
|
21220 |
msgid "--- please select category ---"
|
21221 |
msgstr "Bitte eine Kategorie auswählen"
|
21222 |
|
21223 |
-
#: wppa-tinymce-shortcodes.php:
|
21224 |
#, fuzzy
|
21225 |
msgid "The photo of the day"
|
21226 |
msgstr "Das Foto des Tages"
|
21227 |
|
21228 |
-
#: wppa-tinymce-shortcodes.php:
|
21229 |
#, fuzzy
|
21230 |
msgid "The most recently uploaded photo"
|
21231 |
msgstr "Die zuletzt hochgeladenen Foto"
|
21232 |
|
21233 |
-
#: wppa-tinymce-shortcodes.php:
|
21234 |
#, fuzzy
|
21235 |
msgid "Preview image:"
|
21236 |
msgstr "Bildvorschau"
|
21237 |
|
21238 |
-
#: wppa-tinymce-shortcodes.php:
|
21239 |
#, fuzzy
|
21240 |
msgid "The photo tag(s):"
|
21241 |
msgstr "Das Foto-Tag (e):"
|
21242 |
|
21243 |
-
#: wppa-tinymce-shortcodes.php:
|
21244 |
#, fuzzy
|
21245 |
msgid "Or / And:"
|
21246 |
msgstr "Oder und:"
|
21247 |
|
21248 |
-
#: wppa-tinymce-shortcodes.php:
|
21249 |
#, fuzzy
|
21250 |
msgid "Meet any"
|
21251 |
msgstr "Treffen Sie jede"
|
21252 |
|
21253 |
-
#: wppa-tinymce-shortcodes.php:
|
21254 |
#, fuzzy
|
21255 |
msgid "Meet all"
|
21256 |
msgstr "Treffen Sie alle"
|
21257 |
|
21258 |
-
#: wppa-tinymce-shortcodes.php:
|
21259 |
#, fuzzy
|
21260 |
msgid "Additional features:"
|
21261 |
msgstr "Weitere Features:"
|
21262 |
|
21263 |
-
#: wppa-tinymce-shortcodes.php:
|
21264 |
#, fuzzy
|
21265 |
msgid "Enable Subsearch"
|
21266 |
msgstr "Aktivieren Sie Subsearch"
|
21267 |
|
21268 |
-
#: wppa-tinymce-shortcodes.php:
|
21269 |
#, fuzzy
|
21270 |
msgid "Enable Rootsearch"
|
21271 |
msgstr "Aktivieren Sie Rootsearch"
|
21272 |
|
21273 |
-
#: wppa-tinymce-shortcodes.php:
|
21274 |
#, fuzzy
|
21275 |
msgid "Search root:"
|
21276 |
msgstr "Suche root:"
|
21277 |
|
21278 |
-
#: wppa-tinymce-shortcodes.php:
|
21279 |
#, fuzzy
|
21280 |
msgid "Landing page:"
|
21281 |
msgstr "Zielseite"
|
21282 |
|
21283 |
-
#: wppa-tinymce-shortcodes.php:
|
21284 |
#, fuzzy
|
21285 |
msgid "Enable all tags"
|
21286 |
msgstr "Aktiviere Tags"
|
21287 |
|
21288 |
-
#: wppa-tinymce-shortcodes.php:
|
21289 |
#, fuzzy
|
21290 |
msgid "Please select the tags to show"
|
21291 |
msgstr "Bitte wählen Sie die Tags zu zeigen,"
|
21292 |
|
21293 |
-
#: wppa-tinymce-shortcodes.php:
|
21294 |
#, fuzzy
|
21295 |
msgid "There are no tags"
|
21296 |
msgstr "Vorschau tags:"
|
21297 |
|
21298 |
-
#: wppa-tinymce-shortcodes.php:
|
21299 |
#, fuzzy
|
21300 |
msgid "Calendar type:"
|
21301 |
msgstr "Kalendertyp"
|
21302 |
|
21303 |
-
#: wppa-tinymce-shortcodes.php:
|
21304 |
#, fuzzy
|
21305 |
msgid "By EXIF date"
|
21306 |
msgstr "Fotos nach EXIF-Datum"
|
21307 |
|
21308 |
-
#: wppa-tinymce-shortcodes.php:
|
21309 |
#, fuzzy
|
21310 |
msgid "By date of upload"
|
21311 |
msgstr "Fotos nach Datum hochladen"
|
21312 |
|
21313 |
-
#: wppa-tinymce-shortcodes.php:
|
21314 |
#, fuzzy
|
21315 |
msgid "By date last modified"
|
21316 |
msgstr "Fotos nach Datum Änderung"
|
21317 |
|
21318 |
-
#: wppa-tinymce-shortcodes.php:
|
21319 |
#, fuzzy
|
21320 |
msgid "Last date first"
|
21321 |
msgstr "Letztes Datum zuerst"
|
21322 |
|
21323 |
-
#: wppa-tinymce-shortcodes.php:
|
21324 |
#, fuzzy
|
21325 |
msgid "Initially display all"
|
21326 |
msgstr "Zu Beginn sind alle anzeigen"
|
21327 |
|
21328 |
-
#: wppa-tinymce-shortcodes.php:
|
21329 |
#, fuzzy
|
21330 |
msgid ""
|
21331 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
@@ -21334,7 +21290,7 @@ msgstr ""
|
|
21334 |
"Für reaktions mit einem festen Maximum, fügen Sie die max Auto zB <span "
|
21335 |
"style=\"color:blue\" >Auto, 550</span>"
|
21336 |
|
21337 |
-
#: wppa-tinymce-shortcodes.php:
|
21338 |
#, fuzzy
|
21339 |
msgid ""
|
21340 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
@@ -21343,12 +21299,12 @@ msgstr ""
|
|
21343 |
"Dies ist eine Vorschau der Shortcode, der erzeugt wird. Sie können den "
|
21344 |
"Kommentar bearbeiten"
|
21345 |
|
21346 |
-
#: wppa-tinymce-shortcodes.php:
|
21347 |
#, fuzzy
|
21348 |
msgid "insert Gallery"
|
21349 |
msgstr "Bildergalerie"
|
21350 |
|
21351 |
-
#: wppa-tinymce-shortcodes.php:
|
21352 |
#, fuzzy
|
21353 |
msgid "Please complete the shortcode specs"
|
21354 |
msgstr "Bitte vervollständigen Sie die Short specs"
|
@@ -21787,3 +21743,15 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
|
|
21787 |
#. Author URI of the plugin/theme
|
21788 |
msgid "http://wppa.opajaap.nl/"
|
21789 |
msgstr "http://wppa.opajaap.nl/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
+
"POT-Creation-Date: 2016-09-23 13:40+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-09-23 13:53+0200\n"
|
6 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
7 |
"Language-Team: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language: de_DE\n"
|
101 |
msgid "Settings file not found"
|
102 |
msgstr "Einstellungsdatei nicht gefunden"
|
103 |
|
104 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
105 |
+
#: wppa-ajax.php:2718
|
106 |
msgid "Please supply a numeric value greater than or equal to"
|
107 |
msgstr "Bitte geben Sie einen numerischen Wert größer als oder gleich zu"
|
108 |
|
109 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
110 |
+
#: wppa-ajax.php:2718
|
111 |
msgid "for"
|
112 |
msgstr "für"
|
113 |
|
114 |
+
#: wppa-admin-functions.php:208 wppa-ajax.php:2718
|
115 |
msgid "and less than or equal to"
|
116 |
msgstr "und kleiner oder gleich zu"
|
117 |
|
210 |
msgstr "Nicht unterstützten MIME-Typ begegnet:"
|
211 |
|
212 |
#: wppa-admin-functions.php:875
|
|
|
213 |
msgid "Album not known while trying to add a photo"
|
214 |
msgstr "Album nicht bekannt bei dem Versuch, ein Foto hinzufügen"
|
215 |
|
216 |
#: wppa-admin-functions.php:879
|
217 |
+
#, php-format
|
218 |
msgid ""
|
219 |
"Album %s does not exist or is not accessable while trying to add a photo"
|
220 |
msgstr ""
|
221 |
+
"Album %s existiert nicht oder ist nicht erreichbar beim Versuch, ein Foto "
|
222 |
"hinzufügen"
|
223 |
|
224 |
#: wppa-admin-functions.php:898
|
|
|
225 |
msgid "Could not insert photo."
|
226 |
+
msgstr "Konnte Foto nicht einfügen."
|
227 |
|
228 |
#: wppa-admin-functions.php:934
|
|
|
229 |
msgid "ERROR: Unknown file or album."
|
230 |
+
msgstr "FEHLER: Unbekannt Datei oder Album."
|
231 |
|
232 |
#: wppa-admin.php:56
|
|
|
233 |
msgid "Photo Albums"
|
234 |
+
msgstr "Foto Alben"
|
235 |
|
236 |
#: wppa-admin.php:59 wppa-adminbar.php:40 wppa-settings-autosave.php:6061
|
|
|
237 |
msgid "Album Admin"
|
238 |
msgstr "Album Admin"
|
239 |
|
240 |
#: wppa-admin.php:60 wppa-adminbar.php:47 wppa-settings-autosave.php:6062
|
241 |
#: wppa-upload-widget.php:79 wppa-upload.php:119
|
|
|
242 |
msgid "Upload Photos"
|
243 |
msgstr "Fotos hochladen"
|
244 |
|
245 |
#: wppa-admin.php:63 wppa-adminbar.php:53
|
|
|
246 |
msgid "Edit Photos"
|
247 |
msgstr "Fotos bearbeiten"
|
248 |
|
249 |
#: wppa-admin.php:65 wppa-adminbar.php:61 wppa-import.php:168
|
250 |
#: wppa-settings-autosave.php:6063
|
|
|
251 |
msgid "Import Photos"
|
252 |
msgstr "Fotos importieren"
|
253 |
|
254 |
#: wppa-admin.php:66 wppa-adminbar.php:68
|
|
|
255 |
msgid "Moderate Photos"
|
256 |
+
msgstr "Fotos modrieren"
|
257 |
|
258 |
#: wppa-admin.php:67 wppa-adminbar.php:75 wppa-export.php:32
|
259 |
#: wppa-settings-autosave.php:6065
|
|
|
260 |
msgid "Export Photos"
|
261 |
msgstr "Fotos exportieren"
|
262 |
|
263 |
#: wppa-admin.php:68 wppa-adminbar.php:82 wppa-comment-admin.php:223
|
264 |
#: wppa-settings-autosave.php:6066
|
|
|
265 |
msgid "Settings"
|
266 |
+
msgstr "Einstellungen"
|
267 |
|
268 |
#: wppa-admin.php:69
|
|
|
269 |
msgid "Photo of the day Widget"
|
270 |
msgstr "Foto des Tages Widget"
|
271 |
|
272 |
#: wppa-admin.php:69 wppa-adminbar.php:89 wppa-potd-widget.php:60
|
273 |
#: wppa-settings-autosave.php:6067 wppa-setup.php:1589
|
|
|
274 |
msgid "Photo of the day"
|
275 |
msgstr "Foto des Tages"
|
276 |
|
277 |
#: wppa-admin.php:70
|
|
|
278 |
msgid "Manage comments"
|
279 |
msgstr "Kommentare verwalten"
|
280 |
|
281 |
#: wppa-admin.php:70 wppa-adminbar.php:96 wppa-settings-autosave.php:371
|
282 |
#: wppa-settings-autosave.php:3196 wppa-settings-autosave.php:8561
|
283 |
#: wppa-settings-autosave.php:8606
|
|
|
284 |
msgid "Comments"
|
285 |
msgstr "Kommentare"
|
286 |
|
287 |
#: wppa-admin.php:71
|
|
|
288 |
msgid "Help & Info"
|
289 |
+
msgstr "Hilfe und Info"
|
290 |
|
291 |
#: wppa-admin.php:71 wppa-adminbar.php:103
|
292 |
msgid "Documentation"
|
293 |
msgstr "Documentation"
|
294 |
|
295 |
#: wppa-admin.php:111
|
296 |
+
msgid "Uploading is temporary disabled for you"
|
297 |
+
msgstr "Das Hochladen ist vorübergehend deaktiviert für Sie"
|
|
|
298 |
|
299 |
#: wppa-admin.php:118
|
300 |
+
msgid "Editing is temporary disabled for you"
|
301 |
+
msgstr "Die Bearbeitung ist vorübergehend deaktiviert für Sie"
|
|
|
302 |
|
303 |
#: wppa-admin.php:125
|
304 |
+
msgid "Importing is temporary disabled for you"
|
305 |
+
msgstr "Importieren ist vorübergehend deaktiviert für Sie"
|
|
|
306 |
|
307 |
#: wppa-admin.php:128 wppa-import.php:1226
|
|
|
308 |
msgid "Import"
|
309 |
msgstr "Importieren"
|
310 |
|
311 |
#: wppa-admin.php:128 wppa-settings-autosave.php:9739
|
|
|
312 |
msgid "Update"
|
313 |
msgstr "Aktualisierung"
|
314 |
|
315 |
#: wppa-adminbar.php:110 wppa-album-navigator-widget.php:41
|
316 |
#: wppa-album-navigator-widget.php:88 wppa-album-widget.php:47
|
|
|
317 |
msgid "Photo Albums"
|
318 |
msgstr "Fotoalben"
|
319 |
|
320 |
#: wppa-admins-choice-widget.php:13
|
|
|
321 |
msgid "Admins choice of photos"
|
322 |
msgstr "Admins Wahl von Fotos"
|
323 |
|
324 |
#: wppa-admins-choice-widget.php:14 wppa-admins-choice-widget.php:34
|
325 |
#: wppa-admins-choice-widget.php:73
|
|
|
326 |
msgid "Admins Choice"
|
327 |
msgstr "Admins Wahl"
|
328 |
|
329 |
#: wppa-admins-choice-widget.php:44
|
|
|
330 |
msgid "This feature is not enabled"
|
331 |
msgstr "Diese Funktion ist nicht aktiviert."
|
332 |
|
333 |
#: wppa-admins-choice-widget.php:68
|
|
|
334 |
msgid "Please enable this feature in Table IV-A27"
|
335 |
msgstr "Bitte aktivieren Sie diese Funktion in der Tabelle IV-A27"
|
336 |
|
343 |
#: wppa-super-view-widget.php:73 wppa-tagcloud-widget.php:68
|
344 |
#: wppa-thumbnail-widget.php:184 wppa-topten-widget.php:323
|
345 |
#: wppa-upldr-widget.php:176 wppa-upload-widget.php:83
|
|
|
346 |
msgid "Title:"
|
347 |
msgstr "Titel:"
|
348 |
|
349 |
#: wppa-ajax.php:174
|
|
|
350 |
msgid ""
|
351 |
"All modifications are instantly updated on the server. The <b style=\"color:"
|
352 |
"#070\" >Remark</b> field keeps you informed on the actions taken at the "
|
357 |
"Hintergrund."
|
358 |
|
359 |
#: wppa-ajax.php:177
|
|
|
360 |
msgid "Exit & Refresh"
|
361 |
msgstr "Exit & Refresh"
|
362 |
|
363 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
364 |
+
#: wppa-ajax.php:929 wppa-ajax.php:2668
|
|
|
365 |
msgid "Security check failure"
|
366 |
msgstr "Sicherheitsfehler"
|
367 |
|
368 |
#: wppa-ajax.php:284 wppa-ajax.php:340
|
|
|
369 |
msgid "You do not have the rights to moderate photos this way"
|
370 |
msgstr "Sie haben nicht die Rechte Fotos auf diese Weise zu moderieren"
|
371 |
|
372 |
+
#: wppa-ajax.php:300 wppa-ajax.php:1233 wppa-functions.php:2339
|
|
|
373 |
msgid "Photo comment approved"
|
374 |
msgstr "Foto Kommentar genehmigt"
|
375 |
|
376 |
#: wppa-ajax.php:313
|
377 |
+
#, php-format
|
378 |
msgid "Failed to update stutus of photo %s"
|
379 |
+
msgstr "Fehlgeschlagen stutus von Foto %s zu aktualisieren"
|
380 |
|
381 |
#: wppa-ajax.php:313 wppa-ajax.php:320
|
|
|
382 |
msgid "Please refresh the page"
|
383 |
msgstr "Bitte aktualisieren Sie die Seite."
|
384 |
|
385 |
#: wppa-ajax.php:320
|
386 |
+
#, php-format
|
387 |
msgid "Failed to update stutus of comment %s"
|
388 |
+
msgstr "Fehlgeschlagen stutus von Kommentar %s zu aktualisieren"
|
389 |
|
390 |
#: wppa-ajax.php:335 wppa-ajax.php:355
|
|
|
391 |
msgid "Photo removed"
|
392 |
msgstr "Foto entfernt"
|
393 |
|
394 |
#: wppa-ajax.php:360
|
|
|
395 |
msgid "Comment removed"
|
396 |
+
msgstr "Kommentar entfernt"
|
397 |
|
398 |
#: wppa-ajax.php:361
|
|
|
399 |
msgid "Could not remove comment"
|
400 |
+
msgstr "Konnte Kommentar nicht entfernen"
|
401 |
|
402 |
#: wppa-ajax.php:364 wppa-ajax.php:795
|
|
|
403 |
msgid "Unexpected error"
|
404 |
+
msgstr "Unerwarteter Fehler"
|
405 |
|
406 |
#: wppa-ajax.php:370
|
|
|
407 |
msgid "This feature is not enabled on this website"
|
408 |
msgstr "Diese Funktion ist nicht auf dieser Website aktiviert"
|
409 |
|
410 |
#: wppa-ajax.php:382
|
|
|
411 |
msgid "The album is empty"
|
412 |
+
msgstr "Das Album ist leer"
|
413 |
|
414 |
#: wppa-ajax.php:391 wppa-ajax.php:470 wppa-ajax.php:592
|
|
|
415 |
msgid "Unable to create zip archive"
|
416 |
+
msgstr "Konnte kein Zip-Archiv erstellen"
|
417 |
|
418 |
#: wppa-ajax.php:403
|
419 |
+
#, php-format
|
420 |
msgid "Unable to create zip archive. code = %s"
|
421 |
+
msgstr "Kann Zip-Archiv nicht erstellen. Code =%s"
|
422 |
|
423 |
#: wppa-ajax.php:440
|
424 |
+
#, php-format
|
425 |
msgid "Only %s out of %s photos could be added to the zipfile"
|
426 |
+
msgstr "Nur %s Fotos aus %s könnten auf die ZIP-Datei hinzugefügt werden "
|
427 |
|
428 |
#: wppa-ajax.php:478
|
|
|
429 |
msgid "Unable to create zipsdir"
|
430 |
+
msgstr "Unfähig zipsdir zo erstellen"
|
431 |
|
432 |
#: wppa-ajax.php:503 wppa-functions.php:2137 wppa-thumbnails.php:616
|
|
|
433 |
msgid "Selected"
|
434 |
msgstr "Ausgewählt"
|
435 |
|
436 |
#: wppa-ajax.php:533
|
|
|
437 |
msgid "Unknown source of request"
|
438 |
msgstr "Unbekannte Quelle der Anfrage"
|
439 |
|
440 |
#: wppa-ajax.php:551
|
|
|
441 |
msgid "Empty filename"
|
442 |
msgstr "Leerer Dateiname"
|
443 |
|
444 |
#: wppa-ajax.php:578
|
|
|
445 |
msgid "Unable to create tempdir"
|
446 |
+
msgstr "Unfähig tempdir zu erstellen"
|
447 |
|
448 |
#: wppa-ajax.php:602
|
|
|
449 |
msgid "Unknown type"
|
450 |
+
msgstr "Unbekannter Typ"
|
451 |
|
452 |
#: wppa-ajax.php:611
|
|
|
453 |
msgid "The photo does no longer exist"
|
454 |
msgstr "Das Foto existiert nicht mehr"
|
455 |
|
456 |
#: wppa-ajax.php:643
|
|
|
457 |
msgid "An error occurred while processing you rating request."
|
458 |
+
msgstr ""
|
459 |
+
"Während Ihrer Anfrage ein Stimme ze regstrieren ist ein Fehler aufgetreten"
|
460 |
|
461 |
#: wppa-ajax.php:644
|
|
|
462 |
msgid "Maybe you opened the page too long ago to recognize you."
|
463 |
+
msgstr "Vielleicht eröffnet Ihnen die Seite zu lange her."
|
464 |
|
465 |
#: wppa-ajax.php:645
|
|
|
466 |
msgid "You may refresh the page and try again."
|
467 |
msgstr "Sie können die Seite aktualisieren und versuchen Sie es erneut."
|
468 |
|
469 |
#: wppa-ajax.php:646
|
|
|
470 |
msgid ""
|
471 |
"Althoug an error occurred while processing your rating, your vote has been "
|
472 |
"registered."
|
473 |
msgstr ""
|
474 |
+
"Unbedingt dass ein Fehler aufgetreten ist während die Verarbeitung der "
|
475 |
+
"Bewertung der, wurde Ihre Stimme registriert."
|
476 |
|
477 |
#: wppa-ajax.php:647
|
|
|
478 |
msgid "However, this may not be reflected in the current pageview"
|
479 |
msgstr "Dies kann jedoch nicht in der aktuellen Seitenzugriff widerspiegeln"
|
480 |
|
481 |
#: wppa-ajax.php:676
|
|
|
482 |
msgid "Photo has been removed."
|
483 |
msgstr "Foto wurde entfernt."
|
484 |
|
485 |
#: wppa-ajax.php:688 wppa-slideshow.php:743
|
|
|
486 |
msgid "Sorry, you can not rate your own photos"
|
487 |
+
msgstr "Sorry, Sie können Ihre eigenen Fotos nicht bewerten"
|
488 |
|
489 |
#: wppa-ajax.php:700
|
|
|
490 |
msgid "Please enter a comment."
|
491 |
msgstr "Bitte geben Sie einen Kommentar ein."
|
492 |
|
493 |
#: wppa-ajax.php:727
|
|
|
494 |
msgid "You can not change your vote"
|
495 |
+
msgstr "Sie können Ihre Stimme nicht ändern"
|
496 |
|
497 |
#: wppa-ajax.php:733
|
|
|
498 |
msgid "You can not change a dislike"
|
499 |
+
msgstr "Sie können eine Abneigung nicht ändern"
|
500 |
|
501 |
#: wppa-ajax.php:739
|
502 |
#, fuzzy
|
523 |
"abgeschlossen haben, können Sie die Seite aktualisieren Ihre Stimme wurde "
|
524 |
"wirksam zu sehen."
|
525 |
|
526 |
+
#: wppa-ajax.php:925
|
527 |
#, fuzzy
|
528 |
msgid "You do not have the rights to delete a photo"
|
529 |
msgstr "Sie haben nicht die Rechte, ein Foto zu löschen"
|
530 |
|
531 |
+
#: wppa-ajax.php:935
|
532 |
#, fuzzy, php-format
|
533 |
msgid "Photo %s has been deleted"
|
534 |
msgstr "Foto%s wurde gelöscht"
|
535 |
|
536 |
+
#: wppa-ajax.php:951
|
537 |
#, fuzzy
|
538 |
msgid "You do not have the rights to update album information"
|
539 |
msgstr "Sie haben nicht die Rechte Album-Informationen zu aktualisieren"
|
540 |
|
541 |
+
#: wppa-ajax.php:963
|
542 |
#, fuzzy
|
543 |
msgid "<b>Ratings cleared</b>"
|
544 |
msgstr "<b>Bewertungen gelöscht</b>"
|
545 |
|
546 |
+
#: wppa-ajax.php:963 wppa-ajax.php:969 wppa-photo-admin-autosave.php:318
|
547 |
#, fuzzy
|
548 |
msgid "No ratings for this photo."
|
549 |
msgstr "Keine Bewertungen für dieses Foto."
|
550 |
|
551 |
+
#: wppa-ajax.php:966
|
552 |
#, fuzzy
|
553 |
msgid "An error occurred while clearing ratings"
|
554 |
msgstr "Ein Fehler ist aufgetreten, während Bewertungen Clearing"
|
555 |
|
556 |
+
#: wppa-ajax.php:969 wppa-ajax.php:990 wppa-ajax.php:1012
|
557 |
#, fuzzy
|
558 |
msgid "<b>No photos in this album</b>"
|
559 |
msgstr "<b>Keine Fotos in diesem Album</b>"
|
560 |
|
561 |
+
#: wppa-ajax.php:984
|
562 |
#, fuzzy
|
563 |
msgid "<b>Tags set to defaults</b> (reload)"
|
564 |
msgstr "<b>Stichworte auf Standardwerte</b> (neu laden)"
|
565 |
|
566 |
+
#: wppa-ajax.php:987
|
567 |
#, fuzzy
|
568 |
msgid "An error occurred while setting tags"
|
569 |
msgstr "Ein Fehler ist aufgetreten, während Tags Einstellung"
|
570 |
|
571 |
+
#: wppa-ajax.php:1006
|
572 |
#, fuzzy
|
573 |
msgid "<b>Tags added width defaults</b> (reload)"
|
574 |
msgstr "<b>Tags hinzugefügt Breite defaults</b> (neu laden)"
|
575 |
|
576 |
+
#: wppa-ajax.php:1009
|
577 |
#, fuzzy
|
578 |
msgid "An error occurred while adding tags"
|
579 |
msgstr "Fehler beim Hinzufügen von Tags"
|
580 |
|
581 |
+
#: wppa-ajax.php:1035
|
582 |
#, fuzzy
|
583 |
msgid "No subalbums found to process"
|
584 |
msgstr "Keine Unteralben zu verarbeiten gefunden"
|
585 |
|
586 |
+
#: wppa-ajax.php:1040
|
587 |
#, fuzzy
|
588 |
msgid "No categories found to process"
|
589 |
msgstr "Keine Kategorien zu verarbeiten gefunden"
|
590 |
|
591 |
+
#: wppa-ajax.php:1044
|
592 |
#, php-format
|
593 |
msgid "%d album updated"
|
594 |
msgid_plural "%d albums updated"
|
595 |
msgstr[0] "%d Album aktualisiert"
|
596 |
msgstr[1] "%d Album aktualisiert"
|
597 |
|
598 |
+
#: wppa-ajax.php:1051
|
599 |
#, fuzzy, php-format
|
600 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
601 |
msgstr "Name des Albums darf nicht leer sein. <br /> Reset <b>to%s</b>"
|
602 |
|
603 |
+
#: wppa-ajax.php:1053 wppa-ajax.php:1493 wppa-album-admin-autosave.php:393
|
604 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
605 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
606 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
623 |
msgid "Name"
|
624 |
msgstr "Name"
|
625 |
|
626 |
+
#: wppa-ajax.php:1056 wppa-ajax.php:1496 wppa-album-admin-autosave.php:1109
|
627 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
628 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
629 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
645 |
msgid "Description"
|
646 |
msgstr "Album Beschreibung eingeben"
|
647 |
|
648 |
+
#: wppa-ajax.php:1060
|
649 |
#, fuzzy
|
650 |
msgid "Unbalanced tags in album description!"
|
651 |
msgstr "Unsymmetrische Tags in Albumbeschreibung!"
|
652 |
|
653 |
+
#: wppa-ajax.php:1067
|
654 |
#, fuzzy
|
655 |
msgid "Album order #"
|
656 |
msgstr "Album bestellen #"
|
657 |
|
658 |
+
#: wppa-ajax.php:1070
|
659 |
#, fuzzy
|
660 |
msgid "Cover photo"
|
661 |
msgstr "Titelbild"
|
662 |
|
663 |
+
#: wppa-ajax.php:1073
|
664 |
#, fuzzy
|
665 |
msgid "Parent album"
|
666 |
msgstr "Übergeordnetes Album"
|
667 |
|
668 |
+
#: wppa-ajax.php:1078 wppa-settings-autosave.php:4031
|
669 |
#, fuzzy
|
670 |
msgid "Photo order"
|
671 |
msgstr "Bildersortierung"
|
672 |
|
673 |
+
#: wppa-ajax.php:1081
|
674 |
#, fuzzy
|
675 |
msgid "Use Alt thumbsize"
|
676 |
msgstr "Mit Alt thumbsize"
|
677 |
|
678 |
+
#: wppa-ajax.php:1084
|
679 |
#, fuzzy
|
680 |
msgid "Cover Type"
|
681 |
msgstr "Cover-Typ"
|
682 |
|
683 |
+
#: wppa-ajax.php:1087 wppa-settings-autosave.php:5023
|
684 |
#: wppa-settings-autosave.php:6029
|
685 |
#, fuzzy
|
686 |
msgid "Link type"
|
687 |
msgstr "Verknüpfungstyp"
|
688 |
|
689 |
+
#: wppa-ajax.php:1090 wppa-album-covers.php:1305
|
690 |
msgid "Link to"
|
691 |
msgstr "Link zu"
|
692 |
|
693 |
+
#: wppa-ajax.php:1093 wppa-ajax.php:1517 wppa-album-admin-autosave.php:1120
|
694 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
695 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
696 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
698 |
msgid "Owner"
|
699 |
msgstr "Inhaber"
|
700 |
|
701 |
+
#: wppa-ajax.php:1095
|
702 |
#, fuzzy, php-format
|
703 |
msgid "User %s does not exist"
|
704 |
msgstr "Benutzer \"%s\" nicht vorhanden"
|
705 |
|
706 |
+
#: wppa-ajax.php:1100 wppa-ajax.php:1106
|
707 |
#, fuzzy
|
708 |
msgid "Upload limit count"
|
709 |
msgstr "Upload-Limit Zahl"
|
710 |
|
711 |
+
#: wppa-ajax.php:1113
|
712 |
#, fuzzy
|
713 |
msgid "Upload limit time"
|
714 |
msgstr "Hochladebegrenzung"
|
715 |
|
716 |
+
#: wppa-ajax.php:1117
|
717 |
#, fuzzy
|
718 |
msgid "Default tags"
|
719 |
msgstr "Default-Tags"
|
720 |
|
721 |
+
#: wppa-ajax.php:1122
|
722 |
#, fuzzy
|
723 |
msgid "Categories"
|
724 |
msgstr "Kategorien"
|
725 |
|
726 |
+
#: wppa-ajax.php:1125
|
727 |
#, fuzzy
|
728 |
msgid "Sub albums sort order"
|
729 |
msgstr "Unteralben sortieren bestellen"
|
730 |
|
731 |
+
#: wppa-ajax.php:1133 wppa-ajax.php:1587
|
732 |
#, fuzzy
|
733 |
msgid "Schedule date/time"
|
734 |
msgstr "Geplantes Datum / Zeit"
|
735 |
|
736 |
+
#: wppa-ajax.php:1146 wppa-ajax.php:1198
|
737 |
#, fuzzy, php-format
|
738 |
msgid "<b>%s</b> of album %s updated"
|
739 |
msgstr "<b>%s</b> Album%s aktualisiert"
|
740 |
|
741 |
+
#: wppa-ajax.php:1154
|
742 |
#, fuzzy
|
743 |
msgid "All photos set to scheduled per date"
|
744 |
msgstr "Alle Fotos auf pro Tag geplant"
|
745 |
|
746 |
+
#: wppa-ajax.php:1181
|
747 |
#, fuzzy, php-format
|
748 |
msgid "<b>Custom field %s</b> updated"
|
749 |
msgstr "Benutzerdefiniertes Feld aktualisiert."
|
750 |
|
751 |
+
#: wppa-ajax.php:1207
|
752 |
#, fuzzy, php-format
|
753 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
754 |
msgstr "Ein Fehler beim Versuch , <b>%s</b> Album%s zu aktualisieren"
|
755 |
|
756 |
+
#: wppa-ajax.php:1208 wppa-ajax.php:1471 wppa-ajax.php:1577
|
757 |
#, fuzzy
|
758 |
msgid "Press CTRL+F5 and try again."
|
759 |
msgstr "Drücken Sie STRG F5 und versuchen Sie es erneut."
|
760 |
|
761 |
+
#: wppa-ajax.php:1222
|
762 |
#, fuzzy
|
763 |
msgid "You do not have the rights to update comment status"
|
764 |
msgstr "Sie haben nicht die Rechte Kommentar Status zu aktualisieren"
|
765 |
|
766 |
+
#: wppa-ajax.php:1239
|
767 |
#, fuzzy, php-format
|
768 |
msgid "Status of comment #%s updated"
|
769 |
msgstr "Status Kommentar #%s aktualisiert"
|
770 |
|
771 |
+
#: wppa-ajax.php:1242
|
772 |
#, fuzzy, php-format
|
773 |
msgid "Error updating status comment #%s"
|
774 |
msgstr "Fehler beim Aktualisieren der Status Kommentar #%s"
|
775 |
|
776 |
+
#: wppa-ajax.php:1253
|
777 |
#, fuzzy
|
778 |
msgid "You do not have the rights to change photos"
|
779 |
msgstr "Sie haben nicht die Rechte Fotos zu ändern"
|
780 |
|
781 |
+
#: wppa-ajax.php:1262
|
782 |
#, fuzzy
|
783 |
msgid "Watermark applied"
|
784 |
msgstr "Wasserzeichen eingefügt werden"
|
785 |
|
786 |
+
#: wppa-ajax.php:1266
|
787 |
#, fuzzy
|
788 |
msgid "An error occured while trying to apply a watermark"
|
789 |
msgstr ""
|
790 |
"Ein Fehler ist aufgetreten bei dem Versuch, ein Wasserzeichen zu beantragen"
|
791 |
|
792 |
+
#: wppa-ajax.php:1285
|
793 |
#, fuzzy
|
794 |
msgid "You do not have the rights to update photo information"
|
795 |
msgstr "Sie haben nicht die Rechte Foto Informationen zu aktualisieren"
|
796 |
|
797 |
+
#: wppa-ajax.php:1291
|
798 |
#, fuzzy, php-format
|
799 |
msgid "%s updated to %s."
|
800 |
msgstr "%s%s aktualisiert."
|
801 |
|
802 |
+
#: wppa-ajax.php:1341
|
803 |
#, fuzzy, php-format
|
804 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
805 |
msgstr "Formatfehler%s. Müssen jjjj: mm: tt hh: mm: ss"
|
806 |
|
807 |
+
#: wppa-ajax.php:1345
|
808 |
#, fuzzy
|
809 |
msgid "Exif date/time updated"
|
810 |
msgstr "Exif Datum / Uhrzeit aktualisiert"
|
811 |
|
812 |
+
#: wppa-ajax.php:1351
|
813 |
#, fuzzy
|
814 |
msgid "Enter a value > -90 and < 90"
|
815 |
msgstr "Geben Sie einen Wert> -90 und <90"
|
816 |
|
817 |
+
#: wppa-ajax.php:1359
|
818 |
#, fuzzy
|
819 |
msgid "Lattitude updated"
|
820 |
msgstr "Lattitude aktualisiert"
|
821 |
|
822 |
+
#: wppa-ajax.php:1361
|
823 |
#, fuzzy
|
824 |
msgid "Could not update lattitude"
|
825 |
msgstr "Konnte nicht aktualisiert werden lattitude"
|
826 |
|
827 |
+
#: wppa-ajax.php:1367
|
828 |
#, fuzzy
|
829 |
msgid "Enter a value > -180 and < 180"
|
830 |
msgstr "Geben Sie einen Wert> -180 und <180"
|
831 |
|
832 |
+
#: wppa-ajax.php:1375
|
833 |
#, fuzzy
|
834 |
msgid "Longitude updated"
|
835 |
msgstr "Länge aktualisiert"
|
836 |
|
837 |
+
#: wppa-ajax.php:1377
|
838 |
#, fuzzy
|
839 |
msgid "Could not update longitude"
|
840 |
msgstr "Konnte nicht aktualisieren Länge"
|
841 |
|
842 |
+
#: wppa-ajax.php:1385
|
843 |
#, fuzzy
|
844 |
msgid "Photo files remade"
|
845 |
msgstr "Fotodateien neu gemacht"
|
846 |
|
847 |
+
#: wppa-ajax.php:1388
|
848 |
#, fuzzy
|
849 |
msgid "Could not remake files"
|
850 |
msgstr "Konnte nicht Dateien Remake"
|
851 |
|
852 |
+
#: wppa-ajax.php:1394
|
853 |
#, fuzzy
|
854 |
msgid "Thumbnail remade"
|
855 |
msgstr "Thumbnail neu gemacht"
|
856 |
|
857 |
+
#: wppa-ajax.php:1397
|
858 |
#, fuzzy
|
859 |
msgid "Could not remake thumbnail"
|
860 |
msgstr "Konnte nicht Thumbnail Remake"
|
861 |
|
862 |
+
#: wppa-ajax.php:1407 wppa-photo-admin-autosave.php:184 wppa-potd-admin.php:100
|
863 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
864 |
+
#: wppa-tinymce-shortcodes.php:627
|
865 |
#, fuzzy
|
866 |
msgid "left"
|
867 |
msgstr "links"
|
868 |
|
869 |
+
#: wppa-ajax.php:1411 wppa-photo-admin-autosave.php:186
|
870 |
#, fuzzy
|
871 |
msgid "180°"
|
872 |
msgstr "180 °"
|
873 |
|
874 |
+
#: wppa-ajax.php:1415 wppa-photo-admin-autosave.php:188 wppa-potd-admin.php:100
|
875 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
876 |
+
#: wppa-tinymce-shortcodes.php:629
|
877 |
#, fuzzy
|
878 |
msgid "right"
|
879 |
msgstr "rechts"
|
880 |
|
881 |
+
#: wppa-ajax.php:1423
|
882 |
#, fuzzy, php-format
|
883 |
msgid "Photo %s rotated %s"
|
884 |
msgstr "Foto%s gedreht%s"
|
885 |
|
886 |
+
#: wppa-ajax.php:1426
|
887 |
#, fuzzy, php-format
|
888 |
msgid "An error occurred while trying to rotate photo %s"
|
889 |
msgstr "Ein Fehler beim Versuch, das Foto zu drehen%s"
|
890 |
|
891 |
+
#: wppa-ajax.php:1436 wppa-ajax.php:1459 wppa-photo-admin-autosave.php:1100
|
892 |
#: wppa-photo-admin-autosave.php:1118
|
893 |
#, fuzzy, php-format
|
894 |
msgid "A photo with filename %s already exists in album %s."
|
895 |
msgstr "Ein Foto mit dem Dateinamen%s existiert bereits in Album%s."
|
896 |
|
897 |
+
#: wppa-ajax.php:1446
|
898 |
#, fuzzy, php-format
|
899 |
msgid "Photo %s has been moved to album %s (%s)"
|
900 |
msgstr "Foto%s wurde auf Album%s (%s) bewegt"
|
901 |
|
902 |
+
#: wppa-ajax.php:1449
|
903 |
#, fuzzy, php-format
|
904 |
msgid "An error occurred while trying to move photo %s"
|
905 |
msgstr "Ein Fehler beim Versuch, das Foto zu bewegen%s"
|
906 |
|
907 |
+
#: wppa-ajax.php:1467
|
908 |
#, fuzzy, php-format
|
909 |
msgid "Photo %s copied to album %s (%s)"
|
910 |
msgstr "Foto%s kopiert Album%s (%s)"
|
911 |
|
912 |
+
#: wppa-ajax.php:1470
|
913 |
#, fuzzy, php-format
|
914 |
msgid "An error occurred while trying to copy photo %s"
|
915 |
msgstr "Ein Fehler beim Versuch, das Foto zu kopieren%s"
|
916 |
|
917 |
+
#: wppa-ajax.php:1500 wppa-ajax.php:2142
|
918 |
#, fuzzy
|
919 |
msgid "Unbalanced tags in photo description!"
|
920 |
msgstr "Unsymmetrische Tags in fotobeschreibung!"
|
921 |
|
922 |
+
#: wppa-ajax.php:1506
|
923 |
#, fuzzy
|
924 |
msgid "Photo order #"
|
925 |
msgstr "Bildersortierung"
|
926 |
|
927 |
+
#: wppa-ajax.php:1511
|
928 |
#, fuzzy, php-format
|
929 |
msgid "User %s does not exists"
|
930 |
msgstr "Benutzer%s existiert nicht"
|
931 |
|
932 |
+
#: wppa-ajax.php:1520
|
933 |
#, fuzzy
|
934 |
msgid "Link url"
|
935 |
msgstr "Link URL"
|
936 |
|
937 |
+
#: wppa-ajax.php:1523
|
938 |
#, fuzzy
|
939 |
msgid "Link title"
|
940 |
msgstr "Link Titel"
|
941 |
|
942 |
+
#: wppa-ajax.php:1526
|
943 |
#, fuzzy
|
944 |
msgid "Link target"
|
945 |
msgstr "Link-Ziel"
|
946 |
|
947 |
+
#: wppa-ajax.php:1532 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
|
948 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
949 |
#, fuzzy
|
950 |
msgid "Photo Tags"
|
951 |
msgstr "Foto-Tags"
|
952 |
|
953 |
+
#: wppa-ajax.php:1537 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
954 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
955 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
956 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
959 |
msgid "Status"
|
960 |
msgstr "Status"
|
961 |
|
962 |
+
#: wppa-ajax.php:1540
|
963 |
#, fuzzy
|
964 |
msgid "HTML Alt"
|
965 |
msgstr "HTML Alt"
|
966 |
|
967 |
+
#: wppa-ajax.php:1544
|
968 |
#, fuzzy
|
969 |
msgid "Video width"
|
970 |
msgstr "Breite des Videos"
|
971 |
|
972 |
+
#: wppa-ajax.php:1546 wppa-ajax.php:1553
|
973 |
#, fuzzy
|
974 |
msgid "Please enter an integer value >= 0"
|
975 |
msgstr "Bitte geben Sie einen ganzzahligen Wert =%1 ein."
|
976 |
|
977 |
+
#: wppa-ajax.php:1551
|
978 |
#, fuzzy
|
979 |
msgid "Video height"
|
980 |
msgstr "Video Höhe"
|
981 |
|
982 |
+
#: wppa-ajax.php:1569 wppa-ajax.php:1603
|
983 |
#, fuzzy, php-format
|
984 |
msgid "<b>%s</b> of video %s updated"
|
985 |
msgstr "<b>%s</b> von Video%s aktualisiert"
|
986 |
|
987 |
+
#: wppa-ajax.php:1572 wppa-ajax.php:1606
|
988 |
#, fuzzy, php-format
|
989 |
msgid "<b>%s</b> of photo %s updated"
|
990 |
msgstr "<b>%s</b> von Foto%s aktualisiert"
|
991 |
|
992 |
+
#: wppa-ajax.php:1576
|
993 |
#, fuzzy, php-format
|
994 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
995 |
msgstr "Ein Fehler beim Versuch , <b>%s</b> Foto%s zu aktualisieren"
|
996 |
|
997 |
+
#: wppa-ajax.php:1632
|
998 |
#, fuzzy, php-format
|
999 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
1000 |
msgstr "<b>Benutzerdefinierte Feld%s</b> von Foto%s aktualisiert"
|
1001 |
|
1002 |
+
#: wppa-ajax.php:1639
|
1003 |
#, fuzzy
|
1004 |
msgid "<b>Error during upload.</b>"
|
1005 |
msgstr "Fehler beim Datei-Upload."
|
1006 |
|
1007 |
+
#: wppa-ajax.php:1673
|
1008 |
#, fuzzy
|
1009 |
msgid "Photo files updated."
|
1010 |
msgstr "Foto-Dateien aktualisiert."
|
1011 |
|
1012 |
+
#: wppa-ajax.php:1678
|
1013 |
#, fuzzy
|
1014 |
msgid "Could not update files."
|
1015 |
msgstr "Konnte nicht Dateien aktualisieren."
|
1016 |
|
1017 |
+
#: wppa-ajax.php:1689
|
1018 |
#, fuzzy, php-format
|
1019 |
msgid "Stereo mode updated in %d milliseconds"
|
1020 |
msgstr "Stereo-Modus in% d Millisekunden aktualisiert"
|
1021 |
|
1022 |
+
#: wppa-ajax.php:1706 wppa-ajax.php:1748
|
1023 |
#, fuzzy
|
1024 |
msgid "You do not have the rights to update settings"
|
1025 |
msgstr "Sie haben nicht die Rechte-Einstellungen aktualisieren"
|
1026 |
|
1027 |
+
#: wppa-ajax.php:1742
|
1028 |
#, fuzzy
|
1029 |
msgid "You do not have the rights to update photo of the day settings"
|
1030 |
msgstr ""
|
1031 |
"Sie haben nicht die Rechte Foto des Tages Einstellungen zu aktualisieren"
|
1032 |
|
1033 |
+
#: wppa-ajax.php:1820
|
1034 |
#, fuzzy
|
1035 |
msgid "Capability granted"
|
1036 |
msgstr "Capability gewährt"
|
1037 |
|
1038 |
+
#: wppa-ajax.php:1825
|
1039 |
#, fuzzy
|
1040 |
msgid "Capability withdrawn"
|
1041 |
msgstr "Capability zurückgezogen"
|
1042 |
|
1043 |
+
#: wppa-ajax.php:1856
|
1044 |
#, fuzzy
|
1045 |
msgid "Column width."
|
1046 |
msgstr "Breite der Spalte"
|
1047 |
|
1048 |
+
#: wppa-ajax.php:1859
|
1049 |
#, fuzzy
|
1050 |
msgid "Initial width."
|
1051 |
msgstr "Ursprüngliche Breite"
|
1052 |
|
1053 |
+
#: wppa-ajax.php:1862
|
1054 |
#, fuzzy
|
1055 |
msgid "Full size."
|
1056 |
msgstr "Originalgröße"
|
1057 |
|
1058 |
+
#: wppa-ajax.php:1865
|
1059 |
#, fuzzy
|
1060 |
msgid "Max height."
|
1061 |
msgstr "Max. Höhe:"
|
1062 |
|
1063 |
+
#: wppa-ajax.php:1870
|
1064 |
#, fuzzy
|
1065 |
msgid "Thumbnail size."
|
1066 |
msgstr "Thumbnail Größe"
|
1067 |
|
1068 |
+
#: wppa-ajax.php:1874
|
1069 |
#, fuzzy
|
1070 |
msgid "Thumbnail frame width"
|
1071 |
msgstr "Rahmenbreite des Minibildes:"
|
1072 |
|
1073 |
+
#: wppa-ajax.php:1878
|
1074 |
#, fuzzy
|
1075 |
msgid "Thumbnail frame height"
|
1076 |
msgstr "Miniaturrahmenhöhe"
|
1077 |
|
1078 |
+
#: wppa-ajax.php:1881
|
1079 |
#, fuzzy
|
1080 |
msgid "Thumbnail Spacing"
|
1081 |
msgstr "Thumbnail-Abstand"
|
1082 |
|
1083 |
+
#: wppa-ajax.php:1884
|
1084 |
#, fuzzy
|
1085 |
msgid "Photocount treshold."
|
1086 |
msgstr "Photocount treshold."
|
1087 |
|
1088 |
+
#: wppa-ajax.php:1887
|
1089 |
#, fuzzy
|
1090 |
msgid "Thumb page size."
|
1091 |
msgstr "Thumb Seitengröße."
|
1092 |
|
1093 |
+
#: wppa-ajax.php:1890
|
1094 |
#, fuzzy
|
1095 |
msgid "Cover photo size."
|
1096 |
msgstr "Coverbild Größe"
|
1097 |
|
1098 |
+
#: wppa-ajax.php:1893
|
1099 |
#, fuzzy
|
1100 |
msgid "Album page size."
|
1101 |
msgstr "Größe der Album Seite"
|
1102 |
|
1103 |
+
#: wppa-ajax.php:1896
|
1104 |
#, fuzzy
|
1105 |
msgid "Number of TopTen photos"
|
1106 |
msgstr "Anzahl der TopTen Fotos"
|
1107 |
|
1108 |
+
#: wppa-ajax.php:1899
|
1109 |
#, fuzzy
|
1110 |
msgid "Widget image thumbnail size"
|
1111 |
msgstr "Widget Bild Miniaturgröße"
|
1112 |
|
1113 |
+
#: wppa-ajax.php:1902 wppa-settings-autosave.php:1105
|
1114 |
#, fuzzy
|
1115 |
msgid "Max Cover width"
|
1116 |
msgstr "Max Deckbreite"
|
1117 |
|
1118 |
+
#: wppa-ajax.php:1905
|
1119 |
#, fuzzy
|
1120 |
msgid "Minimal description height"
|
1121 |
msgstr "Minimale Beschreibung Höhe"
|
1122 |
|
1123 |
+
#: wppa-ajax.php:1908
|
1124 |
#, fuzzy
|
1125 |
msgid "Minimal cover height"
|
1126 |
msgstr "Minimale Abdeckung Höhe"
|
1127 |
|
1128 |
+
#: wppa-ajax.php:1911
|
1129 |
#, fuzzy
|
1130 |
msgid "Minimal text frame height"
|
1131 |
msgstr "Minimale Rahmenhöhe"
|
1132 |
|
1133 |
+
#: wppa-ajax.php:1914 wppa-settings-autosave.php:1402
|
1134 |
#, fuzzy
|
1135 |
msgid "Border width"
|
1136 |
msgstr "Rahmenbreite"
|
1137 |
|
1138 |
+
#: wppa-ajax.php:1917 wppa-settings-autosave.php:776
|
1139 |
#: wppa-settings-autosave.php:1411
|
1140 |
#, fuzzy
|
1141 |
msgid "Border radius"
|
1142 |
msgstr "Rahmen Radius"
|
1143 |
|
1144 |
+
#: wppa-ajax.php:1920 wppa-settings-autosave.php:787
|
1145 |
#, fuzzy
|
1146 |
msgid "Box spacing"
|
1147 |
msgstr "Box Abstand"
|
1148 |
|
1149 |
+
#: wppa-ajax.php:1926 wppa-settings-autosave.php:1080
|
1150 |
#, fuzzy
|
1151 |
msgid "Popup size"
|
1152 |
msgstr "Popup-Größe"
|
1153 |
|
1154 |
+
#: wppa-ajax.php:1929
|
1155 |
#, fuzzy
|
1156 |
msgid "Fullsize border width"
|
1157 |
msgstr "Fullsize Randbreite"
|
1158 |
|
1159 |
+
#: wppa-ajax.php:1932
|
1160 |
#, fuzzy
|
1161 |
msgid "Lightbox Bordersize"
|
1162 |
msgstr "Lightbox Bordersize"
|
1163 |
|
1164 |
+
#: wppa-ajax.php:1935
|
1165 |
#, fuzzy
|
1166 |
msgid "Lightbox Borderwidth"
|
1167 |
msgstr "Lightbox Border"
|
1168 |
|
1169 |
+
#: wppa-ajax.php:1938
|
1170 |
#, fuzzy
|
1171 |
msgid "Lightbox Borderradius"
|
1172 |
msgstr "Lightbox Borderradius"
|
1173 |
|
1174 |
+
#: wppa-ajax.php:1941
|
1175 |
#, fuzzy
|
1176 |
msgid "Number of Comment widget entries"
|
1177 |
msgstr "Anzahl der Kommentar-Widget Einträge"
|
1178 |
|
1179 |
+
#: wppa-ajax.php:1944
|
1180 |
#, fuzzy
|
1181 |
msgid "Comment Widget image thumbnail size"
|
1182 |
msgstr "Kommentar Widget Bild Miniaturgröße"
|
1183 |
|
1184 |
+
#: wppa-ajax.php:1947 wppa-ajax.php:1950 wppa-ajax.php:1953
|
1185 |
#, fuzzy
|
1186 |
msgid "Opacity."
|
1187 |
msgstr "Deckkraft"
|
1188 |
|
1189 |
+
#: wppa-ajax.php:1962 wppa-settings-autosave.php:1211
|
1190 |
#, fuzzy
|
1191 |
msgid "Avatar size"
|
1192 |
msgstr "Avatar-Grösse"
|
1193 |
|
1194 |
+
#: wppa-ajax.php:1965 wppa-ajax.php:1968
|
1195 |
#, fuzzy
|
1196 |
msgid "Watermark opacity"
|
1197 |
msgstr "Deckkraft Wasserzeichen"
|
1198 |
|
1199 |
+
#: wppa-ajax.php:1971 wppa-settings-autosave.php:1380
|
1200 |
#, fuzzy
|
1201 |
msgid "Number of text lines"
|
1202 |
msgstr "Anzahl der Textzeilen"
|
1203 |
|
1204 |
+
#: wppa-ajax.php:1974 wppa-settings-autosave.php:4677
|
1205 |
#, fuzzy
|
1206 |
msgid "Overlay opacity"
|
1207 |
msgstr "Überlagerungsdeckkraft"
|
1208 |
|
1209 |
+
#: wppa-ajax.php:1977 wppa-settings-autosave.php:8014
|
1210 |
#, fuzzy
|
1211 |
msgid "Upload limit"
|
1212 |
msgstr "Hochladebegrenzung"
|
1213 |
|
1214 |
+
#: wppa-ajax.php:1980 wppa-settings-autosave.php:4347
|
1215 |
#, fuzzy
|
1216 |
msgid "Notify inappropriate"
|
1217 |
msgstr "Benachrichtigen Sie ungeeignet"
|
1218 |
|
1219 |
+
#: wppa-ajax.php:1983
|
1220 |
#, fuzzy
|
1221 |
msgid "Dislike pending"
|
1222 |
msgstr "Dislike angemeldet"
|
1223 |
|
1224 |
+
#: wppa-ajax.php:1986
|
1225 |
#, fuzzy
|
1226 |
msgid "Dislike delete"
|
1227 |
msgstr "Dislike löschen"
|
1228 |
|
1229 |
+
#: wppa-ajax.php:1989 wppa-settings-autosave.php:7550
|
1230 |
#, fuzzy
|
1231 |
msgid "Max execution time"
|
1232 |
msgstr "Max Durchführungszeit"
|
1233 |
|
1234 |
+
#: wppa-ajax.php:1995
|
1235 |
#, fuzzy
|
1236 |
msgid "myCRED / Cube Points"
|
1237 |
msgstr "myCRED / Cube-Punkte"
|
1238 |
|
1239 |
+
#: wppa-ajax.php:1998
|
1240 |
#, fuzzy
|
1241 |
msgid "JPG Image quality"
|
1242 |
msgstr "JPG Bildqualität"
|
1243 |
|
1244 |
+
#: wppa-ajax.php:2004 wppa-settings-autosave.php:4240
|
1245 |
#, fuzzy
|
1246 |
msgid "Number of coverphotos"
|
1247 |
msgstr "Anzahl der coverphotos"
|
1248 |
|
1249 |
+
#: wppa-ajax.php:2007 wppa-settings-autosave.php:4318
|
1250 |
#, fuzzy
|
1251 |
msgid "Dislike value"
|
1252 |
msgstr "Dislike Wert"
|
1253 |
|
1254 |
+
#: wppa-ajax.php:2010 wppa-settings-autosave.php:917
|
1255 |
#, fuzzy
|
1256 |
msgid "Slideshow pagesize"
|
1257 |
msgstr "Diashow Seitengröße"
|
1258 |
|
1259 |
+
#: wppa-ajax.php:2013 wppa-settings-autosave.php:936
|
1260 |
#, fuzzy
|
1261 |
msgid "Slideonly max"
|
1262 |
msgstr "Slideonly max"
|
1263 |
|
1264 |
+
#: wppa-ajax.php:2016 wppa-settings-autosave.php:805
|
1265 |
#, fuzzy
|
1266 |
msgid "Max Pagelinks"
|
1267 |
msgstr "Max pagelinks"
|
1268 |
|
1269 |
+
#: wppa-ajax.php:2019 wppa-settings-autosave.php:3032
|
1270 |
#, fuzzy
|
1271 |
msgid "Start/pause symbol size"
|
1272 |
msgstr "Start / Pause Symbolgröße"
|
1273 |
|
1274 |
+
#: wppa-ajax.php:2022 wppa-settings-autosave.php:3041
|
1275 |
#, fuzzy
|
1276 |
msgid "Start/pause symbol border radius"
|
1277 |
msgstr "Start / Pause Symbol Grenzradius"
|
1278 |
|
1279 |
+
#: wppa-ajax.php:2025 wppa-settings-autosave.php:3050
|
1280 |
#, fuzzy
|
1281 |
msgid "Stop symbol size"
|
1282 |
msgstr "Symbolgröße"
|
1283 |
|
1284 |
+
#: wppa-ajax.php:2028 wppa-settings-autosave.php:3059
|
1285 |
#, fuzzy
|
1286 |
msgid "Stop symbol border radius"
|
1287 |
msgstr "Stop-Symbol Grenze Radius"
|
1288 |
|
1289 |
+
#: wppa-ajax.php:2031 wppa-settings-autosave.php:832
|
1290 |
#, fuzzy
|
1291 |
msgid "Sticky header size"
|
1292 |
msgstr "Sticky"
|
1293 |
|
1294 |
+
#: wppa-ajax.php:2039
|
1295 |
#, fuzzy
|
1296 |
msgid "Ratings cleared"
|
1297 |
msgstr "Bewertungen gelöscht"
|
1298 |
|
1299 |
+
#: wppa-ajax.php:2042
|
1300 |
#, fuzzy
|
1301 |
msgid "Could not clear ratings"
|
1302 |
msgstr "Könnte nicht klar Bewertungen"
|
1303 |
|
1304 |
+
#: wppa-ajax.php:2051
|
1305 |
#, fuzzy
|
1306 |
msgid "Viewcounts cleared"
|
1307 |
msgstr "Viewcounts gelöscht"
|
1308 |
|
1309 |
+
#: wppa-ajax.php:2054
|
1310 |
#, fuzzy
|
1311 |
msgid "Could not clear viewcounts"
|
1312 |
msgstr "Könnte nicht klar viewcounts"
|
1313 |
|
1314 |
+
#: wppa-ajax.php:2064
|
1315 |
#, fuzzy
|
1316 |
msgid "IPTC data cleared"
|
1317 |
msgstr "IPTC-Daten gelöscht"
|
1318 |
|
1319 |
+
#: wppa-ajax.php:2065
|
1320 |
#, fuzzy
|
1321 |
msgid "Refresh this page to clear table X"
|
1322 |
msgstr "Seite aktualisieren Tabelle X zu löschen"
|
1323 |
|
1324 |
+
#: wppa-ajax.php:2069
|
1325 |
#, fuzzy
|
1326 |
msgid "Could not clear IPTC data"
|
1327 |
msgstr "Könnte nicht klar, IPTC-Daten"
|
1328 |
|
1329 |
+
#: wppa-ajax.php:2079
|
1330 |
#, fuzzy
|
1331 |
msgid "EXIF data cleared"
|
1332 |
msgstr "EXIF-Daten gelöscht"
|
1333 |
|
1334 |
+
#: wppa-ajax.php:2080
|
1335 |
#, fuzzy
|
1336 |
msgid "Refresh this page to clear table XI"
|
1337 |
msgstr "Seite aktualisieren Tabelle XI zu löschen"
|
1338 |
|
1339 |
+
#: wppa-ajax.php:2084
|
1340 |
#, fuzzy
|
1341 |
msgid "Could not clear EXIF data"
|
1342 |
msgstr "Könnte nicht klar, EXIF-Daten"
|
1343 |
|
1344 |
+
#: wppa-ajax.php:2092
|
1345 |
#, fuzzy
|
1346 |
msgid "Recuperation performed"
|
1347 |
msgstr "Rekuperation ausgeführt"
|
1348 |
|
1349 |
+
#: wppa-ajax.php:2107
|
1350 |
#, fuzzy
|
1351 |
msgid ""
|
1352 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1355 |
"Illegal Format. Bitte geben Sie eine 6-stellige hexadezimale Farbwert. "
|
1356 |
"Beispiel: # 77bbff"
|
1357 |
|
1358 |
+
#: wppa-ajax.php:2133
|
1359 |
#, fuzzy
|
1360 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1361 |
msgstr ""
|
1362 |
"Sie verändert nur eine Einstellung, die Neuberechnung der Bewertungen "
|
1363 |
"erfordert."
|
1364 |
|
1365 |
+
#: wppa-ajax.php:2134 wppa-ajax.php:2582
|
1366 |
#, fuzzy
|
1367 |
msgid "Please run the appropriate action in Table VIII."
|
1368 |
msgstr "Bitte führen Sie die entsprechende Aktion in der Tabelle VIII."
|
1369 |
|
1370 |
+
#: wppa-ajax.php:2158 wppa-ajax.php:2174
|
1371 |
#, fuzzy, php-format
|
1372 |
msgid "Unable to create or write to %s"
|
1373 |
msgstr "Kann nicht erstellt oder schreiben zu%s"
|
1374 |
|
1375 |
+
#: wppa-ajax.php:2167
|
1376 |
#, fuzzy
|
1377 |
msgid "Source can not be inside the wppa folder."
|
1378 |
msgstr "Quelle kann nicht innerhalb des WPPA Ordner sein."
|
1379 |
|
1380 |
+
#: wppa-ajax.php:2184
|
1381 |
#, fuzzy
|
1382 |
msgid "The content must contain w#album"
|
1383 |
msgstr "Der Inhalt muss w # Album enthalten"
|
1384 |
|
1385 |
+
#: wppa-ajax.php:2191
|
1386 |
#, fuzzy
|
1387 |
msgid "The content must contain w#lat and w#lon"
|
1388 |
msgstr "Der Inhalt muss enthalten w # lat und w # lon"
|
1389 |
|
1390 |
+
#: wppa-ajax.php:2239 wppa-ajax.php:2245
|
1391 |
#, fuzzy
|
1392 |
msgid "Members"
|
1393 |
msgstr "Mitglieder"
|
1394 |
|
1395 |
+
#: wppa-ajax.php:2239
|
1396 |
#, fuzzy
|
1397 |
msgid "Parent of the member albums"
|
1398 |
msgstr "Eltern der Mitglieds Alben"
|
1399 |
|
1400 |
+
#: wppa-ajax.php:2383
|
1401 |
#, fuzzy, php-format
|
1402 |
msgid "User %s has been blacklisted."
|
1403 |
msgstr "Benutzer%s hat die schwarze Liste gesetzt worden."
|
1404 |
|
1405 |
+
#: wppa-ajax.php:2386 wppa-ajax.php:2416
|
1406 |
#, fuzzy, php-format
|
1407 |
msgid "User %s does not exist."
|
1408 |
msgstr "Benutzer \"%s\" nicht vorhanden"
|
1409 |
|
1410 |
+
#: wppa-ajax.php:2413
|
1411 |
#, fuzzy, php-format
|
1412 |
msgid "User %s is now superuser."
|
1413 |
msgstr "Benutzer%s ist jetzt Super-User."
|
1414 |
|
1415 |
+
#: wppa-ajax.php:2438
|
1416 |
#, fuzzy
|
1417 |
msgid ""
|
1418 |
"The content of the Custom box has been changed to display the Fotomoto "
|
1421 |
"Der Inhalt des Custom-Box wurde geändert, um die Fotomoto Symbolleiste "
|
1422 |
"angezeigt werden soll."
|
1423 |
|
1424 |
+
#: wppa-ajax.php:2442 wppa-ajax.php:2457
|
1425 |
#, fuzzy
|
1426 |
msgid "The display of the custom box has been enabled"
|
1427 |
msgstr "Die Anzeige der Anwender-Box aktiviert wurde"
|
1428 |
|
1429 |
+
#: wppa-ajax.php:2453
|
1430 |
#, fuzzy
|
1431 |
msgid "The content of the Custom box has been changed to display maps."
|
1432 |
msgstr "Der Inhalt des Custom-Box wurde geändert Karten anzuzeigen."
|
1433 |
|
1434 |
+
#: wppa-ajax.php:2491
|
1435 |
#, fuzzy
|
1436 |
msgid "This value can not be empty"
|
1437 |
msgstr "Dieser Wert darf nicht leer sein"
|
1438 |
|
1439 |
+
#: wppa-ajax.php:2520
|
1440 |
#, fuzzy
|
1441 |
msgid ""
|
1442 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1445 |
"Sie müssen Tabelle VIII-A13 und VIII-A14 laufen, bevor Sie auf die "
|
1446 |
"verschlüsselten URLs wechseln."
|
1447 |
|
1448 |
+
#: wppa-ajax.php:2523
|
1449 |
#, fuzzy
|
1450 |
msgid "Table IV-A3 will be switched off."
|
1451 |
msgstr "Tabelle IV-A3 wird ausgeschaltet."
|
1452 |
|
1453 |
+
#: wppa-ajax.php:2527
|
1454 |
#, fuzzy
|
1455 |
msgid "Table IV-A4 will be switched off."
|
1456 |
msgstr "Tabelle IV-A4 wird ausgeschaltet."
|
1457 |
|
1458 |
+
#: wppa-ajax.php:2537
|
1459 |
#, fuzzy
|
1460 |
msgid "Not allowed when cryptic links is active"
|
1461 |
msgstr "Nicht erlaubt, wenn kryptischen Links aktiv"
|
1462 |
|
1463 |
+
#: wppa-ajax.php:2549
|
1464 |
#, fuzzy
|
1465 |
msgid "A Twitter account name must start with an at sign: @"
|
1466 |
msgstr "Ein Twitter-Account-Name muss mit einem at-Zeichen beginnen: @"
|
1467 |
|
1468 |
+
#: wppa-ajax.php:2560
|
1469 |
#, fuzzy, php-format
|
1470 |
msgid "Failed to set %s to %s"
|
1471 |
msgstr "Fehlgeschlagen% einzustellen s zu%s"
|
1472 |
|
1473 |
+
#: wppa-ajax.php:2565
|
1474 |
#, fuzzy, php-format
|
1475 |
msgid "Setting %s updated to %s"
|
1476 |
msgstr "Einstellung%s aktualisiert% auf s"
|
1477 |
|
1478 |
+
#: wppa-ajax.php:2581
|
1479 |
#, fuzzy
|
1480 |
msgid ""
|
1481 |
"You just changed a setting that requires the regeneration of thumbnails."
|
1483 |
"Sie verändert nur eine Einstellung, die die Regeneration von Thumbnails "
|
1484 |
"erfordert."
|
1485 |
|
1486 |
+
#: wppa-ajax.php:2636
|
1487 |
#, fuzzy
|
1488 |
msgid "Missing album id"
|
1489 |
msgstr "Fehlende Album-ID"
|
1490 |
|
1491 |
+
#: wppa-ajax.php:2656
|
1492 |
#, fuzzy
|
1493 |
msgid "You do not have the rights to delete this album"
|
1494 |
msgstr "Sie haben nicht die Rechte dieses Album löschen"
|
1495 |
|
1496 |
+
#: wppa-ajax.php:2677
|
1497 |
#, fuzzy
|
1498 |
msgid "An error has occurred"
|
1499 |
msgstr "Ein Interner Fehler Ist Aufgetreten"
|
1500 |
|
1501 |
+
#: wppa-ajax.php:2713 wppa-ajax.php:2720
|
1502 |
#, fuzzy
|
1503 |
msgid "You may also enter:"
|
1504 |
msgstr "Sie können auch ein:"
|
1505 |
|
1506 |
+
#: wppa-ajax.php:2714 wppa-ajax.php:2721
|
1507 |
#, fuzzy
|
1508 |
msgid "You may also leave/set this blank"
|
1509 |
msgstr "Sie können auch dieses Feld leer lassen / set"
|
1560 |
msgid "Top of page"
|
1561 |
msgstr "Am Anfang der Seite"
|
1562 |
|
1563 |
+
#: wppa-album-admin-autosave.php:118 wppa-functions.php:4011
|
1564 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1565 |
msgid "New Album"
|
1566 |
msgstr "Neues Fotoalbum"
|
1720 |
"Wenn Sie die Alben, um # sortieren möchten, geben Sie / ändern hier die "
|
1721 |
"Bestellnummer."
|
1722 |
|
1723 |
+
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:356
|
1724 |
+
#: wppa-tinymce-shortcodes.php:382 wppa-tinymce-shortcodes.php:570
|
1725 |
#, fuzzy
|
1726 |
msgid "Parent album:"
|
1727 |
msgstr "Übergeordnetes Album"
|
1741 |
|
1742 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1743 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1744 |
+
#: wppa-tinymce-shortcodes.php:515 wppa-tinymce-shortcodes.php:534
|
1745 |
#, fuzzy
|
1746 |
msgid "--- default ---"
|
1747 |
msgstr "Standard-Fotoalbum für"
|
2359 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
2360 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319
|
2361 |
#: wppa-comment-admin.php:388 wppa-comment-admin.php:406
|
2362 |
+
#: wppa-functions.php:2115 wppa-links.php:784 wppa-links.php:802
|
2363 |
#: wppa-photo-admin-autosave.php:1312 wppa-photo-admin-autosave.php:1380
|
2364 |
#: wppa-thumbnails.php:629
|
2365 |
msgid "Delete"
|
2829 |
msgid "--- all separate albums ---"
|
2830 |
msgstr "- Alle -separate- Alben -"
|
2831 |
|
2832 |
+
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1702
|
2833 |
#: wppa-items.php:436
|
2834 |
msgid "--- owner/public ---"
|
2835 |
msgstr "--- Besitzer/öffentliche ---"
|
2985 |
msgid "Rating count:"
|
2986 |
msgstr "Bewertungen"
|
2987 |
|
2988 |
+
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1684
|
2989 |
#: wppa-import.php:1604 wppa-items.php:424 wppa-potd-admin.php:100
|
2990 |
#: wppa-potd-admin.php:136 wppa-settings-autosave.php:1393
|
2991 |
#: wppa-settings-autosave.php:1742 wppa-settings-autosave.php:1947
|
2996 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
2997 |
#: wppa-settings-autosave.php:8956 wppa-settings-autosave.php:9113
|
2998 |
#: wppa-thumbnail-widget.php:200 wppa-tinymce-scripts.php:287
|
2999 |
+
#: wppa-tinymce-shortcodes.php:626 wppa-watermark.php:519
|
3000 |
msgid "--- none ---"
|
3001 |
msgstr "--- keine ---"
|
3002 |
|
3203 |
msgid "Create album"
|
3204 |
msgstr "Album Erstellen"
|
3205 |
|
3206 |
+
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4230
|
3207 |
msgid "Max uploads reached"
|
3208 |
msgstr "Max Uploads erreicht"
|
3209 |
|
3383 |
msgid "Avatar"
|
3384 |
msgstr "Profilbild"
|
3385 |
|
3386 |
+
#: wppa-boxes-html.php:3109 wppa-links.php:828
|
3387 |
msgid "Awaiting moderation"
|
3388 |
msgstr "Warten auf Moderation"
|
3389 |
|
4000 |
msgid "There are no commented photos (yet)"
|
4001 |
msgstr "Es sind (noch) keine kommentierte Fotos"
|
4002 |
|
4003 |
+
#: wppa-common-functions.php:654 wppa-functions.php:4648
|
4004 |
#, php-format
|
4005 |
msgid "%d second"
|
4006 |
msgid_plural "%d seconds"
|
4007 |
msgstr[0] "%d Sekunde"
|
4008 |
msgstr[1] "%d Sekunden"
|
4009 |
|
4010 |
+
#: wppa-common-functions.php:658 wppa-functions.php:4644
|
4011 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
4012 |
#, php-format
|
4013 |
msgid "%d minute"
|
4015 |
msgstr[0] "%d Minute"
|
4016 |
msgstr[1] "%d Minuten"
|
4017 |
|
4018 |
+
#: wppa-common-functions.php:662 wppa-functions.php:4640
|
4019 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
4020 |
#, php-format
|
4021 |
msgid "%d hour"
|
4023 |
msgstr[0] "%d Stunde"
|
4024 |
msgstr[1] "%d Stunden"
|
4025 |
|
4026 |
+
#: wppa-common-functions.php:666 wppa-functions.php:4636
|
4027 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
4028 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
4029 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
4036 |
msgstr[0] "%d Tag"
|
4037 |
msgstr[1] "%d Tage"
|
4038 |
|
4039 |
+
#: wppa-common-functions.php:670 wppa-functions.php:4632
|
4040 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
4041 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
4042 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
4046 |
msgstr[0] "%d Woche"
|
4047 |
msgstr[1] "%d Wochen"
|
4048 |
|
4049 |
+
#: wppa-common-functions.php:674 wppa-settings-autosave.php:7842
|
4050 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
4051 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
4052 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
4056 |
msgstr[0] "%d Monat"
|
4057 |
msgstr[1] "%d Monate"
|
4058 |
|
4059 |
+
#: wppa-common-functions.php:677 wppa-settings-autosave.php:9023
|
4060 |
#: wppa-settings-autosave.php:9025
|
4061 |
#, php-format
|
4062 |
msgid "%d year"
|
4064 |
msgstr[0] "%d Jahr"
|
4065 |
msgstr[1] "%d Jahre"
|
4066 |
|
4067 |
+
#: wppa-common-functions.php:1400
|
4068 |
#, php-format
|
4069 |
msgid ""
|
4070 |
"Based on your server memory limit you should not upload images larger then "
|
4073 |
"Basierend auf Ihrem Server Speichergrenze sollten Sie keine Bilder hochladen "
|
4074 |
"größer <strong>dann %d x %d (% 2.1f MP)</strong>"
|
4075 |
|
4076 |
+
#: wppa-common-functions.php:1678
|
4077 |
msgid "- select an album -"
|
4078 |
msgstr "- wählen Sie ein Album -"
|
4079 |
|
4080 |
+
#: wppa-common-functions.php:1690 wppa-items.php:432
|
4081 |
#: wppa-multitag-widget.php:76 wppa-multitag-widget.php:84
|
4082 |
#: wppa-slideshow-widget.php:199 wppa-tagcloud-widget.php:71
|
4083 |
#: wppa-tagcloud-widget.php:79
|
4084 |
msgid "--- all ---"
|
4085 |
msgstr "--- alle ---"
|
4086 |
|
4087 |
+
#: wppa-common-functions.php:1696
|
4088 |
msgid "--- generic ---"
|
4089 |
msgstr "--- generikum ---"
|
4090 |
|
4091 |
+
#: wppa-common-functions.php:1713
|
4092 |
msgid "--- multiple see below ---"
|
4093 |
msgstr "--- Mehrere siehe unten ---"
|
4094 |
|
4095 |
+
#: wppa-common-functions.php:1719
|
4096 |
msgid "--- a selection box ---"
|
4097 |
msgstr "--- eine Auswahlbox ---"
|
4098 |
|
4099 |
+
#: wppa-common-functions.php:1766 wppa-import.php:1605 wppa-items.php:428
|
4100 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
4101 |
msgid "--- separate ---"
|
4102 |
msgstr "--- separat ---"
|
4103 |
|
4104 |
+
#: wppa-common-functions.php:1872
|
4105 |
msgid "Photo id ="
|
4106 |
msgstr "Foto id ="
|
4107 |
|
4108 |
+
#: wppa-common-functions.php:1872
|
4109 |
msgid "Value ="
|
4110 |
msgstr "Wert ="
|
4111 |
|
4509 |
"Es gibt %s Alben gefunden. Nur das erste %s wird angezeigt. Bitte verfeinern "
|
4510 |
"Sie Ihre Suchkriterien."
|
4511 |
|
4512 |
+
#: wppa-functions.php:2112 wppa-links.php:777 wppa-links.php:794
|
4513 |
#: wppa-thumbnails.php:627
|
4514 |
msgid "Are you sure you want to remove this photo?"
|
4515 |
msgstr "Bist Du sicher, dass Du diese Foto löschen möchtest?"
|
4555 |
msgid "Moderate comment admin"
|
4556 |
msgstr "Moderiere Kommentare"
|
4557 |
|
4558 |
+
#: wppa-functions.php:2366 wppa-functions.php:4445 wppa-import.php:1524
|
4559 |
#: wppa-upload.php:570
|
4560 |
msgid "Moderate manage photo"
|
4561 |
msgstr "Moderiere Fotos"
|
4599 |
"Konnte Kommentar nicht werarbeiten. \n"
|
4600 |
"Warscheinlich Zeitüberschreitung."
|
4601 |
|
4602 |
+
#: wppa-functions.php:2604 wppa-links.php:1516
|
4603 |
msgid "A video can not be printed or downloaded"
|
4604 |
msgstr "Ein Video kann nicht gedruckt oder heruntergeladen werden"
|
4605 |
|
4606 |
+
#: wppa-functions.php:3083
|
4607 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4608 |
msgstr "ERROR: Illegal Versuch, eine Bewertung zu gelangen."
|
4609 |
|
4610 |
+
#: wppa-functions.php:3096
|
4611 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4612 |
msgstr "ERROR: Illegal Versuch, einen Kommentar eingeben."
|
4613 |
|
4614 |
+
#: wppa-functions.php:4014
|
4615 |
msgid "ERROR: Illegal attempt to create an album."
|
4616 |
msgstr "ERROR: Illegal Versuch, ein Album zu erstellen."
|
4617 |
|
4618 |
+
#: wppa-functions.php:4022
|
4619 |
msgid "Wrong captcha, please try again"
|
4620 |
msgstr "Falsche Captcha, versuchen Sie es erneut"
|
4621 |
|
4622 |
+
#: wppa-functions.php:4038
|
4623 |
#, php-format
|
4624 |
msgid "Album #%s created"
|
4625 |
msgstr "Album #%s erstellt"
|
4626 |
|
4627 |
+
#: wppa-functions.php:4044
|
4628 |
msgid "Could not create album"
|
4629 |
msgstr "Album konnte nicht erstellt werden"
|
4630 |
|
4631 |
+
#: wppa-functions.php:4056
|
4632 |
msgid "ERROR: Illegal attempt to upload a file."
|
4633 |
msgstr "ERROR: Illegal Versuch, eine Datei hochzuladen."
|
4634 |
|
4635 |
+
#: wppa-functions.php:4129
|
4636 |
msgid "Photo upload"
|
4637 |
msgstr "Fotos hochgeladen"
|
4638 |
|
4639 |
+
#: wppa-functions.php:4130
|
4640 |
#, php-format
|
4641 |
msgid "%d photo successfully uploaded"
|
4642 |
msgid_plural "%d photos successfully uploaded"
|
4643 |
msgstr[0] "%d Foto erfolgreich hochgeladen"
|
4644 |
msgstr[1] "%d Fotos erfolgreich hochgeladen"
|
4645 |
|
4646 |
+
#: wppa-functions.php:4131
|
4647 |
#, php-format
|
4648 |
msgid "%s points added"
|
4649 |
msgstr "%s Punkte hinzugefügt"
|
4650 |
|
4651 |
+
#: wppa-functions.php:4143
|
4652 |
#, fuzzy
|
4653 |
msgid "Your post is awaiting moderation."
|
4654 |
msgstr "Dein Eintrag wartet auf Moderation."
|
4655 |
|
4656 |
+
#: wppa-functions.php:4152
|
4657 |
msgid "Upload failed"
|
4658 |
msgstr "Upload fehlgeschlagen"
|
4659 |
|
4660 |
+
#: wppa-functions.php:4155
|
4661 |
#, php-format
|
4662 |
msgid "%d upload failed"
|
4663 |
msgid_plural "%d uploads failed"
|
4664 |
msgstr[0] "%d Hochladung fehlgeschlagen"
|
4665 |
msgstr[1] "%d Hochladungen fehlgeschlagen"
|
4666 |
|
4667 |
+
#: wppa-functions.php:4236
|
4668 |
msgid "Error during upload"
|
4669 |
msgstr "Fehler beim Hochladen"
|
4670 |
|
4671 |
+
#: wppa-functions.php:4292
|
4672 |
#, fuzzy
|
4673 |
msgid "Could not insert media into db."
|
4674 |
msgstr "Konnte nicht Medien in db einfügen."
|
4675 |
|
4676 |
+
#: wppa-functions.php:4332
|
4677 |
msgid "Uploaded file is not an image"
|
4678 |
msgstr "Hochgeladenen datei ist kein Bild"
|
4679 |
|
4680 |
+
#: wppa-functions.php:4338
|
4681 |
#, php-format
|
4682 |
msgid ""
|
4683 |
"Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4684 |
msgstr ""
|
4685 |
"Nur gif, jpg und png Bild-Dateien werden unterstützt. Kehrte filetype =% d."
|
4686 |
|
4687 |
+
#: wppa-functions.php:4346
|
4688 |
#, php-format
|
4689 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4690 |
msgstr ""
|
4691 |
"Hochgeladene Datei ist größer als das erlaubte Maximum von %d x %d Pixel."
|
4692 |
|
4693 |
+
#: wppa-functions.php:4354
|
4694 |
#, php-format
|
4695 |
msgid "Uploaded file %s already exists in this album."
|
4696 |
msgstr "Hochgeladene Datei %s existiert bereits in diesem Album."
|
4697 |
|
4698 |
+
#: wppa-functions.php:4364
|
4699 |
#, php-format
|
4700 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4701 |
msgstr "Das Bild ist zu groß. Max Fotogröße: %d x %d (% 2.1f MegaPixel)"
|
4702 |
|
4703 |
+
#: wppa-functions.php:4404
|
4704 |
msgid "Could not insert photo into db."
|
4705 |
msgstr "Konnte Foto nicht in db einfügen."
|
4706 |
|
4707 |
+
#: wppa-functions.php:4441 wppa-import.php:1520 wppa-upload.php:566
|
4708 |
#, php-format
|
4709 |
msgid "New photo uploaded: %s"
|
4710 |
msgstr "Neues Foto hochgeladen: %s"
|
4711 |
|
4712 |
+
#: wppa-functions.php:4442 wppa-import.php:1521 wppa-upload.php:567
|
4713 |
#, php-format
|
4714 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4715 |
msgstr "Benutzer %1$s hat Foto %2$s in album %3$s hochgeladen "
|
4716 |
|
4717 |
+
#: wppa-functions.php:4444 wppa-import.php:1523 wppa-upload.php:569
|
4718 |
msgid "This upload requires moderation"
|
4719 |
msgstr "Dieser Upload erfordert Moderation"
|
4720 |
|
4721 |
+
#: wppa-functions.php:4448 wppa-import.php:1527 wppa-upload.php:573
|
4722 |
msgid "Details:"
|
4723 |
msgstr "Details:"
|
4724 |
|
4725 |
+
#: wppa-functions.php:4449 wppa-import.php:1528 wppa-upload.php:574
|
4726 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4727 |
msgid "Manage photo"
|
4728 |
msgstr "Fotos verwalten"
|
4729 |
|
4730 |
+
#: wppa-functions.php:4629
|
4731 |
msgid "You can upload after"
|
4732 |
msgstr "Sie können Hochladen nach"
|
4733 |
|
4734 |
+
#: wppa-functions.php:4672 wppa-functions.php:4676 wppa-functions.php:4683
|
4735 |
+
#: wppa-functions.php:4687 wppa-links.php:1108 wppa-non-admin.php:813
|
4736 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4737 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4738 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
4740 |
msgid "Download"
|
4741 |
msgstr "Herunterladen"
|
4742 |
|
4743 |
+
#: wppa-functions.php:4731
|
4744 |
msgid "Zoom in"
|
4745 |
msgstr "Hineinzoomen"
|
4746 |
|
4747 |
+
#: wppa-functions.php:4762
|
4748 |
#, fuzzy, php-format
|
4749 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4750 |
msgstr ""
|
4751 |
"Sie können wieder stimmen nach%s Tage,%s Stunden,%s Minuten und%s Sekunden"
|
4752 |
|
4753 |
+
#: wppa-functions.php:4765
|
4754 |
#, fuzzy, php-format
|
4755 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4756 |
msgstr "Sie können wieder stimmen nach%s Stunden,%s Minuten und%s Sekunden"
|
4757 |
|
4758 |
+
#: wppa-functions.php:4768
|
4759 |
#, fuzzy, php-format
|
4760 |
msgid "You can vote again after %s minutes and %s seconds"
|
4761 |
msgstr "Sie können wieder stimmen nach%s Minuten und%s Sekunden"
|
5709 |
msgid "Show time since:"
|
5710 |
msgstr "Zeit seit:"
|
5711 |
|
5712 |
+
#: wppa-links.php:765
|
5713 |
#, fuzzy
|
5714 |
msgid "App"
|
5715 |
msgstr "App"
|
5716 |
|
5717 |
+
#: wppa-links.php:766
|
5718 |
#, fuzzy
|
5719 |
msgid "Mod"
|
5720 |
msgstr "Mod"
|
5721 |
|
5722 |
+
#: wppa-links.php:767
|
5723 |
#, fuzzy
|
5724 |
msgid "Del"
|
5725 |
msgstr "Entf."
|
5726 |
|
5727 |
+
#: wppa-links.php:771 wppa-links.php:788
|
5728 |
#, fuzzy
|
5729 |
msgid "Are you sure you want to publish this photo?"
|
5730 |
msgstr "Sind Sie sicher, dass Sie dieses Foto zu veröffentlichen?"
|
5731 |
|
5732 |
+
#: wppa-links.php:782 wppa-links.php:799
|
5733 |
#, fuzzy
|
5734 |
msgid "Approve"
|
5735 |
msgstr "Interessant"
|
5736 |
|
5737 |
+
#: wppa-links.php:783
|
5738 |
#, fuzzy
|
5739 |
msgid "Moderate"
|
5740 |
msgstr "Sie erhalten diese E-Mail, wie Sie, um moderate zugeordnet sind"
|
5741 |
|
5742 |
+
#: wppa-links.php:800
|
5743 |
#, fuzzy
|
5744 |
msgid "PhotoAdmin"
|
5745 |
msgstr "PhotoAdmin"
|
5746 |
|
5747 |
+
#: wppa-links.php:801
|
5748 |
#, fuzzy
|
5749 |
msgid "CommentAdmin"
|
5750 |
msgstr "CommentAdmin"
|
5751 |
|
5752 |
+
#: wppa-links.php:805
|
5753 |
#, fuzzy
|
5754 |
msgid "Are you sure you want to publish this comment?"
|
5755 |
msgstr "Sind Sie sicher, dass Sie diesen Kommentar zu veröffentlichen?"
|
5756 |
|
5757 |
+
#: wppa-links.php:817
|
5758 |
#, fuzzy
|
5759 |
msgid "Are you sure you want to remove this comment?"
|
5760 |
msgstr "Bist Du sicher, dass Du diesen Kommentar entfernen möchtest?"
|
5761 |
|
5762 |
+
#: wppa-links.php:831
|
5763 |
#, fuzzy, php-format
|
5764 |
msgid "Scheduled for %s"
|
5765 |
msgstr "Geplant für%s"
|
5766 |
|
5767 |
+
#: wppa-links.php:1044 wppa-links.php:1047 wppa-slideshow.php:1123
|
5768 |
msgid "Previous"
|
5769 |
msgstr "Vorheriges"
|
5770 |
|
5771 |
+
#: wppa-links.php:1054 wppa-links.php:1057 wppa-non-admin.php:764
|
5772 |
#: wppa-slideshow.php:1137
|
5773 |
msgid "Next"
|
5774 |
msgstr "Nächstes"
|
5775 |
|
5776 |
+
#: wppa-links.php:1110
|
5777 |
#, fuzzy
|
5778 |
msgid "Download Album"
|
5779 |
msgstr "Album herunterladen"
|
5780 |
|
5781 |
+
#: wppa-links.php:1254
|
5782 |
#, fuzzy
|
5783 |
msgid "View thumbnails"
|
5784 |
msgstr "Anzeigen die Miniaturen"
|
5785 |
|
5786 |
+
#: wppa-links.php:1267
|
5787 |
#, fuzzy
|
5788 |
msgid "View fullsize slideshow"
|
5789 |
msgstr "Vollbild ansehen Diashow"
|
6860 |
msgstr "0像素宽"
|
6861 |
|
6862 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
6863 |
+
#: wppa-tinymce-shortcodes.php:623
|
6864 |
#, fuzzy
|
6865 |
msgid "Horizontal alignment:"
|
6866 |
msgstr "horizontale Ausrichtung"
|
6874 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
6875 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
6876 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
6877 |
+
#: wppa-tinymce-shortcodes.php:628
|
6878 |
#, fuzzy
|
6879 |
msgid "center"
|
6880 |
msgstr "mittig"
|
20693 |
msgstr "--- Alle Fotos im System ---"
|
20694 |
|
20695 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
20696 |
+
#: wppa-tinymce-shortcodes.php:329 wppa-tinymce-shortcodes.php:374
|
20697 |
+
#: wppa-tinymce-shortcodes.php:397 wppa-tinymce-shortcodes.php:585
|
20698 |
#, fuzzy
|
20699 |
msgid "There are no albums yet"
|
20700 |
msgstr "Es gibt keine Alben noch"
|
20722 |
msgid "* Album contains less than the minimun number of photos"
|
20723 |
msgstr "* Album enthält weniger als die minimun Anzahl der Fotos"
|
20724 |
|
20725 |
+
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:435
|
20726 |
#, fuzzy
|
20727 |
msgid "The Photo to be used:"
|
20728 |
msgstr "Das Foto verwendet werden soll:"
|
20729 |
|
20730 |
+
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:441
|
20731 |
#, fuzzy
|
20732 |
msgid "Please select a photo"
|
20733 |
msgstr "Bitte wählen Sie ein Foto"
|
20742 |
msgid "--- The photo of the day ---"
|
20743 |
msgstr "--- Das Foto des Tages ---"
|
20744 |
|
20745 |
+
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:459
|
20746 |
#, fuzzy
|
20747 |
msgid "There are no photos yet"
|
20748 |
msgstr "Es sind (noch) keine Fotos"
|
20749 |
|
20750 |
+
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:465
|
20751 |
#, fuzzy
|
20752 |
msgid "Specify the photo to be used"
|
20753 |
msgstr "das Foto Geben Sie verwendet werden"
|
20754 |
|
20755 |
+
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:466
|
20756 |
#, fuzzy
|
20757 |
msgid "You can select from a maximum of 100 most recently added photos"
|
20758 |
msgstr "Sie können von maximal 100 zuletzt hinzugefügten Fotos auswählen"
|
20762 |
msgid "The tags the photos should have:"
|
20763 |
msgstr "Die Tags sollten die Fotos haben:"
|
20764 |
|
20765 |
+
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:483
|
20766 |
#, fuzzy
|
20767 |
msgid "--- please select tag(s) ---"
|
20768 |
msgstr "Bitte wählen Sie Tag(s) aus."
|
20778 |
"dieses Feld. Lassen Sie es nicht aktiviert, wenn das Foto ein atleast nur "
|
20779 |
"der ausgewählten Variablen haben muss"
|
20780 |
|
20781 |
+
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:608
|
20782 |
#, fuzzy
|
20783 |
msgid "The size of the display:"
|
20784 |
msgstr "Die Größe des Displays:"
|
20785 |
|
20786 |
+
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:613
|
20787 |
#, fuzzy
|
20788 |
msgid ""
|
20789 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
20792 |
"Geben Sie die horizontale Größe in Pixeln oder <span style=\"color:blue\" "
|
20793 |
">Auto.</span>"
|
20794 |
|
20795 |
+
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:614
|
20796 |
#, fuzzy
|
20797 |
msgid ""
|
20798 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
20803 |
"automatisch als <span style=\"color:blue\" >Prozentsatz</span> des "
|
20804 |
"verfügbaren Raums interpretiert werden."
|
20805 |
|
20806 |
+
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:616
|
20807 |
#, fuzzy
|
20808 |
msgid "Leave this blank for default size"
|
20809 |
msgstr "Lassen Sie dieses Feld leer, für Standardgröße"
|
20810 |
|
20811 |
+
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:632
|
20812 |
#, fuzzy
|
20813 |
msgid "Specify the alignment to be used or --- none ---"
|
20814 |
msgstr "Legen Sie die Ausrichtung verwendet werden oder --- keine ---"
|
20815 |
|
20816 |
+
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:642
|
20817 |
#, fuzzy
|
20818 |
msgid "Insert Gallery"
|
20819 |
msgstr "Bildergalerie"
|
21098 |
msgid "All albums in the system"
|
21099 |
msgstr "Alle Alben im System"
|
21100 |
|
21101 |
+
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:314
|
21102 |
#, fuzzy
|
21103 |
msgid "The Album(s) to be used:"
|
21104 |
msgstr "Das Album (e) verwendet werden:"
|
21108 |
msgid "Please select one or more albums"
|
21109 |
msgstr "Bitte wählen Sie ein oder mehrere Alben"
|
21110 |
|
21111 |
+
#: wppa-tinymce-shortcodes.php:302
|
21112 |
+
msgid "Search album:"
|
21113 |
+
msgstr "Suche Album:"
|
21114 |
+
|
21115 |
+
#: wppa-tinymce-shortcodes.php:307
|
21116 |
+
msgid ""
|
21117 |
+
"Enter a (part of) the album name to limit the options in the selection box "
|
21118 |
+
"above."
|
21119 |
+
msgstr ""
|
21120 |
+
"Geben Sie einen (Teil) der Name des Albums, die Optionen in der Auswahlbox "
|
21121 |
+
"oben zu begrenzen."
|
21122 |
+
|
21123 |
+
#: wppa-tinymce-shortcodes.php:320 wppa-upldr-widget.php:210 wppa-utils.php:450
|
21124 |
#, fuzzy
|
21125 |
msgid "All albums"
|
21126 |
msgstr "- Alle Alben -"
|
21127 |
|
21128 |
+
#: wppa-tinymce-shortcodes.php:337
|
21129 |
#, fuzzy
|
21130 |
msgid "The album owner:"
|
21131 |
msgstr "Das Album Besitzer:"
|
21132 |
|
21133 |
+
#: wppa-tinymce-shortcodes.php:340
|
21134 |
#, fuzzy
|
21135 |
msgid "Please select a user"
|
21136 |
msgstr "Bitte wähle einen Benutzer"
|
21137 |
|
21138 |
+
#: wppa-tinymce-shortcodes.php:341
|
21139 |
#, fuzzy
|
21140 |
msgid "The logged in visitor"
|
21141 |
msgstr "Der Besucher angemeldet"
|
21142 |
|
21143 |
+
#: wppa-tinymce-shortcodes.php:347
|
21144 |
#, fuzzy
|
21145 |
msgid "Too many users, edit manually"
|
21146 |
msgstr "Zu viele Benutzer, manuell bearbeiten"
|
21147 |
|
21148 |
+
#: wppa-tinymce-shortcodes.php:362
|
21149 |
#, fuzzy
|
21150 |
msgid "No parent specification"
|
21151 |
msgstr "Kein Elternteil Spezifikation"
|
21152 |
|
21153 |
+
#: wppa-tinymce-shortcodes.php:365 wppa-tinymce-shortcodes.php:388
|
21154 |
+
#: wppa-tinymce-shortcodes.php:576
|
21155 |
#, fuzzy
|
21156 |
msgid "The generic parent"
|
21157 |
msgstr "Die generische Mutter"
|
21158 |
|
21159 |
+
#: wppa-tinymce-shortcodes.php:405
|
21160 |
#, fuzzy
|
21161 |
msgid "Max Albums:"
|
21162 |
msgstr "Max Alben:"
|
21163 |
|
21164 |
+
#: wppa-tinymce-shortcodes.php:413
|
21165 |
#, fuzzy
|
21166 |
msgid "Max Photos:"
|
21167 |
msgstr "Max Fotos:"
|
21168 |
|
21169 |
+
#: wppa-tinymce-shortcodes.php:421
|
21170 |
#, fuzzy
|
21171 |
msgid "The album cat(s):"
|
21172 |
msgstr "Das Album Katze (n):"
|
21173 |
|
21174 |
+
#: wppa-tinymce-shortcodes.php:424
|
21175 |
#, fuzzy
|
21176 |
msgid "--- please select category ---"
|
21177 |
msgstr "Bitte eine Kategorie auswählen"
|
21178 |
|
21179 |
+
#: wppa-tinymce-shortcodes.php:442 wppa-tinymce-shortcodes.php:456
|
21180 |
#, fuzzy
|
21181 |
msgid "The photo of the day"
|
21182 |
msgstr "Das Foto des Tages"
|
21183 |
|
21184 |
+
#: wppa-tinymce-shortcodes.php:455
|
21185 |
#, fuzzy
|
21186 |
msgid "The most recently uploaded photo"
|
21187 |
msgstr "Die zuletzt hochgeladenen Foto"
|
21188 |
|
21189 |
+
#: wppa-tinymce-shortcodes.php:473
|
21190 |
#, fuzzy
|
21191 |
msgid "Preview image:"
|
21192 |
msgstr "Bildvorschau"
|
21193 |
|
21194 |
+
#: wppa-tinymce-shortcodes.php:480
|
21195 |
#, fuzzy
|
21196 |
msgid "The photo tag(s):"
|
21197 |
msgstr "Das Foto-Tag (e):"
|
21198 |
|
21199 |
+
#: wppa-tinymce-shortcodes.php:494
|
21200 |
#, fuzzy
|
21201 |
msgid "Or / And:"
|
21202 |
msgstr "Oder und:"
|
21203 |
|
21204 |
+
#: wppa-tinymce-shortcodes.php:496
|
21205 |
#, fuzzy
|
21206 |
msgid "Meet any"
|
21207 |
msgstr "Treffen Sie jede"
|
21208 |
|
21209 |
+
#: wppa-tinymce-shortcodes.php:497
|
21210 |
#, fuzzy
|
21211 |
msgid "Meet all"
|
21212 |
msgstr "Treffen Sie alle"
|
21213 |
|
21214 |
+
#: wppa-tinymce-shortcodes.php:503 wppa-tinymce-shortcodes.php:551
|
21215 |
#, fuzzy
|
21216 |
msgid "Additional features:"
|
21217 |
msgstr "Weitere Features:"
|
21218 |
|
21219 |
+
#: wppa-tinymce-shortcodes.php:505
|
21220 |
#, fuzzy
|
21221 |
msgid "Enable Subsearch"
|
21222 |
msgstr "Aktivieren Sie Subsearch"
|
21223 |
|
21224 |
+
#: wppa-tinymce-shortcodes.php:506
|
21225 |
#, fuzzy
|
21226 |
msgid "Enable Rootsearch"
|
21227 |
msgstr "Aktivieren Sie Rootsearch"
|
21228 |
|
21229 |
+
#: wppa-tinymce-shortcodes.php:512
|
21230 |
#, fuzzy
|
21231 |
msgid "Search root:"
|
21232 |
msgstr "Suche root:"
|
21233 |
|
21234 |
+
#: wppa-tinymce-shortcodes.php:531
|
21235 |
#, fuzzy
|
21236 |
msgid "Landing page:"
|
21237 |
msgstr "Zielseite"
|
21238 |
|
21239 |
+
#: wppa-tinymce-shortcodes.php:553
|
21240 |
#, fuzzy
|
21241 |
msgid "Enable all tags"
|
21242 |
msgstr "Aktiviere Tags"
|
21243 |
|
21244 |
+
#: wppa-tinymce-shortcodes.php:556
|
21245 |
#, fuzzy
|
21246 |
msgid "Please select the tags to show"
|
21247 |
msgstr "Bitte wählen Sie die Tags zu zeigen,"
|
21248 |
|
21249 |
+
#: wppa-tinymce-shortcodes.php:562
|
21250 |
#, fuzzy
|
21251 |
msgid "There are no tags"
|
21252 |
msgstr "Vorschau tags:"
|
21253 |
|
21254 |
+
#: wppa-tinymce-shortcodes.php:593
|
21255 |
#, fuzzy
|
21256 |
msgid "Calendar type:"
|
21257 |
msgstr "Kalendertyp"
|
21258 |
|
21259 |
+
#: wppa-tinymce-shortcodes.php:596
|
21260 |
#, fuzzy
|
21261 |
msgid "By EXIF date"
|
21262 |
msgstr "Fotos nach EXIF-Datum"
|
21263 |
|
21264 |
+
#: wppa-tinymce-shortcodes.php:597
|
21265 |
#, fuzzy
|
21266 |
msgid "By date of upload"
|
21267 |
msgstr "Fotos nach Datum hochladen"
|
21268 |
|
21269 |
+
#: wppa-tinymce-shortcodes.php:598
|
21270 |
#, fuzzy
|
21271 |
msgid "By date last modified"
|
21272 |
msgstr "Fotos nach Datum Änderung"
|
21273 |
|
21274 |
+
#: wppa-tinymce-shortcodes.php:601
|
21275 |
#, fuzzy
|
21276 |
msgid "Last date first"
|
21277 |
msgstr "Letztes Datum zuerst"
|
21278 |
|
21279 |
+
#: wppa-tinymce-shortcodes.php:602
|
21280 |
#, fuzzy
|
21281 |
msgid "Initially display all"
|
21282 |
msgstr "Zu Beginn sind alle anzeigen"
|
21283 |
|
21284 |
+
#: wppa-tinymce-shortcodes.php:615
|
21285 |
#, fuzzy
|
21286 |
msgid ""
|
21287 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
21290 |
"Für reaktions mit einem festen Maximum, fügen Sie die max Auto zB <span "
|
21291 |
"style=\"color:blue\" >Auto, 550</span>"
|
21292 |
|
21293 |
+
#: wppa-tinymce-shortcodes.php:640
|
21294 |
#, fuzzy
|
21295 |
msgid ""
|
21296 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
21299 |
"Dies ist eine Vorschau der Shortcode, der erzeugt wird. Sie können den "
|
21300 |
"Kommentar bearbeiten"
|
21301 |
|
21302 |
+
#: wppa-tinymce-shortcodes.php:643
|
21303 |
#, fuzzy
|
21304 |
msgid "insert Gallery"
|
21305 |
msgstr "Bildergalerie"
|
21306 |
|
21307 |
+
#: wppa-tinymce-shortcodes.php:643
|
21308 |
#, fuzzy
|
21309 |
msgid "Please complete the shortcode specs"
|
21310 |
msgstr "Bitte vervollständigen Sie die Short specs"
|
21743 |
#. Author URI of the plugin/theme
|
21744 |
msgid "http://wppa.opajaap.nl/"
|
21745 |
msgstr "http://wppa.opajaap.nl/"
|
21746 |
+
|
21747 |
+
#, fuzzy
|
21748 |
+
#~ msgid "Uploading is temporary diabled for you"
|
21749 |
+
#~ msgstr "Das Hochladen ist vorübergehend diabled für Sie"
|
21750 |
+
|
21751 |
+
#, fuzzy
|
21752 |
+
#~ msgid "Editing is temporary diabled for you"
|
21753 |
+
#~ msgstr "Die Bearbeitung ist vorübergehend diabled für Sie"
|
21754 |
+
|
21755 |
+
#, fuzzy
|
21756 |
+
#~ msgid "Importing is temporary diabled for you"
|
21757 |
+
#~ msgstr "Der Import ist nur vorübergehend diabled für Sie"
|
languages/wp-photo-album-plus-fr_FR.mo
CHANGED
Binary file
|
languages/wp-photo-album-plus-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-09-
|
6 |
-
"PO-Revision-Date: 2016-09-
|
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"
|
@@ -105,17 +105,17 @@ msgstr "Erreur d'écriture dans le fichier de sauvegarde des réglages"
|
|
105 |
msgid "Settings file not found"
|
106 |
msgstr "Fichier de paramètres non trouvé"
|
107 |
|
108 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
109 |
-
#: wppa-ajax.php:
|
110 |
msgid "Please supply a numeric value greater than or equal to"
|
111 |
msgstr "Entrez une valeur numérique supérieure ou égale à"
|
112 |
|
113 |
-
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:
|
114 |
-
#: wppa-ajax.php:
|
115 |
msgid "for"
|
116 |
msgstr "pour"
|
117 |
|
118 |
-
#: wppa-admin-functions.php:208 wppa-ajax.php:
|
119 |
msgid "and less than or equal to"
|
120 |
msgstr "et inférieure ou égale à"
|
121 |
|
@@ -298,16 +298,16 @@ msgid "Documentation"
|
|
298 |
msgstr "Documentation"
|
299 |
|
300 |
#: wppa-admin.php:111
|
301 |
-
msgid "Uploading is temporary
|
302 |
-
msgstr "
|
303 |
|
304 |
#: wppa-admin.php:118
|
305 |
-
msgid "Editing is temporary
|
306 |
-
msgstr "La modification est
|
307 |
|
308 |
#: wppa-admin.php:125
|
309 |
-
msgid "Importing is temporary
|
310 |
-
msgstr "L
|
311 |
|
312 |
#: wppa-admin.php:128 wppa-import.php:1226
|
313 |
msgid "Import"
|
@@ -366,7 +366,7 @@ msgid "Exit & Refresh"
|
|
366 |
msgstr "Quitter et rafraîchirr"
|
367 |
|
368 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
369 |
-
#: wppa-ajax.php:
|
370 |
msgid "Security check failure"
|
371 |
msgstr "Echec de la vérification de sécurité"
|
372 |
|
@@ -374,7 +374,7 @@ msgstr "Echec de la vérification de sécurité"
|
|
374 |
msgid "You do not have the rights to moderate photos this way"
|
375 |
msgstr "Vous n'avez pas les droits de modérer les photos de cette façon"
|
376 |
|
377 |
-
#: wppa-ajax.php:300 wppa-ajax.php:
|
378 |
msgid "Photo comment approved"
|
379 |
msgstr "Commentaire photo approuvé"
|
380 |
|
@@ -530,72 +530,72 @@ msgstr ""
|
|
530 |
"vous pouvez rafraîchir la page\n"
|
531 |
"pour voir votre vote apparaître."
|
532 |
|
533 |
-
#: wppa-ajax.php:
|
534 |
msgid "You do not have the rights to delete a photo"
|
535 |
msgstr "Vous n'avez pas les droits pour effacer une photo"
|
536 |
|
537 |
-
#: wppa-ajax.php:
|
538 |
#, php-format
|
539 |
msgid "Photo %s has been deleted"
|
540 |
msgstr "La photo %s a été effacée."
|
541 |
|
542 |
-
#: wppa-ajax.php:
|
543 |
msgid "You do not have the rights to update album information"
|
544 |
msgstr "Vous n'avez pas les droits pour mettre à jour la description de l'album"
|
545 |
|
546 |
-
#: wppa-ajax.php:
|
547 |
msgid "<b>Ratings cleared</b>"
|
548 |
msgstr "<b>Notes effacées</b>"
|
549 |
|
550 |
-
#: wppa-ajax.php:
|
551 |
msgid "No ratings for this photo."
|
552 |
msgstr "Pas de notes pour cette photo."
|
553 |
|
554 |
-
#: wppa-ajax.php:
|
555 |
msgid "An error occurred while clearing ratings"
|
556 |
msgstr "Une erreur est survenue pendant l'effacement des notes"
|
557 |
|
558 |
-
#: wppa-ajax.php:
|
559 |
msgid "<b>No photos in this album</b>"
|
560 |
msgstr "<b>Pas de photos dans cet album</b>"
|
561 |
|
562 |
-
#: wppa-ajax.php:
|
563 |
msgid "<b>Tags set to defaults</b> (reload)"
|
564 |
msgstr "<b>Tags remis à zéro</b> (rechargement)"
|
565 |
|
566 |
-
#: wppa-ajax.php:
|
567 |
msgid "An error occurred while setting tags"
|
568 |
msgstr "Une erreur s'est produite pendant l'application des tags"
|
569 |
|
570 |
-
#: wppa-ajax.php:
|
571 |
msgid "<b>Tags added width defaults</b> (reload)"
|
572 |
msgstr "<b>Tags ajoutés avec réglages par défaut</b> (rechargement)"
|
573 |
|
574 |
-
#: wppa-ajax.php:
|
575 |
msgid "An error occurred while adding tags"
|
576 |
msgstr "Une erreur s'est produite pendant l'ajout des tags"
|
577 |
|
578 |
-
#: wppa-ajax.php:
|
579 |
msgid "No subalbums found to process"
|
580 |
msgstr "Aucun sous-albums trouvés pour traiter"
|
581 |
|
582 |
-
#: wppa-ajax.php:
|
583 |
msgid "No categories found to process"
|
584 |
msgstr "Aucune catégorie trouvée pour traiter"
|
585 |
|
586 |
-
#: wppa-ajax.php:
|
587 |
#, php-format
|
588 |
msgid "%d album updated"
|
589 |
msgid_plural "%d albums updated"
|
590 |
msgstr[0] "%d album mis à jour"
|
591 |
msgstr[1] "%d albums mis à jour"
|
592 |
|
593 |
-
#: wppa-ajax.php:
|
594 |
#, php-format
|
595 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
596 |
msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à <b>%s</b>"
|
597 |
|
598 |
-
#: wppa-ajax.php:
|
599 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
600 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
601 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
@@ -618,7 +618,7 @@ msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à <b>%s</b>"
|
|
618 |
msgid "Name"
|
619 |
msgstr "Nom"
|
620 |
|
621 |
-
#: wppa-ajax.php:
|
622 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
623 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
624 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
@@ -639,44 +639,44 @@ msgstr "Nom"
|
|
639 |
msgid "Description"
|
640 |
msgstr "Description"
|
641 |
|
642 |
-
#: wppa-ajax.php:
|
643 |
msgid "Unbalanced tags in album description!"
|
644 |
msgstr "Unbalanced tags dans la description de l'album!"
|
645 |
|
646 |
-
#: wppa-ajax.php:
|
647 |
msgid "Album order #"
|
648 |
msgstr "Ordre de l'album #"
|
649 |
|
650 |
-
#: wppa-ajax.php:
|
651 |
msgid "Cover photo"
|
652 |
msgstr "Photo de couverture"
|
653 |
|
654 |
-
#: wppa-ajax.php:
|
655 |
msgid "Parent album"
|
656 |
msgstr "Album Parent"
|
657 |
|
658 |
-
#: wppa-ajax.php:
|
659 |
msgid "Photo order"
|
660 |
msgstr "Ordre des photos"
|
661 |
|
662 |
-
#: wppa-ajax.php:
|
663 |
msgid "Use Alt thumbsize"
|
664 |
msgstr "Utiliser taille de vignette alternative"
|
665 |
|
666 |
-
#: wppa-ajax.php:
|
667 |
msgid "Cover Type"
|
668 |
msgstr "Type de couverture"
|
669 |
|
670 |
-
#: wppa-ajax.php:
|
671 |
#: wppa-settings-autosave.php:6029
|
672 |
msgid "Link type"
|
673 |
msgstr "Type de lien"
|
674 |
|
675 |
-
#: wppa-ajax.php:
|
676 |
msgid "Link to"
|
677 |
msgstr "Lien vers"
|
678 |
|
679 |
-
#: wppa-ajax.php:
|
680 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
681 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
682 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
@@ -684,227 +684,227 @@ msgstr "Lien vers"
|
|
684 |
msgid "Owner"
|
685 |
msgstr "Propriétaire"
|
686 |
|
687 |
-
#: wppa-ajax.php:
|
688 |
#, php-format
|
689 |
msgid "User %s does not exist"
|
690 |
msgstr "L'utilisateur %s n'existe pas"
|
691 |
|
692 |
-
#: wppa-ajax.php:
|
693 |
msgid "Upload limit count"
|
694 |
msgstr "Compteur limite d'upload"
|
695 |
|
696 |
-
#: wppa-ajax.php:
|
697 |
msgid "Upload limit time"
|
698 |
msgstr "Temps limite d'upload"
|
699 |
|
700 |
-
#: wppa-ajax.php:
|
701 |
msgid "Default tags"
|
702 |
msgstr "Tags par défaut"
|
703 |
|
704 |
-
#: wppa-ajax.php:
|
705 |
msgid "Categories"
|
706 |
msgstr "Catégories"
|
707 |
|
708 |
-
#: wppa-ajax.php:
|
709 |
msgid "Sub albums sort order"
|
710 |
msgstr "Ordre de tri des albums fils"
|
711 |
|
712 |
-
#: wppa-ajax.php:
|
713 |
msgid "Schedule date/time"
|
714 |
msgstr "Date/Heure de planification"
|
715 |
|
716 |
-
#: wppa-ajax.php:
|
717 |
#, php-format
|
718 |
msgid "<b>%s</b> of album %s updated"
|
719 |
msgstr "<b>%s</b> de l'album %s mis à jour"
|
720 |
|
721 |
-
#: wppa-ajax.php:
|
722 |
msgid "All photos set to scheduled per date"
|
723 |
msgstr "Toutes les photos réglées à planifié par date"
|
724 |
|
725 |
-
#: wppa-ajax.php:
|
726 |
-
#,
|
727 |
msgid "<b>Custom field %s</b> updated"
|
728 |
-
msgstr "<Champs personnalisés mis à jour"
|
729 |
|
730 |
-
#: wppa-ajax.php:
|
731 |
#, php-format
|
732 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
733 |
msgstr ""
|
734 |
"Une erreur est survenue pendant la tentative de modification <b>%s</b> de "
|
735 |
"l'album %s"
|
736 |
|
737 |
-
#: wppa-ajax.php:
|
738 |
msgid "Press CTRL+F5 and try again."
|
739 |
msgstr "Presser CTRL+F5 et réessayer."
|
740 |
|
741 |
-
#: wppa-ajax.php:
|
742 |
msgid "You do not have the rights to update comment status"
|
743 |
msgstr "Vous n'avez pas les droits pour modifier le statut du commentaire"
|
744 |
|
745 |
-
#: wppa-ajax.php:
|
746 |
#, php-format
|
747 |
msgid "Status of comment #%s updated"
|
748 |
msgstr "statut du commentaire #%s modifié"
|
749 |
|
750 |
-
#: wppa-ajax.php:
|
751 |
#, php-format
|
752 |
msgid "Error updating status comment #%s"
|
753 |
msgstr "Erreur pendant la modification du commentaire #%s"
|
754 |
|
755 |
-
#: wppa-ajax.php:
|
756 |
msgid "You do not have the rights to change photos"
|
757 |
msgstr "Vous n'avez pas les droits pour changer les photos"
|
758 |
|
759 |
-
#: wppa-ajax.php:
|
760 |
msgid "Watermark applied"
|
761 |
msgstr "Filigrane appliqué"
|
762 |
|
763 |
-
#: wppa-ajax.php:
|
764 |
msgid "An error occured while trying to apply a watermark"
|
765 |
msgstr "Une erreur est survenue pendant l'application du filigrane"
|
766 |
|
767 |
-
#: wppa-ajax.php:
|
768 |
msgid "You do not have the rights to update photo information"
|
769 |
msgstr "Vous n'avez pas les droits pour changer la description de la photo"
|
770 |
|
771 |
-
#: wppa-ajax.php:
|
772 |
#, php-format
|
773 |
msgid "%s updated to %s."
|
774 |
msgstr "%s mis à jour à %s."
|
775 |
|
776 |
-
#: wppa-ajax.php:
|
777 |
#, php-format
|
778 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
779 |
msgstr "Erreur de format %s. Doit être yyyy:mm:dd hh:mm:ss"
|
780 |
|
781 |
-
#: wppa-ajax.php:
|
782 |
msgid "Exif date/time updated"
|
783 |
msgstr "Date/heure EXIF modifiée"
|
784 |
|
785 |
-
#: wppa-ajax.php:
|
786 |
msgid "Enter a value > -90 and < 90"
|
787 |
msgstr "Entrez une valeur comprise entre -90 et 90"
|
788 |
|
789 |
-
#: wppa-ajax.php:
|
790 |
msgid "Lattitude updated"
|
791 |
msgstr "Latitude mise à jour"
|
792 |
|
793 |
-
#: wppa-ajax.php:
|
794 |
msgid "Could not update lattitude"
|
795 |
msgstr "Ne peut pas mettre à jour la latitude"
|
796 |
|
797 |
-
#: wppa-ajax.php:
|
798 |
msgid "Enter a value > -180 and < 180"
|
799 |
msgstr "Entrez une valeur comprise entre -180 et 180"
|
800 |
|
801 |
-
#: wppa-ajax.php:
|
802 |
msgid "Longitude updated"
|
803 |
msgstr "Longitude mise à jour"
|
804 |
|
805 |
-
#: wppa-ajax.php:
|
806 |
msgid "Could not update longitude"
|
807 |
msgstr "Ne peut pas mettre à jour la longitude"
|
808 |
|
809 |
-
#: wppa-ajax.php:
|
810 |
msgid "Photo files remade"
|
811 |
msgstr "Fichiers photo recréés"
|
812 |
|
813 |
-
#: wppa-ajax.php:
|
814 |
msgid "Could not remake files"
|
815 |
msgstr "Impossible de recréer les fichiers"
|
816 |
|
817 |
-
#: wppa-ajax.php:
|
818 |
msgid "Thumbnail remade"
|
819 |
msgstr "Vignettes recréées"
|
820 |
|
821 |
-
#: wppa-ajax.php:
|
822 |
msgid "Could not remake thumbnail"
|
823 |
msgstr "Impossible de recréer les vignette"
|
824 |
|
825 |
-
#: wppa-ajax.php:
|
826 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
827 |
-
#: wppa-tinymce-shortcodes.php:
|
828 |
msgid "left"
|
829 |
msgstr "gauche"
|
830 |
|
831 |
-
#: wppa-ajax.php:
|
832 |
msgid "180°"
|
833 |
msgstr "180°"
|
834 |
|
835 |
-
#: wppa-ajax.php:
|
836 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
837 |
-
#: wppa-tinymce-shortcodes.php:
|
838 |
msgid "right"
|
839 |
msgstr "droite"
|
840 |
|
841 |
-
#: wppa-ajax.php:
|
842 |
#, php-format
|
843 |
msgid "Photo %s rotated %s"
|
844 |
msgstr "Photo %s pivotée %s"
|
845 |
|
846 |
-
#: wppa-ajax.php:
|
847 |
#, php-format
|
848 |
msgid "An error occurred while trying to rotate photo %s"
|
849 |
msgstr "Une erreur est survenue pendant la rotation de la photo %s"
|
850 |
|
851 |
-
#: wppa-ajax.php:
|
852 |
#: wppa-photo-admin-autosave.php:1118
|
853 |
#, php-format
|
854 |
msgid "A photo with filename %s already exists in album %s."
|
855 |
msgstr "Une photo avec le nom de fichier %s existe déjà dans l'album %s."
|
856 |
|
857 |
-
#: wppa-ajax.php:
|
858 |
#, php-format
|
859 |
msgid "Photo %s has been moved to album %s (%s)"
|
860 |
msgstr "La photo %s a été déplacée vers l'album %s (%s)"
|
861 |
|
862 |
-
#: wppa-ajax.php:
|
863 |
#, php-format
|
864 |
msgid "An error occurred while trying to move photo %s"
|
865 |
msgstr "Une erreur est survenue pendant le déplacement de la photo %s"
|
866 |
|
867 |
-
#: wppa-ajax.php:
|
868 |
#, php-format
|
869 |
msgid "Photo %s copied to album %s (%s)"
|
870 |
msgstr "Photo %s copiée vers l'album %s (%s)"
|
871 |
|
872 |
-
#: wppa-ajax.php:
|
873 |
#, php-format
|
874 |
msgid "An error occurred while trying to copy photo %s"
|
875 |
msgstr "Une erreur est survenue pendant la copie de la photo %s"
|
876 |
|
877 |
-
#: wppa-ajax.php:
|
878 |
msgid "Unbalanced tags in photo description!"
|
879 |
msgstr "Unbalanced tags dans la description de la photo!"
|
880 |
|
881 |
-
#: wppa-ajax.php:
|
882 |
msgid "Photo order #"
|
883 |
msgstr "Photo en position #"
|
884 |
|
885 |
-
#: wppa-ajax.php:
|
886 |
#, php-format
|
887 |
msgid "User %s does not exists"
|
888 |
msgstr "L'utilisateur %s n'existe pas"
|
889 |
|
890 |
-
#: wppa-ajax.php:
|
891 |
msgid "Link url"
|
892 |
msgstr "URL du lien"
|
893 |
|
894 |
-
#: wppa-ajax.php:
|
895 |
msgid "Link title"
|
896 |
msgstr "Titre du lien"
|
897 |
|
898 |
-
#: wppa-ajax.php:
|
899 |
msgid "Link target"
|
900 |
msgstr "Cible du lien"
|
901 |
|
902 |
-
#: wppa-ajax.php:
|
903 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
904 |
msgid "Photo Tags"
|
905 |
msgstr "Tags de la photo"
|
906 |
|
907 |
-
#: wppa-ajax.php:
|
908 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
909 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
910 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
@@ -912,324 +912,324 @@ msgstr "Tags de la photo"
|
|
912 |
msgid "Status"
|
913 |
msgstr "Statut"
|
914 |
|
915 |
-
#: wppa-ajax.php:
|
916 |
msgid "HTML Alt"
|
917 |
msgstr "HTML alt"
|
918 |
|
919 |
-
#: wppa-ajax.php:
|
920 |
msgid "Video width"
|
921 |
msgstr "Largeur de la vidéo"
|
922 |
|
923 |
-
#: wppa-ajax.php:
|
924 |
msgid "Please enter an integer value >= 0"
|
925 |
msgstr "Entrer un nombre entier >= 0"
|
926 |
|
927 |
-
#: wppa-ajax.php:
|
928 |
msgid "Video height"
|
929 |
msgstr "Hauteur de la vidéo"
|
930 |
|
931 |
-
#: wppa-ajax.php:
|
932 |
#, php-format
|
933 |
msgid "<b>%s</b> of video %s updated"
|
934 |
msgstr "<b>%s</b> de la vidéo %s effectué"
|
935 |
|
936 |
-
#: wppa-ajax.php:
|
937 |
#, php-format
|
938 |
msgid "<b>%s</b> of photo %s updated"
|
939 |
msgstr "<b>%s</b> de la photo %s modifié"
|
940 |
|
941 |
-
#: wppa-ajax.php:
|
942 |
#, php-format
|
943 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
944 |
msgstr "Une erreur est survenue pendant la modification <b>%s</b> de la photo %s"
|
945 |
|
946 |
-
#: wppa-ajax.php:
|
947 |
#, php-format
|
948 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
949 |
msgstr "<b>Champ personnalisé %s</b> de la photo %s modifié"
|
950 |
|
951 |
-
#: wppa-ajax.php:
|
952 |
msgid "<b>Error during upload.</b>"
|
953 |
msgstr "<b>Erreur pendant le chargement.</b>"
|
954 |
|
955 |
-
#: wppa-ajax.php:
|
956 |
msgid "Photo files updated."
|
957 |
msgstr "Fichiers photo mis à jour."
|
958 |
|
959 |
-
#: wppa-ajax.php:
|
960 |
msgid "Could not update files."
|
961 |
msgstr "Impossible de créer les fichiers."
|
962 |
|
963 |
-
#: wppa-ajax.php:
|
964 |
#, php-format
|
965 |
msgid "Stereo mode updated in %d milliseconds"
|
966 |
msgstr "Mode stéréo modifié en %d millisecondes"
|
967 |
|
968 |
-
#: wppa-ajax.php:
|
969 |
msgid "You do not have the rights to update settings"
|
970 |
msgstr "Vous n'avez pas les droits de modifier les réglages"
|
971 |
|
972 |
-
#: wppa-ajax.php:
|
973 |
#, fuzzy
|
974 |
msgid "You do not have the rights to update photo of the day settings"
|
975 |
msgstr ""
|
976 |
"Vous ne disposez pas des droits pour mettre à jour la photo des paramètres de "
|
977 |
"jour"
|
978 |
|
979 |
-
#: wppa-ajax.php:
|
980 |
msgid "Capability granted"
|
981 |
msgstr "Capacité accordée"
|
982 |
|
983 |
-
#: wppa-ajax.php:
|
984 |
msgid "Capability withdrawn"
|
985 |
msgstr "Capacité retirée"
|
986 |
|
987 |
-
#: wppa-ajax.php:
|
988 |
msgid "Column width."
|
989 |
msgstr "Largeur de colonne."
|
990 |
|
991 |
-
#: wppa-ajax.php:
|
992 |
msgid "Initial width."
|
993 |
msgstr "Largeur initiale."
|
994 |
|
995 |
-
#: wppa-ajax.php:
|
996 |
msgid "Full size."
|
997 |
msgstr "Pleine taille."
|
998 |
|
999 |
-
#: wppa-ajax.php:
|
1000 |
msgid "Max height."
|
1001 |
msgstr "Hauteur maximum."
|
1002 |
|
1003 |
-
#: wppa-ajax.php:
|
1004 |
msgid "Thumbnail size."
|
1005 |
msgstr "Taille de la vignette"
|
1006 |
|
1007 |
-
#: wppa-ajax.php:
|
1008 |
msgid "Thumbnail frame width"
|
1009 |
msgstr "Largeur du cadre vignette"
|
1010 |
|
1011 |
-
#: wppa-ajax.php:
|
1012 |
msgid "Thumbnail frame height"
|
1013 |
msgstr "Hauteur du cadre vignette"
|
1014 |
|
1015 |
-
#: wppa-ajax.php:
|
1016 |
msgid "Thumbnail Spacing"
|
1017 |
msgstr "Espacement des vignettes"
|
1018 |
|
1019 |
-
#: wppa-ajax.php:
|
1020 |
msgid "Photocount treshold."
|
1021 |
msgstr "Seuil de comptage des photos."
|
1022 |
|
1023 |
-
#: wppa-ajax.php:
|
1024 |
msgid "Thumb page size."
|
1025 |
msgstr "Taille de la page de vignettes"
|
1026 |
|
1027 |
-
#: wppa-ajax.php:
|
1028 |
msgid "Cover photo size."
|
1029 |
msgstr "Taille de la photo de couverture."
|
1030 |
|
1031 |
-
#: wppa-ajax.php:
|
1032 |
msgid "Album page size."
|
1033 |
msgstr "Taille de page de l'album."
|
1034 |
|
1035 |
-
#: wppa-ajax.php:
|
1036 |
msgid "Number of TopTen photos"
|
1037 |
msgstr "Nombre du TopTen des photos"
|
1038 |
|
1039 |
-
#: wppa-ajax.php:
|
1040 |
msgid "Widget image thumbnail size"
|
1041 |
msgstr "Taille de la vignette dans le widget"
|
1042 |
|
1043 |
-
#: wppa-ajax.php:
|
1044 |
msgid "Max Cover width"
|
1045 |
msgstr "Largeur maximum de la couverture"
|
1046 |
|
1047 |
-
#: wppa-ajax.php:
|
1048 |
msgid "Minimal description height"
|
1049 |
msgstr "Hauteur minimale de la description"
|
1050 |
|
1051 |
-
#: wppa-ajax.php:
|
1052 |
msgid "Minimal cover height"
|
1053 |
msgstr "Hauteur minimale de la couverture"
|
1054 |
|
1055 |
-
#: wppa-ajax.php:
|
1056 |
msgid "Minimal text frame height"
|
1057 |
msgstr "Hauteur minimale du cadre de texte"
|
1058 |
|
1059 |
-
#: wppa-ajax.php:
|
1060 |
msgid "Border width"
|
1061 |
msgstr "Largeur de bordure"
|
1062 |
|
1063 |
-
#: wppa-ajax.php:
|
1064 |
#: wppa-settings-autosave.php:1411
|
1065 |
msgid "Border radius"
|
1066 |
msgstr "Rayon de bordure"
|
1067 |
|
1068 |
-
#: wppa-ajax.php:
|
1069 |
msgid "Box spacing"
|
1070 |
msgstr "Espacement boîtes"
|
1071 |
|
1072 |
-
#: wppa-ajax.php:
|
1073 |
msgid "Popup size"
|
1074 |
msgstr "Taille du popup"
|
1075 |
|
1076 |
-
#: wppa-ajax.php:
|
1077 |
msgid "Fullsize border width"
|
1078 |
msgstr "Largeur de bordure pleine taille"
|
1079 |
|
1080 |
-
#: wppa-ajax.php:
|
1081 |
msgid "Lightbox Bordersize"
|
1082 |
msgstr "Taille de bordure de Lightbox"
|
1083 |
|
1084 |
-
#: wppa-ajax.php:
|
1085 |
msgid "Lightbox Borderwidth"
|
1086 |
msgstr "Largeur de bordure de Lightbox"
|
1087 |
|
1088 |
-
#: wppa-ajax.php:
|
1089 |
msgid "Lightbox Borderradius"
|
1090 |
msgstr "Rayon de bordure de Lightbox"
|
1091 |
|
1092 |
-
#: wppa-ajax.php:
|
1093 |
msgid "Number of Comment widget entries"
|
1094 |
msgstr "Nombre d'entrées de widget commentaire"
|
1095 |
|
1096 |
-
#: wppa-ajax.php:
|
1097 |
msgid "Comment Widget image thumbnail size"
|
1098 |
msgstr "Taille de vignette du widget commentaire"
|
1099 |
|
1100 |
-
#: wppa-ajax.php:
|
1101 |
msgid "Opacity."
|
1102 |
msgstr "Opacité."
|
1103 |
|
1104 |
-
#: wppa-ajax.php:
|
1105 |
msgid "Avatar size"
|
1106 |
msgstr "Taille de l'avatar"
|
1107 |
|
1108 |
-
#: wppa-ajax.php:
|
1109 |
msgid "Watermark opacity"
|
1110 |
msgstr "Opacité du filigrane"
|
1111 |
|
1112 |
-
#: wppa-ajax.php:
|
1113 |
msgid "Number of text lines"
|
1114 |
msgstr "Nombre de lignes de texte"
|
1115 |
|
1116 |
-
#: wppa-ajax.php:
|
1117 |
msgid "Overlay opacity"
|
1118 |
msgstr "Opacité de l'overlay"
|
1119 |
|
1120 |
-
#: wppa-ajax.php:
|
1121 |
msgid "Upload limit"
|
1122 |
msgstr "Limite d'upload"
|
1123 |
|
1124 |
-
#: wppa-ajax.php:
|
1125 |
msgid "Notify inappropriate"
|
1126 |
msgstr "Notifier inapproprié"
|
1127 |
|
1128 |
-
#: wppa-ajax.php:
|
1129 |
msgid "Dislike pending"
|
1130 |
msgstr "Avis négatif en attente"
|
1131 |
|
1132 |
-
#: wppa-ajax.php:
|
1133 |
msgid "Dislike delete"
|
1134 |
msgstr "Effacer les avis négatifs"
|
1135 |
|
1136 |
-
#: wppa-ajax.php:
|
1137 |
msgid "Max execution time"
|
1138 |
msgstr "Temps d'exécution maximum"
|
1139 |
|
1140 |
-
#: wppa-ajax.php:
|
1141 |
msgid "myCRED / Cube Points"
|
1142 |
msgstr "Points myCRED / Cube"
|
1143 |
|
1144 |
-
#: wppa-ajax.php:
|
1145 |
msgid "JPG Image quality"
|
1146 |
msgstr "Qualité d'image JPG"
|
1147 |
|
1148 |
-
#: wppa-ajax.php:
|
1149 |
msgid "Number of coverphotos"
|
1150 |
msgstr "Nombre de photos de couverture"
|
1151 |
|
1152 |
-
#: wppa-ajax.php:
|
1153 |
msgid "Dislike value"
|
1154 |
msgstr "Valeur du vote négatif"
|
1155 |
|
1156 |
-
#: wppa-ajax.php:
|
1157 |
msgid "Slideshow pagesize"
|
1158 |
msgstr "Taille de page du diaporama"
|
1159 |
|
1160 |
-
#: wppa-ajax.php:
|
1161 |
msgid "Slideonly max"
|
1162 |
msgstr "Slideonly max"
|
1163 |
|
1164 |
-
#: wppa-ajax.php:
|
1165 |
msgid "Max Pagelinks"
|
1166 |
msgstr "Nb max. de liens de page"
|
1167 |
|
1168 |
-
#: wppa-ajax.php:
|
1169 |
msgid "Start/pause symbol size"
|
1170 |
msgstr "Taille du symbole Démarrer/Pause"
|
1171 |
|
1172 |
-
#: wppa-ajax.php:
|
1173 |
msgid "Start/pause symbol border radius"
|
1174 |
msgstr "Rayon de bordure du symbole Démarrer/Pause"
|
1175 |
|
1176 |
-
#: wppa-ajax.php:
|
1177 |
msgid "Stop symbol size"
|
1178 |
msgstr "Taille du symbole Stop"
|
1179 |
|
1180 |
-
#: wppa-ajax.php:
|
1181 |
msgid "Stop symbol border radius"
|
1182 |
msgstr "Rayon de bordure du symbole Stop"
|
1183 |
|
1184 |
-
#: wppa-ajax.php:
|
1185 |
msgid "Sticky header size"
|
1186 |
msgstr "Taille d'en-tête fixe"
|
1187 |
|
1188 |
-
#: wppa-ajax.php:
|
1189 |
msgid "Ratings cleared"
|
1190 |
msgstr "Notes remises à zéro"
|
1191 |
|
1192 |
-
#: wppa-ajax.php:
|
1193 |
msgid "Could not clear ratings"
|
1194 |
msgstr "Impossible d'effacer les notes"
|
1195 |
|
1196 |
-
#: wppa-ajax.php:
|
1197 |
msgid "Viewcounts cleared"
|
1198 |
msgstr "Compteur de vues remis à zéro"
|
1199 |
|
1200 |
-
#: wppa-ajax.php:
|
1201 |
msgid "Could not clear viewcounts"
|
1202 |
msgstr "Impossible d'effacer le comptage des vues"
|
1203 |
|
1204 |
-
#: wppa-ajax.php:
|
1205 |
msgid "IPTC data cleared"
|
1206 |
msgstr "Données IPTC effacées"
|
1207 |
|
1208 |
-
#: wppa-ajax.php:
|
1209 |
msgid "Refresh this page to clear table X"
|
1210 |
msgstr "Rafraîchir cette page pour nettoyer la table X"
|
1211 |
|
1212 |
-
#: wppa-ajax.php:
|
1213 |
msgid "Could not clear IPTC data"
|
1214 |
msgstr "Impossible d'effacer les données IPTC"
|
1215 |
|
1216 |
-
#: wppa-ajax.php:
|
1217 |
msgid "EXIF data cleared"
|
1218 |
msgstr "Données EXIF effacées"
|
1219 |
|
1220 |
-
#: wppa-ajax.php:
|
1221 |
msgid "Refresh this page to clear table XI"
|
1222 |
msgstr "Rafraîchir cette page pour nettoyer la table XI"
|
1223 |
|
1224 |
-
#: wppa-ajax.php:
|
1225 |
msgid "Could not clear EXIF data"
|
1226 |
msgstr "Impossible d'effacer les données EXIF"
|
1227 |
|
1228 |
-
#: wppa-ajax.php:
|
1229 |
msgid "Recuperation performed"
|
1230 |
msgstr "Récupération effectuée"
|
1231 |
|
1232 |
-
#: wppa-ajax.php:
|
1233 |
msgid ""
|
1234 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1235 |
"#77bbff"
|
@@ -1237,75 +1237,75 @@ msgstr ""
|
|
1237 |
"Format incorrect. Veuillez entrer une valeur de couleur hexadécimale à 6 "
|
1238 |
"digits. Exemple: #77bbff"
|
1239 |
|
1240 |
-
#: wppa-ajax.php:
|
1241 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1242 |
msgstr "Vous venez de changer une option qui requiert le recalcul des notes."
|
1243 |
|
1244 |
-
#: wppa-ajax.php:
|
1245 |
msgid "Please run the appropriate action in Table VIII."
|
1246 |
msgstr "Veuillez lancer l'action appropriée dans la table VIII."
|
1247 |
|
1248 |
-
#: wppa-ajax.php:
|
1249 |
#, php-format
|
1250 |
msgid "Unable to create or write to %s"
|
1251 |
msgstr "Impossible de créer ou d'écrire sur %s"
|
1252 |
|
1253 |
-
#: wppa-ajax.php:
|
1254 |
msgid "Source can not be inside the wppa folder."
|
1255 |
msgstr "La source ne peut se trouver dans le dossier WPPA."
|
1256 |
|
1257 |
-
#: wppa-ajax.php:
|
1258 |
msgid "The content must contain w#album"
|
1259 |
msgstr "Le contenu doit contenir w#album"
|
1260 |
|
1261 |
-
#: wppa-ajax.php:
|
1262 |
msgid "The content must contain w#lat and w#lon"
|
1263 |
msgstr "Le contenu doit contenir w#lat et w#lon"
|
1264 |
|
1265 |
-
#: wppa-ajax.php:
|
1266 |
msgid "Members"
|
1267 |
msgstr "Membres"
|
1268 |
|
1269 |
-
#: wppa-ajax.php:
|
1270 |
msgid "Parent of the member albums"
|
1271 |
msgstr "Parent des albums membres"
|
1272 |
|
1273 |
-
#: wppa-ajax.php:
|
1274 |
#, php-format
|
1275 |
msgid "User %s has been blacklisted."
|
1276 |
msgstr "L'utilisateur %s a été blacklisté."
|
1277 |
|
1278 |
-
#: wppa-ajax.php:
|
1279 |
#, php-format
|
1280 |
msgid "User %s does not exist."
|
1281 |
msgstr "L'utilisateur %s n'existe pas."
|
1282 |
|
1283 |
-
#: wppa-ajax.php:
|
1284 |
#, php-format
|
1285 |
msgid "User %s is now superuser."
|
1286 |
msgstr "L'utilisateur %s est maintenant superutilisateur."
|
1287 |
|
1288 |
-
#: wppa-ajax.php:
|
1289 |
msgid ""
|
1290 |
"The content of the Custom box has been changed to display the Fotomoto toolbar."
|
1291 |
msgstr ""
|
1292 |
"Le contenu de la boîte personnalisée a été changé pour afficher la barre "
|
1293 |
"d'outils Fotomoto."
|
1294 |
|
1295 |
-
#: wppa-ajax.php:
|
1296 |
msgid "The display of the custom box has been enabled"
|
1297 |
msgstr "L'affichage de la boîte personnalisée a été activé"
|
1298 |
|
1299 |
-
#: wppa-ajax.php:
|
1300 |
msgid "The content of the Custom box has been changed to display maps."
|
1301 |
msgstr ""
|
1302 |
"Le contenu de la boîte personnalisée à été modifié pour afficher des cartes."
|
1303 |
|
1304 |
-
#: wppa-ajax.php:
|
1305 |
msgid "This value can not be empty"
|
1306 |
msgstr "Cette valeur ne peut être vide"
|
1307 |
|
1308 |
-
#: wppa-ajax.php:
|
1309 |
msgid ""
|
1310 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1311 |
"encrypted urls."
|
@@ -1313,55 +1313,55 @@ msgstr ""
|
|
1313 |
"Vous devez exécuter le Table VIII-A13 et VIII-A14 avant de pouvoir passer à "
|
1314 |
"urls cryptées."
|
1315 |
|
1316 |
-
#: wppa-ajax.php:
|
1317 |
msgid "Table IV-A3 will be switched off."
|
1318 |
msgstr "Table IV-A3 sera éteint."
|
1319 |
|
1320 |
-
#: wppa-ajax.php:
|
1321 |
msgid "Table IV-A4 will be switched off."
|
1322 |
msgstr "Table IV-A4 sera éteint."
|
1323 |
|
1324 |
-
#: wppa-ajax.php:
|
1325 |
msgid "Not allowed when cryptic links is active"
|
1326 |
msgstr "Non autorisé lorsque les liens cryptiques est actif"
|
1327 |
|
1328 |
-
#: wppa-ajax.php:
|
1329 |
msgid "A Twitter account name must start with an at sign: @"
|
1330 |
msgstr "Un nom de compte Twitter doit commencer par un signe à: @"
|
1331 |
|
1332 |
-
#: wppa-ajax.php:
|
1333 |
#, php-format
|
1334 |
msgid "Failed to set %s to %s"
|
1335 |
msgstr "Échec du réglage de %s à %s"
|
1336 |
|
1337 |
-
#: wppa-ajax.php:
|
1338 |
#, php-format
|
1339 |
msgid "Setting %s updated to %s"
|
1340 |
msgstr "Réglage %s changé pour %s"
|
1341 |
|
1342 |
-
#: wppa-ajax.php:
|
1343 |
msgid "You just changed a setting that requires the regeneration of thumbnails."
|
1344 |
msgstr ""
|
1345 |
"Vous venez juste de changer un réglage qui implique la re-génération des "
|
1346 |
"vignettes."
|
1347 |
|
1348 |
-
#: wppa-ajax.php:
|
1349 |
msgid "Missing album id"
|
1350 |
msgstr "ID d'album manquant"
|
1351 |
|
1352 |
-
#: wppa-ajax.php:
|
1353 |
msgid "You do not have the rights to delete this album"
|
1354 |
msgstr "Vous n'avez pas les droits pour effacer cet album"
|
1355 |
|
1356 |
-
#: wppa-ajax.php:
|
1357 |
msgid "An error has occurred"
|
1358 |
msgstr "Une erreur est survenue"
|
1359 |
|
1360 |
-
#: wppa-ajax.php:
|
1361 |
msgid "You may also enter:"
|
1362 |
msgstr "Vous pouvez aussi entrer:"
|
1363 |
|
1364 |
-
#: wppa-ajax.php:
|
1365 |
msgid "You may also leave/set this blank"
|
1366 |
msgstr "Vous pouvez aussi laisser ceci vide"
|
1367 |
|
@@ -1409,7 +1409,7 @@ msgstr "Retour à la table albums"
|
|
1409 |
msgid "Top of page"
|
1410 |
msgstr "Haut de page"
|
1411 |
|
1412 |
-
#: wppa-album-admin-autosave.php:118 wppa-functions.php:
|
1413 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1414 |
msgid "New Album"
|
1415 |
msgstr "Nouvel album"
|
@@ -1542,8 +1542,8 @@ msgstr ""
|
|
1542 |
"Si vous voulez tri l'album par ordre #, entrez / modifiez le numéro d'ordre "
|
1543 |
"ici."
|
1544 |
|
1545 |
-
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:
|
1546 |
-
#: wppa-tinymce-shortcodes.php:
|
1547 |
msgid "Parent album:"
|
1548 |
msgstr "Album parent::"
|
1549 |
|
@@ -1559,7 +1559,7 @@ msgstr "Ordre des photos:"
|
|
1559 |
|
1560 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1561 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1562 |
-
#: wppa-tinymce-shortcodes.php:
|
1563 |
msgid "--- default ---"
|
1564 |
msgstr "--- défaut ---"
|
1565 |
|
@@ -2075,8 +2075,8 @@ msgstr ""
|
|
2075 |
#: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
|
2076 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
2077 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2078 |
-
#: wppa-comment-admin.php:406 wppa-functions.php:2115 wppa-links.php:
|
2079 |
-
#: wppa-links.php:
|
2080 |
#: wppa-photo-admin-autosave.php:1380 wppa-thumbnails.php:629
|
2081 |
msgid "Delete"
|
2082 |
msgstr "Supprimer"
|
@@ -2489,7 +2489,7 @@ msgstr "--- tous albums génériques ---"
|
|
2489 |
msgid "--- all separate albums ---"
|
2490 |
msgstr "--- tous albums séparés ---"
|
2491 |
|
2492 |
-
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:
|
2493 |
#: wppa-items.php:436
|
2494 |
msgid "--- owner/public ---"
|
2495 |
msgstr "--- Propriétaire / publique ---"
|
@@ -2619,7 +2619,7 @@ msgstr "Moyenne des notes:"
|
|
2619 |
msgid "Rating count:"
|
2620 |
msgstr "Nombre de notes:"
|
2621 |
|
2622 |
-
#: wppa-bestof-widget.php:198 wppa-common-functions.php:
|
2623 |
#: wppa-items.php:424 wppa-potd-admin.php:100 wppa-potd-admin.php:136
|
2624 |
#: wppa-settings-autosave.php:1393 wppa-settings-autosave.php:1742
|
2625 |
#: wppa-settings-autosave.php:1947 wppa-settings-autosave.php:3813
|
@@ -2629,7 +2629,7 @@ msgstr "Nombre de notes:"
|
|
2629 |
#: wppa-settings-autosave.php:7818 wppa-settings-autosave.php:8037
|
2630 |
#: wppa-settings-autosave.php:8093 wppa-settings-autosave.php:8956
|
2631 |
#: wppa-settings-autosave.php:9113 wppa-thumbnail-widget.php:200
|
2632 |
-
#: wppa-tinymce-scripts.php:287 wppa-tinymce-shortcodes.php:
|
2633 |
#: wppa-watermark.php:519
|
2634 |
msgid "--- none ---"
|
2635 |
msgstr "--- aucun ---"
|
@@ -2839,7 +2839,7 @@ msgstr "Entrez la description de l'album"
|
|
2839 |
msgid "Create album"
|
2840 |
msgstr "Créer un album"
|
2841 |
|
2842 |
-
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:
|
2843 |
msgid "Max uploads reached"
|
2844 |
msgstr "Ajout maximum ateind"
|
2845 |
|
@@ -3005,7 +3005,7 @@ msgstr "a écrit:"
|
|
3005 |
msgid "Avatar"
|
3006 |
msgstr "Avatar"
|
3007 |
|
3008 |
-
#: wppa-boxes-html.php:3109 wppa-links.php:
|
3009 |
msgid "Awaiting moderation"
|
3010 |
msgstr "En attente de modération"
|
3011 |
|
@@ -3567,14 +3567,14 @@ msgstr "Photo non trouvée"
|
|
3567 |
msgid "There are no commented photos (yet)"
|
3568 |
msgstr "Il n'y pas encore de photos commentariés"
|
3569 |
|
3570 |
-
#: wppa-common-functions.php:
|
3571 |
#, php-format
|
3572 |
msgid "%d second"
|
3573 |
msgid_plural "%d seconds"
|
3574 |
msgstr[0] "%d seconde"
|
3575 |
msgstr[1] "%d secondes"
|
3576 |
|
3577 |
-
#: wppa-common-functions.php:
|
3578 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
3579 |
#, php-format
|
3580 |
msgid "%d minute"
|
@@ -3582,7 +3582,7 @@ msgid_plural "%d minutes"
|
|
3582 |
msgstr[0] "%d minute"
|
3583 |
msgstr[1] "%d minutes"
|
3584 |
|
3585 |
-
#: wppa-common-functions.php:
|
3586 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
3587 |
#, php-format
|
3588 |
msgid "%d hour"
|
@@ -3590,7 +3590,7 @@ msgid_plural "%d hours"
|
|
3590 |
msgstr[0] "%d heure"
|
3591 |
msgstr[1] "%d heures"
|
3592 |
|
3593 |
-
#: wppa-common-functions.php:
|
3594 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
3595 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
3596 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
@@ -3603,7 +3603,7 @@ msgid_plural "%d days"
|
|
3603 |
msgstr[0] "%d jour"
|
3604 |
msgstr[1] "%d jours"
|
3605 |
|
3606 |
-
#: wppa-common-functions.php:
|
3607 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
3608 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
3609 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
@@ -3613,7 +3613,7 @@ msgid_plural "%d weeks"
|
|
3613 |
msgstr[0] "%d semaine"
|
3614 |
msgstr[1] "%d semaines"
|
3615 |
|
3616 |
-
#: wppa-common-functions.php:
|
3617 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
3618 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
3619 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
@@ -3623,7 +3623,7 @@ msgid_plural "%d months"
|
|
3623 |
msgstr[0] "%d mois"
|
3624 |
msgstr[1] "%d mois"
|
3625 |
|
3626 |
-
#: wppa-common-functions.php:
|
3627 |
#: wppa-settings-autosave.php:9025
|
3628 |
#, php-format
|
3629 |
msgid "%d year"
|
@@ -3631,7 +3631,7 @@ msgid_plural "%d years"
|
|
3631 |
msgstr[0] "%d an"
|
3632 |
msgstr[1] "%d ans"
|
3633 |
|
3634 |
-
#: wppa-common-functions.php:
|
3635 |
#, php-format
|
3636 |
msgid ""
|
3637 |
"Based on your server memory limit you should not upload images larger then "
|
@@ -3641,38 +3641,38 @@ msgstr ""
|
|
3641 |
"devriez pas charger des images plus grandes que : <strong>%d x %d (%2.1f MP)</"
|
3642 |
"strong>"
|
3643 |
|
3644 |
-
#: wppa-common-functions.php:
|
3645 |
msgid "- select an album -"
|
3646 |
msgstr "- Choisir un album -"
|
3647 |
|
3648 |
-
#: wppa-common-functions.php:
|
3649 |
#: wppa-multitag-widget.php:84 wppa-slideshow-widget.php:199
|
3650 |
#: wppa-tagcloud-widget.php:71 wppa-tagcloud-widget.php:79
|
3651 |
msgid "--- all ---"
|
3652 |
msgstr "--- tout ---"
|
3653 |
|
3654 |
-
#: wppa-common-functions.php:
|
3655 |
msgid "--- generic ---"
|
3656 |
msgstr "--- générique ---"
|
3657 |
|
3658 |
-
#: wppa-common-functions.php:
|
3659 |
msgid "--- multiple see below ---"
|
3660 |
msgstr "--- multiples voir ci-dessous ---"
|
3661 |
|
3662 |
-
#: wppa-common-functions.php:
|
3663 |
msgid "--- a selection box ---"
|
3664 |
msgstr "--- une sélection ---"
|
3665 |
|
3666 |
-
#: wppa-common-functions.php:
|
3667 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
3668 |
msgid "--- separate ---"
|
3669 |
msgstr "--- séparé ---"
|
3670 |
|
3671 |
-
#: wppa-common-functions.php:
|
3672 |
msgid "Photo id ="
|
3673 |
msgstr "ID photo ="
|
3674 |
|
3675 |
-
#: wppa-common-functions.php:
|
3676 |
msgid "Value ="
|
3677 |
msgstr "Valeur ="
|
3678 |
|
@@ -4040,7 +4040,7 @@ msgstr ""
|
|
4040 |
"Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. Veuillez "
|
4041 |
"redéfinir vos critères de recherche."
|
4042 |
|
4043 |
-
#: wppa-functions.php:2112 wppa-links.php:
|
4044 |
#: wppa-thumbnails.php:627
|
4045 |
msgid "Are you sure you want to remove this photo?"
|
4046 |
msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
|
@@ -4084,7 +4084,7 @@ msgstr "écrit sur les photos"
|
|
4084 |
msgid "Moderate comment admin"
|
4085 |
msgstr "Moderate comment admin"
|
4086 |
|
4087 |
-
#: wppa-functions.php:2366 wppa-functions.php:
|
4088 |
#: wppa-upload.php:570
|
4089 |
msgid "Moderate manage photo"
|
4090 |
msgstr "Moderate manage photo"
|
@@ -4124,140 +4124,140 @@ msgstr ""
|
|
4124 |
msgid "Could not process comment.\\nProbably timed out."
|
4125 |
msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
|
4126 |
|
4127 |
-
#: wppa-functions.php:2604 wppa-links.php:
|
4128 |
msgid "A video can not be printed or downloaded"
|
4129 |
msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
|
4130 |
|
4131 |
-
#: wppa-functions.php:
|
4132 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4133 |
msgstr "<b>ERREUR: Tentative illicite d'entrer une note.</b>"
|
4134 |
|
4135 |
-
#: wppa-functions.php:
|
4136 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4137 |
msgstr "<b>ERREUR: Tentative illicite d'entrer un commentaire.</b>"
|
4138 |
|
4139 |
-
#: wppa-functions.php:
|
4140 |
msgid "ERROR: Illegal attempt to create an album."
|
4141 |
msgstr "<b>ERREUR: Tentative incorrecte de créer un album.</b>"
|
4142 |
|
4143 |
-
#: wppa-functions.php:
|
4144 |
msgid "Wrong captcha, please try again"
|
4145 |
msgstr "Captcha faux, veuillez recommencer"
|
4146 |
|
4147 |
-
#: wppa-functions.php:
|
4148 |
#, php-format
|
4149 |
msgid "Album #%s created"
|
4150 |
msgstr "Album #%s créé"
|
4151 |
|
4152 |
-
#: wppa-functions.php:
|
4153 |
msgid "Could not create album"
|
4154 |
msgstr "Impossible de créer un album"
|
4155 |
|
4156 |
-
#: wppa-functions.php:
|
4157 |
msgid "ERROR: Illegal attempt to upload a file."
|
4158 |
msgstr "<b>ERREUR: tentative illicite de télécharger un fichier.</b>"
|
4159 |
|
4160 |
-
#: wppa-functions.php:
|
4161 |
msgid "Photo upload"
|
4162 |
msgstr "Chargement photo"
|
4163 |
|
4164 |
-
#: wppa-functions.php:
|
4165 |
#, php-format
|
4166 |
msgid "%d photo successfully uploaded"
|
4167 |
msgid_plural "%d photos successfully uploaded"
|
4168 |
msgstr[0] "%d photo chargées avec succès"
|
4169 |
msgstr[1] "%d photos chargées avec succès"
|
4170 |
|
4171 |
-
#: wppa-functions.php:
|
4172 |
#, php-format
|
4173 |
msgid "%s points added"
|
4174 |
msgstr "%s points ajoutés"
|
4175 |
|
4176 |
-
#: wppa-functions.php:
|
4177 |
#, fuzzy
|
4178 |
msgid "Your post is awaiting moderation."
|
4179 |
msgstr "Votre contribution est en attente de modération."
|
4180 |
|
4181 |
-
#: wppa-functions.php:
|
4182 |
msgid "Upload failed"
|
4183 |
msgstr "chargement échoué"
|
4184 |
|
4185 |
-
#: wppa-functions.php:
|
4186 |
#, php-format
|
4187 |
msgid "%d upload failed"
|
4188 |
msgid_plural "%d uploads failed"
|
4189 |
msgstr[0] "%d chargement échoué"
|
4190 |
msgstr[1] "%d chargements échoués"
|
4191 |
|
4192 |
-
#: wppa-functions.php:
|
4193 |
msgid "Error during upload"
|
4194 |
msgstr "Erreur durant le chargement"
|
4195 |
|
4196 |
-
#: wppa-functions.php:
|
4197 |
msgid "Could not insert media into db."
|
4198 |
msgstr "Impossible d'insérer dans les médias db."
|
4199 |
|
4200 |
-
#: wppa-functions.php:
|
4201 |
msgid "Uploaded file is not an image"
|
4202 |
msgstr "Le fichier chargé n'est pas une image"
|
4203 |
|
4204 |
-
#: wppa-functions.php:
|
4205 |
#, php-format
|
4206 |
msgid "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4207 |
msgstr ""
|
4208 |
"Seulement les formats .GIF, .JPG et .PNG sont supportés. Type de fichier "
|
4209 |
"retourné= %d."
|
4210 |
|
4211 |
-
#: wppa-functions.php:
|
4212 |
#, php-format
|
4213 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4214 |
msgstr ""
|
4215 |
"Le fichier chargé est plus grand que la taille maximum autorisée %d x %d "
|
4216 |
"pixels."
|
4217 |
|
4218 |
-
#: wppa-functions.php:
|
4219 |
#, php-format
|
4220 |
msgid "Uploaded file %s already exists in this album."
|
4221 |
msgstr "Le fichier chargé %s existe déjà dans cet album."
|
4222 |
|
4223 |
-
#: wppa-functions.php:
|
4224 |
#, php-format
|
4225 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4226 |
msgstr "L'image est trop grande. Taille max photo: %d x %d (%2.1f MegaPixel)"
|
4227 |
|
4228 |
-
#: wppa-functions.php:
|
4229 |
msgid "Could not insert photo into db."
|
4230 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4231 |
|
4232 |
-
#: wppa-functions.php:
|
4233 |
#, php-format
|
4234 |
msgid "New photo uploaded: %s"
|
4235 |
msgstr "Nouvelle photo chargée: %s"
|
4236 |
|
4237 |
-
#: wppa-functions.php:
|
4238 |
#, php-format
|
4239 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4240 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4241 |
|
4242 |
-
#: wppa-functions.php:
|
4243 |
msgid "This upload requires moderation"
|
4244 |
msgstr "Cet upload nécessite une modération"
|
4245 |
|
4246 |
-
#: wppa-functions.php:
|
4247 |
msgid "Details:"
|
4248 |
msgstr "Détails:"
|
4249 |
|
4250 |
-
#: wppa-functions.php:
|
4251 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4252 |
msgid "Manage photo"
|
4253 |
msgstr "Gérer photo"
|
4254 |
|
4255 |
-
#: wppa-functions.php:
|
4256 |
msgid "You can upload after"
|
4257 |
msgstr "Vous pouvez charger après"
|
4258 |
|
4259 |
-
#: wppa-functions.php:
|
4260 |
-
#: wppa-functions.php:
|
4261 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4262 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4263 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
@@ -4265,22 +4265,22 @@ msgstr "Vous pouvez charger après"
|
|
4265 |
msgid "Download"
|
4266 |
msgstr "Télécharger"
|
4267 |
|
4268 |
-
#: wppa-functions.php:
|
4269 |
msgid "Zoom in"
|
4270 |
msgstr "Zoom in"
|
4271 |
|
4272 |
-
#: wppa-functions.php:
|
4273 |
#, fuzzy, php-format
|
4274 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4275 |
msgstr ""
|
4276 |
"Vous pouvez voter à nouveau après%s jours,%s heures,%s minutes et%s secondes"
|
4277 |
|
4278 |
-
#: wppa-functions.php:
|
4279 |
#, fuzzy, php-format
|
4280 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4281 |
msgstr "Vous pouvez voter à nouveau après%s heures,%s minutes et%s secondes"
|
4282 |
|
4283 |
-
#: wppa-functions.php:
|
4284 |
#, fuzzy, php-format
|
4285 |
msgid "You can vote again after %s minutes and %s seconds"
|
4286 |
msgstr "Vous pouvez voter à nouveau après%s minutes et%s secondes"
|
@@ -5109,70 +5109,70 @@ msgstr "noms des photos"
|
|
5109 |
msgid "Show time since:"
|
5110 |
msgstr "Montrer la durée depuis:"
|
5111 |
|
5112 |
-
#: wppa-links.php:
|
5113 |
msgid "App"
|
5114 |
msgstr "App"
|
5115 |
|
5116 |
-
#: wppa-links.php:
|
5117 |
msgid "Mod"
|
5118 |
msgstr "Mod"
|
5119 |
|
5120 |
-
#: wppa-links.php:
|
5121 |
msgid "Del"
|
5122 |
msgstr "Del"
|
5123 |
|
5124 |
-
#: wppa-links.php:
|
5125 |
msgid "Are you sure you want to publish this photo?"
|
5126 |
msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
|
5127 |
|
5128 |
-
#: wppa-links.php:
|
5129 |
msgid "Approve"
|
5130 |
msgstr "Approuver"
|
5131 |
|
5132 |
-
#: wppa-links.php:
|
5133 |
msgid "Moderate"
|
5134 |
msgstr "Modérer"
|
5135 |
|
5136 |
-
#: wppa-links.php:
|
5137 |
msgid "PhotoAdmin"
|
5138 |
msgstr "Admin Photo"
|
5139 |
|
5140 |
-
#: wppa-links.php:
|
5141 |
msgid "CommentAdmin"
|
5142 |
msgstr "Admin Commentaires"
|
5143 |
|
5144 |
-
#: wppa-links.php:
|
5145 |
msgid "Are you sure you want to publish this comment?"
|
5146 |
msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
|
5147 |
|
5148 |
-
#: wppa-links.php:
|
5149 |
msgid "Are you sure you want to remove this comment?"
|
5150 |
msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
|
5151 |
|
5152 |
-
#: wppa-links.php:
|
5153 |
#, php-format
|
5154 |
msgid "Scheduled for %s"
|
5155 |
msgstr "Planifié pour %s"
|
5156 |
|
5157 |
-
#: wppa-links.php:
|
5158 |
msgid "Previous"
|
5159 |
msgstr "Préc."
|
5160 |
|
5161 |
-
#: wppa-links.php:
|
5162 |
#: wppa-slideshow.php:1137
|
5163 |
msgid "Next"
|
5164 |
msgstr "Suiv."
|
5165 |
|
5166 |
-
#: wppa-links.php:
|
5167 |
#, fuzzy
|
5168 |
msgid "Download Album"
|
5169 |
msgstr "Télécharger Album"
|
5170 |
|
5171 |
-
#: wppa-links.php:
|
5172 |
msgid "View thumbnails"
|
5173 |
msgstr "Visualiser les vignettes"
|
5174 |
|
5175 |
-
#: wppa-links.php:
|
5176 |
msgid "View fullsize slideshow"
|
5177 |
msgstr "Voir le diaporama fullsize"
|
5178 |
|
@@ -6085,7 +6085,7 @@ msgid "pixels wide"
|
|
6085 |
msgstr "pixels en largeur"
|
6086 |
|
6087 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
6088 |
-
#: wppa-tinymce-shortcodes.php:
|
6089 |
msgid "Horizontal alignment:"
|
6090 |
msgstr "Alignement horizontal:"
|
6091 |
|
@@ -6098,7 +6098,7 @@ msgstr ""
|
|
6098 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
6099 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
6100 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
6101 |
-
#: wppa-tinymce-shortcodes.php:
|
6102 |
msgid "center"
|
6103 |
msgstr "Centre"
|
6104 |
|
@@ -17873,8 +17873,8 @@ msgid "--- All photos in the system ---"
|
|
17873 |
msgstr "--- Toutes les photos ---"
|
17874 |
|
17875 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
17876 |
-
#: wppa-tinymce-shortcodes.php:
|
17877 |
-
#: wppa-tinymce-shortcodes.php:
|
17878 |
msgid "There are no albums yet"
|
17879 |
msgstr "Il n'y a pas encore d'albums"
|
17880 |
|
@@ -17895,11 +17895,11 @@ msgstr ""
|
|
17895 |
msgid "* Album contains less than the minimun number of photos"
|
17896 |
msgstr "* L'album contient moins que le nombre minimum de photos"
|
17897 |
|
17898 |
-
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:
|
17899 |
msgid "The Photo to be used:"
|
17900 |
msgstr "La photo à utiliser:"
|
17901 |
|
17902 |
-
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:
|
17903 |
msgid "Please select a photo"
|
17904 |
msgstr "Sélectionner une photo"
|
17905 |
|
@@ -17911,15 +17911,15 @@ msgstr "--- La dernière photo chargée ---"
|
|
17911 |
msgid "--- The photo of the day ---"
|
17912 |
msgstr "--- La photo du jour ---"
|
17913 |
|
17914 |
-
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:
|
17915 |
msgid "There are no photos yet"
|
17916 |
msgstr "Il n'y pas encore de photos"
|
17917 |
|
17918 |
-
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:
|
17919 |
msgid "Specify the photo to be used"
|
17920 |
msgstr "Spécifie la photo à utiliser"
|
17921 |
|
17922 |
-
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:
|
17923 |
msgid "You can select from a maximum of 100 most recently added photos"
|
17924 |
msgstr ""
|
17925 |
"Vous pouvez sélectionner parmi un maximum de 100 photos récemment ajoutées"
|
@@ -17928,7 +17928,7 @@ msgstr ""
|
|
17928 |
msgid "The tags the photos should have:"
|
17929 |
msgstr "Les tags que les photos doivent avoir:"
|
17930 |
|
17931 |
-
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:
|
17932 |
msgid "--- please select tag(s) ---"
|
17933 |
msgstr "--- choisir tag(s) ---"
|
17934 |
|
@@ -17940,11 +17940,11 @@ msgstr ""
|
|
17940 |
"Si vous voulez que les photos aient tous les tags sélectionnés, cochez cette "
|
17941 |
"boîte. Laissez décoché si la photo doit avoir au moins un des tags sélectionnés"
|
17942 |
|
17943 |
-
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:
|
17944 |
msgid "The size of the display:"
|
17945 |
msgstr "La taille de l'affichage:"
|
17946 |
|
17947 |
-
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:
|
17948 |
msgid ""
|
17949 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
17950 |
"span>."
|
@@ -17952,7 +17952,7 @@ msgstr ""
|
|
17952 |
"Spécifie la taille horizontale en pixels ou <span style=\"color:blue\" >auto</"
|
17953 |
"span>."
|
17954 |
|
17955 |
-
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:
|
17956 |
msgid ""
|
17957 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
17958 |
"interpreted as a <span style=\"color:blue\" >percentage</span> of the "
|
@@ -17962,15 +17962,15 @@ msgstr ""
|
|
17962 |
"automatiquement interprétée comme un <span style=\"color:blue\" >pourcentage</"
|
17963 |
"span> de l'espace disponible."
|
17964 |
|
17965 |
-
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:
|
17966 |
msgid "Leave this blank for default size"
|
17967 |
msgstr "Laisser vide pour la taille par défaut"
|
17968 |
|
17969 |
-
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:
|
17970 |
msgid "Specify the alignment to be used or --- none ---"
|
17971 |
msgstr "Spécifier l'alignement à utiliser ou --- aucun ---"
|
17972 |
|
17973 |
-
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:
|
17974 |
msgid "Insert Gallery"
|
17975 |
msgstr "Insérer galerie"
|
17976 |
|
@@ -18199,7 +18199,7 @@ msgstr "Albums tagués avec certaines catégories"
|
|
18199 |
msgid "All albums in the system"
|
18200 |
msgstr "Tous les albums dans le système"
|
18201 |
|
18202 |
-
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:
|
18203 |
msgid "The Album(s) to be used:"
|
18204 |
msgstr "Le(s) album(s) à utiliser:"
|
18205 |
|
@@ -18207,136 +18207,148 @@ msgstr "Le(s) album(s) à utiliser:"
|
|
18207 |
msgid "Please select one or more albums"
|
18208 |
msgstr "Sélectionner un ou plus album(s)"
|
18209 |
|
18210 |
-
#: wppa-tinymce-shortcodes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18211 |
msgid "All albums"
|
18212 |
msgstr "Tous les albums"
|
18213 |
|
18214 |
-
#: wppa-tinymce-shortcodes.php:
|
18215 |
msgid "The album owner:"
|
18216 |
msgstr "Le propriétaire de l'album:"
|
18217 |
|
18218 |
-
#: wppa-tinymce-shortcodes.php:
|
18219 |
msgid "Please select a user"
|
18220 |
msgstr "Veuillez sélectionner un utilisateur"
|
18221 |
|
18222 |
-
#: wppa-tinymce-shortcodes.php:
|
18223 |
msgid "The logged in visitor"
|
18224 |
msgstr "Le visiteur connecté"
|
18225 |
|
18226 |
-
#: wppa-tinymce-shortcodes.php:
|
18227 |
msgid "Too many users, edit manually"
|
18228 |
msgstr "Trop d'utilisateurs, modifier manuellement"
|
18229 |
|
18230 |
-
#: wppa-tinymce-shortcodes.php:
|
18231 |
msgid "No parent specification"
|
18232 |
msgstr "Pas de parent spécifié"
|
18233 |
|
18234 |
-
#: wppa-tinymce-shortcodes.php:
|
18235 |
-
#: wppa-tinymce-shortcodes.php:
|
18236 |
msgid "The generic parent"
|
18237 |
msgstr "Le parent générique"
|
18238 |
|
18239 |
-
#: wppa-tinymce-shortcodes.php:
|
18240 |
msgid "Max Albums:"
|
18241 |
msgstr "Max Albums:"
|
18242 |
|
18243 |
-
#: wppa-tinymce-shortcodes.php:
|
18244 |
msgid "Max Photos:"
|
18245 |
msgstr "Max Photos:"
|
18246 |
|
18247 |
-
#: wppa-tinymce-shortcodes.php:
|
18248 |
msgid "The album cat(s):"
|
18249 |
msgstr "L'album cat(s):"
|
18250 |
|
18251 |
-
#: wppa-tinymce-shortcodes.php:
|
18252 |
msgid "--- please select category ---"
|
18253 |
msgstr "--- Choisir catégorie ---"
|
18254 |
|
18255 |
-
#: wppa-tinymce-shortcodes.php:
|
18256 |
msgid "The photo of the day"
|
18257 |
msgstr "La photo du jour"
|
18258 |
|
18259 |
-
#: wppa-tinymce-shortcodes.php:
|
18260 |
msgid "The most recently uploaded photo"
|
18261 |
msgstr "Voir les photos chargées récemment"
|
18262 |
|
18263 |
-
#: wppa-tinymce-shortcodes.php:
|
18264 |
msgid "Preview image:"
|
18265 |
msgstr "Prévisualiser image:"
|
18266 |
|
18267 |
-
#: wppa-tinymce-shortcodes.php:
|
18268 |
msgid "The photo tag(s):"
|
18269 |
msgstr "La tag(s) de photo:"
|
18270 |
|
18271 |
-
#: wppa-tinymce-shortcodes.php:
|
18272 |
msgid "Or / And:"
|
18273 |
msgstr "Ou / Et:"
|
18274 |
|
18275 |
-
#: wppa-tinymce-shortcodes.php:
|
18276 |
msgid "Meet any"
|
18277 |
msgstr "Répond à aucun"
|
18278 |
|
18279 |
-
#: wppa-tinymce-shortcodes.php:
|
18280 |
msgid "Meet all"
|
18281 |
msgstr "Répond tous"
|
18282 |
|
18283 |
-
#: wppa-tinymce-shortcodes.php:
|
18284 |
msgid "Additional features:"
|
18285 |
msgstr "Fonctionnalités additionnelles"
|
18286 |
|
18287 |
-
#: wppa-tinymce-shortcodes.php:
|
18288 |
msgid "Enable Subsearch"
|
18289 |
msgstr "Activer subsearch"
|
18290 |
|
18291 |
-
#: wppa-tinymce-shortcodes.php:
|
18292 |
msgid "Enable Rootsearch"
|
18293 |
msgstr "Activer rootsearch"
|
18294 |
|
18295 |
-
#: wppa-tinymce-shortcodes.php:
|
18296 |
msgid "Search root:"
|
18297 |
msgstr "Rechercher root:"
|
18298 |
|
18299 |
-
#: wppa-tinymce-shortcodes.php:
|
18300 |
msgid "Landing page:"
|
18301 |
msgstr "Page de destination"
|
18302 |
|
18303 |
-
#: wppa-tinymce-shortcodes.php:
|
18304 |
msgid "Enable all tags"
|
18305 |
msgstr "Activer tous les tags"
|
18306 |
|
18307 |
-
#: wppa-tinymce-shortcodes.php:
|
18308 |
msgid "Please select the tags to show"
|
18309 |
msgstr "Veuillez sélectionner les tags à afficher"
|
18310 |
|
18311 |
-
#: wppa-tinymce-shortcodes.php:
|
18312 |
msgid "There are no tags"
|
18313 |
msgstr "Il n'y a pas de tags"
|
18314 |
|
18315 |
-
#: wppa-tinymce-shortcodes.php:
|
18316 |
msgid "Calendar type:"
|
18317 |
msgstr "Type de calendrier:"
|
18318 |
|
18319 |
-
#: wppa-tinymce-shortcodes.php:
|
18320 |
msgid "By EXIF date"
|
18321 |
msgstr "Par date EXIF"
|
18322 |
|
18323 |
-
#: wppa-tinymce-shortcodes.php:
|
18324 |
msgid "By date of upload"
|
18325 |
msgstr "Par date de chargement"
|
18326 |
|
18327 |
-
#: wppa-tinymce-shortcodes.php:
|
18328 |
msgid "By date last modified"
|
18329 |
msgstr "Par date de modification (dernière)"
|
18330 |
|
18331 |
-
#: wppa-tinymce-shortcodes.php:
|
18332 |
msgid "Last date first"
|
18333 |
msgstr "Date la plus récente en premier"
|
18334 |
|
18335 |
-
#: wppa-tinymce-shortcodes.php:
|
18336 |
msgid "Initially display all"
|
18337 |
msgstr "Tout afficher au début"
|
18338 |
|
18339 |
-
#: wppa-tinymce-shortcodes.php:
|
18340 |
#, fuzzy
|
18341 |
msgid ""
|
18342 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
@@ -18345,7 +18357,7 @@ msgstr ""
|
|
18345 |
"Pour réactif avec un maximum fixe, ajouter le max à l' auto par exemple <span "
|
18346 |
"style=\"color:blue\" >auto, 550</span>"
|
18347 |
|
18348 |
-
#: wppa-tinymce-shortcodes.php:
|
18349 |
msgid ""
|
18350 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
18351 |
"comment"
|
@@ -18353,11 +18365,11 @@ msgstr ""
|
|
18353 |
"Ceci est une prévisualisation du shortcode généré. Vous pouvez modifier le "
|
18354 |
"commentaire"
|
18355 |
|
18356 |
-
#: wppa-tinymce-shortcodes.php:
|
18357 |
msgid "insert Gallery"
|
18358 |
msgstr "insérer gallerie"
|
18359 |
|
18360 |
-
#: wppa-tinymce-shortcodes.php:
|
18361 |
msgid "Please complete the shortcode specs"
|
18362 |
msgstr "Veuillez remplir les spécifications du shortcode"
|
18363 |
|
@@ -18734,3 +18746,12 @@ msgstr "J.N. Breetvelt a.k.a. OpaJaap"
|
|
18734 |
#. Author URI of the plugin/theme
|
18735 |
msgid "http://wppa.opajaap.nl/"
|
18736 |
msgstr "http://wppa.opajaap.nl/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Photo Album Plus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-09-23 13:57+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-09-23 13:57+0200\n"
|
7 |
"Last-Translator: J.N. Breetvelt <OpaJaap@OpaJaap.nl>\n"
|
8 |
"Language-Team: French <kde-i18n-doc@kde.org>\n"
|
9 |
"Language: fr_FR\n"
|
105 |
msgid "Settings file not found"
|
106 |
msgstr "Fichier de paramètres non trouvé"
|
107 |
|
108 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
109 |
+
#: wppa-ajax.php:2718
|
110 |
msgid "Please supply a numeric value greater than or equal to"
|
111 |
msgstr "Entrez une valeur numérique supérieure ou égale à"
|
112 |
|
113 |
+
#: wppa-admin-functions.php:204 wppa-admin-functions.php:208 wppa-ajax.php:2711
|
114 |
+
#: wppa-ajax.php:2718
|
115 |
msgid "for"
|
116 |
msgstr "pour"
|
117 |
|
118 |
+
#: wppa-admin-functions.php:208 wppa-ajax.php:2718
|
119 |
msgid "and less than or equal to"
|
120 |
msgstr "et inférieure ou égale à"
|
121 |
|
298 |
msgstr "Documentation"
|
299 |
|
300 |
#: wppa-admin.php:111
|
301 |
+
msgid "Uploading is temporary disabled for you"
|
302 |
+
msgstr "Téléchargement est désactivé temporaire pour vous"
|
303 |
|
304 |
#: wppa-admin.php:118
|
305 |
+
msgid "Editing is temporary disabled for you"
|
306 |
+
msgstr "La modification est temporaire désactivé pour vous"
|
307 |
|
308 |
#: wppa-admin.php:125
|
309 |
+
msgid "Importing is temporary disabled for you"
|
310 |
+
msgstr "L’importation est désactivé temporaire pour vous"
|
311 |
|
312 |
#: wppa-admin.php:128 wppa-import.php:1226
|
313 |
msgid "Import"
|
366 |
msgstr "Quitter et rafraîchirr"
|
367 |
|
368 |
#: wppa-ajax.php:250 wppa-ajax.php:316 wppa-ajax.php:351 wppa-ajax.php:629
|
369 |
+
#: wppa-ajax.php:929 wppa-ajax.php:2668
|
370 |
msgid "Security check failure"
|
371 |
msgstr "Echec de la vérification de sécurité"
|
372 |
|
374 |
msgid "You do not have the rights to moderate photos this way"
|
375 |
msgstr "Vous n'avez pas les droits de modérer les photos de cette façon"
|
376 |
|
377 |
+
#: wppa-ajax.php:300 wppa-ajax.php:1233 wppa-functions.php:2339
|
378 |
msgid "Photo comment approved"
|
379 |
msgstr "Commentaire photo approuvé"
|
380 |
|
530 |
"vous pouvez rafraîchir la page\n"
|
531 |
"pour voir votre vote apparaître."
|
532 |
|
533 |
+
#: wppa-ajax.php:925
|
534 |
msgid "You do not have the rights to delete a photo"
|
535 |
msgstr "Vous n'avez pas les droits pour effacer une photo"
|
536 |
|
537 |
+
#: wppa-ajax.php:935
|
538 |
#, php-format
|
539 |
msgid "Photo %s has been deleted"
|
540 |
msgstr "La photo %s a été effacée."
|
541 |
|
542 |
+
#: wppa-ajax.php:951
|
543 |
msgid "You do not have the rights to update album information"
|
544 |
msgstr "Vous n'avez pas les droits pour mettre à jour la description de l'album"
|
545 |
|
546 |
+
#: wppa-ajax.php:963
|
547 |
msgid "<b>Ratings cleared</b>"
|
548 |
msgstr "<b>Notes effacées</b>"
|
549 |
|
550 |
+
#: wppa-ajax.php:963 wppa-ajax.php:969 wppa-photo-admin-autosave.php:318
|
551 |
msgid "No ratings for this photo."
|
552 |
msgstr "Pas de notes pour cette photo."
|
553 |
|
554 |
+
#: wppa-ajax.php:966
|
555 |
msgid "An error occurred while clearing ratings"
|
556 |
msgstr "Une erreur est survenue pendant l'effacement des notes"
|
557 |
|
558 |
+
#: wppa-ajax.php:969 wppa-ajax.php:990 wppa-ajax.php:1012
|
559 |
msgid "<b>No photos in this album</b>"
|
560 |
msgstr "<b>Pas de photos dans cet album</b>"
|
561 |
|
562 |
+
#: wppa-ajax.php:984
|
563 |
msgid "<b>Tags set to defaults</b> (reload)"
|
564 |
msgstr "<b>Tags remis à zéro</b> (rechargement)"
|
565 |
|
566 |
+
#: wppa-ajax.php:987
|
567 |
msgid "An error occurred while setting tags"
|
568 |
msgstr "Une erreur s'est produite pendant l'application des tags"
|
569 |
|
570 |
+
#: wppa-ajax.php:1006
|
571 |
msgid "<b>Tags added width defaults</b> (reload)"
|
572 |
msgstr "<b>Tags ajoutés avec réglages par défaut</b> (rechargement)"
|
573 |
|
574 |
+
#: wppa-ajax.php:1009
|
575 |
msgid "An error occurred while adding tags"
|
576 |
msgstr "Une erreur s'est produite pendant l'ajout des tags"
|
577 |
|
578 |
+
#: wppa-ajax.php:1035
|
579 |
msgid "No subalbums found to process"
|
580 |
msgstr "Aucun sous-albums trouvés pour traiter"
|
581 |
|
582 |
+
#: wppa-ajax.php:1040
|
583 |
msgid "No categories found to process"
|
584 |
msgstr "Aucune catégorie trouvée pour traiter"
|
585 |
|
586 |
+
#: wppa-ajax.php:1044
|
587 |
#, php-format
|
588 |
msgid "%d album updated"
|
589 |
msgid_plural "%d albums updated"
|
590 |
msgstr[0] "%d album mis à jour"
|
591 |
msgstr[1] "%d albums mis à jour"
|
592 |
|
593 |
+
#: wppa-ajax.php:1051
|
594 |
#, php-format
|
595 |
msgid "Album name may not be empty.<br />Reset to <b>%s</b>"
|
596 |
msgstr "Le nom de l'album ne doit pas être vide.<br />Réglé à <b>%s</b>"
|
597 |
|
598 |
+
#: wppa-ajax.php:1053 wppa-ajax.php:1493 wppa-album-admin-autosave.php:393
|
599 |
#: wppa-album-admin-autosave.php:450 wppa-album-admin-autosave.php:1099
|
600 |
#: wppa-album-admin-autosave.php:1236 wppa-album-admin-autosave.php:1408
|
601 |
#: wppa-album-admin-autosave.php:1503 wppa-boxes-html.php:415
|
618 |
msgid "Name"
|
619 |
msgstr "Nom"
|
620 |
|
621 |
+
#: wppa-ajax.php:1056 wppa-ajax.php:1496 wppa-album-admin-autosave.php:1109
|
622 |
#: wppa-album-admin-autosave.php:1246 wppa-album-admin-autosave.php:1418
|
623 |
#: wppa-album-admin-autosave.php:1513 wppa-photo-admin-autosave.php:1364
|
624 |
#: wppa-photo-admin-autosave.php:1483 wppa-photo-admin-autosave.php:1900
|
639 |
msgid "Description"
|
640 |
msgstr "Description"
|
641 |
|
642 |
+
#: wppa-ajax.php:1060
|
643 |
msgid "Unbalanced tags in album description!"
|
644 |
msgstr "Unbalanced tags dans la description de l'album!"
|
645 |
|
646 |
+
#: wppa-ajax.php:1067
|
647 |
msgid "Album order #"
|
648 |
msgstr "Ordre de l'album #"
|
649 |
|
650 |
+
#: wppa-ajax.php:1070
|
651 |
msgid "Cover photo"
|
652 |
msgstr "Photo de couverture"
|
653 |
|
654 |
+
#: wppa-ajax.php:1073
|
655 |
msgid "Parent album"
|
656 |
msgstr "Album Parent"
|
657 |
|
658 |
+
#: wppa-ajax.php:1078 wppa-settings-autosave.php:4031
|
659 |
msgid "Photo order"
|
660 |
msgstr "Ordre des photos"
|
661 |
|
662 |
+
#: wppa-ajax.php:1081
|
663 |
msgid "Use Alt thumbsize"
|
664 |
msgstr "Utiliser taille de vignette alternative"
|
665 |
|
666 |
+
#: wppa-ajax.php:1084
|
667 |
msgid "Cover Type"
|
668 |
msgstr "Type de couverture"
|
669 |
|
670 |
+
#: wppa-ajax.php:1087 wppa-settings-autosave.php:5023
|
671 |
#: wppa-settings-autosave.php:6029
|
672 |
msgid "Link type"
|
673 |
msgstr "Type de lien"
|
674 |
|
675 |
+
#: wppa-ajax.php:1090 wppa-album-covers.php:1305
|
676 |
msgid "Link to"
|
677 |
msgstr "Lien vers"
|
678 |
|
679 |
+
#: wppa-ajax.php:1093 wppa-ajax.php:1517 wppa-album-admin-autosave.php:1120
|
680 |
#: wppa-album-admin-autosave.php:1257 wppa-album-admin-autosave.php:1429
|
681 |
#: wppa-album-admin-autosave.php:1524 wppa-boxes-html.php:537
|
682 |
#: wppa-photo-admin-autosave.php:1366 wppa-photo-admin-autosave.php:1485
|
684 |
msgid "Owner"
|
685 |
msgstr "Propriétaire"
|
686 |
|
687 |
+
#: wppa-ajax.php:1095
|
688 |
#, php-format
|
689 |
msgid "User %s does not exist"
|
690 |
msgstr "L'utilisateur %s n'existe pas"
|
691 |
|
692 |
+
#: wppa-ajax.php:1100 wppa-ajax.php:1106
|
693 |
msgid "Upload limit count"
|
694 |
msgstr "Compteur limite d'upload"
|
695 |
|
696 |
+
#: wppa-ajax.php:1113
|
697 |
msgid "Upload limit time"
|
698 |
msgstr "Temps limite d'upload"
|
699 |
|
700 |
+
#: wppa-ajax.php:1117
|
701 |
msgid "Default tags"
|
702 |
msgstr "Tags par défaut"
|
703 |
|
704 |
+
#: wppa-ajax.php:1122
|
705 |
msgid "Categories"
|
706 |
msgstr "Catégories"
|
707 |
|
708 |
+
#: wppa-ajax.php:1125
|
709 |
msgid "Sub albums sort order"
|
710 |
msgstr "Ordre de tri des albums fils"
|
711 |
|
712 |
+
#: wppa-ajax.php:1133 wppa-ajax.php:1587
|
713 |
msgid "Schedule date/time"
|
714 |
msgstr "Date/Heure de planification"
|
715 |
|
716 |
+
#: wppa-ajax.php:1146 wppa-ajax.php:1198
|
717 |
#, php-format
|
718 |
msgid "<b>%s</b> of album %s updated"
|
719 |
msgstr "<b>%s</b> de l'album %s mis à jour"
|
720 |
|
721 |
+
#: wppa-ajax.php:1154
|
722 |
msgid "All photos set to scheduled per date"
|
723 |
msgstr "Toutes les photos réglées à planifié par date"
|
724 |
|
725 |
+
#: wppa-ajax.php:1181
|
726 |
+
#, php-format
|
727 |
msgid "<b>Custom field %s</b> updated"
|
728 |
+
msgstr "<b>Champs personnalisés %s</b> mis à jour"
|
729 |
|
730 |
+
#: wppa-ajax.php:1207
|
731 |
#, php-format
|
732 |
msgid "An error occurred while trying to update <b>%s</b> of album %s"
|
733 |
msgstr ""
|
734 |
"Une erreur est survenue pendant la tentative de modification <b>%s</b> de "
|
735 |
"l'album %s"
|
736 |
|
737 |
+
#: wppa-ajax.php:1208 wppa-ajax.php:1471 wppa-ajax.php:1577
|
738 |
msgid "Press CTRL+F5 and try again."
|
739 |
msgstr "Presser CTRL+F5 et réessayer."
|
740 |
|
741 |
+
#: wppa-ajax.php:1222
|
742 |
msgid "You do not have the rights to update comment status"
|
743 |
msgstr "Vous n'avez pas les droits pour modifier le statut du commentaire"
|
744 |
|
745 |
+
#: wppa-ajax.php:1239
|
746 |
#, php-format
|
747 |
msgid "Status of comment #%s updated"
|
748 |
msgstr "statut du commentaire #%s modifié"
|
749 |
|
750 |
+
#: wppa-ajax.php:1242
|
751 |
#, php-format
|
752 |
msgid "Error updating status comment #%s"
|
753 |
msgstr "Erreur pendant la modification du commentaire #%s"
|
754 |
|
755 |
+
#: wppa-ajax.php:1253
|
756 |
msgid "You do not have the rights to change photos"
|
757 |
msgstr "Vous n'avez pas les droits pour changer les photos"
|
758 |
|
759 |
+
#: wppa-ajax.php:1262
|
760 |
msgid "Watermark applied"
|
761 |
msgstr "Filigrane appliqué"
|
762 |
|
763 |
+
#: wppa-ajax.php:1266
|
764 |
msgid "An error occured while trying to apply a watermark"
|
765 |
msgstr "Une erreur est survenue pendant l'application du filigrane"
|
766 |
|
767 |
+
#: wppa-ajax.php:1285
|
768 |
msgid "You do not have the rights to update photo information"
|
769 |
msgstr "Vous n'avez pas les droits pour changer la description de la photo"
|
770 |
|
771 |
+
#: wppa-ajax.php:1291
|
772 |
#, php-format
|
773 |
msgid "%s updated to %s."
|
774 |
msgstr "%s mis à jour à %s."
|
775 |
|
776 |
+
#: wppa-ajax.php:1341
|
777 |
#, php-format
|
778 |
msgid "Format error %s. Must be yyyy:mm:dd hh:mm:ss"
|
779 |
msgstr "Erreur de format %s. Doit être yyyy:mm:dd hh:mm:ss"
|
780 |
|
781 |
+
#: wppa-ajax.php:1345
|
782 |
msgid "Exif date/time updated"
|
783 |
msgstr "Date/heure EXIF modifiée"
|
784 |
|
785 |
+
#: wppa-ajax.php:1351
|
786 |
msgid "Enter a value > -90 and < 90"
|
787 |
msgstr "Entrez une valeur comprise entre -90 et 90"
|
788 |
|
789 |
+
#: wppa-ajax.php:1359
|
790 |
msgid "Lattitude updated"
|
791 |
msgstr "Latitude mise à jour"
|
792 |
|
793 |
+
#: wppa-ajax.php:1361
|
794 |
msgid "Could not update lattitude"
|
795 |
msgstr "Ne peut pas mettre à jour la latitude"
|
796 |
|
797 |
+
#: wppa-ajax.php:1367
|
798 |
msgid "Enter a value > -180 and < 180"
|
799 |
msgstr "Entrez une valeur comprise entre -180 et 180"
|
800 |
|
801 |
+
#: wppa-ajax.php:1375
|
802 |
msgid "Longitude updated"
|
803 |
msgstr "Longitude mise à jour"
|
804 |
|
805 |
+
#: wppa-ajax.php:1377
|
806 |
msgid "Could not update longitude"
|
807 |
msgstr "Ne peut pas mettre à jour la longitude"
|
808 |
|
809 |
+
#: wppa-ajax.php:1385
|
810 |
msgid "Photo files remade"
|
811 |
msgstr "Fichiers photo recréés"
|
812 |
|
813 |
+
#: wppa-ajax.php:1388
|
814 |
msgid "Could not remake files"
|
815 |
msgstr "Impossible de recréer les fichiers"
|
816 |
|
817 |
+
#: wppa-ajax.php:1394
|
818 |
msgid "Thumbnail remade"
|
819 |
msgstr "Vignettes recréées"
|
820 |
|
821 |
+
#: wppa-ajax.php:1397
|
822 |
msgid "Could not remake thumbnail"
|
823 |
msgstr "Impossible de recréer les vignette"
|
824 |
|
825 |
+
#: wppa-ajax.php:1407 wppa-photo-admin-autosave.php:184 wppa-potd-admin.php:100
|
826 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:288
|
827 |
+
#: wppa-tinymce-shortcodes.php:627
|
828 |
msgid "left"
|
829 |
msgstr "gauche"
|
830 |
|
831 |
+
#: wppa-ajax.php:1411 wppa-photo-admin-autosave.php:186
|
832 |
msgid "180°"
|
833 |
msgstr "180°"
|
834 |
|
835 |
+
#: wppa-ajax.php:1415 wppa-photo-admin-autosave.php:188 wppa-potd-admin.php:100
|
836 |
#: wppa-settings-autosave.php:3827 wppa-tinymce-scripts.php:290
|
837 |
+
#: wppa-tinymce-shortcodes.php:629
|
838 |
msgid "right"
|
839 |
msgstr "droite"
|
840 |
|
841 |
+
#: wppa-ajax.php:1423
|
842 |
#, php-format
|
843 |
msgid "Photo %s rotated %s"
|
844 |
msgstr "Photo %s pivotée %s"
|
845 |
|
846 |
+
#: wppa-ajax.php:1426
|
847 |
#, php-format
|
848 |
msgid "An error occurred while trying to rotate photo %s"
|
849 |
msgstr "Une erreur est survenue pendant la rotation de la photo %s"
|
850 |
|
851 |
+
#: wppa-ajax.php:1436 wppa-ajax.php:1459 wppa-photo-admin-autosave.php:1100
|
852 |
#: wppa-photo-admin-autosave.php:1118
|
853 |
#, php-format
|
854 |
msgid "A photo with filename %s already exists in album %s."
|
855 |
msgstr "Une photo avec le nom de fichier %s existe déjà dans l'album %s."
|
856 |
|
857 |
+
#: wppa-ajax.php:1446
|
858 |
#, php-format
|
859 |
msgid "Photo %s has been moved to album %s (%s)"
|
860 |
msgstr "La photo %s a été déplacée vers l'album %s (%s)"
|
861 |
|
862 |
+
#: wppa-ajax.php:1449
|
863 |
#, php-format
|
864 |
msgid "An error occurred while trying to move photo %s"
|
865 |
msgstr "Une erreur est survenue pendant le déplacement de la photo %s"
|
866 |
|
867 |
+
#: wppa-ajax.php:1467
|
868 |
#, php-format
|
869 |
msgid "Photo %s copied to album %s (%s)"
|
870 |
msgstr "Photo %s copiée vers l'album %s (%s)"
|
871 |
|
872 |
+
#: wppa-ajax.php:1470
|
873 |
#, php-format
|
874 |
msgid "An error occurred while trying to copy photo %s"
|
875 |
msgstr "Une erreur est survenue pendant la copie de la photo %s"
|
876 |
|
877 |
+
#: wppa-ajax.php:1500 wppa-ajax.php:2142
|
878 |
msgid "Unbalanced tags in photo description!"
|
879 |
msgstr "Unbalanced tags dans la description de la photo!"
|
880 |
|
881 |
+
#: wppa-ajax.php:1506
|
882 |
msgid "Photo order #"
|
883 |
msgstr "Photo en position #"
|
884 |
|
885 |
+
#: wppa-ajax.php:1511
|
886 |
#, php-format
|
887 |
msgid "User %s does not exists"
|
888 |
msgstr "L'utilisateur %s n'existe pas"
|
889 |
|
890 |
+
#: wppa-ajax.php:1520
|
891 |
msgid "Link url"
|
892 |
msgstr "URL du lien"
|
893 |
|
894 |
+
#: wppa-ajax.php:1523
|
895 |
msgid "Link title"
|
896 |
msgstr "Titre du lien"
|
897 |
|
898 |
+
#: wppa-ajax.php:1526
|
899 |
msgid "Link target"
|
900 |
msgstr "Cible du lien"
|
901 |
|
902 |
+
#: wppa-ajax.php:1532 wppa-multitag-widget.php:34 wppa-multitag-widget.php:66
|
903 |
#: wppa-tagcloud-widget.php:34 wppa-tagcloud-widget.php:63
|
904 |
msgid "Photo Tags"
|
905 |
msgstr "Tags de la photo"
|
906 |
|
907 |
+
#: wppa-ajax.php:1537 wppa-comment-admin.php:317 wppa-comment-admin.php:404
|
908 |
#: wppa-photo-admin-autosave.php:1365 wppa-photo-admin-autosave.php:1484
|
909 |
#: wppa-settings-autosave.php:6724 wppa-settings-autosave.php:7454
|
910 |
#: wppa-settings-autosave.php:9220 wppa-settings-autosave.php:9260
|
912 |
msgid "Status"
|
913 |
msgstr "Statut"
|
914 |
|
915 |
+
#: wppa-ajax.php:1540
|
916 |
msgid "HTML Alt"
|
917 |
msgstr "HTML alt"
|
918 |
|
919 |
+
#: wppa-ajax.php:1544
|
920 |
msgid "Video width"
|
921 |
msgstr "Largeur de la vidéo"
|
922 |
|
923 |
+
#: wppa-ajax.php:1546 wppa-ajax.php:1553
|
924 |
msgid "Please enter an integer value >= 0"
|
925 |
msgstr "Entrer un nombre entier >= 0"
|
926 |
|
927 |
+
#: wppa-ajax.php:1551
|
928 |
msgid "Video height"
|
929 |
msgstr "Hauteur de la vidéo"
|
930 |
|
931 |
+
#: wppa-ajax.php:1569 wppa-ajax.php:1603
|
932 |
#, php-format
|
933 |
msgid "<b>%s</b> of video %s updated"
|
934 |
msgstr "<b>%s</b> de la vidéo %s effectué"
|
935 |
|
936 |
+
#: wppa-ajax.php:1572 wppa-ajax.php:1606
|
937 |
#, php-format
|
938 |
msgid "<b>%s</b> of photo %s updated"
|
939 |
msgstr "<b>%s</b> de la photo %s modifié"
|
940 |
|
941 |
+
#: wppa-ajax.php:1576
|
942 |
#, php-format
|
943 |
msgid "An error occurred while trying to update <b>%s</b> of photo %s"
|
944 |
msgstr "Une erreur est survenue pendant la modification <b>%s</b> de la photo %s"
|
945 |
|
946 |
+
#: wppa-ajax.php:1632
|
947 |
#, php-format
|
948 |
msgid "<b>Custom field %s</b> of photo %s updated"
|
949 |
msgstr "<b>Champ personnalisé %s</b> de la photo %s modifié"
|
950 |
|
951 |
+
#: wppa-ajax.php:1639
|
952 |
msgid "<b>Error during upload.</b>"
|
953 |
msgstr "<b>Erreur pendant le chargement.</b>"
|
954 |
|
955 |
+
#: wppa-ajax.php:1673
|
956 |
msgid "Photo files updated."
|
957 |
msgstr "Fichiers photo mis à jour."
|
958 |
|
959 |
+
#: wppa-ajax.php:1678
|
960 |
msgid "Could not update files."
|
961 |
msgstr "Impossible de créer les fichiers."
|
962 |
|
963 |
+
#: wppa-ajax.php:1689
|
964 |
#, php-format
|
965 |
msgid "Stereo mode updated in %d milliseconds"
|
966 |
msgstr "Mode stéréo modifié en %d millisecondes"
|
967 |
|
968 |
+
#: wppa-ajax.php:1706 wppa-ajax.php:1748
|
969 |
msgid "You do not have the rights to update settings"
|
970 |
msgstr "Vous n'avez pas les droits de modifier les réglages"
|
971 |
|
972 |
+
#: wppa-ajax.php:1742
|
973 |
#, fuzzy
|
974 |
msgid "You do not have the rights to update photo of the day settings"
|
975 |
msgstr ""
|
976 |
"Vous ne disposez pas des droits pour mettre à jour la photo des paramètres de "
|
977 |
"jour"
|
978 |
|
979 |
+
#: wppa-ajax.php:1820
|
980 |
msgid "Capability granted"
|
981 |
msgstr "Capacité accordée"
|
982 |
|
983 |
+
#: wppa-ajax.php:1825
|
984 |
msgid "Capability withdrawn"
|
985 |
msgstr "Capacité retirée"
|
986 |
|
987 |
+
#: wppa-ajax.php:1856
|
988 |
msgid "Column width."
|
989 |
msgstr "Largeur de colonne."
|
990 |
|
991 |
+
#: wppa-ajax.php:1859
|
992 |
msgid "Initial width."
|
993 |
msgstr "Largeur initiale."
|
994 |
|
995 |
+
#: wppa-ajax.php:1862
|
996 |
msgid "Full size."
|
997 |
msgstr "Pleine taille."
|
998 |
|
999 |
+
#: wppa-ajax.php:1865
|
1000 |
msgid "Max height."
|
1001 |
msgstr "Hauteur maximum."
|
1002 |
|
1003 |
+
#: wppa-ajax.php:1870
|
1004 |
msgid "Thumbnail size."
|
1005 |
msgstr "Taille de la vignette"
|
1006 |
|
1007 |
+
#: wppa-ajax.php:1874
|
1008 |
msgid "Thumbnail frame width"
|
1009 |
msgstr "Largeur du cadre vignette"
|
1010 |
|
1011 |
+
#: wppa-ajax.php:1878
|
1012 |
msgid "Thumbnail frame height"
|
1013 |
msgstr "Hauteur du cadre vignette"
|
1014 |
|
1015 |
+
#: wppa-ajax.php:1881
|
1016 |
msgid "Thumbnail Spacing"
|
1017 |
msgstr "Espacement des vignettes"
|
1018 |
|
1019 |
+
#: wppa-ajax.php:1884
|
1020 |
msgid "Photocount treshold."
|
1021 |
msgstr "Seuil de comptage des photos."
|
1022 |
|
1023 |
+
#: wppa-ajax.php:1887
|
1024 |
msgid "Thumb page size."
|
1025 |
msgstr "Taille de la page de vignettes"
|
1026 |
|
1027 |
+
#: wppa-ajax.php:1890
|
1028 |
msgid "Cover photo size."
|
1029 |
msgstr "Taille de la photo de couverture."
|
1030 |
|
1031 |
+
#: wppa-ajax.php:1893
|
1032 |
msgid "Album page size."
|
1033 |
msgstr "Taille de page de l'album."
|
1034 |
|
1035 |
+
#: wppa-ajax.php:1896
|
1036 |
msgid "Number of TopTen photos"
|
1037 |
msgstr "Nombre du TopTen des photos"
|
1038 |
|
1039 |
+
#: wppa-ajax.php:1899
|
1040 |
msgid "Widget image thumbnail size"
|
1041 |
msgstr "Taille de la vignette dans le widget"
|
1042 |
|
1043 |
+
#: wppa-ajax.php:1902 wppa-settings-autosave.php:1105
|
1044 |
msgid "Max Cover width"
|
1045 |
msgstr "Largeur maximum de la couverture"
|
1046 |
|
1047 |
+
#: wppa-ajax.php:1905
|
1048 |
msgid "Minimal description height"
|
1049 |
msgstr "Hauteur minimale de la description"
|
1050 |
|
1051 |
+
#: wppa-ajax.php:1908
|
1052 |
msgid "Minimal cover height"
|
1053 |
msgstr "Hauteur minimale de la couverture"
|
1054 |
|
1055 |
+
#: wppa-ajax.php:1911
|
1056 |
msgid "Minimal text frame height"
|
1057 |
msgstr "Hauteur minimale du cadre de texte"
|
1058 |
|
1059 |
+
#: wppa-ajax.php:1914 wppa-settings-autosave.php:1402
|
1060 |
msgid "Border width"
|
1061 |
msgstr "Largeur de bordure"
|
1062 |
|
1063 |
+
#: wppa-ajax.php:1917 wppa-settings-autosave.php:776
|
1064 |
#: wppa-settings-autosave.php:1411
|
1065 |
msgid "Border radius"
|
1066 |
msgstr "Rayon de bordure"
|
1067 |
|
1068 |
+
#: wppa-ajax.php:1920 wppa-settings-autosave.php:787
|
1069 |
msgid "Box spacing"
|
1070 |
msgstr "Espacement boîtes"
|
1071 |
|
1072 |
+
#: wppa-ajax.php:1926 wppa-settings-autosave.php:1080
|
1073 |
msgid "Popup size"
|
1074 |
msgstr "Taille du popup"
|
1075 |
|
1076 |
+
#: wppa-ajax.php:1929
|
1077 |
msgid "Fullsize border width"
|
1078 |
msgstr "Largeur de bordure pleine taille"
|
1079 |
|
1080 |
+
#: wppa-ajax.php:1932
|
1081 |
msgid "Lightbox Bordersize"
|
1082 |
msgstr "Taille de bordure de Lightbox"
|
1083 |
|
1084 |
+
#: wppa-ajax.php:1935
|
1085 |
msgid "Lightbox Borderwidth"
|
1086 |
msgstr "Largeur de bordure de Lightbox"
|
1087 |
|
1088 |
+
#: wppa-ajax.php:1938
|
1089 |
msgid "Lightbox Borderradius"
|
1090 |
msgstr "Rayon de bordure de Lightbox"
|
1091 |
|
1092 |
+
#: wppa-ajax.php:1941
|
1093 |
msgid "Number of Comment widget entries"
|
1094 |
msgstr "Nombre d'entrées de widget commentaire"
|
1095 |
|
1096 |
+
#: wppa-ajax.php:1944
|
1097 |
msgid "Comment Widget image thumbnail size"
|
1098 |
msgstr "Taille de vignette du widget commentaire"
|
1099 |
|
1100 |
+
#: wppa-ajax.php:1947 wppa-ajax.php:1950 wppa-ajax.php:1953
|
1101 |
msgid "Opacity."
|
1102 |
msgstr "Opacité."
|
1103 |
|
1104 |
+
#: wppa-ajax.php:1962 wppa-settings-autosave.php:1211
|
1105 |
msgid "Avatar size"
|
1106 |
msgstr "Taille de l'avatar"
|
1107 |
|
1108 |
+
#: wppa-ajax.php:1965 wppa-ajax.php:1968
|
1109 |
msgid "Watermark opacity"
|
1110 |
msgstr "Opacité du filigrane"
|
1111 |
|
1112 |
+
#: wppa-ajax.php:1971 wppa-settings-autosave.php:1380
|
1113 |
msgid "Number of text lines"
|
1114 |
msgstr "Nombre de lignes de texte"
|
1115 |
|
1116 |
+
#: wppa-ajax.php:1974 wppa-settings-autosave.php:4677
|
1117 |
msgid "Overlay opacity"
|
1118 |
msgstr "Opacité de l'overlay"
|
1119 |
|
1120 |
+
#: wppa-ajax.php:1977 wppa-settings-autosave.php:8014
|
1121 |
msgid "Upload limit"
|
1122 |
msgstr "Limite d'upload"
|
1123 |
|
1124 |
+
#: wppa-ajax.php:1980 wppa-settings-autosave.php:4347
|
1125 |
msgid "Notify inappropriate"
|
1126 |
msgstr "Notifier inapproprié"
|
1127 |
|
1128 |
+
#: wppa-ajax.php:1983
|
1129 |
msgid "Dislike pending"
|
1130 |
msgstr "Avis négatif en attente"
|
1131 |
|
1132 |
+
#: wppa-ajax.php:1986
|
1133 |
msgid "Dislike delete"
|
1134 |
msgstr "Effacer les avis négatifs"
|
1135 |
|
1136 |
+
#: wppa-ajax.php:1989 wppa-settings-autosave.php:7550
|
1137 |
msgid "Max execution time"
|
1138 |
msgstr "Temps d'exécution maximum"
|
1139 |
|
1140 |
+
#: wppa-ajax.php:1995
|
1141 |
msgid "myCRED / Cube Points"
|
1142 |
msgstr "Points myCRED / Cube"
|
1143 |
|
1144 |
+
#: wppa-ajax.php:1998
|
1145 |
msgid "JPG Image quality"
|
1146 |
msgstr "Qualité d'image JPG"
|
1147 |
|
1148 |
+
#: wppa-ajax.php:2004 wppa-settings-autosave.php:4240
|
1149 |
msgid "Number of coverphotos"
|
1150 |
msgstr "Nombre de photos de couverture"
|
1151 |
|
1152 |
+
#: wppa-ajax.php:2007 wppa-settings-autosave.php:4318
|
1153 |
msgid "Dislike value"
|
1154 |
msgstr "Valeur du vote négatif"
|
1155 |
|
1156 |
+
#: wppa-ajax.php:2010 wppa-settings-autosave.php:917
|
1157 |
msgid "Slideshow pagesize"
|
1158 |
msgstr "Taille de page du diaporama"
|
1159 |
|
1160 |
+
#: wppa-ajax.php:2013 wppa-settings-autosave.php:936
|
1161 |
msgid "Slideonly max"
|
1162 |
msgstr "Slideonly max"
|
1163 |
|
1164 |
+
#: wppa-ajax.php:2016 wppa-settings-autosave.php:805
|
1165 |
msgid "Max Pagelinks"
|
1166 |
msgstr "Nb max. de liens de page"
|
1167 |
|
1168 |
+
#: wppa-ajax.php:2019 wppa-settings-autosave.php:3032
|
1169 |
msgid "Start/pause symbol size"
|
1170 |
msgstr "Taille du symbole Démarrer/Pause"
|
1171 |
|
1172 |
+
#: wppa-ajax.php:2022 wppa-settings-autosave.php:3041
|
1173 |
msgid "Start/pause symbol border radius"
|
1174 |
msgstr "Rayon de bordure du symbole Démarrer/Pause"
|
1175 |
|
1176 |
+
#: wppa-ajax.php:2025 wppa-settings-autosave.php:3050
|
1177 |
msgid "Stop symbol size"
|
1178 |
msgstr "Taille du symbole Stop"
|
1179 |
|
1180 |
+
#: wppa-ajax.php:2028 wppa-settings-autosave.php:3059
|
1181 |
msgid "Stop symbol border radius"
|
1182 |
msgstr "Rayon de bordure du symbole Stop"
|
1183 |
|
1184 |
+
#: wppa-ajax.php:2031 wppa-settings-autosave.php:832
|
1185 |
msgid "Sticky header size"
|
1186 |
msgstr "Taille d'en-tête fixe"
|
1187 |
|
1188 |
+
#: wppa-ajax.php:2039
|
1189 |
msgid "Ratings cleared"
|
1190 |
msgstr "Notes remises à zéro"
|
1191 |
|
1192 |
+
#: wppa-ajax.php:2042
|
1193 |
msgid "Could not clear ratings"
|
1194 |
msgstr "Impossible d'effacer les notes"
|
1195 |
|
1196 |
+
#: wppa-ajax.php:2051
|
1197 |
msgid "Viewcounts cleared"
|
1198 |
msgstr "Compteur de vues remis à zéro"
|
1199 |
|
1200 |
+
#: wppa-ajax.php:2054
|
1201 |
msgid "Could not clear viewcounts"
|
1202 |
msgstr "Impossible d'effacer le comptage des vues"
|
1203 |
|
1204 |
+
#: wppa-ajax.php:2064
|
1205 |
msgid "IPTC data cleared"
|
1206 |
msgstr "Données IPTC effacées"
|
1207 |
|
1208 |
+
#: wppa-ajax.php:2065
|
1209 |
msgid "Refresh this page to clear table X"
|
1210 |
msgstr "Rafraîchir cette page pour nettoyer la table X"
|
1211 |
|
1212 |
+
#: wppa-ajax.php:2069
|
1213 |
msgid "Could not clear IPTC data"
|
1214 |
msgstr "Impossible d'effacer les données IPTC"
|
1215 |
|
1216 |
+
#: wppa-ajax.php:2079
|
1217 |
msgid "EXIF data cleared"
|
1218 |
msgstr "Données EXIF effacées"
|
1219 |
|
1220 |
+
#: wppa-ajax.php:2080
|
1221 |
msgid "Refresh this page to clear table XI"
|
1222 |
msgstr "Rafraîchir cette page pour nettoyer la table XI"
|
1223 |
|
1224 |
+
#: wppa-ajax.php:2084
|
1225 |
msgid "Could not clear EXIF data"
|
1226 |
msgstr "Impossible d'effacer les données EXIF"
|
1227 |
|
1228 |
+
#: wppa-ajax.php:2092
|
1229 |
msgid "Recuperation performed"
|
1230 |
msgstr "Récupération effectuée"
|
1231 |
|
1232 |
+
#: wppa-ajax.php:2107
|
1233 |
msgid ""
|
1234 |
"Illegal format. Please enter a 6 digit hexadecimal color value. Example: "
|
1235 |
"#77bbff"
|
1237 |
"Format incorrect. Veuillez entrer une valeur de couleur hexadécimale à 6 "
|
1238 |
"digits. Exemple: #77bbff"
|
1239 |
|
1240 |
+
#: wppa-ajax.php:2133
|
1241 |
msgid "You just changed a setting that requires the recalculation of ratings."
|
1242 |
msgstr "Vous venez de changer une option qui requiert le recalcul des notes."
|
1243 |
|
1244 |
+
#: wppa-ajax.php:2134 wppa-ajax.php:2582
|
1245 |
msgid "Please run the appropriate action in Table VIII."
|
1246 |
msgstr "Veuillez lancer l'action appropriée dans la table VIII."
|
1247 |
|
1248 |
+
#: wppa-ajax.php:2158 wppa-ajax.php:2174
|
1249 |
#, php-format
|
1250 |
msgid "Unable to create or write to %s"
|
1251 |
msgstr "Impossible de créer ou d'écrire sur %s"
|
1252 |
|
1253 |
+
#: wppa-ajax.php:2167
|
1254 |
msgid "Source can not be inside the wppa folder."
|
1255 |
msgstr "La source ne peut se trouver dans le dossier WPPA."
|
1256 |
|
1257 |
+
#: wppa-ajax.php:2184
|
1258 |
msgid "The content must contain w#album"
|
1259 |
msgstr "Le contenu doit contenir w#album"
|
1260 |
|
1261 |
+
#: wppa-ajax.php:2191
|
1262 |
msgid "The content must contain w#lat and w#lon"
|
1263 |
msgstr "Le contenu doit contenir w#lat et w#lon"
|
1264 |
|
1265 |
+
#: wppa-ajax.php:2239 wppa-ajax.php:2245
|
1266 |
msgid "Members"
|
1267 |
msgstr "Membres"
|
1268 |
|
1269 |
+
#: wppa-ajax.php:2239
|
1270 |
msgid "Parent of the member albums"
|
1271 |
msgstr "Parent des albums membres"
|
1272 |
|
1273 |
+
#: wppa-ajax.php:2383
|
1274 |
#, php-format
|
1275 |
msgid "User %s has been blacklisted."
|
1276 |
msgstr "L'utilisateur %s a été blacklisté."
|
1277 |
|
1278 |
+
#: wppa-ajax.php:2386 wppa-ajax.php:2416
|
1279 |
#, php-format
|
1280 |
msgid "User %s does not exist."
|
1281 |
msgstr "L'utilisateur %s n'existe pas."
|
1282 |
|
1283 |
+
#: wppa-ajax.php:2413
|
1284 |
#, php-format
|
1285 |
msgid "User %s is now superuser."
|
1286 |
msgstr "L'utilisateur %s est maintenant superutilisateur."
|
1287 |
|
1288 |
+
#: wppa-ajax.php:2438
|
1289 |
msgid ""
|
1290 |
"The content of the Custom box has been changed to display the Fotomoto toolbar."
|
1291 |
msgstr ""
|
1292 |
"Le contenu de la boîte personnalisée a été changé pour afficher la barre "
|
1293 |
"d'outils Fotomoto."
|
1294 |
|
1295 |
+
#: wppa-ajax.php:2442 wppa-ajax.php:2457
|
1296 |
msgid "The display of the custom box has been enabled"
|
1297 |
msgstr "L'affichage de la boîte personnalisée a été activé"
|
1298 |
|
1299 |
+
#: wppa-ajax.php:2453
|
1300 |
msgid "The content of the Custom box has been changed to display maps."
|
1301 |
msgstr ""
|
1302 |
"Le contenu de la boîte personnalisée à été modifié pour afficher des cartes."
|
1303 |
|
1304 |
+
#: wppa-ajax.php:2491
|
1305 |
msgid "This value can not be empty"
|
1306 |
msgstr "Cette valeur ne peut être vide"
|
1307 |
|
1308 |
+
#: wppa-ajax.php:2520
|
1309 |
msgid ""
|
1310 |
"You must run Table VIII-A13 and VIII-A14 first before you can switch to "
|
1311 |
"encrypted urls."
|
1313 |
"Vous devez exécuter le Table VIII-A13 et VIII-A14 avant de pouvoir passer à "
|
1314 |
"urls cryptées."
|
1315 |
|
1316 |
+
#: wppa-ajax.php:2523
|
1317 |
msgid "Table IV-A3 will be switched off."
|
1318 |
msgstr "Table IV-A3 sera éteint."
|
1319 |
|
1320 |
+
#: wppa-ajax.php:2527
|
1321 |
msgid "Table IV-A4 will be switched off."
|
1322 |
msgstr "Table IV-A4 sera éteint."
|
1323 |
|
1324 |
+
#: wppa-ajax.php:2537
|
1325 |
msgid "Not allowed when cryptic links is active"
|
1326 |
msgstr "Non autorisé lorsque les liens cryptiques est actif"
|
1327 |
|
1328 |
+
#: wppa-ajax.php:2549
|
1329 |
msgid "A Twitter account name must start with an at sign: @"
|
1330 |
msgstr "Un nom de compte Twitter doit commencer par un signe à: @"
|
1331 |
|
1332 |
+
#: wppa-ajax.php:2560
|
1333 |
#, php-format
|
1334 |
msgid "Failed to set %s to %s"
|
1335 |
msgstr "Échec du réglage de %s à %s"
|
1336 |
|
1337 |
+
#: wppa-ajax.php:2565
|
1338 |
#, php-format
|
1339 |
msgid "Setting %s updated to %s"
|
1340 |
msgstr "Réglage %s changé pour %s"
|
1341 |
|
1342 |
+
#: wppa-ajax.php:2581
|
1343 |
msgid "You just changed a setting that requires the regeneration of thumbnails."
|
1344 |
msgstr ""
|
1345 |
"Vous venez juste de changer un réglage qui implique la re-génération des "
|
1346 |
"vignettes."
|
1347 |
|
1348 |
+
#: wppa-ajax.php:2636
|
1349 |
msgid "Missing album id"
|
1350 |
msgstr "ID d'album manquant"
|
1351 |
|
1352 |
+
#: wppa-ajax.php:2656
|
1353 |
msgid "You do not have the rights to delete this album"
|
1354 |
msgstr "Vous n'avez pas les droits pour effacer cet album"
|
1355 |
|
1356 |
+
#: wppa-ajax.php:2677
|
1357 |
msgid "An error has occurred"
|
1358 |
msgstr "Une erreur est survenue"
|
1359 |
|
1360 |
+
#: wppa-ajax.php:2713 wppa-ajax.php:2720
|
1361 |
msgid "You may also enter:"
|
1362 |
msgstr "Vous pouvez aussi entrer:"
|
1363 |
|
1364 |
+
#: wppa-ajax.php:2714 wppa-ajax.php:2721
|
1365 |
msgid "You may also leave/set this blank"
|
1366 |
msgstr "Vous pouvez aussi laisser ceci vide"
|
1367 |
|
1409 |
msgid "Top of page"
|
1410 |
msgstr "Haut de page"
|
1411 |
|
1412 |
+
#: wppa-album-admin-autosave.php:118 wppa-functions.php:4011
|
1413 |
#: wppa-settings-autosave.php:7862 wppa-wpdb-insert.php:338
|
1414 |
msgid "New Album"
|
1415 |
msgstr "Nouvel album"
|
1542 |
"Si vous voulez tri l'album par ordre #, entrez / modifiez le numéro d'ordre "
|
1543 |
"ici."
|
1544 |
|
1545 |
+
#: wppa-album-admin-autosave.php:367 wppa-tinymce-shortcodes.php:356
|
1546 |
+
#: wppa-tinymce-shortcodes.php:382 wppa-tinymce-shortcodes.php:570
|
1547 |
msgid "Parent album:"
|
1548 |
msgstr "Album parent::"
|
1549 |
|
1559 |
|
1560 |
#: wppa-album-admin-autosave.php:391 wppa-album-admin-autosave.php:492
|
1561 |
#: wppa-settings-autosave.php:4074 wppa-settings-autosave.php:4098
|
1562 |
+
#: wppa-tinymce-shortcodes.php:515 wppa-tinymce-shortcodes.php:534
|
1563 |
msgid "--- default ---"
|
1564 |
msgstr "--- défaut ---"
|
1565 |
|
2075 |
#: wppa-album-admin-autosave.php:1293 wppa-album-admin-autosave.php:1465
|
2076 |
#: wppa-album-admin-autosave.php:1560 wppa-album-admin-autosave.php:1747
|
2077 |
#: wppa-boxes-html.php:935 wppa-comment-admin.php:319 wppa-comment-admin.php:388
|
2078 |
+
#: wppa-comment-admin.php:406 wppa-functions.php:2115 wppa-links.php:784
|
2079 |
+
#: wppa-links.php:802 wppa-photo-admin-autosave.php:1312
|
2080 |
#: wppa-photo-admin-autosave.php:1380 wppa-thumbnails.php:629
|
2081 |
msgid "Delete"
|
2082 |
msgstr "Supprimer"
|
2489 |
msgid "--- all separate albums ---"
|
2490 |
msgstr "--- tous albums séparés ---"
|
2491 |
|
2492 |
+
#: wppa-album-navigator-widget.php:102 wppa-common-functions.php:1702
|
2493 |
#: wppa-items.php:436
|
2494 |
msgid "--- owner/public ---"
|
2495 |
msgstr "--- Propriétaire / publique ---"
|
2619 |
msgid "Rating count:"
|
2620 |
msgstr "Nombre de notes:"
|
2621 |
|
2622 |
+
#: wppa-bestof-widget.php:198 wppa-common-functions.php:1684 wppa-import.php:1604
|
2623 |
#: wppa-items.php:424 wppa-potd-admin.php:100 wppa-potd-admin.php:136
|
2624 |
#: wppa-settings-autosave.php:1393 wppa-settings-autosave.php:1742
|
2625 |
#: wppa-settings-autosave.php:1947 wppa-settings-autosave.php:3813
|
2629 |
#: wppa-settings-autosave.php:7818 wppa-settings-autosave.php:8037
|
2630 |
#: wppa-settings-autosave.php:8093 wppa-settings-autosave.php:8956
|
2631 |
#: wppa-settings-autosave.php:9113 wppa-thumbnail-widget.php:200
|
2632 |
+
#: wppa-tinymce-scripts.php:287 wppa-tinymce-shortcodes.php:626
|
2633 |
#: wppa-watermark.php:519
|
2634 |
msgid "--- none ---"
|
2635 |
msgstr "--- aucun ---"
|
2839 |
msgid "Create album"
|
2840 |
msgstr "Créer un album"
|
2841 |
|
2842 |
+
#: wppa-boxes-html.php:2151 wppa-boxes-html.php:2165 wppa-functions.php:4230
|
2843 |
msgid "Max uploads reached"
|
2844 |
msgstr "Ajout maximum ateind"
|
2845 |
|
3005 |
msgid "Avatar"
|
3006 |
msgstr "Avatar"
|
3007 |
|
3008 |
+
#: wppa-boxes-html.php:3109 wppa-links.php:828
|
3009 |
msgid "Awaiting moderation"
|
3010 |
msgstr "En attente de modération"
|
3011 |
|
3567 |
msgid "There are no commented photos (yet)"
|
3568 |
msgstr "Il n'y pas encore de photos commentariés"
|
3569 |
|
3570 |
+
#: wppa-common-functions.php:654 wppa-functions.php:4648
|
3571 |
#, php-format
|
3572 |
msgid "%d second"
|
3573 |
msgid_plural "%d seconds"
|
3574 |
msgstr[0] "%d seconde"
|
3575 |
msgstr[1] "%d secondes"
|
3576 |
|
3577 |
+
#: wppa-common-functions.php:658 wppa-functions.php:4644
|
3578 |
#: wppa-settings-autosave.php:6542 wppa-settings-autosave.php:6543
|
3579 |
#, php-format
|
3580 |
msgid "%d minute"
|
3582 |
msgstr[0] "%d minute"
|
3583 |
msgstr[1] "%d minutes"
|
3584 |
|
3585 |
+
#: wppa-common-functions.php:662 wppa-functions.php:4640
|
3586 |
#: wppa-settings-autosave.php:6544 wppa-settings-autosave.php:7828
|
3587 |
#, php-format
|
3588 |
msgid "%d hour"
|
3590 |
msgstr[0] "%d heure"
|
3591 |
msgstr[1] "%d heures"
|
3592 |
|
3593 |
+
#: wppa-common-functions.php:666 wppa-functions.php:4636
|
3594 |
#: wppa-settings-autosave.php:6545 wppa-settings-autosave.php:7829
|
3595 |
#: wppa-settings-autosave.php:7830 wppa-settings-autosave.php:7831
|
3596 |
#: wppa-settings-autosave.php:7832 wppa-settings-autosave.php:7833
|
3603 |
msgstr[0] "%d jour"
|
3604 |
msgstr[1] "%d jours"
|
3605 |
|
3606 |
+
#: wppa-common-functions.php:670 wppa-functions.php:4632
|
3607 |
#: wppa-settings-autosave.php:6546 wppa-settings-autosave.php:7835
|
3608 |
#: wppa-settings-autosave.php:7839 wppa-settings-autosave.php:7840
|
3609 |
#: wppa-settings-autosave.php:7841 wppa-settings-autosave.php:9017
|
3613 |
msgstr[0] "%d semaine"
|
3614 |
msgstr[1] "%d semaines"
|
3615 |
|
3616 |
+
#: wppa-common-functions.php:674 wppa-settings-autosave.php:7842
|
3617 |
#: wppa-settings-autosave.php:9018 wppa-settings-autosave.php:9019
|
3618 |
#: wppa-settings-autosave.php:9020 wppa-settings-autosave.php:9021
|
3619 |
#: wppa-settings-autosave.php:9022 wppa-settings-autosave.php:9024
|
3623 |
msgstr[0] "%d mois"
|
3624 |
msgstr[1] "%d mois"
|
3625 |
|
3626 |
+
#: wppa-common-functions.php:677 wppa-settings-autosave.php:9023
|
3627 |
#: wppa-settings-autosave.php:9025
|
3628 |
#, php-format
|
3629 |
msgid "%d year"
|
3631 |
msgstr[0] "%d an"
|
3632 |
msgstr[1] "%d ans"
|
3633 |
|
3634 |
+
#: wppa-common-functions.php:1400
|
3635 |
#, php-format
|
3636 |
msgid ""
|
3637 |
"Based on your server memory limit you should not upload images larger then "
|
3641 |
"devriez pas charger des images plus grandes que : <strong>%d x %d (%2.1f MP)</"
|
3642 |
"strong>"
|
3643 |
|
3644 |
+
#: wppa-common-functions.php:1678
|
3645 |
msgid "- select an album -"
|
3646 |
msgstr "- Choisir un album -"
|
3647 |
|
3648 |
+
#: wppa-common-functions.php:1690 wppa-items.php:432 wppa-multitag-widget.php:76
|
3649 |
#: wppa-multitag-widget.php:84 wppa-slideshow-widget.php:199
|
3650 |
#: wppa-tagcloud-widget.php:71 wppa-tagcloud-widget.php:79
|
3651 |
msgid "--- all ---"
|
3652 |
msgstr "--- tout ---"
|
3653 |
|
3654 |
+
#: wppa-common-functions.php:1696
|
3655 |
msgid "--- generic ---"
|
3656 |
msgstr "--- générique ---"
|
3657 |
|
3658 |
+
#: wppa-common-functions.php:1713
|
3659 |
msgid "--- multiple see below ---"
|
3660 |
msgstr "--- multiples voir ci-dessous ---"
|
3661 |
|
3662 |
+
#: wppa-common-functions.php:1719
|
3663 |
msgid "--- a selection box ---"
|
3664 |
msgstr "--- une sélection ---"
|
3665 |
|
3666 |
+
#: wppa-common-functions.php:1766 wppa-import.php:1605 wppa-items.php:428
|
3667 |
#: wppa-settings-autosave.php:8037 wppa-settings-autosave.php:8093
|
3668 |
msgid "--- separate ---"
|
3669 |
msgstr "--- séparé ---"
|
3670 |
|
3671 |
+
#: wppa-common-functions.php:1872
|
3672 |
msgid "Photo id ="
|
3673 |
msgstr "ID photo ="
|
3674 |
|
3675 |
+
#: wppa-common-functions.php:1872
|
3676 |
msgid "Value ="
|
3677 |
msgstr "Valeur ="
|
3678 |
|
4040 |
"Il y a %s albums trouvés. Uniquement les %s premiers seront affichés. Veuillez "
|
4041 |
"redéfinir vos critères de recherche."
|
4042 |
|
4043 |
+
#: wppa-functions.php:2112 wppa-links.php:777 wppa-links.php:794
|
4044 |
#: wppa-thumbnails.php:627
|
4045 |
msgid "Are you sure you want to remove this photo?"
|
4046 |
msgstr "Etes-vous sûr de vouloir supprimer cette photo ?"
|
4084 |
msgid "Moderate comment admin"
|
4085 |
msgstr "Moderate comment admin"
|
4086 |
|
4087 |
+
#: wppa-functions.php:2366 wppa-functions.php:4445 wppa-import.php:1524
|
4088 |
#: wppa-upload.php:570
|
4089 |
msgid "Moderate manage photo"
|
4090 |
msgstr "Moderate manage photo"
|
4124 |
msgid "Could not process comment.\\nProbably timed out."
|
4125 |
msgstr "Impossible de traiter le commentaire.\\nDélai probablement dépassé."
|
4126 |
|
4127 |
+
#: wppa-functions.php:2604 wppa-links.php:1516
|
4128 |
msgid "A video can not be printed or downloaded"
|
4129 |
msgstr "Une vidéo ne peut pas être imprimée ou téléchargée"
|
4130 |
|
4131 |
+
#: wppa-functions.php:3083
|
4132 |
msgid "ERROR: Illegal attempt to enter a rating."
|
4133 |
msgstr "<b>ERREUR: Tentative illicite d'entrer une note.</b>"
|
4134 |
|
4135 |
+
#: wppa-functions.php:3096
|
4136 |
msgid "ERROR: Illegal attempt to enter a comment."
|
4137 |
msgstr "<b>ERREUR: Tentative illicite d'entrer un commentaire.</b>"
|
4138 |
|
4139 |
+
#: wppa-functions.php:4014
|
4140 |
msgid "ERROR: Illegal attempt to create an album."
|
4141 |
msgstr "<b>ERREUR: Tentative incorrecte de créer un album.</b>"
|
4142 |
|
4143 |
+
#: wppa-functions.php:4022
|
4144 |
msgid "Wrong captcha, please try again"
|
4145 |
msgstr "Captcha faux, veuillez recommencer"
|
4146 |
|
4147 |
+
#: wppa-functions.php:4038
|
4148 |
#, php-format
|
4149 |
msgid "Album #%s created"
|
4150 |
msgstr "Album #%s créé"
|
4151 |
|
4152 |
+
#: wppa-functions.php:4044
|
4153 |
msgid "Could not create album"
|
4154 |
msgstr "Impossible de créer un album"
|
4155 |
|
4156 |
+
#: wppa-functions.php:4056
|
4157 |
msgid "ERROR: Illegal attempt to upload a file."
|
4158 |
msgstr "<b>ERREUR: tentative illicite de télécharger un fichier.</b>"
|
4159 |
|
4160 |
+
#: wppa-functions.php:4129
|
4161 |
msgid "Photo upload"
|
4162 |
msgstr "Chargement photo"
|
4163 |
|
4164 |
+
#: wppa-functions.php:4130
|
4165 |
#, php-format
|
4166 |
msgid "%d photo successfully uploaded"
|
4167 |
msgid_plural "%d photos successfully uploaded"
|
4168 |
msgstr[0] "%d photo chargées avec succès"
|
4169 |
msgstr[1] "%d photos chargées avec succès"
|
4170 |
|
4171 |
+
#: wppa-functions.php:4131
|
4172 |
#, php-format
|
4173 |
msgid "%s points added"
|
4174 |
msgstr "%s points ajoutés"
|
4175 |
|
4176 |
+
#: wppa-functions.php:4143
|
4177 |
#, fuzzy
|
4178 |
msgid "Your post is awaiting moderation."
|
4179 |
msgstr "Votre contribution est en attente de modération."
|
4180 |
|
4181 |
+
#: wppa-functions.php:4152
|
4182 |
msgid "Upload failed"
|
4183 |
msgstr "chargement échoué"
|
4184 |
|
4185 |
+
#: wppa-functions.php:4155
|
4186 |
#, php-format
|
4187 |
msgid "%d upload failed"
|
4188 |
msgid_plural "%d uploads failed"
|
4189 |
msgstr[0] "%d chargement échoué"
|
4190 |
msgstr[1] "%d chargements échoués"
|
4191 |
|
4192 |
+
#: wppa-functions.php:4236
|
4193 |
msgid "Error during upload"
|
4194 |
msgstr "Erreur durant le chargement"
|
4195 |
|
4196 |
+
#: wppa-functions.php:4292
|
4197 |
msgid "Could not insert media into db."
|
4198 |
msgstr "Impossible d'insérer dans les médias db."
|
4199 |
|
4200 |
+
#: wppa-functions.php:4332
|
4201 |
msgid "Uploaded file is not an image"
|
4202 |
msgstr "Le fichier chargé n'est pas une image"
|
4203 |
|
4204 |
+
#: wppa-functions.php:4338
|
4205 |
#, php-format
|
4206 |
msgid "Only gif, jpg and png image files are supported. Returned filetype = %d."
|
4207 |
msgstr ""
|
4208 |
"Seulement les formats .GIF, .JPG et .PNG sont supportés. Type de fichier "
|
4209 |
"retourné= %d."
|
4210 |
|
4211 |
+
#: wppa-functions.php:4346
|
4212 |
#, php-format
|
4213 |
msgid "Uploaded file is larger than the allowed maximum of %d x %d pixels."
|
4214 |
msgstr ""
|
4215 |
"Le fichier chargé est plus grand que la taille maximum autorisée %d x %d "
|
4216 |
"pixels."
|
4217 |
|
4218 |
+
#: wppa-functions.php:4354
|
4219 |
#, php-format
|
4220 |
msgid "Uploaded file %s already exists in this album."
|
4221 |
msgstr "Le fichier chargé %s existe déjà dans cet album."
|
4222 |
|
4223 |
+
#: wppa-functions.php:4364
|
4224 |
#, php-format
|
4225 |
msgid "The image is too big. Max photo size: %d x %d (%2.1f MegaPixel)"
|
4226 |
msgstr "L'image est trop grande. Taille max photo: %d x %d (%2.1f MegaPixel)"
|
4227 |
|
4228 |
+
#: wppa-functions.php:4404
|
4229 |
msgid "Could not insert photo into db."
|
4230 |
msgstr "Impossible d'ajouter la photo dans la BD."
|
4231 |
|
4232 |
+
#: wppa-functions.php:4441 wppa-import.php:1520 wppa-upload.php:566
|
4233 |
#, php-format
|
4234 |
msgid "New photo uploaded: %s"
|
4235 |
msgstr "Nouvelle photo chargée: %s"
|
4236 |
|
4237 |
+
#: wppa-functions.php:4442 wppa-import.php:1521 wppa-upload.php:567
|
4238 |
#, php-format
|
4239 |
msgid "User %1$s uploaded photo %2$s into album %3$s"
|
4240 |
msgstr "L'utilisateur %s a chargé la photo %s dans l'album %s"
|
4241 |
|
4242 |
+
#: wppa-functions.php:4444 wppa-import.php:1523 wppa-upload.php:569
|
4243 |
msgid "This upload requires moderation"
|
4244 |
msgstr "Cet upload nécessite une modération"
|
4245 |
|
4246 |
+
#: wppa-functions.php:4448 wppa-import.php:1527 wppa-upload.php:573
|
4247 |
msgid "Details:"
|
4248 |
msgstr "Détails:"
|
4249 |
|
4250 |
+
#: wppa-functions.php:4449 wppa-import.php:1528 wppa-upload.php:574
|
4251 |
#: wppa-utils.php:943 wppa-utils.php:955
|
4252 |
msgid "Manage photo"
|
4253 |
msgstr "Gérer photo"
|
4254 |
|
4255 |
+
#: wppa-functions.php:4629
|
4256 |
msgid "You can upload after"
|
4257 |
msgstr "Vous pouvez charger après"
|
4258 |
|
4259 |
+
#: wppa-functions.php:4672 wppa-functions.php:4676 wppa-functions.php:4683
|
4260 |
+
#: wppa-functions.php:4687 wppa-links.php:1108 wppa-non-admin.php:813
|
4261 |
#: wppa-settings-autosave.php:9364 wppa-settings-autosave.php:9376
|
4262 |
#: wppa-settings-autosave.php:9388 wppa-settings-autosave.php:9400
|
4263 |
#: wppa-settings-autosave.php:9412 wppa-settings-autosave.php:9424
|
4265 |
msgid "Download"
|
4266 |
msgstr "Télécharger"
|
4267 |
|
4268 |
+
#: wppa-functions.php:4731
|
4269 |
msgid "Zoom in"
|
4270 |
msgstr "Zoom in"
|
4271 |
|
4272 |
+
#: wppa-functions.php:4762
|
4273 |
#, fuzzy, php-format
|
4274 |
msgid "You can vote again after %s days, %s hours, %s minutes and %s seconds"
|
4275 |
msgstr ""
|
4276 |
"Vous pouvez voter à nouveau après%s jours,%s heures,%s minutes et%s secondes"
|
4277 |
|
4278 |
+
#: wppa-functions.php:4765
|
4279 |
#, fuzzy, php-format
|
4280 |
msgid "You can vote again after %s hours, %s minutes and %s seconds"
|
4281 |
msgstr "Vous pouvez voter à nouveau après%s heures,%s minutes et%s secondes"
|
4282 |
|
4283 |
+
#: wppa-functions.php:4768
|
4284 |
#, fuzzy, php-format
|
4285 |
msgid "You can vote again after %s minutes and %s seconds"
|
4286 |
msgstr "Vous pouvez voter à nouveau après%s minutes et%s secondes"
|
5109 |
msgid "Show time since:"
|
5110 |
msgstr "Montrer la durée depuis:"
|
5111 |
|
5112 |
+
#: wppa-links.php:765
|
5113 |
msgid "App"
|
5114 |
msgstr "App"
|
5115 |
|
5116 |
+
#: wppa-links.php:766
|
5117 |
msgid "Mod"
|
5118 |
msgstr "Mod"
|
5119 |
|
5120 |
+
#: wppa-links.php:767
|
5121 |
msgid "Del"
|
5122 |
msgstr "Del"
|
5123 |
|
5124 |
+
#: wppa-links.php:771 wppa-links.php:788
|
5125 |
msgid "Are you sure you want to publish this photo?"
|
5126 |
msgstr "Êtes-vous sûr de vouloir publier cette photo ?"
|
5127 |
|
5128 |
+
#: wppa-links.php:782 wppa-links.php:799
|
5129 |
msgid "Approve"
|
5130 |
msgstr "Approuver"
|
5131 |
|
5132 |
+
#: wppa-links.php:783
|
5133 |
msgid "Moderate"
|
5134 |
msgstr "Modérer"
|
5135 |
|
5136 |
+
#: wppa-links.php:800
|
5137 |
msgid "PhotoAdmin"
|
5138 |
msgstr "Admin Photo"
|
5139 |
|
5140 |
+
#: wppa-links.php:801
|
5141 |
msgid "CommentAdmin"
|
5142 |
msgstr "Admin Commentaires"
|
5143 |
|
5144 |
+
#: wppa-links.php:805
|
5145 |
msgid "Are you sure you want to publish this comment?"
|
5146 |
msgstr "Êtes-vous sûr de vouloir publier ce commentaire ?"
|
5147 |
|
5148 |
+
#: wppa-links.php:817
|
5149 |
msgid "Are you sure you want to remove this comment?"
|
5150 |
msgstr "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
|
5151 |
|
5152 |
+
#: wppa-links.php:831
|
5153 |
#, php-format
|
5154 |
msgid "Scheduled for %s"
|
5155 |
msgstr "Planifié pour %s"
|
5156 |
|
5157 |
+
#: wppa-links.php:1044 wppa-links.php:1047 wppa-slideshow.php:1123
|
5158 |
msgid "Previous"
|
5159 |
msgstr "Préc."
|
5160 |
|
5161 |
+
#: wppa-links.php:1054 wppa-links.php:1057 wppa-non-admin.php:764
|
5162 |
#: wppa-slideshow.php:1137
|
5163 |
msgid "Next"
|
5164 |
msgstr "Suiv."
|
5165 |
|
5166 |
+
#: wppa-links.php:1110
|
5167 |
#, fuzzy
|
5168 |
msgid "Download Album"
|
5169 |
msgstr "Télécharger Album"
|
5170 |
|
5171 |
+
#: wppa-links.php:1254
|
5172 |
msgid "View thumbnails"
|
5173 |
msgstr "Visualiser les vignettes"
|
5174 |
|
5175 |
+
#: wppa-links.php:1267
|
5176 |
msgid "View fullsize slideshow"
|
5177 |
msgstr "Voir le diaporama fullsize"
|
5178 |
|
6085 |
msgstr "pixels en largeur"
|
6086 |
|
6087 |
#: wppa-potd-admin.php:96 wppa-tinymce-scripts.php:284
|
6088 |
+
#: wppa-tinymce-shortcodes.php:623
|
6089 |
msgid "Horizontal alignment:"
|
6090 |
msgstr "Alignement horizontal:"
|
6091 |
|
6098 |
#: wppa-potd-admin.php:100 wppa-settings-autosave.php:3813
|
6099 |
#: wppa-settings-autosave.php:3827 wppa-settings-autosave.php:4098
|
6100 |
#: wppa-slideshow-widget.php:215 wppa-tinymce-scripts.php:289
|
6101 |
+
#: wppa-tinymce-shortcodes.php:628
|
6102 |
msgid "center"
|
6103 |
msgstr "Centre"
|
6104 |
|
17873 |
msgstr "--- Toutes les photos ---"
|
17874 |
|
17875 |
#: wppa-tinymce-scripts.php:207 wppa-tinymce-shortcodes.php:296
|
17876 |
+
#: wppa-tinymce-shortcodes.php:329 wppa-tinymce-shortcodes.php:374
|
17877 |
+
#: wppa-tinymce-shortcodes.php:397 wppa-tinymce-shortcodes.php:585
|
17878 |
msgid "There are no albums yet"
|
17879 |
msgstr "Il n'y a pas encore d'albums"
|
17880 |
|
17895 |
msgid "* Album contains less than the minimun number of photos"
|
17896 |
msgstr "* L'album contient moins que le nombre minimum de photos"
|
17897 |
|
17898 |
+
#: wppa-tinymce-scripts.php:223 wppa-tinymce-shortcodes.php:435
|
17899 |
msgid "The Photo to be used:"
|
17900 |
msgstr "La photo à utiliser:"
|
17901 |
|
17902 |
+
#: wppa-tinymce-scripts.php:228 wppa-tinymce-shortcodes.php:441
|
17903 |
msgid "Please select a photo"
|
17904 |
msgstr "Sélectionner une photo"
|
17905 |
|
17911 |
msgid "--- The photo of the day ---"
|
17912 |
msgstr "--- La photo du jour ---"
|
17913 |
|
17914 |
+
#: wppa-tinymce-scripts.php:243 wppa-tinymce-shortcodes.php:459
|
17915 |
msgid "There are no photos yet"
|
17916 |
msgstr "Il n'y pas encore de photos"
|
17917 |
|
17918 |
+
#: wppa-tinymce-scripts.php:249 wppa-tinymce-shortcodes.php:465
|
17919 |
msgid "Specify the photo to be used"
|
17920 |
msgstr "Spécifie la photo à utiliser"
|
17921 |
|
17922 |
+
#: wppa-tinymce-scripts.php:250 wppa-tinymce-shortcodes.php:466
|
17923 |
msgid "You can select from a maximum of 100 most recently added photos"
|
17924 |
msgstr ""
|
17925 |
"Vous pouvez sélectionner parmi un maximum de 100 photos récemment ajoutées"
|
17928 |
msgid "The tags the photos should have:"
|
17929 |
msgstr "Les tags que les photos doivent avoir:"
|
17930 |
|
17931 |
+
#: wppa-tinymce-scripts.php:259 wppa-tinymce-shortcodes.php:483
|
17932 |
msgid "--- please select tag(s) ---"
|
17933 |
msgstr "--- choisir tag(s) ---"
|
17934 |
|
17940 |
"Si vous voulez que les photos aient tous les tags sélectionnés, cochez cette "
|
17941 |
"boîte. Laissez décoché si la photo doit avoir au moins un des tags sélectionnés"
|
17942 |
|
17943 |
+
#: wppa-tinymce-scripts.php:272 wppa-tinymce-shortcodes.php:608
|
17944 |
msgid "The size of the display:"
|
17945 |
msgstr "La taille de l'affichage:"
|
17946 |
|
17947 |
+
#: wppa-tinymce-scripts.php:277 wppa-tinymce-shortcodes.php:613
|
17948 |
msgid ""
|
17949 |
"Specify the horizontal size in pixels or <span style=\"color:blue\" >auto</"
|
17950 |
"span>."
|
17952 |
"Spécifie la taille horizontale en pixels ou <span style=\"color:blue\" >auto</"
|
17953 |
"span>."
|
17954 |
|
17955 |
+
#: wppa-tinymce-scripts.php:278 wppa-tinymce-shortcodes.php:614
|
17956 |
msgid ""
|
17957 |
"A value less than <span style=\"color:blue\" >100</span> will automaticly be "
|
17958 |
"interpreted as a <span style=\"color:blue\" >percentage</span> of the "
|
17962 |
"automatiquement interprétée comme un <span style=\"color:blue\" >pourcentage</"
|
17963 |
"span> de l'espace disponible."
|
17964 |
|
17965 |
+
#: wppa-tinymce-scripts.php:279 wppa-tinymce-shortcodes.php:616
|
17966 |
msgid "Leave this blank for default size"
|
17967 |
msgstr "Laisser vide pour la taille par défaut"
|
17968 |
|
17969 |
+
#: wppa-tinymce-scripts.php:293 wppa-tinymce-shortcodes.php:632
|
17970 |
msgid "Specify the alignment to be used or --- none ---"
|
17971 |
msgstr "Spécifier l'alignement à utiliser ou --- aucun ---"
|
17972 |
|
17973 |
+
#: wppa-tinymce-scripts.php:299 wppa-tinymce-shortcodes.php:642
|
17974 |
msgid "Insert Gallery"
|
17975 |
msgstr "Insérer galerie"
|
17976 |
|
18199 |
msgid "All albums in the system"
|
18200 |
msgstr "Tous les albums dans le système"
|
18201 |
|
18202 |
+
#: wppa-tinymce-shortcodes.php:281 wppa-tinymce-shortcodes.php:314
|
18203 |
msgid "The Album(s) to be used:"
|
18204 |
msgstr "Le(s) album(s) à utiliser:"
|
18205 |
|
18207 |
msgid "Please select one or more albums"
|
18208 |
msgstr "Sélectionner un ou plus album(s)"
|
18209 |
|
18210 |
+
#: wppa-tinymce-shortcodes.php:302
|
18211 |
+
msgid "Search album:"
|
18212 |
+
msgstr "Rechercher albums:"
|
18213 |
+
|
18214 |
+
#: wppa-tinymce-shortcodes.php:307
|
18215 |
+
msgid ""
|
18216 |
+
"Enter a (part of) the album name to limit the options in the selection box "
|
18217 |
+
"above."
|
18218 |
+
msgstr ""
|
18219 |
+
"Inscrivez le nom de l’album (partiëllement) afin de limiter les options dans "
|
18220 |
+
"la boîte de sélection ci-dessus."
|
18221 |
+
|
18222 |
+
#: wppa-tinymce-shortcodes.php:320 wppa-upldr-widget.php:210 wppa-utils.php:450
|
18223 |
msgid "All albums"
|
18224 |
msgstr "Tous les albums"
|
18225 |
|
18226 |
+
#: wppa-tinymce-shortcodes.php:337
|
18227 |
msgid "The album owner:"
|
18228 |
msgstr "Le propriétaire de l'album:"
|
18229 |
|
18230 |
+
#: wppa-tinymce-shortcodes.php:340
|
18231 |
msgid "Please select a user"
|
18232 |
msgstr "Veuillez sélectionner un utilisateur"
|
18233 |
|
18234 |
+
#: wppa-tinymce-shortcodes.php:341
|
18235 |
msgid "The logged in visitor"
|
18236 |
msgstr "Le visiteur connecté"
|
18237 |
|
18238 |
+
#: wppa-tinymce-shortcodes.php:347
|
18239 |
msgid "Too many users, edit manually"
|
18240 |
msgstr "Trop d'utilisateurs, modifier manuellement"
|
18241 |
|
18242 |
+
#: wppa-tinymce-shortcodes.php:362
|
18243 |
msgid "No parent specification"
|
18244 |
msgstr "Pas de parent spécifié"
|
18245 |
|
18246 |
+
#: wppa-tinymce-shortcodes.php:365 wppa-tinymce-shortcodes.php:388
|
18247 |
+
#: wppa-tinymce-shortcodes.php:576
|
18248 |
msgid "The generic parent"
|
18249 |
msgstr "Le parent générique"
|
18250 |
|
18251 |
+
#: wppa-tinymce-shortcodes.php:405
|
18252 |
msgid "Max Albums:"
|
18253 |
msgstr "Max Albums:"
|
18254 |
|
18255 |
+
#: wppa-tinymce-shortcodes.php:413
|
18256 |
msgid "Max Photos:"
|
18257 |
msgstr "Max Photos:"
|
18258 |
|
18259 |
+
#: wppa-tinymce-shortcodes.php:421
|
18260 |
msgid "The album cat(s):"
|
18261 |
msgstr "L'album cat(s):"
|
18262 |
|
18263 |
+
#: wppa-tinymce-shortcodes.php:424
|
18264 |
msgid "--- please select category ---"
|
18265 |
msgstr "--- Choisir catégorie ---"
|
18266 |
|
18267 |
+
#: wppa-tinymce-shortcodes.php:442 wppa-tinymce-shortcodes.php:456
|
18268 |
msgid "The photo of the day"
|
18269 |
msgstr "La photo du jour"
|
18270 |
|
18271 |
+
#: wppa-tinymce-shortcodes.php:455
|
18272 |
msgid "The most recently uploaded photo"
|
18273 |
msgstr "Voir les photos chargées récemment"
|
18274 |
|
18275 |
+
#: wppa-tinymce-shortcodes.php:473
|
18276 |
msgid "Preview image:"
|
18277 |
msgstr "Prévisualiser image:"
|
18278 |
|
18279 |
+
#: wppa-tinymce-shortcodes.php:480
|
18280 |
msgid "The photo tag(s):"
|
18281 |
msgstr "La tag(s) de photo:"
|
18282 |
|
18283 |
+
#: wppa-tinymce-shortcodes.php:494
|
18284 |
msgid "Or / And:"
|
18285 |
msgstr "Ou / Et:"
|
18286 |
|
18287 |
+
#: wppa-tinymce-shortcodes.php:496
|
18288 |
msgid "Meet any"
|
18289 |
msgstr "Répond à aucun"
|
18290 |
|
18291 |
+
#: wppa-tinymce-shortcodes.php:497
|
18292 |
msgid "Meet all"
|
18293 |
msgstr "Répond tous"
|
18294 |
|
18295 |
+
#: wppa-tinymce-shortcodes.php:503 wppa-tinymce-shortcodes.php:551
|
18296 |
msgid "Additional features:"
|
18297 |
msgstr "Fonctionnalités additionnelles"
|
18298 |
|
18299 |
+
#: wppa-tinymce-shortcodes.php:505
|
18300 |
msgid "Enable Subsearch"
|
18301 |
msgstr "Activer subsearch"
|
18302 |
|
18303 |
+
#: wppa-tinymce-shortcodes.php:506
|
18304 |
msgid "Enable Rootsearch"
|
18305 |
msgstr "Activer rootsearch"
|
18306 |
|
18307 |
+
#: wppa-tinymce-shortcodes.php:512
|
18308 |
msgid "Search root:"
|
18309 |
msgstr "Rechercher root:"
|
18310 |
|
18311 |
+
#: wppa-tinymce-shortcodes.php:531
|
18312 |
msgid "Landing page:"
|
18313 |
msgstr "Page de destination"
|
18314 |
|
18315 |
+
#: wppa-tinymce-shortcodes.php:553
|
18316 |
msgid "Enable all tags"
|
18317 |
msgstr "Activer tous les tags"
|
18318 |
|
18319 |
+
#: wppa-tinymce-shortcodes.php:556
|
18320 |
msgid "Please select the tags to show"
|
18321 |
msgstr "Veuillez sélectionner les tags à afficher"
|
18322 |
|
18323 |
+
#: wppa-tinymce-shortcodes.php:562
|
18324 |
msgid "There are no tags"
|
18325 |
msgstr "Il n'y a pas de tags"
|
18326 |
|
18327 |
+
#: wppa-tinymce-shortcodes.php:593
|
18328 |
msgid "Calendar type:"
|
18329 |
msgstr "Type de calendrier:"
|
18330 |
|
18331 |
+
#: wppa-tinymce-shortcodes.php:596
|
18332 |
msgid "By EXIF date"
|
18333 |
msgstr "Par date EXIF"
|
18334 |
|
18335 |
+
#: wppa-tinymce-shortcodes.php:597
|
18336 |
msgid "By date of upload"
|
18337 |
msgstr "Par date de chargement"
|
18338 |
|
18339 |
+
#: wppa-tinymce-shortcodes.php:598
|
18340 |
msgid "By date last modified"
|
18341 |
msgstr "Par date de modification (dernière)"
|
18342 |
|
18343 |
+
#: wppa-tinymce-shortcodes.php:601
|
18344 |
msgid "Last date first"
|
18345 |
msgstr "Date la plus récente en premier"
|
18346 |
|
18347 |
+
#: wppa-tinymce-shortcodes.php:602
|
18348 |
msgid "Initially display all"
|
18349 |
msgstr "Tout afficher au début"
|
18350 |
|
18351 |
+
#: wppa-tinymce-shortcodes.php:615
|
18352 |
#, fuzzy
|
18353 |
msgid ""
|
18354 |
"For responsive with a fixed maximum, add the max to auto e.g. <span style="
|
18357 |
"Pour réactif avec un maximum fixe, ajouter le max à l' auto par exemple <span "
|
18358 |
"style=\"color:blue\" >auto, 550</span>"
|
18359 |
|
18360 |
+
#: wppa-tinymce-shortcodes.php:640
|
18361 |
msgid ""
|
18362 |
"This is a preview of the shortcode that is being generated. You may edit the "
|
18363 |
"comment"
|
18365 |
"Ceci est une prévisualisation du shortcode généré. Vous pouvez modifier le "
|
18366 |
"commentaire"
|
18367 |
|
18368 |
+
#: wppa-tinymce-shortcodes.php:643
|
18369 |
msgid "insert Gallery"
|
18370 |
msgstr "insérer gallerie"
|
18371 |
|
18372 |
+
#: wppa-tinymce-shortcodes.php:643
|
18373 |
msgid "Please complete the shortcode specs"
|
18374 |
msgstr "Veuillez remplir les spécifications du shortcode"
|
18375 |
|
18746 |
#. Author URI of the plugin/theme
|
18747 |
msgid "http://wppa.opajaap.nl/"
|
18748 |
msgstr "http://wppa.opajaap.nl/"
|
18749 |
+
|
18750 |
+
#~ msgid "Uploading is temporary diabled for you"
|
18751 |
+
#~ msgstr "Le chargement est temporairement désactivé pour vous"
|
18752 |
+
|
18753 |
+
#~ msgid "Editing is temporary diabled for you"
|
18754 |
+
#~ msgstr "La modification est temporairement désactivée pour vous"
|
18755 |
+
|
18756 |
+
#~ msgid "Importing is temporary diabled for you"
|
18757 |
+
#~ msgstr "L'importation est temporairement désactivée pour vous"
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
-
Version: 6.5.
|
6 |
-
Stable tag: 6.5.
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
@@ -180,6 +180,22 @@ Oh, just Google on 'picture resizer' and you will find a bunch of free programs
|
|
180 |
|
181 |
See for additional information: http://www.wppa.nl/changelog/
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
= 6.5.07 =
|
184 |
|
185 |
= Bug Fixes =
|
2 |
Contributors: opajaap
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=OpaJaap@OpaJaap.nl&item_name=WP-Photo-Album-Plus&item_number=Support-Open-Source¤cy_code=USD&lc=US
|
4 |
Tags: photo, album, gallery, slideshow, video, audio, lightbox, iptc, exif, cloudinary, fotomoto
|
5 |
+
Version: 6.5.08
|
6 |
+
Stable tag: 6.5.08
|
7 |
Author: J.N. Breetvelt
|
8 |
Author URI: http://www.opajaap.nl/
|
9 |
Requires at least: 3.9
|
180 |
|
181 |
See for additional information: http://www.wppa.nl/changelog/
|
182 |
|
183 |
+
= 6.5.08 =
|
184 |
+
|
185 |
+
= Bug Fixes =
|
186 |
+
|
187 |
+
* Lightbox on stereo images now always shows the anaglyph in stead of the double image.
|
188 |
+
* Under certain circumstances (relative urls activated) share urls did not work. Fixed.
|
189 |
+
* Fixed a problem in Lightbox in fullscreen mode when there were other slideshows running.
|
190 |
+
|
191 |
+
= Other Changes =
|
192 |
+
|
193 |
+
* On mobile devices you can now select the start mode independantly in Table IV-G10. On mobile devices, lightbox in fs mode has now a button in the upper left corner to switch to standard mode.
|
194 |
+
* Shortcode generator has an extra (search) field to reduce the album selection box options.
|
195 |
+
* While searching from combined wp/wppa search template, album/thumbnail pagination is now always off.
|
196 |
+
* Album admin table is now paginatable. Table IX-B6.1.
|
197 |
+
Note that the number of albums listed may differ when the style is collapsable, the (grand)parent albums will be added to the partial table display for clarity.
|
198 |
+
|
199 |
= 6.5.07 =
|
200 |
|
201 |
= Bug Fixes =
|
wppa-admin.php
CHANGED
@@ -108,21 +108,21 @@ function wppa_admin() {
|
|
108 |
}
|
109 |
// Upload admin page
|
110 |
function wppa_page_upload() {
|
111 |
-
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Uploading is temporary
|
112 |
wppa_grant_albums();
|
113 |
require_once 'wppa-upload.php';
|
114 |
_wppa_page_upload();
|
115 |
}
|
116 |
// Edit photo(s)
|
117 |
function wppa_edit_photo() {
|
118 |
-
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Editing is temporary
|
119 |
require_once 'wppa-photo-admin-autosave.php';
|
120 |
wppa_publish_scheduled();
|
121 |
_wppa_edit_photo();
|
122 |
}
|
123 |
// Import admin page
|
124 |
function wppa_page_import() {
|
125 |
-
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Importing is temporary
|
126 |
wppa_grant_albums();
|
127 |
require_once 'wppa-import.php';
|
128 |
echo '<script type="text/javascript">/* <![CDATA[ */wppa_import = "'.__('Import', 'wp-photo-album-plus').'"; wppa_update = "'.__('Update', 'wp-photo-album-plus').'";/* ]]> */</script>';
|
108 |
}
|
109 |
// Upload admin page
|
110 |
function wppa_page_upload() {
|
111 |
+
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Uploading is temporary disabled for you' , 'wp-photo-album-plus') );
|
112 |
wppa_grant_albums();
|
113 |
require_once 'wppa-upload.php';
|
114 |
_wppa_page_upload();
|
115 |
}
|
116 |
// Edit photo(s)
|
117 |
function wppa_edit_photo() {
|
118 |
+
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Editing is temporary disabled for you' , 'wp-photo-album-plus') );
|
119 |
require_once 'wppa-photo-admin-autosave.php';
|
120 |
wppa_publish_scheduled();
|
121 |
_wppa_edit_photo();
|
122 |
}
|
123 |
// Import admin page
|
124 |
function wppa_page_import() {
|
125 |
+
if ( wppa_is_user_blacklisted() ) wp_die(__( 'Importing is temporary disabled for you' , 'wp-photo-album-plus') );
|
126 |
wppa_grant_albums();
|
127 |
require_once 'wppa-import.php';
|
128 |
echo '<script type="text/javascript">/* <![CDATA[ */wppa_import = "'.__('Import', 'wp-photo-album-plus').'"; wppa_update = "'.__('Update', 'wp-photo-album-plus').'";/* ]]> */</script>';
|
wppa-ajax.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
-
* Version 6.5.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -904,7 +904,9 @@ global $wppa_log_file;
|
|
904 |
}
|
905 |
}
|
906 |
// Render
|
907 |
-
|
|
|
|
|
908 |
|
909 |
$tim_2 = microtime( true );
|
910 |
$nq_2 = get_num_queries();
|
2 |
/* wppa-ajax.php
|
3 |
*
|
4 |
* Functions used in ajax requests
|
5 |
+
* Version 6.5.08
|
6 |
*
|
7 |
*/
|
8 |
|
904 |
}
|
905 |
}
|
906 |
// Render
|
907 |
+
$result = wppa_albums();
|
908 |
+
$result = wppa_make_relative( $result );
|
909 |
+
echo $result;
|
910 |
|
911 |
$tim_2 = microtime( true );
|
912 |
$nq_2 = get_num_queries();
|
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.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1007,12 +1007,50 @@ function _wppa_admin() {
|
|
1007 |
|
1008 |
// The albums table flat
|
1009 |
function wppa_admin_albums_flat() {
|
1010 |
-
|
1011 |
|
1012 |
-
//
|
1013 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
|
1015 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
$reverse = false;
|
1017 |
if ( isset($_REQUEST['order_by']) ) $order = $_REQUEST['order_by']; else $order = '';
|
1018 |
if ( ! $order ) {
|
@@ -1078,8 +1116,11 @@ function wppa_admin_albums_flat() {
|
|
1078 |
|
1079 |
$downimg = '<img src="'.wppa_get_imgdir().'down.png" alt="down" style=" height:12px; position:relative; top:2px; " />';
|
1080 |
$upimg = '<img src="'.wppa_get_imgdir().'up.png" alt="up" style=" height:12px; position:relative; top:2px; " />';
|
1081 |
-
|
1082 |
-
|
|
|
|
|
|
|
1083 |
<table class="wppa-table widefat wppa-setting-table" style="margin-top:12px;" >
|
1084 |
<thead>
|
1085 |
<tr>
|
@@ -1296,12 +1337,10 @@ function wppa_admin_albums_flat() {
|
|
1296 |
</tfoot>
|
1297 |
|
1298 |
</table>
|
1299 |
-
<!-- </div> -->
|
1300 |
<?php
|
|
|
1301 |
wppa_album_admin_footer();
|
1302 |
|
1303 |
-
?>
|
1304 |
-
<?php
|
1305 |
} else {
|
1306 |
?>
|
1307 |
<p><?php _e('No albums yet.', 'wp-photo-album-plus'); ?></p>
|
@@ -1311,10 +1350,71 @@ function wppa_admin_albums_flat() {
|
|
1311 |
|
1312 |
// The albums table collapsable
|
1313 |
function wppa_admin_albums_collapsable() {
|
1314 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1315 |
|
1316 |
-
// Read
|
1317 |
-
$albums = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS . "` ORDER BY
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1318 |
|
1319 |
// Find the ordering method
|
1320 |
$reverse = false;
|
@@ -1382,8 +1482,10 @@ function wppa_admin_albums_collapsable() {
|
|
1382 |
|
1383 |
$downimg = '<img src="'.wppa_get_imgdir().'down.png" alt="down" style=" height:12px; position:relative; top:2px; " />';
|
1384 |
$upimg = '<img src="'.wppa_get_imgdir().'up.png" alt="up" style=" height:12px; position:relative; top:2px; " />';
|
|
|
|
|
|
|
1385 |
?>
|
1386 |
-
<!-- <div class="table_wrapper"> -->
|
1387 |
<table class="widefat wppa-table wppa-setting-table" style="margin-top:12px;" >
|
1388 |
<thead>
|
1389 |
<tr>
|
@@ -1578,11 +1680,11 @@ function wppa_admin_albums_collapsable() {
|
|
1578 |
}
|
1579 |
}
|
1580 |
</script>
|
1581 |
-
|
1582 |
<?php
|
|
|
1583 |
wppa_album_admin_footer();
|
1584 |
-
|
1585 |
-
<?php
|
1586 |
} else {
|
1587 |
?>
|
1588 |
<p><?php _e('No albums yet.', 'wp-photo-album-plus'); ?></p>
|
@@ -1646,6 +1748,54 @@ function wppa_search_edit( $collapsable = false ) {
|
|
1646 |
<?php
|
1647 |
}
|
1648 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1649 |
function wppa_album_admin_footer() {
|
1650 |
global $wpdb;
|
1651 |
|
@@ -1949,20 +2099,20 @@ global $wpdb;
|
|
1949 |
|
1950 |
|
1951 |
|
1952 |
-
echo
|
1953 |
'<h2>' .
|
1954 |
__( 'Manage album order', 'wp-photo-album-plus' ) .
|
1955 |
' - ' .
|
1956 |
'<small>' .
|
1957 |
-
'<i>' .
|
1958 |
-
__( 'Change sequence order by drag and drop, or use the up/down arrows.', 'wp-photo-album-plus' ) .
|
1959 |
'</i>' .
|
1960 |
' ' .
|
1961 |
__( 'Do not leave this page unless the bar is entirely green.', 'wp-photo-album-plus' ) .
|
1962 |
'</small>' .
|
1963 |
'</h2>';
|
1964 |
-
|
1965 |
-
echo
|
1966 |
'<table>' .
|
1967 |
'<thead>' .
|
1968 |
'<tr>' .
|
@@ -2009,8 +2159,8 @@ global $wpdb;
|
|
2009 |
'</tr>' .
|
2010 |
'</tbody>' .
|
2011 |
'</table>';
|
2012 |
-
|
2013 |
-
|
2014 |
|
2015 |
?>
|
2016 |
<style>
|
@@ -2080,8 +2230,8 @@ global $wpdb;
|
|
2080 |
jQuery( '#wppa-pb-'+idx ).css({backgroundColor:'orange'});
|
2081 |
}
|
2082 |
idx++;
|
2083 |
-
}
|
2084 |
-
|
2085 |
// Process
|
2086 |
var idx = 0;
|
2087 |
while ( idx < ids.length ) {
|
@@ -2161,16 +2311,16 @@ global $wpdb;
|
|
2161 |
jQuery( '#wppa-album-seqno-' + album ).html( spinnerhtml );
|
2162 |
}
|
2163 |
</script>
|
2164 |
-
|
2165 |
<br />
|
2166 |
-
|
2167 |
<div id="wppa-progbar" style="width:100%;height:12px;" >
|
2168 |
<?php
|
2169 |
$c = count( $albums );
|
2170 |
$l = 100 / $c;
|
2171 |
$i = 0;
|
2172 |
while( $i < $c ) {
|
2173 |
-
echo
|
2174 |
'<div' .
|
2175 |
' id="wppa-pb-' . $i . '"' .
|
2176 |
' style="display:inline;float:left;background-color:green;height:12px;width:' . $l . '%;"' .
|
@@ -2180,7 +2330,7 @@ global $wpdb;
|
|
2180 |
}
|
2181 |
?>
|
2182 |
</div>
|
2183 |
-
|
2184 |
<br />
|
2185 |
|
2186 |
<div class="widefat" style="max-width:600px;" >
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* create, edit and delete albums
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
1007 |
|
1008 |
// The albums table flat
|
1009 |
function wppa_admin_albums_flat() {
|
1010 |
+
global $wpdb;
|
1011 |
|
1012 |
+
// Init
|
1013 |
+
$pagesize = wppa_opt( 'album_admin_pagesize' );
|
1014 |
+
$page = '1';
|
1015 |
+
$skips = '0';
|
1016 |
+
$pages = '1';
|
1017 |
+
|
1018 |
+
// Find out what page to show
|
1019 |
+
if ( $pagesize ) {
|
1020 |
+
if ( isset( $_REQUEST['album-page-no'] ) ) {
|
1021 |
+
$page = strval( intval( $_REQUEST['album-page-no'] ) );
|
1022 |
+
$page = max( $page, '1' );
|
1023 |
+
$skips = ( $page - 1 ) * $pagesize;
|
1024 |
+
}
|
1025 |
+
}
|
1026 |
|
1027 |
+
// Read all albums, pre-ordered
|
1028 |
+
$albums = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS . "` ORDER BY " . get_option( 'wppa_album_order_'.wppa_get_user(), 'id' ) . ( get_option( 'wppa_album_order_' . wppa_get_user() . '_reverse' ) == 'yes' ? " DESC" : "" ) , ARRAY_A );
|
1029 |
+
|
1030 |
+
// Remove non accessable albums
|
1031 |
+
foreach ( array_keys( $albums ) as $idx ) {
|
1032 |
+
if ( ! wppa_have_access( $albums[$idx]['id'] ) ) {
|
1033 |
+
unset( $albums[$idx] );
|
1034 |
+
}
|
1035 |
+
}
|
1036 |
+
$count = count( $albums );
|
1037 |
+
|
1038 |
+
// If paging: Make new array with selected albums only
|
1039 |
+
if ( $pagesize ) {
|
1040 |
+
$temp = $albums;
|
1041 |
+
$albums = array();
|
1042 |
+
$i = 0;
|
1043 |
+
foreach( $temp as $item ) {
|
1044 |
+
if ( $i < $skips ) {}
|
1045 |
+
elseif ( $i >= ( $skips + $pagesize ) ) {}
|
1046 |
+
else {
|
1047 |
+
$albums[] = $item;
|
1048 |
+
}
|
1049 |
+
$i++;
|
1050 |
+
}
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
// Find the final ordering method
|
1054 |
$reverse = false;
|
1055 |
if ( isset($_REQUEST['order_by']) ) $order = $_REQUEST['order_by']; else $order = '';
|
1056 |
if ( ! $order ) {
|
1116 |
|
1117 |
$downimg = '<img src="'.wppa_get_imgdir().'down.png" alt="down" style=" height:12px; position:relative; top:2px; " />';
|
1118 |
$upimg = '<img src="'.wppa_get_imgdir().'up.png" alt="up" style=" height:12px; position:relative; top:2px; " />';
|
1119 |
+
|
1120 |
+
wppa_album_table_pagination( $page, $count );
|
1121 |
+
|
1122 |
+
?>
|
1123 |
+
|
1124 |
<table class="wppa-table widefat wppa-setting-table" style="margin-top:12px;" >
|
1125 |
<thead>
|
1126 |
<tr>
|
1337 |
</tfoot>
|
1338 |
|
1339 |
</table>
|
|
|
1340 |
<?php
|
1341 |
+
wppa_album_table_pagination( $page, $count );
|
1342 |
wppa_album_admin_footer();
|
1343 |
|
|
|
|
|
1344 |
} else {
|
1345 |
?>
|
1346 |
<p><?php _e('No albums yet.', 'wp-photo-album-plus'); ?></p>
|
1350 |
|
1351 |
// The albums table collapsable
|
1352 |
function wppa_admin_albums_collapsable() {
|
1353 |
+
global $wpdb;
|
1354 |
+
|
1355 |
+
// Init
|
1356 |
+
$pagesize = wppa_opt( 'album_admin_pagesize' );
|
1357 |
+
$page = '1';
|
1358 |
+
$skips = '0';
|
1359 |
+
$pages = '1';
|
1360 |
+
|
1361 |
+
// Find out what page to show
|
1362 |
+
if ( $pagesize ) {
|
1363 |
+
if ( isset( $_REQUEST['album-page-no'] ) ) {
|
1364 |
+
$page = strval( intval( $_REQUEST['album-page-no'] ) );
|
1365 |
+
$page = max( $page, '1' );
|
1366 |
+
$skips = ( $page - 1 ) * $pagesize;
|
1367 |
+
}
|
1368 |
+
}
|
1369 |
|
1370 |
+
// Read all albums, pre-ordered
|
1371 |
+
$albums = $wpdb->get_results( "SELECT * FROM `" . WPPA_ALBUMS . "` ORDER BY " . get_option( 'wppa_album_order_'.wppa_get_user(), 'id' ) . ( get_option( 'wppa_album_order_' . wppa_get_user() . '_reverse' ) == 'yes' ? " DESC" : "" ) , ARRAY_A );
|
1372 |
+
|
1373 |
+
// Remove non accessable albums
|
1374 |
+
foreach ( array_keys( $albums ) as $idx ) {
|
1375 |
+
if ( ! wppa_have_access( $albums[$idx]['id'] ) ) {
|
1376 |
+
unset( $albums[$idx] );
|
1377 |
+
}
|
1378 |
+
}
|
1379 |
+
$count = count( $albums );
|
1380 |
+
|
1381 |
+
// If pagination: Make new array with selected albums only
|
1382 |
+
if ( $pagesize ) {
|
1383 |
+
$temp = $albums;
|
1384 |
+
$albums = array();
|
1385 |
+
$i = 0;
|
1386 |
+
foreach( $temp as $item ) {
|
1387 |
+
if ( $i < $skips ) {}
|
1388 |
+
elseif ( $i >= ( $skips + $pagesize ) ) {}
|
1389 |
+
else {
|
1390 |
+
$albums[] = $item;
|
1391 |
+
}
|
1392 |
+
$i++;
|
1393 |
+
}
|
1394 |
+
}
|
1395 |
+
|
1396 |
+
// Make sure all (grand)parents are in
|
1397 |
+
$done = false;
|
1398 |
+
while ( ! $done ) {
|
1399 |
+
$done = true;
|
1400 |
+
foreach ( $albums as $a ) {
|
1401 |
+
$parent = $a['a_parent'];
|
1402 |
+
if ( $parent > '0' ) {
|
1403 |
+
$found = false;
|
1404 |
+
foreach ( $albums as $p ) {
|
1405 |
+
if ( $p['id'] == $parent ) {
|
1406 |
+
$found = true;
|
1407 |
+
}
|
1408 |
+
}
|
1409 |
+
if ( ! $found ) {
|
1410 |
+
$done = false;
|
1411 |
+
|
1412 |
+
// Add missing parent
|
1413 |
+
$albums[] = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM `" .WPPA_ALBUMS . "` WHERE `id` = %d", $parent ), ARRAY_A );
|
1414 |
+
}
|
1415 |
+
}
|
1416 |
+
}
|
1417 |
+
}
|
1418 |
|
1419 |
// Find the ordering method
|
1420 |
$reverse = false;
|
1482 |
|
1483 |
$downimg = '<img src="'.wppa_get_imgdir().'down.png" alt="down" style=" height:12px; position:relative; top:2px; " />';
|
1484 |
$upimg = '<img src="'.wppa_get_imgdir().'up.png" alt="up" style=" height:12px; position:relative; top:2px; " />';
|
1485 |
+
|
1486 |
+
wppa_album_table_pagination( $page, $count );
|
1487 |
+
|
1488 |
?>
|
|
|
1489 |
<table class="widefat wppa-table wppa-setting-table" style="margin-top:12px;" >
|
1490 |
<thead>
|
1491 |
<tr>
|
1680 |
}
|
1681 |
}
|
1682 |
</script>
|
1683 |
+
|
1684 |
<?php
|
1685 |
+
wppa_album_table_pagination( $page, $count );
|
1686 |
wppa_album_admin_footer();
|
1687 |
+
|
|
|
1688 |
} else {
|
1689 |
?>
|
1690 |
<p><?php _e('No albums yet.', 'wp-photo-album-plus'); ?></p>
|
1748 |
<?php
|
1749 |
}
|
1750 |
|
1751 |
+
function wppa_album_table_pagination( $page, $count ) {
|
1752 |
+
global $wpdb;
|
1753 |
+
|
1754 |
+
// Init
|
1755 |
+
$result = '';
|
1756 |
+
$pagesize = wppa_opt( 'album_admin_pagesize' );
|
1757 |
+
|
1758 |
+
// Paging on?
|
1759 |
+
if ( ! $pagesize ) {
|
1760 |
+
return;
|
1761 |
+
}
|
1762 |
+
|
1763 |
+
$npages = ceil( $count / $pagesize );
|
1764 |
+
|
1765 |
+
// Just one page?
|
1766 |
+
if ( $npages == '1' ) {
|
1767 |
+
return;
|
1768 |
+
}
|
1769 |
+
|
1770 |
+
$link = get_admin_url().'admin.php?page=wppa_admin_menu&album-page-no=';
|
1771 |
+
|
1772 |
+
$result .= '<div>';
|
1773 |
+
|
1774 |
+
// The links
|
1775 |
+
if ( $page != '1' ) {
|
1776 |
+
$result .= '<a href="' . $link . ( $page - '1') . '" >' . __( 'Previous page', 'wp-photo-album-plus' ) . '</a> ';
|
1777 |
+
}
|
1778 |
+
|
1779 |
+
$p = '1';
|
1780 |
+
while ( $p <= $npages ) {
|
1781 |
+
if ( $p == $page ) {
|
1782 |
+
$result .= $page . ' ';
|
1783 |
+
}
|
1784 |
+
else {
|
1785 |
+
$result .= '<a href="' . $link . $p . '" >' . $p . '</a> ';
|
1786 |
+
}
|
1787 |
+
$p++;
|
1788 |
+
}
|
1789 |
+
|
1790 |
+
if ( $page != $npages ) {
|
1791 |
+
$result .= '<a href="' . $link . ( $page + '1') . '" >' . __( 'Next page', 'wp-photo-album-plus' ) . '</a>';
|
1792 |
+
}
|
1793 |
+
|
1794 |
+
$result .= '</div>';
|
1795 |
+
|
1796 |
+
echo $result;
|
1797 |
+
}
|
1798 |
+
|
1799 |
function wppa_album_admin_footer() {
|
1800 |
global $wpdb;
|
1801 |
|
2099 |
|
2100 |
|
2101 |
|
2102 |
+
echo
|
2103 |
'<h2>' .
|
2104 |
__( 'Manage album order', 'wp-photo-album-plus' ) .
|
2105 |
' - ' .
|
2106 |
'<small>' .
|
2107 |
+
'<i>' .
|
2108 |
+
__( 'Change sequence order by drag and drop, or use the up/down arrows.', 'wp-photo-album-plus' ) .
|
2109 |
'</i>' .
|
2110 |
' ' .
|
2111 |
__( 'Do not leave this page unless the bar is entirely green.', 'wp-photo-album-plus' ) .
|
2112 |
'</small>' .
|
2113 |
'</h2>';
|
2114 |
+
|
2115 |
+
echo
|
2116 |
'<table>' .
|
2117 |
'<thead>' .
|
2118 |
'<tr>' .
|
2159 |
'</tr>' .
|
2160 |
'</tbody>' .
|
2161 |
'</table>';
|
2162 |
+
|
2163 |
+
|
2164 |
|
2165 |
?>
|
2166 |
<style>
|
2230 |
jQuery( '#wppa-pb-'+idx ).css({backgroundColor:'orange'});
|
2231 |
}
|
2232 |
idx++;
|
2233 |
+
}
|
2234 |
+
|
2235 |
// Process
|
2236 |
var idx = 0;
|
2237 |
while ( idx < ids.length ) {
|
2311 |
jQuery( '#wppa-album-seqno-' + album ).html( spinnerhtml );
|
2312 |
}
|
2313 |
</script>
|
2314 |
+
|
2315 |
<br />
|
2316 |
+
|
2317 |
<div id="wppa-progbar" style="width:100%;height:12px;" >
|
2318 |
<?php
|
2319 |
$c = count( $albums );
|
2320 |
$l = 100 / $c;
|
2321 |
$i = 0;
|
2322 |
while( $i < $c ) {
|
2323 |
+
echo
|
2324 |
'<div' .
|
2325 |
' id="wppa-pb-' . $i . '"' .
|
2326 |
' style="display:inline;float:left;background-color:green;height:12px;width:' . $l . '%;"' .
|
2330 |
}
|
2331 |
?>
|
2332 |
</div>
|
2333 |
+
|
2334 |
<br />
|
2335 |
|
2336 |
<div class="widefat" style="max-width:600px;" >
|
wppa-common-functions.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/* wppa-common-functions.php
|
3 |
*
|
4 |
* Functions used in admin and in themes
|
5 |
-
* Version 6.5.
|
6 |
*
|
7 |
*/
|
8 |
|
@@ -406,6 +406,7 @@ function wppa_make_relative( $url, $rel = '' ) {
|
|
406 |
|
407 |
// Repair protected urls
|
408 |
$result = str_replace( 'h t t p ', 'http', $result );
|
|
|
409 |
|
410 |
return $result;
|
411 |
}
|
2 |
/* wppa-common-functions.php
|
3 |
*
|
4 |
* Functions used in admin and in themes
|
5 |
+
* Version 6.5.08
|
6 |
*
|
7 |
*/
|
8 |
|
406 |
|
407 |
// Repair protected urls
|
408 |
$result = str_replace( 'h t t p ', 'http', $result );
|
409 |
+
$result = str_replace( 'h+t+t+p+', 'http', $result );
|
410 |
|
411 |
return $result;
|
412 |
}
|
wppa-functions.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various functions
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -2156,8 +2156,8 @@ static $user;
|
|
2156 |
$ogdsc = esc_js( $ogdsc );
|
2157 |
}
|
2158 |
|
2159 |
-
// Hires url
|
2160 |
-
$hiresurl = esc_js( wppa_fix_poster_ext( wppa_get_hires_url( $id ), $id ) );
|
2161 |
|
2162 |
// Video html
|
2163 |
$videohtml = wppa_get_video_body( $id );
|
@@ -2648,6 +2648,11 @@ global $wpdb;
|
|
2648 |
|
2649 |
function wppa_onpage( $type = '', $counter, $curpage ) {
|
2650 |
|
|
|
|
|
|
|
|
|
|
|
2651 |
$pagesize = wppa_get_pagesize( $type );
|
2652 |
if ( $pagesize == '0' ) { // Pagination off
|
2653 |
if ( $curpage == '1' ) return true;
|
@@ -2661,6 +2666,11 @@ function wppa_onpage( $type = '', $counter, $curpage ) {
|
|
2661 |
|
2662 |
function wppa_get_pagesize( $type = '' ) {
|
2663 |
|
|
|
|
|
|
|
|
|
|
|
2664 |
if ( $type == 'albums' ) return wppa_opt( 'album_page_size' );
|
2665 |
if ( $type == 'thumbs' ) return wppa_opt( 'thumb_page_size' );
|
2666 |
return '0';
|
@@ -3324,6 +3334,13 @@ function wppa_get_npages( $type, $array ) {
|
|
3324 |
|
3325 |
$aps = wppa_get_pagesize( 'albums' );
|
3326 |
$tps = wppa_get_pagesize( 'thumbs' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3327 |
$arraycount = is_array( $array ) ? count( $array ) : '0';
|
3328 |
$result = '0';
|
3329 |
if ( $type == 'albums' ) {
|
@@ -3494,6 +3511,11 @@ global $thumbs;
|
|
3494 |
|
3495 |
function wppa_is_pagination() {
|
3496 |
|
|
|
|
|
|
|
|
|
|
|
3497 |
if ( ( wppa_get_pagesize( 'albums' ) == '0' && wppa_get_pagesize( 'thumbs' ) == '0' ) ) return false;
|
3498 |
else return true;
|
3499 |
}
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Various functions
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
2156 |
$ogdsc = esc_js( $ogdsc );
|
2157 |
}
|
2158 |
|
2159 |
+
// Hires url. Use photo url in case of stereo image. The (source) hires is the double image.
|
2160 |
+
$hiresurl = wppa_is_stereo( $id ) ? esc_js( wppa_fix_poster_ext( wppa_get_photo_url( $id ), $id ) ) : esc_js( wppa_fix_poster_ext( wppa_get_hires_url( $id ), $id ) );
|
2161 |
|
2162 |
// Video html
|
2163 |
$videohtml = wppa_get_video_body( $id );
|
2648 |
|
2649 |
function wppa_onpage( $type = '', $counter, $curpage ) {
|
2650 |
|
2651 |
+
// Pagination is off during search
|
2652 |
+
if ( is_search() ) {
|
2653 |
+
return true;
|
2654 |
+
}
|
2655 |
+
|
2656 |
$pagesize = wppa_get_pagesize( $type );
|
2657 |
if ( $pagesize == '0' ) { // Pagination off
|
2658 |
if ( $curpage == '1' ) return true;
|
2666 |
|
2667 |
function wppa_get_pagesize( $type = '' ) {
|
2668 |
|
2669 |
+
// Pagination is off during search
|
2670 |
+
if ( is_search() ) {
|
2671 |
+
return '0';
|
2672 |
+
}
|
2673 |
+
|
2674 |
if ( $type == 'albums' ) return wppa_opt( 'album_page_size' );
|
2675 |
if ( $type == 'thumbs' ) return wppa_opt( 'thumb_page_size' );
|
2676 |
return '0';
|
3334 |
|
3335 |
$aps = wppa_get_pagesize( 'albums' );
|
3336 |
$tps = wppa_get_pagesize( 'thumbs' );
|
3337 |
+
|
3338 |
+
// Switch pagination off when searching
|
3339 |
+
if ( is_search() ) {
|
3340 |
+
$aps = '0';
|
3341 |
+
$tps = '0';
|
3342 |
+
}
|
3343 |
+
|
3344 |
$arraycount = is_array( $array ) ? count( $array ) : '0';
|
3345 |
$result = '0';
|
3346 |
if ( $type == 'albums' ) {
|
3511 |
|
3512 |
function wppa_is_pagination() {
|
3513 |
|
3514 |
+
// Pagination is off during search
|
3515 |
+
if ( is_search() ) {
|
3516 |
+
return false;
|
3517 |
+
}
|
3518 |
+
|
3519 |
if ( ( wppa_get_pagesize( 'albums' ) == '0' && wppa_get_pagesize( 'thumbs' ) == '0' ) ) return false;
|
3520 |
else return true;
|
3521 |
}
|
wppa-links.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Frontend links
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -102,6 +102,8 @@ global $wppa_lang;
|
|
102 |
function wppa_get_ajaxlink( $key = '', $deltamoccur = '0' ) {
|
103 |
global $wppa_lang;
|
104 |
|
|
|
|
|
105 |
if ( wppa_switch( 'ajax_non_admin' ) ) {
|
106 |
$al = WPPA_URL.'/wppa-ajax-front.php?action=wppa&wppa-action=render';
|
107 |
}
|
@@ -1362,7 +1364,7 @@ global $wpdb;
|
|
1362 |
//$result['url'] = str_replace( 'xxx', $is_video['0'], $result['url'] );
|
1363 |
}
|
1364 |
else {
|
1365 |
-
if ( wppa_switch( 'lb_hres' ) ) {
|
1366 |
$result['url'] = wppa_get_hires_url( $id );
|
1367 |
}
|
1368 |
else {
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Frontend links
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
102 |
function wppa_get_ajaxlink( $key = '', $deltamoccur = '0' ) {
|
103 |
global $wppa_lang;
|
104 |
|
105 |
+
if ( ! $key && is_search() ) $key = wppa_opt( 'search_linkpage' );
|
106 |
+
|
107 |
if ( wppa_switch( 'ajax_non_admin' ) ) {
|
108 |
$al = WPPA_URL.'/wppa-ajax-front.php?action=wppa&wppa-action=render';
|
109 |
}
|
1364 |
//$result['url'] = str_replace( 'xxx', $is_video['0'], $result['url'] );
|
1365 |
}
|
1366 |
else {
|
1367 |
+
if ( wppa_switch( 'lb_hres' ) && ! wppa_is_stereo( $id ) ) {
|
1368 |
$result['url'] = wppa_get_hires_url( $id );
|
1369 |
}
|
1370 |
else {
|
wppa-non-admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the non admin stuff
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -476,7 +476,7 @@ global $wppa_session;
|
|
476 |
echo '
|
477 |
<script type="text/javascript">
|
478 |
jQuery("#wppa-overlay-bg").css({height:window.innerHeight});
|
479 |
-
wppaOvlModeInitial = "'.( wppa( 'is_mobile' ) ? '
|
480 |
wppaOvlTxtHeight = "'.$ovlh.'";
|
481 |
wppaOvlOpacity = '.(wppa_opt( 'ovl_opacity' )/100).';
|
482 |
wppaOvlOnclickType = "'.wppa_opt( 'ovl_onclick' ).'";
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the non admin stuff
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
476 |
echo '
|
477 |
<script type="text/javascript">
|
478 |
jQuery("#wppa-overlay-bg").css({height:window.innerHeight});
|
479 |
+
wppaOvlModeInitial = "'.( wppa( 'is_mobile' ) ? wppa_opt( 'ovl_mode_initial_mob' ) : wppa_opt( 'ovl_mode_initial' ) ).'";
|
480 |
wppaOvlTxtHeight = "'.$ovlh.'";
|
481 |
wppaOvlOpacity = '.(wppa_opt( 'ovl_opacity' )/100).';
|
482 |
wppaOvlOnclickType = "'.wppa_opt( 'ovl_onclick' ).'";
|
wppa-photo-admin-autosave.php
CHANGED
@@ -1377,7 +1377,7 @@ function wppa_album_photos_bulk( $album ) {
|
|
1377 |
</td>
|
1378 |
<!-- ID and delete link -->
|
1379 |
<td><?php echo $photo['id'] ?>
|
1380 |
-
<br /><a onclick="if ( confirm( '<?php _e( 'Are you sure you want to delete this photo?', 'wp-photo-album-plus' ) ?>' ) ) wppaAjaxDeletePhoto( <?php echo $photo['id'] ?>, '<td colspan=
|
1381 |
</td>
|
1382 |
<!-- Preview -->
|
1383 |
<td style="min-width:240px; text-align:center;" >
|
1377 |
</td>
|
1378 |
<!-- ID and delete link -->
|
1379 |
<td><?php echo $photo['id'] ?>
|
1380 |
+
<br /><a onclick="if ( confirm( '<?php _e( 'Are you sure you want to delete this photo?', 'wp-photo-album-plus' ) ?>' ) ) wppaAjaxDeletePhoto( <?php echo $photo['id'] ?>, '<td colspan=8 >', '</td>' )" style="color:red;font-weight:bold;"><?php _e( 'Delete' , 'wp-photo-album-plus') ?></a>
|
1381 |
</td>
|
1382 |
<!-- Preview -->
|
1383 |
<td style="min-width:240px; text-align:center;" >
|
wppa-settings-autosave.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -4791,6 +4791,26 @@ global $wp_version;
|
|
4791 |
$tags = 'lightbox,layout';
|
4792 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
4793 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4794 |
}
|
4795 |
?>
|
4796 |
</tbody>
|
@@ -7647,6 +7667,17 @@ global $wp_version;
|
|
7647 |
$tags = 'system,page';
|
7648 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
7649 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7650 |
$name = __('Photo admin page size', 'wp-photo-album-plus');
|
7651 |
$desc = __('The number of photos per page on the <br/>Edit Album -> Manage photos and Edit Photos admin pages.', 'wp-photo-album-plus');
|
7652 |
$help = '';
|
@@ -7656,7 +7687,7 @@ global $wp_version;
|
|
7656 |
$html = wppa_select($slug, $options, $values);
|
7657 |
$clas = '';
|
7658 |
$tags = 'system,page';
|
7659 |
-
wppa_setting($slug, '6', $name, $desc, $html, $help, $clas, $tags);
|
7660 |
|
7661 |
$name = __('Comment admin page size', 'wp-photo-album-plus');
|
7662 |
$desc = __('The number of comments per page on the Comments admin pages.', 'wp-photo-album-plus');
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* manage all options
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
4791 |
$tags = 'lightbox,layout';
|
4792 |
wppa_setting($slug, '9', $name, $desc, $html, $help, $clas, $tags);
|
4793 |
|
4794 |
+
$name = __('Lightbox start mode mobile', 'wp-photo-album-plus');
|
4795 |
+
$desc = __('The mode lightbox starts in on mobile devices.', 'wp-photo-album-plus');
|
4796 |
+
$help = '';
|
4797 |
+
$slug = 'wppa_ovl_mode_initial_mob';
|
4798 |
+
$opts = array( __('Normal', 'wp-photo-album-plus'),
|
4799 |
+
__('Padded', 'wp-photo-album-plus'),
|
4800 |
+
__('Stretched', 'wp-photo-album-plus'),
|
4801 |
+
__('Clipped', 'wp-photo-album-plus'),
|
4802 |
+
__('Real size', 'wp-photo-album-plus'),
|
4803 |
+
);
|
4804 |
+
$vals = array( 'normal',
|
4805 |
+
'padded',
|
4806 |
+
'stretched',
|
4807 |
+
'clipped',
|
4808 |
+
'realsize',
|
4809 |
+
);
|
4810 |
+
$html = wppa_select($slug,$opts,$vals);
|
4811 |
+
$clas = '';
|
4812 |
+
$tags = 'lightbox,layout';
|
4813 |
+
wppa_setting($slug, '10', $name, $desc, $html, $help, $clas, $tags);
|
4814 |
}
|
4815 |
?>
|
4816 |
</tbody>
|
7667 |
$tags = 'system,page';
|
7668 |
wppa_setting($slug, '5', $name, $desc, $html, $help, $clas, $tags);
|
7669 |
|
7670 |
+
$name = __('Album admin page size', 'wp-photo-album-plus');
|
7671 |
+
$desc = __('The number of albums per page on the Edit Album admin page.', 'wp-photo-album-plus');
|
7672 |
+
$help = '';
|
7673 |
+
$slug = 'wppa_album_admin_pagesize';
|
7674 |
+
$options = array( __('--- off ---', 'wp-photo-album-plus'), '10', '20', '50', '100', '200');
|
7675 |
+
$values = array('0', '10', '20', '50', '100', '200');
|
7676 |
+
$html = wppa_select($slug, $options, $values);
|
7677 |
+
$clas = '';
|
7678 |
+
$tags = 'system,page';
|
7679 |
+
wppa_setting($slug, '6.1', $name, $desc, $html, $help, $clas, $tags);
|
7680 |
+
|
7681 |
$name = __('Photo admin page size', 'wp-photo-album-plus');
|
7682 |
$desc = __('The number of photos per page on the <br/>Edit Album -> Manage photos and Edit Photos admin pages.', 'wp-photo-album-plus');
|
7683 |
$help = '';
|
7687 |
$html = wppa_select($slug, $options, $values);
|
7688 |
$clas = '';
|
7689 |
$tags = 'system,page';
|
7690 |
+
wppa_setting($slug, '6.2', $name, $desc, $html, $help, $clas, $tags);
|
7691 |
|
7692 |
$name = __('Comment admin page size', 'wp-photo-album-plus');
|
7693 |
$desc = __('The number of comments per page on the Comments admin pages.', 'wp-photo-album-plus');
|
wppa-setup.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -1151,6 +1151,7 @@ Hide Camera info
|
|
1151 |
'wppa_ovl_video_start' => 'yes',
|
1152 |
'wppa_ovl_audio_start' => 'yes',
|
1153 |
'wppa_ovl_mode_initial' => 'normal',
|
|
|
1154 |
|
1155 |
// Table V: Fonts
|
1156 |
'wppa_fontfamily_title' => '',
|
@@ -1431,6 +1432,7 @@ Hide Camera info
|
|
1431 |
'wppa_hier_albsel' => 'yes',
|
1432 |
'wppa_hier_pagesel' => 'no',
|
1433 |
'wppa_alt_type' => 'fullname',
|
|
|
1434 |
'wppa_photo_admin_pagesize' => '20',
|
1435 |
'wppa_comment_admin_pagesize' => '10',
|
1436 |
'wppa_jpeg_quality' => '95',
|
3 |
* Package: wp-photo-album-plus
|
4 |
*
|
5 |
* Contains all the setup stuff
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
1151 |
'wppa_ovl_video_start' => 'yes',
|
1152 |
'wppa_ovl_audio_start' => 'yes',
|
1153 |
'wppa_ovl_mode_initial' => 'normal',
|
1154 |
+
'wppa_ovl_mode_initial_mob' => 'padded',
|
1155 |
|
1156 |
// Table V: Fonts
|
1157 |
'wppa_fontfamily_title' => '',
|
1432 |
'wppa_hier_albsel' => 'yes',
|
1433 |
'wppa_hier_pagesel' => 'no',
|
1434 |
'wppa_alt_type' => 'fullname',
|
1435 |
+
'wppa_album_admin_pagesize' => '0',
|
1436 |
'wppa_photo_admin_pagesize' => '20',
|
1437 |
'wppa_comment_admin_pagesize' => '10',
|
1438 |
'wppa_jpeg_quality' => '95',
|
wppa-tinymce-shortcodes.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Pachkage: wp-photo-album-plus
|
4 |
*
|
5 |
*
|
6 |
-
* Version 6.5.
|
7 |
*
|
8 |
*/
|
9 |
|
@@ -298,6 +298,16 @@ global $wpdb;
|
|
298 |
$result .= '</select>'.
|
299 |
'</td>'.
|
300 |
'</tr>'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
// Real albums optional
|
303 |
'<tr id="wppagallery-album-realopt-tr" style="display:none;" >'.
|
3 |
* Pachkage: wp-photo-album-plus
|
4 |
*
|
5 |
*
|
6 |
+
* Version 6.5.08
|
7 |
*
|
8 |
*/
|
9 |
|
298 |
$result .= '</select>'.
|
299 |
'</td>'.
|
300 |
'</tr>'.
|
301 |
+
'<tr id="wppagallery-album-real-search-tr" style="display:none;" >' .
|
302 |
+
'<th><label for="">'.__('Search album:', 'wp-photo-album-plus').'</label></th>'.
|
303 |
+
'<td>'.
|
304 |
+
'<input id="wppagallery-album-real-search" type="text" onkeyup="wppaGalleryEvaluate()" />'.
|
305 |
+
'<br />'.
|
306 |
+
'<small>'.
|
307 |
+
__('Enter a (part of) the album name to limit the options in the selection box above.', 'wp-photo-album-plus').' '.
|
308 |
+
'</small>'.
|
309 |
+
'</td>'.
|
310 |
+
'</tr>'.
|
311 |
|
312 |
// Real albums optional
|
313 |
'<tr id="wppagallery-album-realopt-tr" style="display:none;" >'.
|
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.5.
|
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-5-
|
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.5.08
|
6 |
* Author: J.N. Breetvelt a.k.a. OpaJaap
|
7 |
* Author URI: http://wppa.opajaap.nl/
|
8 |
* Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
|
22 |
global $wp_version;
|
23 |
|
24 |
/* WPPA GLOBALS */
|
25 |
+
global $wppa_revno; $wppa_revno = '6508'; // WPPA db version
|
26 |
+
global $wppa_api_version; $wppa_api_version = '6-5-08-006'; // WPPA software version
|
27 |
|
28 |
/* start timers */
|
29 |
global $wppa_starttime; $wppa_starttime = microtime(true);
|